From 25d042f16c9f90c1b1e6e29c4c2e2642bf850d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Thu, 11 Apr 2024 17:46:45 +0200 Subject: [PATCH] v1.0.0rc11 --- CHANGELOG.md | 5 +- benchmarks/virusonnetwork/soil_states.py | 2 +- benchmarks/virusonnetwork/soil_step.py | 2 +- docs/tutorial/soil_tutorial.ipynb | 1360 ++++-- examples/cars/cars_sim.py | 4 +- examples/markov_chains/MarkovChains.ipynb | 355 ++ examples/markov_chains/app.py | 11 + ...7a68a80018222f1664b90343892049e1aa11c.json | 1 + ...dbd44d019bd1193a35cd7a026cc804ebd1050.json | 1 + ...10b0cf32c036918f028c264b91bf130ec62f1.json | 1 + ...244838e9beadda30d0d2a72a54353258b5c83.json | 1 + ...091b27a005b409e64054a3cad9807ecce636c.json | 1 + ...4ca98335920ce3055676b8729521ca6f6767a.json | 1 + examples/markov_chains/markov_sim.py | 159 + examples/markov_chains/sol.py | 26 + examples/markov_chains/sol_lib.py | 13 + examples/mesa/social_wealth.py | 16 +- examples/rabbits/rabbit_improved_sim.py | 2 +- examples/rabbits/rabbits_basic_sim.py | 2 +- poetry.lock | 4061 +++++++++++++++++ pyproject.toml | 38 + soil/VERSION | 2 +- soil/agents/__init__.py | 15 +- soil/debugging.py | 2 +- soil/environment.py | 17 +- soil/simulation.py | 3 +- soil/time.py | 50 +- soil/utils.py | 2 +- soil/visualization.py | 141 + tests/test_agents.py | 6 +- 30 files changed, 5896 insertions(+), 404 deletions(-) create mode 100644 examples/markov_chains/MarkovChains.ipynb create mode 100644 examples/markov_chains/app.py create mode 100644 examples/markov_chains/cache/09a7a68a80018222f1664b90343892049e1aa11c.json create mode 100644 examples/markov_chains/cache/197dbd44d019bd1193a35cd7a026cc804ebd1050.json create mode 100644 examples/markov_chains/cache/22d10b0cf32c036918f028c264b91bf130ec62f1.json create mode 100644 examples/markov_chains/cache/b64244838e9beadda30d0d2a72a54353258b5c83.json create mode 100644 examples/markov_chains/cache/b83091b27a005b409e64054a3cad9807ecce636c.json create mode 100644 examples/markov_chains/cache/cd74ca98335920ce3055676b8729521ca6f6767a.json create mode 100644 examples/markov_chains/markov_sim.py create mode 100644 examples/markov_chains/sol.py create mode 100644 examples/markov_chains/sol_lib.py create mode 100644 poetry.lock create mode 100644 pyproject.toml create mode 100644 soil/visualization.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eedd09..ff3e24a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.0 UNRELEASED] +## [1.0.0 UNRELEASED] -Version 1.0 introduced multiple changes, especially on the `Simulation` class and anything related to how configuration is handled. +Version 1.0 will introduce multiple changes, especially on the `Simulation` class and anything related to how configuration is handled. For an explanation of the general changes in version 1.0, please refer to the file `docs/notes_v1.0.rst`. ### Added @@ -19,7 +19,6 @@ For an explanation of the general changes in version 1.0, please refer to the fi * The `agent.after` and `agent.at` methods, to avoid having to return a time manually. ### Changed * Configuration schema (`Simulation`) is very simplified. All simulations should be checked -* Agents that wish to * Model / environment variables are expected (but not enforced) to be a single value. This is done to more closely align with mesa * `Exporter.iteration_end` now takes two parameters: `env` (same as before) and `params` (specific parameters for this environment). We considered including a `parameters` attribute in the environment, but this would not be compatible with mesa. * `num_trials` renamed to `iterations` diff --git a/benchmarks/virusonnetwork/soil_states.py b/benchmarks/virusonnetwork/soil_states.py index 266843a..cfb44dc 100644 --- a/benchmarks/virusonnetwork/soil_states.py +++ b/benchmarks/virusonnetwork/soil_states.py @@ -27,7 +27,7 @@ class VirusOnNetwork(Environment): # Infect some nodes infected_nodes = self.random.sample(list(self.G), self.initial_outbreak_size) - for a in self.agents(node_id=infected_nodes): + for a in self.get_agents(node_id=infected_nodes): a.set_state(VirusAgent.infected) assert self.number_infected == self.initial_outbreak_size diff --git a/benchmarks/virusonnetwork/soil_step.py b/benchmarks/virusonnetwork/soil_step.py index 1b91b2a..78831ca 100644 --- a/benchmarks/virusonnetwork/soil_step.py +++ b/benchmarks/virusonnetwork/soil_step.py @@ -33,7 +33,7 @@ class VirusOnNetwork(Environment): # Infect some nodes infected_nodes = self.random.sample(list(self.G), self.initial_outbreak_size) - for a in self.agents(node_id=infected_nodes): + for a in self.get_agents(node_id=infected_nodes): a.status = State.INFECTED assert self.number_infected == self.initial_outbreak_size diff --git a/docs/tutorial/soil_tutorial.ipynb b/docs/tutorial/soil_tutorial.ipynb index a872bc3..53f9086 100644 --- a/docs/tutorial/soil_tutorial.ipynb +++ b/docs/tutorial/soil_tutorial.ipynb @@ -34,20 +34,23 @@ "cell_style": "center", "collapsed": true, "hideCode": false, - "hidePrompt": false + "hidePrompt": false, + "jupyter": { + "outputs_hidden": true + } }, "source": [ "This notebook is an introduction to the soil agent-based social network simulation framework.\n", - "It will focus on a specific use case: studying the propagation of disinformation through TV and social networks.\n", + "Soil is built on top of [Mesa](https://mesa.readthedocs.io/), a general simulation library, and it introduces features specifically tailored to social simulations.\n", "\n", + "It will focus on a specific use case: studying the propagation of disinformation through TV and social networks.\n", + "In the following sections we will:\n", "\n", - "The steps we will follow are:\n", - "\n", - "* Cover some basics about simulations in Soil (environments, agents, etc.)\n", + "* Cover the basics of mesa and Soil (environments, agents, etc.)\n", "* Simulate a basic scenario with a single agent\n", "* Add more complexity to our scenario\n", - "* Running the simulation using different configurations\n", - "* Analysing the results of each simulation\n", + "* Run simulations using different configurations\n", + "* Analyze the results of each simulation\n", "\n", "The simulations in this tutorial will be kept simple, for the sake of clarity.\n", "However, they provide all the building blocks necessary to model, run and analyse more complex scenarios." @@ -69,7 +72,7 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 1, "metadata": { "ExecuteTime": { "end_time": "2017-11-03T10:58:13.451481Z", @@ -81,7 +84,7 @@ "outputs": [], "source": [ "from soil import *\n", - "from soil import analysis\n", + "import soil\n", "import networkx as nx\n", "\n", "import matplotlib.pyplot as plt" @@ -108,18 +111,29 @@ "hidePrompt": false }, "source": [ - "There are two main elements in a soil simulation:\n", + "Simulations are based on the concept of a **model** (or environment).\n", + "A model represents the world where the simulation will be run.\n", + "It usually contains:\n", + "\n", + " * All the simulation parameters (given in the constructor)\n", + " * A reference to every agent in the simulation\n", + " * A data collector, which will capture any relevant information for agents (agent reporters) or the model itself (model reporters)\n", + " * A scheduler (`soil.time.Scheduler` or `mesa.time.BaseScheduler`), which is responsible of coordinating the activation of agents at each simulation step\n", + " * A grid or space where agents can move (optional)\n", " \n", - "* The **environment** or model. It assigns agents to nodes in the network, and stores the environment parameters (shared state for all agents).\n", - " - `soil.NetworkEnvironment` models also contain a network topology (accessible through through `self.G`). A simulation may use an existing NetworkX topology, or generate one on the fly. The `NetworkEnvironment` class is parameterized, which makes it easy to initialize environments with a variety of network topologies. **In this tutorial, we will manually add a network to each environment**.\n", - "* One or more **agents**. Agents are programmed with their individual behaviors, and they can communicate with the environment and with other agents. There are several types of agents, depending on their behavior and their capabilities. Some examples of built-in types of agents are:\n", + "Soil introduces the `soil.NetworkEnvironment` model class.\n", + "This type of environment contain a network topology (accessible through through `self.G`).\n", + "The topology can be manually provided to the environment, or it can be randomly generated through multiple network parameters.\n", + " \n", + "**Agents** are programmed with their individual behaviors, and they can communicate with the environment and with other agents. There are several types of agents, depending on their behavior and their capabilities. Some examples of built-in types of agents are:\n", " - Network agents, which are linked to a node in the topology. They have additional methods to access their neighbors.\n", " - FSM (Finite state machine) agents. Their behavior is defined in terms of states, and an agent will move from one state to another.\n", " - Evented agents, an actor-based model of agents, which can communicate with one another through message passing.\n", " - For convenience, a general `soil.Agent` class is provided, which inherits from Network, FSM and Evented at the same time.\n", "\n", "Soil provides several abstractions over events to make developing agents easier.\n", - "This means you can use events (timeouts, delays) in soil, but for the most part we will assume your models will be step-based o.\n" + "This means you can use events (timeouts, delays) in soil.\n", + "But, for the most part, we will assume your models will be step-based." ] }, { @@ -159,6 +173,23 @@ "We will represent this variance using an additional agent which will not be a part of the social network." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### A simple model" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "class SimpleModel(soil.Environment):\n", + " max_steps_neutral = 3" + ] + }, { "cell_type": "markdown", "metadata": { @@ -184,7 +215,6 @@ ] }, { - "attachments": {}, "cell_type": "markdown", "metadata": { "ExecuteTime": { @@ -201,10 +231,22 @@ "\n", "Agents can access their environment through their ``self.model`` attribute.\n", "This is most commonly used to get access to the environment parameters and methods.\n", - "Here is a simple example of an agent:\n", - "\n", - "\n", - "```python\n", + "Here is a simple example of an agent:" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "ExecuteTime": { + "end_time": "2017-07-03T14:03:07.171127Z", + "start_time": "2017-07-03T16:03:07.165779+02:00" + }, + "hideCode": false, + "hidePrompt": false + }, + "outputs": [], + "source": [ "class ExampleAgent(BaseAgent):\n", " def init(self):\n", " self.is_infected = False\n", @@ -219,15 +261,91 @@ " ... # Do something\n", " self.steps_neutral += 1\n", " if self.steps_neutral > self.model.max_steps_neutral:\n", - " self.is_infected = True\n", - "```\n", - "\n", - "\n", - "\n", + " self.is_infected = True" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "ExecuteTime": { + "end_time": "2017-07-03T14:03:07.171127Z", + "start_time": "2017-07-03T16:03:07.165779+02:00" + }, + "hideCode": false, + "hidePrompt": false + }, + "source": [ "Any kind of agent behavior can be implemented with this `step` function.\n", "dead, it has two main drawbacks: 1) complex behaviors can get difficult both write and understand; 2) these behaviors are not composable." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's see how the agent works:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agent 0 is alive and infected\n", + "Agent 0 is alive and infected\n", + "Agent 0 is alive and infected\n", + "Agent 0 is alive and not infected\n", + "Agent 0 is dead and not infected\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/j/.cache/pypoetry/virtualenvs/soil-cCX5yKRx-py3.10/lib/python3.10/site-packages/mesa/time.py:82: FutureWarning: The AgentSet is experimental. It may be changed or removed in any and all future releases, including patch releases.\n", + "We would love to hear what you think about this new feature. If you have any thoughts, share them with us here: https://github.com/projectmesa/mesa/discussions/1919\n", + " self._agents: AgentSet = AgentSet(agents, model)\n" + ] + } + ], + "source": [ + "model = SimpleModel()\n", + "num_steps = model.max_steps_neutral+2\n", + "a = ExampleAgent(unique_id=0, model=model)\n", + "for i in range(num_steps):\n", + " ret = a.step()\n", + " print(f\"Agent {a.unique_id} is {'alive' if a.alive else 'dead'} and {'infected' if not a.is_infected else 'not infected'}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agent 0 is alive and infected @ 1\n", + "Agent 0 is alive and infected @ 2\n", + "Agent 0 is alive and infected @ 3\n", + "Agent 0 is alive and not infected @ 4\n", + "Agent 0 is dead and not infected @ inf\n" + ] + } + ], + "source": [ + "model = SimpleModel()\n", + "a = model.add_agent(ExampleAgent)\n", + "for i in range(num_steps):\n", + " model.step()\n", + " print(f\"Agent {a.unique_id} is {'alive' if a.alive else 'dead'} and {'infected' if not a.is_infected else 'not infected'} @ {model.now}\")" + ] + }, { "cell_type": "markdown", "metadata": { @@ -254,9 +372,22 @@ "The current state of the agent can be checked with ``agent.state_id``.\n", "That state id can be used to look for other agents in that specific state.\n", "\n", - "Our previous example could be expressed like this:\n", - "\n", - "```python\n", + "Our previous example could be expressed like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "ExecuteTime": { + "end_time": "2017-07-03T14:03:07.171127Z", + "start_time": "2017-07-03T16:03:07.165779+02:00" + }, + "hideCode": false, + "hidePrompt": false + }, + "outputs": [], + "source": [ "class FSMExample(FSM):\n", "\n", " def init(self):\n", @@ -272,38 +403,32 @@ " @state\n", " def infected(self):\n", " ... # Do something\n", - " return self.die(\"No need to do anything else\")\n", - "```" + " return self.die(\"No need to do anything else\")" ] }, { - "attachments": {}, - "cell_type": "markdown", - "metadata": { - "hideCode": false, - "hidePrompt": false - }, + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agent 0 is alive and neutral @ 1\n", + "Agent 0 is alive and neutral @ 2\n", + "Agent 0 is alive and neutral @ 3\n", + "Agent 0 is alive and infected @ 4\n", + "Agent 0 is dead and dead @ inf\n" + ] + } + ], "source": [ - "#### Async agents\n", - "\n", - "Another design pattern that can be very useful in some cases is to model each step (or a specific state) using asynchronous functions (and the `await` keyword).\n", - "Asynchronous functions will be paused on `await`, and resumed at a later step from the same point.\n", - "\n", - "The following agent will do something for `self.model.max_steps` and then stop forever.\n", - "\n", - "\n", - "\n", - "```python\n", - "class AsyncExample(BaseAgent):\n", - " async def step(self):\n", - " for i in range(self.model.max_steps):\n", - " self.do_something()\n", - " await self.delay() # Signal the scheduler that this agent is done for now\n", - " return self.die(\"No need to do anything else\") \n", - "```\n", - "\n", - "Notice that this trivial example could be implemented with a regular `step` and an attribute with the counts of times the agent has run so far.\n", - "By using an `async` we avoid complicating the logic of our function or adding spurious attributes." + "model = SimpleModel()\n", + "a = model.add_agent(FSMExample)\n", + "for i in range(num_steps):\n", + " ret = model.step()\n", + " print(f\"Agent {a.unique_id} is {'alive' if a.alive else 'dead'} and {a.state_id} @ {model.now}\")" ] }, { @@ -316,7 +441,7 @@ "source": [ "#### Telling the scheduler when to wake up an agent\n", "\n", - "By default, every agent will be called in every simulation step, and the time elapsed between two steps is controlled by the `interval` attribute in the environment.\n", + "By default, every agent will be called in every simulation step, and the time elapsed between two steps is controlled by the `default_interval` attribute in the environment.\n", "\n", "But agents may signal the scheduler how long to wait before calling them again by returning (or `yield`ing) a value other than `None`.\n", "This is especially useful when an agent is going to be dormant for a long time.\n", @@ -327,6 +452,44 @@ "This can be done by using the `delay` and `at` methods of each state." ] }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "class FSMExampleDelayed(FSMExample):\n", + " \n", + " @state(default=True)\n", + " def neutral(self):\n", + " return self.infected.delay(self.model.max_steps_neutral)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agent 0 is alive and infected @ 3.0\n", + "Agent 0 is dead and dead @ inf\n", + "Agent 0 is dead and dead @ inf\n", + "Agent 0 is dead and dead @ inf\n", + "Agent 0 is dead and dead @ inf\n" + ] + } + ], + "source": [ + "model = SimpleModel()\n", + "a = model.add_agent(FSMExampleDelayed)\n", + "for i in range(num_steps):\n", + " ret = model.step()\n", + " print(f\"Agent {a.unique_id} is {'alive' if a.alive else 'dead'} and {a.state_id} @ {model.now}\")" + ] + }, { "cell_type": "markdown", "metadata": { @@ -360,7 +523,7 @@ }, { "cell_type": "code", - "execution_count": 65, + "execution_count": 10, "metadata": { "ExecuteTime": { "end_time": "2017-11-03T10:58:17.653736Z", @@ -371,26 +534,24 @@ }, "outputs": [], "source": [ - "import logging\n", - "\n", "class EventGenerator(BaseAgent):\n", - " level = logging.INFO\n", - " \n", - " async def step(self):\n", + " def __init__(self, *args, **kwargs):\n", + " super().__init__(*args, **kwargs)\n", + "\n", + " def step(self):\n", " # Do nothing until the time of the event\n", - " await self.at(self.model.event_time)\n", - " self.info(\"TV event happened\")\n", + " yield self.at(self.model.event_time)\n", + " self.debug(\"TV event happened\")\n", " self.model.prob_tv_spread = 0.5\n", - " self.model.prob_neighbor_spread *= 2\n", - " self.model.prob_neighbor_spread = min(self.model.prob_neighbor_spread, 1)\n", - " await self.delay()\n", + " self.model.prob_neighbor_spread = min(self.model.prob_neighbor_spread*2, 1)\n", + " yield self.delay()\n", " self.model.prob_tv_spread = 0\n", "\n", " while self.alive:\n", " self.model.prob_neighbor_spread = self.model.prob_neighbor_spread * self.model.neighbor_factor\n", " if self.model.prob_neighbor_spread < 0.01:\n", " return self.die(\"neighbors can no longer spread the rumour\")\n", - " await self.delay()" + " yield self.delay()" ] }, { @@ -409,7 +570,7 @@ }, { "cell_type": "code", - "execution_count": 66, + "execution_count": 11, "metadata": { "hideCode": false, "hidePrompt": false @@ -428,7 +589,7 @@ " \n", " # This function initializes the model. It is run right at the end of the `__init__` function.\n", " def init(self):\n", - " self.add_model_reporter(\"prob_tv_spread\")\n", + " self.add_model_reporter(\"prob_tv_spread\") # save prob_tv_spread at every step\n", " self.add_agent(EventGenerator)" ] }, @@ -444,7 +605,7 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": 12, "metadata": { "hideCode": false, "hidePrompt": false @@ -453,7 +614,7 @@ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "913bbb91650841e6afee444b2c1f4636", + "model_id": "86199270e7f74321bfc4481c95942d67", "version_major": 2, "version_minor": 0 }, @@ -464,10 +625,17 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "- Running for parameters: \n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "3febc88a480b4e80aa35dfff331f54f6", + "model_id": "", "version_major": 2, "version_minor": 0 }, @@ -562,15 +730,14 @@ "14.0 5 1 0.0" ] }, - "execution_count": 67, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "it = NewsEnvSimple.run(iterations=1, max_time=14)\n", - "\n", - "it[0].model_df()" + "its = NewsEnvSimple.run(iterations=1, max_time=14)\n", + "its[0].model_df()" ] }, { @@ -587,6 +754,58 @@ "That is because there aren't any other agents in the simulation, and our event generator explicitly waited until `t=10`." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can also get more information if we run the simulation with logging set to DEBUG:" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "468d9985226a4f0cac12f62e566bce1b", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "NewsEnvSimple: 0%| | 0/1 [00:00" ] @@ -744,7 +964,7 @@ }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 17, "metadata": { "hideCode": false, "hidePrompt": false @@ -752,34 +972,30 @@ "outputs": [], "source": [ "class NewsEnvNetwork(Environment):\n", - " \n", " prob_tv_spread = 0\n", " prob_neighbor_spread = 0.1\n", " event_time = 10\n", " neighbor_factor = 0.9\n", "\n", - " \n", " def init(self):\n", " self.add_agent(EventGenerator)\n", " self.G = generate_simple()\n", " self.populate_network(NewsSpread)\n", " self.agent(node_id=0).has_tv = True\n", " self.add_model_reporter('prob_tv_spread')\n", - " self.add_model_reporter('prob_neighbor_spread')" + " self.add_model_reporter('prob_neighbor_spread')\n", + " self.add_agent_reporter('state_id', lambda a: getattr(a, \"state_id\", None))" ] }, { "cell_type": "code", - "execution_count": 72, - "metadata": { - "hideCode": false, - "hidePrompt": false - }, + "execution_count": 18, + "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "450bd9491a774e34bbb8d1454744e83f", + "model_id": "26d045b0cd18418ab14507ac59f5a236", "version_major": 2, "version_minor": 0 }, @@ -790,20 +1006,40 @@ "metadata": {}, "output_type": "display_data" }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "- Running for parameters: \n" + ] + }, { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "b9f8255c3d63430191894f44575e49a1", + "model_id": "", "version_major": 2, "version_minor": 0 }, "text/plain": [ - " 0%| | 0/1 [00:000\n", " 6\n", " 0.0\n", - " 0.100000\n", + " 0.1\n", " \n", " \n", " 1.0\n", " 1\n", " 6\n", " 0.0\n", - " 0.100000\n", + " 0.1\n", " \n", " \n", " 2.0\n", " 2\n", " 6\n", " 0.0\n", - " 0.100000\n", + " 0.1\n", " \n", " \n", " 3.0\n", " 3\n", " 6\n", " 0.0\n", - " 0.100000\n", + " 0.1\n", " \n", " \n", " 4.0\n", " 4\n", " 6\n", " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 5.0\n", - " 5\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 6.0\n", - " 6\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 7.0\n", - " 7\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 8.0\n", - " 8\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 9.0\n", - " 9\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 10.0\n", - " 10\n", - " 6\n", - " 0.0\n", - " 0.100000\n", - " \n", - " \n", - " 11.0\n", - " 11\n", - " 6\n", - " 0.5\n", - " 0.200000\n", - " \n", - " \n", - " 12.0\n", - " 12\n", - " 6\n", - " 0.0\n", - " 0.180000\n", - " \n", - " \n", - " 13.0\n", - " 13\n", - " 6\n", - " 0.0\n", - " 0.162000\n", - " \n", - " \n", - " 14.0\n", - " 14\n", - " 6\n", - " 0.0\n", - " 0.145800\n", - " \n", - " \n", - " 15.0\n", - " 15\n", - " 6\n", - " 0.0\n", - " 0.131220\n", - " \n", - " \n", - " 16.0\n", - " 16\n", - " 6\n", - " 0.0\n", - " 0.118098\n", - " \n", - " \n", - " 17.0\n", - " 17\n", - " 6\n", - " 0.0\n", - " 0.106288\n", - " \n", - " \n", - " 18.0\n", - " 18\n", - " 6\n", - " 0.0\n", - " 0.095659\n", - " \n", - " \n", - " 19.0\n", - " 19\n", - " 6\n", - " 0.0\n", - " 0.086093\n", - " \n", - " \n", - " 20.0\n", - " 20\n", - " 6\n", - " 0.0\n", - " 0.077484\n", + " 0.1\n", " \n", " \n", "\n", @@ -993,37 +1117,80 @@ "text/plain": [ " step agent_count prob_tv_spread prob_neighbor_spread\n", "time \n", - "0.0 0 6 0.0 0.100000\n", - "1.0 1 6 0.0 0.100000\n", - "2.0 2 6 0.0 0.100000\n", - "3.0 3 6 0.0 0.100000\n", - "4.0 4 6 0.0 0.100000\n", - "5.0 5 6 0.0 0.100000\n", - "6.0 6 6 0.0 0.100000\n", - "7.0 7 6 0.0 0.100000\n", - "8.0 8 6 0.0 0.100000\n", - "9.0 9 6 0.0 0.100000\n", - "10.0 10 6 0.0 0.100000\n", - "11.0 11 6 0.5 0.200000\n", - "12.0 12 6 0.0 0.180000\n", - "13.0 13 6 0.0 0.162000\n", - "14.0 14 6 0.0 0.145800\n", - "15.0 15 6 0.0 0.131220\n", - "16.0 16 6 0.0 0.118098\n", - "17.0 17 6 0.0 0.106288\n", - "18.0 18 6 0.0 0.095659\n", - "19.0 19 6 0.0 0.086093\n", - "20.0 20 6 0.0 0.077484" + "0.0 0 6 0.0 0.1\n", + "1.0 1 6 0.0 0.1\n", + "2.0 2 6 0.0 0.1\n", + "3.0 3 6 0.0 0.1\n", + "4.0 4 6 0.0 0.1" ] }, - "execution_count": 72, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "it = NewsEnvNetwork.run(max_time=20)\n", - "it[0].model_df()" + "it = []\n", + "for i in range(3):\n", + " env = NewsEnvNetwork(seed=i+5)\n", + " for i in range(50):\n", + " env.step()\n", + " it.append(env)\n", + "it[0].model_df().head()" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "90f0eab223de4c0cb834633fe037ae2f", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "NewsEnvNetwork: 0%| | 0/1 [00:00" + ] + }, + "metadata": {}, + "output_type": "display_data" }, { "data": { - "image/png": "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JCuGESIiIpIVwwgRERHJimGEiIiIZMUwQkRERLJiGCEiIiJZMYwQERGRrByeDl4Olkli8/PzZS4JERER2cvyvV3bZO+qCCMFBQUAgLCwMJlLQkRERI4qKChAQEBAtZ+rYm0as9mMixcvws/PDxqNxmnnzc/PR1hYGM6fP++2a964+z3y/tTP3e+R96d+7n6Prrw/IQQKCgoQGhpqs4juzVRRM6LVatGmTRuXnd/f398t/4JV5u73yPtTP3e/R96f+rn7Pbrq/mqqEbFgB1YiIiKSFcMIERERyapRhxG9Xo+5c+dCr9fLXRSXcfd75P2pn7vfI+9P/dz9HpVwf6rowEpERETuq1HXjBAREZH8GEaIiIhIVgwjREREJCuGESIiIpKV24eRFStWIDw8HAaDAbGxsTh48GCN+2/evBldu3aFwWBAz5498eWXXzZQSR2XnJyMfv36wc/PDy1btsSoUaNw6tSpGo9Zt24dNBqNzWYwGBqoxI555ZVXbilr165dazxGTc8PAMLDw2+5R41Gg2nTplW5v9Kf37fffov7778foaGh0Gg02Lp1q83nQgjMmTMHrVq1gre3N+Lj4/Hrr7/Wel5Hf49dpab7KysrwwsvvICePXuiSZMmCA0Nxbhx43Dx4sUaz1mXv+euVNsznDBhwi3lHT58eK3nVcMzBFDl76NGo8GiRYuqPaeSnqE93wslJSWYNm0amjdvDl9fXzz00EPIycmp8bx1/d21l1uHkU2bNiEpKQlz585FRkYGevfujWHDhuHy5ctV7r9//36MGTMGkyZNwuHDhzFq1CiMGjUKP//8cwOX3D579+7FtGnTcODAAezatQtlZWUYOnQorl+/XuNx/v7+uHTpknU7d+5cA5XYcd27d7cp6/fff1/tvmp7fgDw448/2tzfrl27AAD/93//V+0xSn5+169fR+/evbFixYoqP3/99dfx5ptvYtWqVfjhhx/QpEkTDBs2DCUlJdWe09HfY1eq6f6KioqQkZGB2bNnIyMjA5999hlOnTqFkSNH1npeR/6eu1ptzxAAhg8fblPef/3rXzWeUy3PEIDNfV26dAlr1qyBRqPBQw89VON5lfIM7fleeO655/Cf//wHmzdvxt69e3Hx4kU8+OCDNZ63Lr+7DhFurH///mLatGnW1yaTSYSGhork5OQq93/kkUfEfffdZ/NebGyseOqpp1xaTme5fPmyACD27t1b7T5r164VAQEBDVeoepg7d67o3bu33fur/fkJIcT06dNFx44dhdlsrvJzNT0/AGLLli3W12azWYSEhIhFixZZ38vNzRV6vV7861//qvY8jv4eN5Sb768qBw8eFADEuXPnqt3H0b/nDamqexw/frx44IEHHDqPmp/hAw88IO66664a91HyM7z5eyE3N1d4enqKzZs3W/c5ceKEACDS0tKqPEddf3cd4bY1I0ajEenp6YiPj7e+p9VqER8fj7S0tCqPSUtLs9kfAIYNG1bt/kqTl5cHAGjWrFmN+xUWFqJdu3YICwvDAw88gGPHjjVE8erk119/RWhoKDp06ICxY8ciKyur2n3V/vyMRiPWr1+Pxx9/vMYFIdX0/CrLzMxEdna2zTMKCAhAbGxstc+oLr/HSpKXlweNRoPAwMAa93Pk77kSpKamomXLlujSpQumTJmCP/74o9p91fwMc3JysH37dkyaNKnWfZX6DG/+XkhPT0dZWZnN8+jatSvatm1b7fOoy++uo9w2jFy9ehUmkwnBwcE27wcHByM7O7vKY7Kzsx3aX0nMZjOeffZZ3HbbbejRo0e1+3Xp0gVr1qzB559/jvXr18NsNmPgwIG4cOFCA5bWPrGxsVi3bh127NiBlStXIjMzE4MGDUJBQUGV+6v5+QHA1q1bkZubiwkTJlS7j5qe380sz8GRZ1SX32OlKCkpwQsvvIAxY8bUuPiYo3/P5TZ8+HB8+OGHSElJwWuvvYa9e/dixIgRMJlMVe6v5mf4wQcfwM/Pr9YmDKU+w6q+F7Kzs+Hl5XVLQK7tu9Gyj73HOEoVq/ZS7aZNm4aff/651nbKuLg4xMXFWV8PHDgQkZGReOedd7BgwQJXF9MhI0aMsP65V69eiI2NRbt27fDJJ5/Y9S8VtXn//fcxYsQIhIaGVruPmp5fY1ZWVoZHHnkEQgisXLmyxn3V9vf80Ucftf65Z8+e6NWrFzp27IjU1FTcfffdMpbM+dasWYOxY8fW2klcqc/Q3u8FJXDbmpGgoCDodLpbegjn5OQgJCSkymNCQkIc2l8pEhMTsW3bNuzZswdt2rRx6FhPT0/06dMHp0+fdlHpnCcwMBCdO3eutqxqfX4AcO7cOezevRtPPPGEQ8ep6flZnoMjz6guv8dyswSRc+fOYdeuXQ4vyV7b33Ol6dChA4KCgqotrxqfIQB89913OHXqlMO/k4AynmF13wshISEwGo3Izc212b+270bLPvYe4yi3DSNeXl6Ijo5GSkqK9T2z2YyUlBSbf1lWFhcXZ7M/AOzatava/eUmhEBiYiK2bNmCb775Bu3bt3f4HCaTCUePHkWrVq1cUELnKiwsxJkzZ6otq9qeX2Vr165Fy5Ytcd999zl0nJqeX/v27RESEmLzjPLz8/HDDz9U+4zq8nssJ0sQ+fXXX7F79240b97c4XPU9vdcaS5cuIA//vij2vKq7RlavP/++4iOjkbv3r0dPlbOZ1jb90J0dDQ8PT1tnsepU6eQlZVV7fOoy+9uXQrutjZu3Cj0er1Yt26dOH78uHjyySdFYGCgyM7OFkII8dhjj4kXX3zRuv++ffuEh4eHWLx4sThx4oSYO3eu8PT0FEePHpXrFmo0ZcoUERAQIFJTU8WlS5esW1FRkXWfm+9x3rx5YufOneLMmTMiPT1dPProo8JgMIhjx47JcQs1mjFjhkhNTRWZmZli3759Ij4+XgQFBYnLly8LIdT//CxMJpNo27ateOGFF275TG3Pr6CgQBw+fFgcPnxYABBLly4Vhw8fto4mWbhwoQgMDBSff/65+Omnn8QDDzwg2rdvL4qLi63nuOuuu8Rbb71lfV3b77FS7s9oNIqRI0eKNm3aiCNHjtj8TpaWllZ7f7X9PW9oNd1jQUGBmDlzpkhLSxOZmZli9+7dom/fviIiIkKUlJRYz6HWZ2iRl5cnfHx8xMqVK6s8h5KfoT3fC08//bRo27at+Oabb8ShQ4dEXFyciIuLszlPly5dxGeffWZ9bc/vbn24dRgRQoi33npLtG3bVnh5eYn+/fuLAwcOWD8bPHiwGD9+vM3+n3zyiejcubPw8vIS3bt3F9u3b2/gEtsPQJXb2rVrrfvcfI/PPvus9ecRHBws7r33XpGRkdHwhbdDQkKCaNWqlfDy8hKtW7cWCQkJ4vTp09bP1f78LHbu3CkAiFOnTt3ymdqe3549e6r8O2m5B7PZLGbPni2Cg4OFXq8Xd9999y333a5dOzF37lyb92r6PW5INd1fZmZmtb+Te/bssZ7j5vur7e95Q6vpHouKisTQoUNFixYthKenp2jXrp2YPHnyLaFCrc/Q4p133hHe3t4iNze3ynMo+Rna871QXFwspk6dKpo2bSp8fHzE6NGjxaVLl245T+Vj7PndrQ/NjYsSERERycJt+4wQERGROjCMEBERkawYRoiIiEhWDCNEREQkK4YRIiIikhXDCBEREcmKYYSIiIhkxTBCREREsmIYISKXSE1NhUajuWVBLiKim3EGViJyiiFDhiAqKgrLly8HABiNRvzvf/9DcHAwNBqNvIUjIkXzkLsAROSevLy8FL1EPBEpB5tpiKjeJkyYgL179+KNN96ARqOBRqPBunXrbJpp1q1bh8DAQGzbtg1dunSBj48PHn74YRQVFeGDDz5AeHg4mjZtimeeeQYmk8l67tLSUsycOROtW7dGkyZNEBsbi9TUVHlulIhcgjUjRFRvb7zxBn755Rf06NED8+fPBwAcO3bslv2Kiorw5ptvYuPGjSgoKMCDDz6I0aNHIzAwEF9++SV+++03PPTQQ7jtttuQkJAAAEhMTMTx48exceNGhIaGYsuWLRg+fDiOHj2KiIiIBr1PInINhhEiqreAgAB4eXnBx8fH2jRz8uTJW/YrKyvDypUr0bFjRwDAww8/jI8++gg5OTnw9fVFt27dcOedd2LPnj1ISEhAVlYW1q5di6ysLISGhgIAZs6ciR07dmDt2rX4xz/+0XA3SUQuwzBCRA3Gx8fHGkQAIDg4GOHh4fD19bV57/LlywCAo0ePwmQyoXPnzjbnKS0tRfPmzRum0ETkcgwjRNRgPD09bV5rNJoq3zObzQCAwsJC6HQ6pKenQ6fT2exXOcAQkboxjBCRU3h5edl0PHWGPn36wGQy4fLlyxg0aJBTz01EysHRNETkFOHh4fjhhx9w9uxZXL161Vq7UR+dO3fG2LFjMW7cOHz22WfIzMzEwYMHkZycjO3btzuh1ESkBAwjROQUM2fOhE6nQ7du3dCiRQtkZWU55bxr167FuHHjMGPGDHTp0gWjRo3Cjz/+iLZt2zrl/EQkP87ASkRERLJizQgRERHJimGEiIiIZMUwQkRERLJiGCEiIiJZMYwQERGRrBhGiIiISFYMI0RERCQrhhEiIiKSFcMIERERyYphhIiIiGTFMEJERESy+v9z5vDvveZlkgAAAABJRU5ErkJggg==", + "image/png": "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JE899RTPP/88t99+O/v27SMqKorTp09z9dVXc9ddd/HMM8+QkZHBww8/zM0338x///vfIq83bNgwTpw4wZIlS/D39yc5OZljx455dF+HBx98kGeffZaYmBgeeeQRBg4cyC+//IK/v7/b78/572tJnnvuOT777DPee+89mjRpwoEDBzhw4IDLMZMmTWLGjBk8++yzvPXWW9xyyy1s2rSJdu3aOY+ZMGECs2bNonPnzs5wM3nyZF544QU6d+7Mhg0bGD16NKGhoQwfPhwwZ4qeN28eDRs2ZNOmTYwePZrw8HAeeughAN577z0effRR5syZw+WXX85bb73Fc889R/PmzUt9XZWKUQUcOHDAAIwDBw74uigiXvP0NzuMpg9/brR85Auj6cOfG6PmrTEMwzDSN202trZpa2xP7GbY8/J8XMrqLyMjw9i6dauRkZFh7sg6ZxhTavlmyzrndrmvuuoqo127dobdbnfue/jhh4127doZhmEYTZs2NQYNGuRyzm233Wb07dvXZd+DDz5oxMfHOx83bdrU6N+/v8sxQ4cONQYMGOBWuQDjH//4h/PxuXPnDMD46quvDMMwjOnTpxvXXHONyzmOf/N37NjhfG3jxo0zDMMwtm3bZgDGjz/+6Dx+586dBmA888wzbt/3+++/NwBjwYIFzmNOnjxpBAcHGwsXLvTo/Tn/fS3JX/7yF+Pqq692+f9UGGDcc889Lvt69Ohh3HvvvYZhGMaePXsMwJg9e7bLMS1atDDeeecdl33Tp083kpKSii3LU089ZXTt2tX5OCkpybjvvvsuuHdCQkKJr+mC35lCfPH9rRobkUrCMY9N3bBADp/JdPa5CWrTGktwMPbUVLJ//ZXAli19Wcyaxz/ErDnx1b09cOmll2KxWJyPk5KSmDVrFnl55mcpMTHR5fht27Zxww03uOzr2bMns2fPJi8vD5vN5rxOYUlJSR6NlOrYsaPz59DQUGrVquWsYfnpp5/4/vvvCQsLu+C83bt307p1a5d9O3bswM/Pjy5dujj3tWzZktq1a3t038KvxSEqKoo2bdqwbds2wP335/z3tSQjRoygb9++tGnThv79+3P99ddzzTXXFFsmx+ON5zVFF75nWloau3fvZtSoUc7aOYDc3FwiIiKcjxcuXMhzzz3H7t27OXfuHLm5uS4Li27btu2CFdSTkpL4/vvv3X59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1HnYXampqdxxxx288sor1K1b1+3zzq+iOntW/1BL9eWcoO8iOg87+EfXh+iKG+5aHRmZmWC1EtCsGYFVqEnviJ8fMWFhBLZs6dx3LDCQ7JAQAlu2pFeLFkS/8gpDxo3jySefpHXr1vz222988cUXDB48mMTERLoOuoF/vPwSC1esICkpibfffptvt2+jc+fOzusGt2rFoo0buTO/OSoqKoq8gwfZnZ2Nf7NmBBYalRTSujVvLF5Mrz/9CYvFwqRJk/g1J5vThcq53zBIi6rtUu7CLqtdm83338+urCw6dDCbSax+fuzOzsZo1MjlvIy6ddmbl+vcd+P99zN69Gha9OrFZZddxsKFC/l661aaN2/uPOZkSAins7NdrnM6LIwjfn7Ofba4OL7ctInrg4MJDAx0fp+tXLKEQ1Yr3YYMIdCDTt41UXh4OLUKNXEW5cCBA4wbN45vv/32giYtT3jUebhu3brYbDaOHj3qsv/o0aMXdKgC2L17N3v37mXgwIH4+fnh5+fHm2++yWeffYafn5+GyIkAGTmOUVHFDff2XvWw1BwWi4Uvv/ySK6+80tmZ9pZbbmHfvn3OWvh+/foxadIkHnroIbp160ZqairDhg1zuc748eOx2WzEx8dTr1499u/fX+w9n376aWrXrs1ll13GwIED6devH126dCn2+KLUqVOHwYMHl2kivNtvv52JEycyfvx4unTpwp49exgxYoTHX5rTpk1j7969tGjRgnr16jn3v/vuu9x+++2EKNSUi3Xr1nHs2DG6dOnizAxLly7lueeew8/Pj7w89/7IK1Pn4e7duzur7ex2O02aNGHs2LEXdB7OzMxk165dLvv+8Y9/kJqayrPPPkvr1q0JCAgo9Z6OzkfqPCzV0V/f3cBnP/3GP65rx11XNHfuX/3rSYb+axXN64Xy3wd6+a6ANUxJHSHFN37++Wf69u3L7t27XTotl0Xfvn2JiYnhrbfeuqjrnDhxgjZt2rB27doLho/XNO50Hnbn+zs1NfWCEWYjR46kbdu2PPzww84au9J43BSVnJzM8OHDSUxMpHv37syePZu0tDRGjhwJwLBhw4iNjSUlJYWgoKALCuLoWe9uAUWqu/RillRwNkWVsqSCSHXXsWNH/vnPf7Jnz54ih2sXJz09nZdeeol+/fphs9l49913+e677/j2228vukx79+7lxRdf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3xTWx0p7r0aMGHHB56x///6+KayPpaSk0K1bN8LDw6lfvz6DBg1ix44dLsdkZmYyZswY6tSpQ1hYGDfeeKNz6ZmaxJ33qlevXhd8tu655x4fldh35s6dS8eOHalVqxa1atUiKSmJr776yvl8dfpM1dhgs3DhQpKTk5kyZQrr168nISGBfv36cezYMV8XrdJp3749hw8fdm4//PCDr4tUKaSlpZGQkMCcOXOKfP7JJ5/kueee46WXXmL16tWEhobSr18/MjMzK7ikvlfaewXQv39/l8/Zu+++W4ElrDyWLl3KmDFjWLVqFd9++y05OTlcc801pKWlOY/529/+xn/+8x/ef/99li5dym+//caQIUN8WGrfcOe9Ahg9erTLZ+vJJ5/0UYl9p1GjRsyYMYN169axdu1arr76am644Qa2bNkCVLPPlFFDde/e3RgzZozzcV5entGwYUMjJSXFh6WqfKZMmWIkJCT4uhiVHmB8/PHHzsd2u92IiYkxnnrqKee+06dPG4GBgca7777rgxJWHue/V4ZhGMOHDzduuOEGn5Snsjt27JgBGEuXLjUMw/wc+fv7G++//77zmG3bthmAsXLlSl8Vs1I4/70yDMO46qqrjHHjxvmuUJVY7dq1jVdffbXafaZqZI1NdnY269ato0+fPs59VquVPn36sHLlSh+WrHLauXMnDRs2pHnz5tx+++3s37/f10Wq9Pbs2cORI0dcPmMRERH06NFDn7FiLFmyhPr169OmTRvuvfdeTp486esiVQpnzpwBICoqCoB169aRk5Pj8tlq27YtTZo0qfGfrfPfK4f58+dTt25dOnTowMSJE0lPT/dF8SqNvLw8FixYQFpaGklJSdXuM1UxS21WMidOnCAvL4/o6GiX/dHR0Wzfvt1HpaqcevTowbx582jTpg2HDx9m6tSpXHHFFWzevFkr5pbgyJEjAEV+xhzPSYH+/fszZMgQmjVrxu7du3nkkUcYMGAAK1euxGaz+bp4PmO327n//vvp2bMnHTp0AMzPVkBAAJGRkS7H1vTPVlHvFcBtt91G06ZNadiwIT///DMPP/wwO3bs4KOPPvJhaX1j06ZNJCUlkZmZSVhYGB9//DHx8fFs3LixWn2mamSwEfcNGDDA+XPHjh3p0aMHTZs25b333mPUqFE+LJlUJ7fccovz50suuYSOHTvSokULlixZQu/evX1YMt8aM2YMmzdvVr82NxT3Xt19993Ony+55BIaNGhA79692b17Ny1atKjoYvpUmzZt2LhxI2fOnOGDDz5g+PDhLF261NfFKnc1simqbt262Gy2C3p8Hz16lJiYGB+VqmqIjIykdevW7Nq1y9dFqdQcnyN9xsqmefPm1K1bt0Z/zsaOHcvnn3/O999/T6NGjZz7Y2JiyM7O5vTp0y7H1+TPVnHvVVF69OgBUCM/WwEBAbRs2ZKuXbuSkpJCQkICzz77bLX7TNXIYBMQEEDXrl1ZvHixc5/dbmfx4sUkJSX5sGSV37lz59i9ezcNGjTwdVEqtWbNmhETE+PyGTt79iyrV6/WZ8wNBw8e5OTJkzXyc2YYBmPHjuXjjz/mv//9L82aNXN5vmvXrvj7+7t8tnbs2MH+/ftr3GertPeqKBs3bgSokZ+t89ntdrKysqrfZ8rXvZd9ZcGCBUZgYKAxb948Y+vWrcbdd99tREZGGkeOHPF10SqVBx54wFiyZImxZ88eY/ny5UafPn2MunXrGseOHfN10XwuNTXV2LBhg7FhwwYDMJ5++mljw4YNxr59+wzDMIwZM2YYkZGRxqeffmr8/PPPxg033GA0a9bMyMjI8HHJK15J71Vqaqoxfvx4Y+XKlcaePXuM7777zujSpYvRqlUrIzMz09dFr3D33nuvERERYSxZssQ4fPiwc0tPT3cec8899xhNmjQx/vvf/xpr1641kpKSjKSkJB+W2jdKe6927dplTJs2zVi7dq2xZ88e49NPPzWaN29uXHnllT4uecWbMGGCsXTpUmPPnj3Gzz//bEyYMMGwWCzGN998YxhG9fpM1dhgYxiG8fzzzxtNmjQxAgICjO7duxurVq3ydZEqnaFDhxoNGjQwAgICjNjYWGPo0KHGrl27fF2sSuH77783gAu24cOHG4ZhDvmeNGmSER0dbQQGBhq9e/c2duzY4dtC+0hJ71V6erpxzTXXGPXq1TP8/f2Npk2bGqNHj66xf2QU9T4Bxuuvv+48JiMjw7jvvvuM2rVrGyEhIcbgwYONw4cP+67QPlLae7V//37jyiuvNKKioozAwECjZcuWxoMPPmicOXPGtwX3gTvvvNNo2rSpERAQYNSrV8/o3bu3M9QYRvX6TFkMwzAqrn5IRERExHtqZB8bERERqZ4UbERERKTaULARERGRakPBRkRERKoNBRsRERGpNhRsREREpNpQsBEREZFqQ8FGREREqg0FGxHxiiVLlmCxWC5YWE9ExJs087CIlItevXrRqVMnZs+eDUB2dja///470dHRWCwW3xZORGoMP18XQESqp4CAAGJiYnxdDBGpYdQUJSIXbcSIESxdupRnn30Wi8WCxWJh3rx5Lk1R8+bNIzIyks8//5w2bdoQEhLCTTfdRHp6Om+88QZxcXHUrl2bv/71r+Tl5TmvnZWVxfjx44mNjSU0NJQePXqwZMkS37xQEan0VGMjIhft2Wef5ZdffqFDhw5MmzYNgC1btlxwXHp6Os899xwLFiwgNTWVIUOGMHjwYCIjI/nyyy/59ddfufHGG+nZsydDhw4FYOzYsWzdupUFCxbQsGFDPv74Y/r378+mTZto1apVhb5OEan8FGxE5KJFREQQEBBASEiIs/lp+/btFxyXk5PD3LlzadGiBQA33XQTb731FkePHiUsLIz4+Hj+8Ic/8P333zN06FD279/P66+/zv79+2nYsCEA48ePZ9GiRbz++us88cQTFfciRaRKULARkQoTEhLiDDUA0dHRxMXFERYW5rLv2LFjAGzatIm8vDxat27tcp2srCzq1KlTMYUWkSpFwUZEKoy/v7/LY4vFUuQ+u90OwLlz57DZbKxbtw6bzeZyXOEwJCLioGAjIuUiICDApdNveejcuTN5eXkcO3aMK664olyvLSLVk0ZFiUi5iIuLY/Xq1ezdu5cTJ044a10uRuvWrbn99tsZNmwYH330EXv27GHNmjWkpKTwxRdflEOpRaS6UbARkXIxfvx4bDYb8fHx1KtXj/3795fLdV9//XWGDRvGAw88QJs2bRg0aBA//vgjTZo0KZfri0j1opmHRUREpNpQjY2IiIhUGwo2IiIiUm0o2IiIiEi1oWAjIiIi1YaCjYiIiFQbCjYiIiJSbSjYiIiISLWhYCMiIiLVhoKNiIiIVBsKNiIiIlJtKNiIiIhItfH/fjci8OMACpoAAAAASUVORK5CYII=", "text/plain": [ - "
" + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" ] }, "metadata": {}, @@ -1065,7 +1245,9 @@ } ], "source": [ - "analysis.plot(it[0])" + "from soil import analysis\n", + "for res in it:\n", + " analysis.plot(res)" ] }, { @@ -1092,7 +1274,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 28, "metadata": { "hideCode": false, "hidePrompt": false @@ -1119,12 +1301,464 @@ "\n", " self.populate_network([NewsSpread,\n", " NewsSpread.w(has_tv=True)],\n", - " [1-self.prob_tv, self.prob_tv])\n", + " [1-self.prob_tv, self.prob_tv])\n", " self.add_model_reporter('prob_tv_spread')\n", " self.add_model_reporter('prob_neighbor_spread')\n", " self.add_agent_reporter('state_id', lambda a: getattr(a, \"state_id\", None))" ] }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "11" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list(its.values())[0][3].count_agents(state_id='infected')" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "522fa16a8a52488781e69f025ec51cc1", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + "newspread: 0%| | 0/1 [00:00" ] @@ -1593,7 +2241,7 @@ }, { "cell_type": "code", - "execution_count": 80, + "execution_count": 48, "metadata": { "hideCode": false, "hidePrompt": false @@ -1601,7 +2249,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAiMAAAHHCAYAAABtF1i4AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjYuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/av/WaAAAACXBIWXMAAA9hAAAPYQGoP6dpAADI4ElEQVR4nOzdd3gUVdvA4d+W7Kb3BiEQOoRO6BZaMKAiKKLiq0hVFFBAVHhVUEADKk1FsQKCFUTk/QBpUqQLCFJClRBKCi092TrfH5ENSzokbMpzX9deZmfOzHlmMZlnzzlzjkpRFAUhhBBCCAdROzoAIYQQQlRtkowIIYQQwqEkGRFCCCGEQ0kyIoQQQgiHkmRECCGEEA4lyYgQQgghHEqSESGEEEI4lCQjQgghhHAoSUaEEEII4VCSjAjhYG+99RYqlcohdf/555906tQJNzc3VCoVBw4cyLfc5s2bUalUbN68+ZbqSUxM5NFHH8XPzw+VSsWcOXNuOeY77XavXQhRNElGhLjJwoULUalUtpdWqyUkJIRBgwZx4cKFWzpnZmYmb731Vrm6oZlMJvr378/Vq1eZPXs2ixcvplatWmVS19ixY1m7di0TJ05k8eLF9OzZs9TrePfdd1mxYkWpn1cIUfa0jg5AiPJqypQp1K5dm+zsbHbt2sXChQvZtm0bhw8fxtnZuUTnyszM5O233wagS5cudvveeOMNJkyYUFphF9vp06c5e/YsX3zxBcOGDSu07L333ktWVhY6ne6W6vr999/p06cP48ePv6Xji+Pdd9/l0UcfpW/fvmVWhxCibEgyIkQBevXqRZs2bQAYNmwY/v7+zJgxg5UrV/LYY4+VWj1arRat9s7/KiYlJQHg7e1dZFm1Wl3iBOzmuopTj7h9VqsVo9F4W/9eQtxp0k0jRDHdc889QE6LwnVGo5FJkyYRERGBl5cXbm5u3HPPPWzatMlWJjY2loCAAADefvttW/fPW2+9BeQ/ZsRsNjN16lTq1q2LXq8nLCyM//73vxgMhmLF+vvvv3PPPffg5uaGt7c3ffr0ISYmxrZ/0KBBdO7cGYD+/fujUqnytNjcKL9xE126dKFp06YcPXqUrl274urqSkhICO+9956tzPUuL0VRmDdvnu3ar0tOTmbMmDGEhoai1+upV68eM2bMwGq12tVvtVqZO3cuzZo1w9nZmYCAAHr27MnevXsBUKlUZGRksGjRIlsdgwYNsh1/4cIFhgwZQlBQEHq9niZNmvD111/nuc7z58/Tt29f3NzcCAwMZOzYscX+zAcNGkRYWFie7fn9+65fv567774bb29v3N3dadiwIf/973/tyhgMBiZPnky9evXQ6/WEhoby6quv5olHpVIxatQovv32W5o0aYJer+e3334D4IcffiAiIgIPDw88PT1p1qwZc+fOLdb1CHEnScuIEMUUGxsLgI+Pj21bamoqX375JQMGDGD48OGkpaXx1VdfERUVxZ49e2jZsiUBAQF8+umnPP/88zz88MM88sgjADRv3rzAuoYNG8aiRYt49NFHefnll9m9ezfR0dHExMTwyy+/FBrnhg0b6NWrF3Xq1OGtt94iKyuLjz76iLvuuov9+/cTFhbGc889R0hICO+++y4vvvgibdu2JSgoqMSfybVr1+jZsyePPPIIjz32GMuWLeO1116jWbNm9OrVi3vvvZfFixfz9NNP06NHDwYOHGg7NjMzk86dO3PhwgWee+45atasyY4dO5g4cSLx8fF2g1yHDh3KwoUL6dWrF8OGDcNsNvPHH3+wa9cu2rRpw+LFixk2bBjt2rXj2WefBaBu3bpAzuDZDh062G7aAQEBrFmzhqFDh5KamsqYMWMAyMrKonv37sTFxfHiiy9SvXp1Fi9ezO+//17iz6UwR44c4cEHH6R58+ZMmTIFvV7PqVOn2L59u62M1WrloYceYtu2bTz77LM0btyYQ4cOMXv2bE6cOJFnbMzvv//OTz/9xKhRo/D39ycsLIz169czYMAAunfvzowZMwCIiYlh+/btvPTSS6V6TULcNkUIYWfBggUKoGzYsEG5dOmScu7cOWXZsmVKQECAotfrlXPnztnKms1mxWAw2B1/7do1JSgoSBkyZIht26VLlxRAmTx5cp76Jk+erNz4q3jgwAEFUIYNG2ZXbvz48Qqg/P7774XG37JlSyUwMFC5cuWKbdvBgwcVtVqtDBw40LZt06ZNCqAsXbq08A/khrKbNm2ybevcubMCKN98841tm8FgUIKDg5V+/frZHQ8oI0eOtNs2depUxc3NTTlx4oTd9gkTJigajUaJi4tTFEVRfv/9dwVQXnzxxTxxWa1W289ubm7KM888k6fM0KFDlWrVqimXL1+22/7EE08oXl5eSmZmpqIoijJnzhwF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QY/etfA1aXZc3EF8RjyeOk961OqRZ3/8mpMApJGFV5P6efaXlhMnpnHy5DRijr1WZnUIIW5fhw4d7FopO3bsyMmTJ7H82527b98+evfuTc2aNfHw8KBz584AeVo42rRpY/c+PT2d8ePH07hxY7y9vXF3dycmJibPcR07dszzPiYmxvZ+w4YNdO/enZCQEDw8PHj66ae5cuUKmZmZALz44otMmzaNu+66i8mTJ/P333/f0udgsViYOnUqzZo1w9fXF3d3d9auXZsn3psVFv/BgwdJT0/Hz88Pd3d32+vMmTOcPn3adkytWrXsEpGqSlpGyrmsy+dBB55hjYosW9jAVavFgibZA9Sgq1V240YuX95EQuIKQE2NGgPLrB4hyrtn53YucJ/qpq+BQ96/p+CyN/VoDnyn0+2EVWwZGRlERUURFRXFt99+S0BAAHFxcURFReUZaOnm5mb3fvz48axfv54PPviAevXq4eLiwqOPPlqiAZqxsbE8+OCDPP/887zzzjv4+vqybds2hg4ditFoxNXVlWHDhhEVFcWqVatYt24d0dHRzJw5k9GjR5foWt9//33mzp3LnDlzbGNUxowZU+IBpTdKT0+nWrVqbN68Oc8+b29v2883f3ZlLTg4mMTERLttiYmJZdIKUxKSjJRjSXHnyXJSABUtHu5baFm7gav5zS2yZheuai1mRaHGYx3KINqcBe2OHX8DgJqhg/HybFHEEUJUXk764k8oWFZli7J7926797t27aJ+/fpoNBqOHTvGlStXmD59um3Mwt69e4t13u3btzNo0CAefvhhIOfGnN8gzF27duV537hxzlIP+/btw2q1MnPmTNTqnOztp59+ynOO0NBQRowYwYgRI5g4cSJffPFFiZOR7du306dPH5566ikArFYrJ06cIDw8vNDjCou/devWJCQkoNVqCQsLK1E8Op3O1jpV2jp27MjGjRvtusDWr1+fp5XnTpNumnJsx+LvUVQq9CYr4XcVPuZixakVWBQLrQNbU9e7bp7913ZfAyBDm4azv2+ZxHvy1HQMhgRcXGpRp87YMqlDCFF64uLiGDduHMePH+f777/no48+4qWXXgKgZs2a6HQ6PvroI/755x9WrlzJ1KlTi3Xe+vXr2wZkHjx4kCeffBKrNe+YmO3bt/Pee+9x4sQJ5s2bx9KlS23116tXD5PJZKt/8eLF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", + "image/png": "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S9WrVyctLc3yJKSocmvXruXKlStFPh0p6DP29vbGxcUFk8lUbD1VqlThyJEjKIpida6CPsuCeHh4kJycnG97QU+y1Go17du3p3379kRGRjJlyhTeffddNm3aRGhoKNWrV+fQoUO0b9/+tpJSnU5H165d6dq1K2azmddff50vvviC999/P9+TNyFsSZpphCihdu3a0bx5c2bPnk1WVhZw48lA3icBu3fvZufOnVbHOjo6AhR4s7pZ586dAfJNmX79W3KXLl0KPdbf35/GjRuzcOFCq7qOHDnCunXrLOe+Fzz77LPs3LmTtWvX5tuXnJyM0WgEoGfPniiKYpk0Lq+8n7uTk1O+z1ej0dCzZ09++eUXjhw5ku/4S5cuWX7u3LkzFy9eZNmyZZZtGRkZfPnllyW6nurVq5OSksI///xj2RYbG5tv9NOVK1fyHdu4cWMAy7DdZ599lgsXLvDVV1/lK5uZmVmiprbExESr92q12vIUqKTDlYW4W+TJiBClMHr0aHr16sWCBQsIDw/nySef5Ndff6VHjx506dKFc+fOMW/ePOrWrUtaWprlOAcHB+rWrcvPP/9MrVq18PT0pH79+tSvXz9fHY0aNeLll1/myy+/JDk5mbZt27Jnzx4WLlxI9+7deeyxx4qMcfr06XTq1IlWrVoxYMAAy9BeNzc3y9wm94LRo0ezYsUKnnzySfr160dISAjp6ekcPnyYZcuWER0dTYUKFXjsscfo06cPn3zyCadOnaJjx46YzWb++usvHnvsMYYOHQpASEgIGzZsIDIykooVK1K1alVatGjB1KlT2bRpEy1atGDQoEHUrVuXK1eusH//fjZs2GBJDgYNGsSnn35K37592bdvH/7+/nz33XeWRLI4zz//PGPGjKFHjx688cYbZGRk8H//93/UqlXLqjPzxIkT2bp1K126dKFKlSokJCTw+eefU6lSJR5++GEA+vTpw5IlSwgPD2fTpk20adMGk8nEiRMnWLJkCWvXrrU0IRZm4MCBXLlyhccff5xKlSpx/vx55s6dS+PGja2euAlxT7DhSB4h7knXh/b+/fff+faZTCalevXqSvXq1RWj0aiYzWZlypQpSpUqVRS9Xq889NBDyv/+978Ch3nu2LFDCQkJUXQ6ndUw35uHfiqKouTk5CgffvihUrVqVUWr1SqBgYHKuHHjlKysrBJdw4YN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DMLDw5kzZ84tca7BbZKMhISE4Ofnx6ZNm4zP5eTksGfPHqKioircR6PREBERYbKPwWBg06ZNZvexlrJEJDExkY0bN+Ll5VXtMvLy8khKSsLf378Walhzzp07x6VLl8zWsyEdtzJfffUVERERhIeHV3tfax03RVEYP348K1eu5I8//iAkJMRke0REBHZ2dibHISEhgdTUVLPH4WbO09pQWdvK6tWvXz80Gg2rV6+utEerIpW9l2tDVdp2o/j4eACz9WxIx63MV199xYMPPoiPj0+1X8cax60iBoOB4uLiBn2umbDKbbO1IDc3Vzl48KBy8OBBBVBmzZqlHDx40Dii5L333lM8PDyUn3/+WTl8+LASGxurhISEKIWFhcYy+vTpo3z66afGx99//71ib2+vLFy4UPnrr7+Up556SvHw8FAyMjLqTdu0Wq3y4IMPKs2aNVPi4+OV9PR0409xcbHZtj3//PNKXFyckpycrOzYsUOJjo5WvL29laysrHrTttzcXOWFF15Qdu3apSQnJysbN25UunTpooSGhipFRUVm29YQjluZ7OxsxcnJSfniiy8qLKO+Hrenn35acXd3V+Li4kzecwUFBcaYsWPHKoGBgcoff/yh7Nu3T4mKilKioqJMymndurWyYsUK4+OqnKfWblt2drYSGRmphIWFKadOnTKJKSkpqbBtVX0vW7ttp06dUt5++21l3759SnJysvLzzz8rzZs3V3r16mVSTkM8bmUSExMVlUqlrFu3rsJy6uNxmzJlirJlyxYlOTlZOXz4sDJlyhRFpVIp69evVxSl4Z5r17tlkpHNmzcrQLmfkSNHKopSOpTp9ddfV3x9fRV7e3ulb9++SkJCgkkZQUFByrRp00ye+/TTT5XAwEBFo9Eo3bt3V3bv3l1HLbrGUtuSk5Mr3AYomzdvNpZxY9uGDh2q+Pv7KxqNRmnatKkydOhQ5dSpU/WqbQUFBUq/fv0UHx8fxc7OTgkKClKefPLJcklFQzxuZf773/8qjo6OytWrVysso74eN3PvuQULFhhjCgsLlWeeeUZp1KiR4uTkpDz00ENKenp6uXKu36cq52ltq6xt5o4roCQnJ1fYtqq+l63dttTUVKVXr16Kp6enYm9vr7Rs2VJ58cUXlezs7HLlNLTjVmbq1KlKQECAotfrzZZT347bE088oQQFBSkajUbx8fFR+vbta0xEFKXhnmvXUymKovzt7hUhhBBCiJt0W9wzIoQQQoj6S5IRIYQQQliVJCNCCCGEsCpJRoQQQghhVZKMCCGEEMKqJBkRQgghhFVJMiKEEEIIq5JkRAghhBBWJcmIEKLWjRo1ikGDBlm7GkKIekqSESGEEEJYlSQjQoga8+OPPxIWFoajoyNeXl5ER0fz4osvsmjRIn7++WdUKhUqlYq4uDgAzp49yz//+U88PDzw9PQkNjaWlJQUY3llPSpvvfUWPj4+uLm5MXbsWLRarXUaKISoFbbWroAQ4taQnp7OsGHD+OCDD3jooYfIzc1l27ZtjBgxgtTUVHJycliwYAEAnp6e6HQ6YmJiiIqKYtu2bdja2vLOO+/Qv39/Dh8+jEajAWDTpk04ODgQFxdHSkoKjz/+OF5eXvznP/+xZnOFEDVIkhEhRI1IT0+npKSEhx9+mKCgIADCwsIAcHR0pLi4GD8/P2P84sWLMRgMzJ8/H5VKBcCCBQvw8PAgLi6Ofv36AaDRaPj6669xcnKiffv2vP3227z44otMnz4dtVo6d4W4FciZLISoEeHh4fTt25ewsDCGDBnCl19+yZUrV8zGHzp0iFOnTuHq6oqLiwsuLi54enpSVFREUlKSSblOTk7Gx1FRUeTl5XH27NlabY8Qou5Iz4gQokbY2NiwYcMGdu7cyfr16/n000959dVX2bNnT4XxeXl5REREsGTJknLbfHx8aru6Qoh6RJIRIUSNUalU9OzZk549e/LGG28QFBTEypUr0Wg06PV6k9guXbrwww8/0LhxY9zc3MyWeejQIQoLC3F0dARg9+7duLi4EBAQUKttEULUHblMI4SoEXv27OHdd99l3759pKamsmLFCi5cuEDbtm0JDg7m8OHDJCQkcPHiRXQ6HY8++ije3t7Exsaybds2kpOTiYuL49lnn+XcuXPGcrVaLaNHj+avv/5i7dq1TJs2jfHjx8v9IkLcQqRnRAhRI9zc3Ni6dSuzZ88mJyeHoKAgZs6cyYABA+jatStxcXF07dqVvLw8Nm/eTO/evdm6dSsvv/wyDz/8MLm5uTRt2pS+ffua9JT07duX0NBQevXqRXFxMcOGDePNN9+0XkOFEDVOpSiKYu1KCCFERUaNGsXVq1dZtWqVtasihKhF0s8phBBCCKuSZEQIIYQQViWXaYQQQghhVdIzIoQQQgirkmRECCGEEFYlyYgQQgghrEqSESGEEEJYlSQjQgghhLAqSUaEEEIIYVWSjAghhBDCqiQZEUIIIYRVSTIihBBCCKv6f+tVuyfIZ9QsAAAAAElFTkSuQmCC", "text/plain": [ "
" ] @@ -1648,7 +2296,7 @@ }, { "cell_type": "code", - "execution_count": 81, + "execution_count": 49, "metadata": {}, "outputs": [ { @@ -1691,35 +2339,35 @@ " \n", " 0\n", " 39063f8\n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " erdos_renyi_graph\n", " 100\n", " 1.0\n", " \n", " \n", " 8f26adb\n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " barabasi_albert_graph\n", " 100\n", " 0.5\n", " \n", " \n", " 92fdcb9\n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " erdos_renyi_graph\n", " 100\n", " 0.25\n", " \n", " \n", " cb3dbca\n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " erdos_renyi_graph\n", " 100\n", " 0.5\n", " \n", " \n", " d1fe9c1\n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " barabasi_albert_graph\n", " 100\n", " 1.0\n", @@ -1731,22 +2379,22 @@ "text/plain": [ "key generator \\\n", "iteration_id params_id simulation_id \n", - "0 39063f8 newspread_1683108591.8199563 erdos_renyi_graph \n", - " 8f26adb newspread_1683108591.8199563 barabasi_albert_graph \n", - " 92fdcb9 newspread_1683108591.8199563 erdos_renyi_graph \n", - " cb3dbca newspread_1683108591.8199563 erdos_renyi_graph \n", - " d1fe9c1 newspread_1683108591.8199563 barabasi_albert_graph \n", + "0 39063f8 newspread_1712849444.2514122 erdos_renyi_graph \n", + " 8f26adb newspread_1712849444.2514122 barabasi_albert_graph \n", + " 92fdcb9 newspread_1712849444.2514122 erdos_renyi_graph \n", + " cb3dbca newspread_1712849444.2514122 erdos_renyi_graph \n", + " d1fe9c1 newspread_1712849444.2514122 barabasi_albert_graph \n", "\n", "key n prob_neighbor_spread \n", "iteration_id params_id simulation_id \n", - "0 39063f8 newspread_1683108591.8199563 100 1.0 \n", - " 8f26adb newspread_1683108591.8199563 100 0.5 \n", - " 92fdcb9 newspread_1683108591.8199563 100 0.25 \n", - " cb3dbca newspread_1683108591.8199563 100 0.5 \n", - " d1fe9c1 newspread_1683108591.8199563 100 1.0 " + "0 39063f8 newspread_1712849444.2514122 100 1.0 \n", + " 8f26adb newspread_1712849444.2514122 100 0.5 \n", + " 92fdcb9 newspread_1712849444.2514122 100 0.25 \n", + " cb3dbca newspread_1712849444.2514122 100 0.5 \n", + " d1fe9c1 newspread_1712849444.2514122 100 1.0 " ] }, - "execution_count": 81, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -1767,7 +2415,7 @@ }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 50, "metadata": {}, "outputs": [ { @@ -1840,7 +2488,7 @@ " \n", " \n", " \n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " 0\n", " 2\n", " None\n", @@ -1857,9 +2505,9 @@ " {}\n", " {}\n", " {}\n", - " /mnt/data/home/j/git/lab.gsi/soil/soil/docs/tu...\n", + " /media/j/JsTickData/git/gsi-upm/soil/docs/tuto...\n", " {}\n", - " 20\n", + " 30\n", " False\n", " False\n", " \n", @@ -1871,36 +2519,36 @@ "text/plain": [ " index version source_file name \\\n", "simulation_id \n", - "newspread_1683108591.8199563 0 2 None newspread \n", + "newspread_1712849444.2514122 0 2 None newspread \n", "\n", " description group backup overwrite dry_run dump \\\n", "simulation_id \n", - "newspread_1683108591.8199563 None False True False True \n", + "newspread_1712849444.2514122 None False True False True \n", "\n", " ... num_processes \\\n", "simulation_id ... \n", - "newspread_1683108591.8199563 ... 1 \n", + "newspread_1712849444.2514122 ... 1 \n", "\n", " exporters \\\n", "simulation_id \n", - "newspread_1683108591.8199563 [\"\"] \n", + "newspread_1712849444.2514122 [\"\"] \n", "\n", " model_reporters agent_reporters tables \\\n", "simulation_id \n", - "newspread_1683108591.8199563 {} {} {} \n", + "newspread_1712849444.2514122 {} {} {} \n", "\n", " outdir \\\n", "simulation_id \n", - "newspread_1683108591.8199563 /mnt/data/home/j/git/lab.gsi/soil/soil/docs/tu... \n", + "newspread_1712849444.2514122 /media/j/JsTickData/git/gsi-upm/soil/docs/tuto... \n", "\n", " exporter_params level skip_test debug \n", "simulation_id \n", - "newspread_1683108591.8199563 {} 20 False False \n", + "newspread_1712849444.2514122 {} 30 False False \n", "\n", "[1 rows x 28 columns]" ] }, - "execution_count": 82, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -1921,7 +2569,7 @@ }, { "cell_type": "code", - "execution_count": 83, + "execution_count": 51, "metadata": {}, "outputs": [ { @@ -1966,7 +2614,7 @@ " \n", " \n", " \n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " ff1d24a\n", " 0\n", " 0\n", @@ -2010,7 +2658,7 @@ "text/plain": [ " agent_count time \\\n", "simulation_id params_id iteration_id step \n", - "newspread_1683108591.8199563 ff1d24a 0 0 101 0.0 \n", + "newspread_1712849444.2514122 ff1d24a 0 0 101 0.0 \n", " 1 101 1.0 \n", " 2 101 2.0 \n", " 3 101 3.0 \n", @@ -2018,7 +2666,7 @@ "\n", " prob_tv_spread \\\n", "simulation_id params_id iteration_id step \n", - "newspread_1683108591.8199563 ff1d24a 0 0 0.0 \n", + "newspread_1712849444.2514122 ff1d24a 0 0 0.0 \n", " 1 0.0 \n", " 2 0.0 \n", " 3 0.0 \n", @@ -2026,14 +2674,14 @@ "\n", " prob_neighbor_spread \n", "simulation_id params_id iteration_id step \n", - "newspread_1683108591.8199563 ff1d24a 0 0 0.0 \n", + "newspread_1712849444.2514122 ff1d24a 0 0 0.0 \n", " 1 0.0 \n", " 2 0.0 \n", " 3 0.0 \n", " 4 0.0 " ] }, - "execution_count": 83, + "execution_count": 51, "metadata": {}, "output_type": "execute_result" } @@ -2056,7 +2704,7 @@ }, { "cell_type": "code", - "execution_count": 84, + "execution_count": 52, "metadata": {}, "outputs": [ { @@ -2097,7 +2745,7 @@ " \n", " \n", " \n", - " newspread_1683108591.8199563\n", + " newspread_1712849444.2514122\n", " ff1d24a\n", " 0\n", " 0\n", @@ -2127,14 +2775,14 @@ "text/plain": [ " state_id\n", "simulation_id params_id iteration_id step agent_id \n", - "newspread_1683108591.8199563 ff1d24a 0 0 0 None\n", + "newspread_1712849444.2514122 ff1d24a 0 0 0 None\n", " 1 neutral\n", " 2 neutral\n", " 3 neutral\n", " 4 neutral" ] }, - "execution_count": 84, + "execution_count": 52, "metadata": {}, "output_type": "execute_result" } @@ -2161,7 +2809,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.10" + "version": "3.10.12" }, "toc": { "colors": { @@ -2201,5 +2849,5 @@ } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/examples/cars/cars_sim.py b/examples/cars/cars_sim.py index 3b38a16..66fe3e4 100644 --- a/examples/cars/cars_sim.py +++ b/examples/cars/cars_sim.py @@ -63,11 +63,11 @@ class City(EventedEnvironment): def init(self): self.grid = MultiGrid(width=self.width, height=self.height, torus=False) - if not self.agents: + if not self.get_agents(): self.add_agents(Driver, k=self.n_cars) self.add_agents(Passenger, k=self.n_passengers) - for agent in self.agents: + for agent in self.get_agents(): self.grid.place_agent(agent, (0, 0)) self.grid.move_to_empty(agent) diff --git a/examples/markov_chains/MarkovChains.ipynb b/examples/markov_chains/MarkovChains.ipynb new file mode 100644 index 0000000..6b61fe5 --- /dev/null +++ b/examples/markov_chains/MarkovChains.ipynb @@ -0,0 +1,355 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "7641396c-a602-477e-bf03-09e1191ff549", + "metadata": {}, + "outputs": [], + "source": [ + "%load_ext autoreload" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "4f12285c-78db-4ee8-b9c6-7799d34f10f5", + "metadata": {}, + "outputs": [], + "source": [ + "%autoreload 1" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "7710bb03-0cb9-413a-a407-fe48855ff917", + "metadata": {}, + "outputs": [], + "source": [ + "%aimport markov_sim" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "2dffca0f-da9e-4f69-ac43-7afe52ad2d32", + "metadata": {}, + "outputs": [], + "source": [ + "%aimport soil\n", + "%aimport soil.visualization" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "12871006-70ca-4c6f-8a3e-0aae1d0bce31", + "metadata": {}, + "outputs": [], + "source": [ + "G = markov_sim.load_city_graph(\"Chamberi, Madrid\", network_type=\"drive\")" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "31e96cc5-b703-4d2a-a006-7b9a2cedc365", + "metadata": {}, + "outputs": [], + "source": [ + "# env = markov_sim.CityEnv(G=G, n_assets=20, side=10, max_weight=1, seed=10)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "5e070b36-0ba6-4780-8fd4-3c72fa3bb240", + "metadata": {}, + "outputs": [], + "source": [ + "# for i in range(2):\n", + "# env.step()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "56f8b997-65b0-431d-9517-b93edb1cfcd8", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/j/.cache/pypoetry/virtualenvs/soil-cCX5yKRx-py3.10/lib/python3.10/site-packages/osmnx/plot.py:955: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " plt.show()\n", + "/home/j/.cache/pypoetry/virtualenvs/soil-cCX5yKRx-py3.10/lib/python3.10/site-packages/osmnx/plot.py:955: UserWarning: FigureCanvasAgg is non-interactive, and thus cannot be shown\n", + " plt.show()\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "86e45bd44e434674b11805fd94e98414", + "version_major": 2, + "version_minor": 0 + }, + "text/html": [ + "Cannot show widget. You probably want to rerun the code cell above (Click in the code cell, and press Shift+Enter +)." + ], + "text/plain": [ + "Cannot show ipywidgets in text" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "from soil.visualization import JupyterViz, GeoNetworkDrawer, Controller\n", + "from soil import visualization\n", + "from matplotlib import colors\n", + "from matplotlib import colormaps\n", + "plasma = colormaps.get_cmap('plasma')\n", + "model_params = {\n", + " \"n_assets\": {\n", + " \"type\": \"SliderInt\",\n", + " \"value\": 100,\n", + " \"label\": \"Number of assets:\",\n", + " \"min\": 1,\n", + " \"max\": 1000,\n", + " \"step\": 1,\n", + " },\n", + " \"max_weight\": {\n", + " \"type\": \"SliderInt\",\n", + " \"value\": 3,\n", + " \"label\": \"Maximum edge weight:\",\n", + " \"min\": 1,\n", + " \"max\": 20,\n", + " \"step\": 1,\n", + " },\n", + " \"ratio_lazy\": {\n", + " \"type\": \"SliderFloat\",\n", + " \"value\": 0,\n", + " \"label\": \"Ratio of lazy agents (they prefer shorter streets):\",\n", + " \"min\": 0,\n", + " \"max\": 1,\n", + " \"step\": 0.05,\n", + " },\n", + " \"side\": {\n", + " \"type\": \"SliderInt\",\n", + " \"value\": 10,\n", + " \"label\": \"Size of the side:\",\n", + " \"min\": 2,\n", + " \"max\": 20,\n", + " \"step\": 1,\n", + " },\n", + " \"gradual_move\": {\n", + " \"type\": \"Checkbox\",\n", + " \"value\": True,\n", + " \"label\": \"Use gradual movement\",\n", + " }, \n", + " \"lockstep\": {\n", + " \"type\": \"Checkbox\",\n", + " \"value\": True,\n", + " \"label\": \"Run in locksteps\",\n", + " },\n", + " \"G\": G,\n", + " # \"width\": 10,\n", + "}\n", + "\n", + "def colorize(d):\n", + " # print(d)\n", + " if any(a.waiting for a in d):\n", + " return 'red'\n", + " else:\n", + " return 'blue'\n", + "\n", + "def network_portrayal(graph, spring=True):\n", + " global pos, l\n", + " node_size = [10*(len(node[1][\"agent\"])) for node in graph.nodes(data=True)]\n", + " node_color = [colorize(d[\"agent\"]) for (k, d) in graph.nodes(data=True)]\n", + " # pos = {node: (d[\"x\"], d[\"y\"]) for node, d in graph.nodes(data=True)}\n", + " edge_width = [graph.edges[k]['travel_time']/100 for k in graph.edges]\n", + " # print(edge_width)\n", + " weights = [graph.edges[k]['occupation'] for k in graph.edges]\n", + " norm = colors.Normalize(vmin=0, vmax=max(weights))\n", + " color = plasma(norm(weights))\n", + " # print(color)\n", + " return dict(node_size=node_size, node_color=node_color, edge_linewidth=edge_width, edge_color=color)\n", + "\n", + "page = visualization.JupyterViz(\n", + " markov_sim.CityEnv,\n", + " model_params,\n", + " measures=[\"NodeGini\", \"EdgeGini\", \"EdgeOccupation\"],\n", + " name=\"City Environment\",\n", + " space_drawer=GeoNetworkDrawer,\n", + " agent_portrayal=network_portrayal,\n", + " columns=3,\n", + ")\n", + "# This is required to render the visualization in the Jupyter notebook\n", + "page" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "70da18d7-66bd-4710-89a6-aca14707c56e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NodeGiniEdgeGiniEdgeOccupation
00.8665670.9272760.087624
10.8665670.9334940.081301
20.8638670.9331630.078591
30.8665670.9299430.084914
40.8694330.9349490.076784
............
1270.8803670.9341850.075881
1280.8814000.9330380.078591
1290.8814000.9362990.078591
1300.8814000.9297840.086721
1310.8767330.9327460.082204
\n", + "

132 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " NodeGini EdgeGini EdgeOccupation\n", + "0 0.866567 0.927276 0.087624\n", + "1 0.866567 0.933494 0.081301\n", + "2 0.863867 0.933163 0.078591\n", + "3 0.866567 0.929943 0.084914\n", + "4 0.869433 0.934949 0.076784\n", + ".. ... ... ...\n", + "127 0.880367 0.934185 0.075881\n", + "128 0.881400 0.933038 0.078591\n", + "129 0.881400 0.936299 0.078591\n", + "130 0.881400 0.929784 0.086721\n", + "131 0.876733 0.932746 0.082204\n", + "\n", + "[132 rows x 3 columns]" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "page.controller.model.datacollector.get_model_vars_dataframe()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d9a7d3c8-2f87-47d5-8d27-a7387ea3457d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/examples/markov_chains/app.py b/examples/markov_chains/app.py new file mode 100644 index 0000000..d5304f0 --- /dev/null +++ b/examples/markov_chains/app.py @@ -0,0 +1,11 @@ +from flask import Flask +import solara.server.flask + +app = Flask(__name__) +app.register_blueprint(solara.server.flask.blueprint, url_prefix="/solara/") + + +@app.route("/") +def hello_world(): + return "

Hello, World!

" + diff --git a/examples/markov_chains/cache/09a7a68a80018222f1664b90343892049e1aa11c.json b/examples/markov_chains/cache/09a7a68a80018222f1664b90343892049e1aa11c.json new file mode 100644 index 0000000..98555dc --- /dev/null +++ b/examples/markov_chains/cache/09a7a68a80018222f1664b90343892049e1aa11c.json @@ -0,0 +1 @@ +[{"place_id": 283513335, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 548233128, "lat": "40.4178272", "lon": "-3.702222089915074", "class": "railway", "type": "station", "place_rank": 30, "importance": 0.3991913473941602, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Plaza de la Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169044", "40.4187642", "-3.7027607", "-3.7016605"], "geojson": {"type": "Polygon", "coordinates": [[[-3.7027607, 40.4169643], [-3.7025072, 40.4169044], [-3.7016605, 40.4186901], [-3.7019552, 40.4187642], [-3.7027607, 40.4169643]]]}}, {"place_id": 285099104, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5301853067, "lat": "40.416938", "lon": "-3.7033901", "class": "railway", "type": "station", "place_rank": 30, "importance": 0.3991913473941602, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4119380", "40.4219380", "-3.7083901", "-3.6983901"], "geojson": {"type": "Point", "coordinates": [-3.7033901, 40.416938]}}, {"place_id": 285417271, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "relation", "osm_id": 8816050, "lat": "40.417256", "lon": "-3.7044523", "class": "boundary", "type": "administrative", "place_rank": 22, "importance": 0.39000592705863146, "addresstype": "quarter", "name": "Sol", "display_name": "Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4135788", "40.4203727", "-3.7088360", "-3.6993008"], "geojson": {"type": "Polygon", "coordinates": [[[-3.708836, 40.4158424], [-3.7087897, 40.4156325], [-3.708798, 40.4155616], [-3.7086595, 40.4154011], [-3.7085033, 40.41532], [-3.7084549, 40.4153066], [-3.7084244, 40.415278], [-3.7082244, 40.4148238], [-3.7081515, 40.4147084], [-3.7080288, 40.4145314], [-3.7080282, 40.4145032], [-3.708157, 40.4139787], [-3.7081634, 40.4139473], [-3.7081869, 40.4138808], [-3.7082087, 40.413819], [-3.7082439, 40.4137223], [-3.7081165, 40.4136864], [-3.7079828, 40.413642], [-3.707963, 40.4136345], [-3.7079476, 40.4136286], [-3.7079082, 40.4136275], [-3.7077363, 40.4135855], [-3.7076365, 40.4135788], [-3.7074371, 40.4136111], [-3.707358, 40.4136363], [-3.7071916, 40.4136906], [-3.7068596, 40.4137956], [-3.7063758, 40.4139503], [-3.7061889, 40.4139771], [-3.7058261, 40.4139839], [-3.7055564, 40.413982], [-3.7051897, 40.4139567], [-3.7048415, 40.4139267], [-3.7047738, 40.4139361], [-3.7047141, 40.4139498], [-3.7046157, 40.4139835], [-3.7045481, 40.4140127], [-3.7044929, 40.4140368], [-3.70436, 40.4140937], [-3.7039911, 40.4142605], [-3.7039426, 40.4142947], [-3.7035667, 40.4141821], [-3.7035325, 40.4141681], [-3.703398, 40.414124], [-3.703374, 40.4142055], [-3.7031447, 40.4144897], [-3.7031173, 40.4145221], [-3.7029831, 40.4146178], [-3.7025602, 40.4149603], [-3.7023266, 40.4151447], [-3.7016665, 40.4156435], [-3.7012179, 40.4159459], [-3.7008279, 40.4162179], [-3.7007854, 40.416252], [-3.7005949, 40.4164117], [-3.7005388, 40.4164546], [-3.7004373, 40.4166207], [-3.7003723, 40.4167092], [-3.7003272, 40.4167706], [-3.7003007, 40.4168067], [-3.7001007, 40.4170791], [-3.6997847, 40.4175095], [-3.6996788, 40.4176537], [-3.6996189, 40.4177352], [-3.6995965, 40.4177622], [-3.6995298, 40.4178096], [-3.6994513, 40.4178578], [-3.6993008, 40.4179982], [-3.6993273, 40.4180094], [-3.699379, 40.4180444], [-3.6993968, 40.4180621], [-3.6995223, 40.4184075], [-3.6995672, 40.4185311], [-3.6996629, 40.418912], [-3.6997513, 40.4193037], [-3.699685, 40.4196707], [-3.6996724, 40.4197532], [-3.6998303, 40.4197919], [-3.6998848, 40.4198053], [-3.7000801, 40.4198562], [-3.7004084, 40.419916], [-3.7005989, 40.4199445], [-3.7009577, 40.4199922], [-3.7011016, 40.4200052], [-3.7012093, 40.4200147], [-3.7014665, 40.4200195], [-3.7016306, 40.4200221], [-3.7020538, 40.4200513], [-3.7021841, 40.4200602], [-3.702366, 40.4200728], [-3.7030154, 40.4201175], [-3.7031374, 40.4201259], [-3.703246, 40.4201334], [-3.7034844, 40.4201498], [-3.7036988, 40.4201646], [-3.7039144, 40.4201795], [-3.7048281, 40.4202424], [-3.705242, 40.4202709], [-3.7053328, 40.4202772], [-3.7055388, 40.4203052], [-3.7056834, 40.4203197], [-3.7059476, 40.4203412], [-3.7059981, 40.4203492], [-3.7060687, 40.4203727], [-3.706058, 40.4203354], [-3.7060675, 40.420314], [-3.7061777, 40.4202392], [-3.7062436, 40.4202125], [-3.7063111, 40.4201983], [-3.7068014, 40.4202049], [-3.7070537, 40.4202098], [-3.7072453, 40.420215], [-3.7073987, 40.4202172], [-3.7079508, 40.4202326], [-3.7081532, 40.4202383], [-3.7079289, 40.4198834], [-3.7079428, 40.4197664], [-3.7082236, 40.4188248], [-3.7084513, 40.4183852], [-3.7084669, 40.4183551], [-3.7087381, 40.4178977], [-3.7085853, 40.4177294], [-3.7087205, 40.4170144], [-3.7086384, 40.4163773], [-3.7087072, 40.4163499], [-3.7087246, 40.4163382], [-3.7087309, 40.4163246], [-3.7087332, 40.4162991], [-3.7086816, 40.4160003], [-3.7086772, 40.4159636], [-3.708836, 40.4158424]]]}}, {"place_id": 284392772, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5303272075, "lat": "40.4170867", "lon": "-3.7032671", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170367", "40.4171367", "-3.7033171", "-3.7032171"], "geojson": {"type": "Point", "coordinates": [-3.7032671, 40.4170867]}}, {"place_id": 284991086, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 510856333, "lat": "40.41785245", "lon": "-3.7022920067826974", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Plaza de la Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169548", "40.4187340", "-3.7027420", "-3.7018496"], "geojson": {"type": "Polygon", "coordinates": [[[-3.702742, 40.4169719], [-3.7026784, 40.4169548], [-3.7018496, 40.4187169], [-3.7019132, 40.418734], [-3.7027344, 40.416988], [-3.702742, 40.4169719]]]}}, {"place_id": 284991132, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 3660257614, "lat": "40.4171894", "lon": "-3.7024827", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4171394", "40.4172394", "-3.7025327", "-3.7024327"], "geojson": {"type": "Point", "coordinates": [-3.7024827, 40.4171894]}}, {"place_id": 285307005, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 9666750729, "lat": "40.4167134", "lon": "-3.7038554", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4166634", "40.4167634", "-3.7039054", "-3.7038054"], "geojson": {"type": "Point", "coordinates": [-3.7038554, 40.4167134]}}, {"place_id": 288025043, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 442950343, "lat": "40.4170456", "lon": "-3.7031258", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170153", "40.4170509", "-3.7034553", "-3.7027987"], "geojson": {"type": "LineString", "coordinates": [[-3.7027987, 40.4170153], [-3.7029072, 40.4170284], [-3.7030163, 40.4170385], [-3.7031258, 40.4170456], [-3.7032356, 40.4170497], [-3.7033455, 40.4170509], [-3.7034553, 40.417049]]}}, {"place_id": 283513646, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 1152699021, "lat": "40.4172065", "lon": "-3.7025303", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4171565", "40.4172565", "-3.7025803", "-3.7024803"], "geojson": {"type": "Point", "coordinates": [-3.7025303, 40.4172065]}}, {"place_id": 283941271, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 4405988107, "lat": "40.4171106", "lon": "-3.7032691", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170606", "40.4171606", "-3.7033191", "-3.7032191"], "geojson": {"type": "Point", "coordinates": [-3.7032691, 40.4171106]}}, {"place_id": 284123374, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 510856334, "lat": "40.41780235", "lon": "-3.7021335000000004", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Plaza de la Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169191", "40.4186856", "-3.7025709", "-3.7016961"], "geojson": {"type": "Polygon", "coordinates": [[[-3.7025709, 40.4169362], [-3.7025073, 40.4169191], [-3.7016961, 40.4186685], [-3.7017597, 40.4186856], [-3.7025709, 40.4169362]]]}}, {"place_id": 285935951, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5303173605, "lat": "40.4169053", "lon": "-3.7039198", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4168553", "40.4169553", "-3.7039698", "-3.7038698"], "geojson": {"type": "Point", "coordinates": [-3.7039198, 40.4169053]}}, {"place_id": 283857010, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 3146120425, "lat": "40.3490899", "lon": "-3.7117789", "class": "amenity", "type": "restaurant", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "amenity", "name": "Sol", "display_name": "Sol, Calle Vado de Santiago, Villaverde Alto, Casco Hist\u00f3rico de Villaverde, Villaverde, Madrid, Community of Madrid, 28021, Spain", "boundingbox": ["40.3490399", "40.3491399", "-3.7118289", "-3.7117289"], "geojson": {"type": "Point", "coordinates": [-3.7117789, 40.3490899]}}, {"place_id": 284307294, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5299219187, "lat": "40.4169569", "lon": "-3.7031982", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169069", "40.4170069", "-3.7032482", "-3.7031482"], "geojson": {"type": "Point", "coordinates": [-3.7031982, 40.4169569]}}, {"place_id": 284046919, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5299314580, "lat": "40.4169531", "lon": "-3.703164", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169031", "40.4170031", "-3.7032140", "-3.7031140"], "geojson": {"type": "Point", "coordinates": [-3.703164, 40.4169531]}}, {"place_id": 285876298, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 442950341, "lat": "40.417129", "lon": "-3.7031907", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170937", "40.4171313", "-3.7035839", "-3.7028001"], "geojson": {"type": "LineString", "coordinates": [[-3.7028001, 40.4170937], [-3.7028971, 40.4171065], [-3.7029946, 40.4171166], [-3.7030925, 40.4171241], [-3.7031907, 40.417129], [-3.703289, 40.4171313], [-3.7033874, 40.417131], [-3.7034857, 40.4171281], [-3.7035839, 40.4171225]]}}, {"place_id": 283964857, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 21759678, "lat": "40.4169107", "lon": "-3.703897", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4168607", "40.4169607", "-3.7039470", "-3.7038470"], "geojson": {"type": "Point", "coordinates": [-3.703897, 40.4169107]}}] \ No newline at end of file diff --git a/examples/markov_chains/cache/197dbd44d019bd1193a35cd7a026cc804ebd1050.json b/examples/markov_chains/cache/197dbd44d019bd1193a35cd7a026cc804ebd1050.json new file mode 100644 index 0000000..b1ee774 --- /dev/null +++ b/examples/markov_chains/cache/197dbd44d019bd1193a35cd7a026cc804ebd1050.json @@ -0,0 +1 @@ +[{"place_id": 254431019, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "relation", "osm_id": 356998, "lat": "40.4389621", "lon": "-3.705302", "class": "boundary", "type": "administrative", "place_rank": 18, "importance": 0.4325609426367952, "addresstype": "suburb", "name": "Chamber\u00ed", "display_name": "Chamber\u00ed, Madrid, Community of Madrid, Spain", "boundingbox": ["40.4248919", "40.4471188", "-3.7199480", "-3.6884365"], "geojson": {"type": "Polygon", "coordinates": [[[-3.719948, 40.4449559], [-3.719879, 40.4443517], [-3.7198782, 40.4443446], [-3.7197942, 40.4438051], [-3.7197753, 40.4437541], [-3.719737, 40.4436973], [-3.7196833, 40.4436273], [-3.7195989, 40.4435357], [-3.7195371, 40.4434606], [-3.719475, 40.4433752], [-3.7192771, 40.4430269], [-3.7192275, 40.4429391], [-3.7191595, 40.4428131], [-3.718215, 40.4410668], [-3.7181673, 40.4409844], [-3.7181002, 40.4408494], [-3.7180195, 40.4406999], [-3.7177713, 40.4402297], [-3.7177006, 40.4400741], [-3.7176919, 40.4400548], [-3.7176476, 40.4399474], [-3.7176192, 40.4398085], [-3.7176051, 40.4396278], [-3.7175897, 40.4393619], [-3.7175911, 40.4392278], [-3.7175842, 40.4389737], [-3.717723, 40.4387354], [-3.7177594, 40.4384747], [-3.7177797, 40.4383308], [-3.7178186, 40.4381028], [-3.7178397, 40.4379725], [-3.7178553, 40.4378778], [-3.7178806, 40.437735], [-3.7180607, 40.4367655], [-3.7180825, 40.4366445], [-3.7182177, 40.4358502], [-3.7182245, 40.4358036], [-3.7182351, 40.4357262], [-3.7182414, 40.4356881], [-3.7182469, 40.4356547], [-3.7182714, 40.4355418], [-3.7182858, 40.4354187], [-3.7183198, 40.4351651], [-3.7183707, 40.4347887], [-3.7183568, 40.4347065], [-3.718206, 40.4344975], [-3.7181492, 40.4344194], [-3.7180564, 40.4342779], [-3.7179376, 40.4341003], [-3.7179121, 40.43406], [-3.7178227, 40.4339251], [-3.7176409, 40.4336567], [-3.7174276, 40.4333594], [-3.7173492, 40.433254], [-3.717402, 40.4332193], [-3.7176622, 40.4331193], [-3.7178083, 40.4330631], [-3.7179129, 40.4330227], [-3.7179766, 40.4330094], [-3.7174638, 40.4323181], [-3.7171778, 40.4319146], [-3.7170999, 40.4318097], [-3.7165885, 40.4311208], [-3.7162454, 40.4306258], [-3.7160969, 40.430544], [-3.7121484, 40.4301829], [-3.7120765, 40.4301769], [-3.7119214, 40.4301627], [-3.7110174, 40.4300654], [-3.7107434, 40.4300345], [-3.7106787, 40.4300274], [-3.7106767, 40.4300272], [-3.710511, 40.4300097], [-3.7092989, 40.4298828], [-3.7091852, 40.4298709], [-3.708441, 40.4297986], [-3.7082327, 40.42978], [-3.7077323, 40.4297293], [-3.7067355, 40.429644], [-3.7064262, 40.4296161], [-3.7063626, 40.4296104], [-3.7061601, 40.4295867], [-3.7058129, 40.4295443], [-3.7056302, 40.4295192], [-3.7054416, 40.4295011], [-3.7052718, 40.4294752], [-3.7047289, 40.4293795], [-3.7032648, 40.4291362], [-3.7027099, 40.4290454], [-3.7025836, 40.4290241], [-3.7024298, 40.4289738], [-3.7021501, 40.4289286], [-3.7019855, 40.4289026], [-3.7016676, 40.4288428], [-3.7014061, 40.4287858], [-3.7005018, 40.4285972], [-3.6997209, 40.4284196], [-3.699407, 40.4283594], [-3.6991251, 40.4283075], [-3.6989541, 40.4282704], [-3.6980502, 40.4280749], [-3.6971498, 40.427886], [-3.6963288, 40.4277166], [-3.6962393, 40.427686], [-3.6961727, 40.4276556], [-3.6960384, 40.4276324], [-3.6958572, 40.4275891], [-3.6956967, 40.4275732], [-3.6952907, 40.4273947], [-3.6952637, 40.4273831], [-3.6948617, 40.4271824], [-3.694768, 40.4271361], [-3.6939269, 40.4266934], [-3.6938711, 40.4266661], [-3.693507, 40.4264961], [-3.6928441, 40.4261637], [-3.6927492, 40.4261147], [-3.692628, 40.4260558], [-3.692048, 40.4257609], [-3.6915281, 40.4254989], [-3.691194, 40.4252722], [-3.6911494, 40.4252442], [-3.6910455, 40.4251847], [-3.6909553, 40.4251315], [-3.6908809, 40.4250807], [-3.6906599, 40.4248919], [-3.6897474, 40.4278831], [-3.6894037, 40.4292099], [-3.689361, 40.4293828], [-3.6893395, 40.4294696], [-3.6890374, 40.4306338], [-3.6884365, 40.4329062], [-3.688704, 40.4347393], [-3.68873, 40.4351176], [-3.6887342, 40.4352335], [-3.6890013, 40.4355608], [-3.6891621, 40.4357454], [-3.6904717, 40.4376316], [-3.6906796, 40.4379785], [-3.6908155, 40.4382304], [-3.6909127, 40.4386165], [-3.6913679, 40.4399711], [-3.6915844, 40.4405203], [-3.6917292, 40.4407572], [-3.6917412, 40.4410677], [-3.6917336, 40.4412876], [-3.6916974, 40.4417591], [-3.6913439, 40.4454834], [-3.6912759, 40.4462118], [-3.6916562, 40.4463504], [-3.6919364, 40.446361], [-3.6920545, 40.4463627], [-3.6921553, 40.4463674], [-3.692247, 40.4463731], [-3.6931159, 40.4464156], [-3.6947938, 40.4464999], [-3.6948863, 40.446485], [-3.6956012, 40.4465003], [-3.6958483, 40.4465175], [-3.6969637, 40.4465754], [-3.6971318, 40.4465851], [-3.6979215, 40.4466257], [-3.6982211, 40.4466417], [-3.6986277, 40.4466599], [-3.6988062, 40.446666], [-3.6993339, 40.4466847], [-3.6999921, 40.4467139], [-3.7001461, 40.4467202], [-3.7006722, 40.4467976], [-3.7009337, 40.4468106], [-3.7010603, 40.446816], [-3.7023787, 40.4468754], [-3.7024773, 40.446878], [-3.7029618, 40.4468982], [-3.7031283, 40.4469059], [-3.703261, 40.4469105], [-3.70333, 40.4469142], [-3.703471, 40.44694], [-3.703596, 40.4469749], [-3.7039151, 40.4468535], [-3.7045459, 40.4468812], [-3.7058569, 40.4469546], [-3.7061686, 40.4469654], [-3.7082704, 40.4471001], [-3.7089512, 40.4471188], [-3.7091911, 40.4471144], [-3.7093798, 40.4470913], [-3.7100824, 40.4469256], [-3.7144802, 40.4458494], [-3.7147323, 40.4457899], [-3.7150281, 40.4458569], [-3.7152145, 40.4459231], [-3.715294, 40.4459513], [-3.7157128, 40.4461], [-3.716134, 40.4462407], [-3.7167594, 40.4464817], [-3.7167943, 40.4464958], [-3.7171163, 40.4466285], [-3.7171599, 40.4466419], [-3.7173188, 40.4466906], [-3.7175937, 40.4467213], [-3.7179424, 40.4467022], [-3.71798, 40.4467018], [-3.7181462, 40.4467145], [-3.7183145, 40.4465856], [-3.7183364, 40.4465688], [-3.7183525, 40.4465571], [-3.7184666, 40.4464612], [-3.7187883, 40.4461556], [-3.7189215, 40.4460227], [-3.7192551, 40.4456906], [-3.7194688, 40.4455853], [-3.719622, 40.4454782], [-3.7196481, 40.4454591], [-3.7196659, 40.4454356], [-3.7196743, 40.4454093], [-3.7198555, 40.4451305], [-3.7198776, 40.4450931], [-3.7199409, 40.4450024], [-3.719948, 40.4449559]]]}}] \ No newline at end of file diff --git a/examples/markov_chains/cache/22d10b0cf32c036918f028c264b91bf130ec62f1.json b/examples/markov_chains/cache/22d10b0cf32c036918f028c264b91bf130ec62f1.json new file mode 100644 index 0000000..26a55e6 --- /dev/null +++ b/examples/markov_chains/cache/22d10b0cf32c036918f028c264b91bf130ec62f1.json @@ -0,0 +1 @@ +[{"place_id": 253266023, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 548233128, "lat": "40.4178272", "lon": "-3.702222089915074", "class": "railway", "type": "station", "place_rank": 30, "importance": 0.3991913473941602, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Calle de la Aduana, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169044", "40.4187642", "-3.7027607", "-3.7016605"], "geojson": {"type": "Polygon", "coordinates": [[[-3.7027607, 40.4169643], [-3.7025072, 40.4169044], [-3.7016605, 40.4186901], [-3.7019552, 40.4187642], [-3.7027607, 40.4169643]]]}}, {"place_id": 254198701, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5301853067, "lat": "40.416938", "lon": "-3.7033901", "class": "railway", "type": "station", "place_rank": 30, "importance": 0.3991913473941602, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4119380", "40.4219380", "-3.7083901", "-3.6983901"], "geojson": {"type": "Point", "coordinates": [-3.7033901, 40.416938]}}, {"place_id": 255774124, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "relation", "osm_id": 8816050, "lat": "40.417256", "lon": "-3.7044523", "class": "boundary", "type": "administrative", "place_rank": 22, "importance": 0.39000592705863146, "addresstype": "quarter", "name": "Sol", "display_name": "Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4135788", "40.4203727", "-3.7088360", "-3.6993008"], "geojson": {"type": "Polygon", "coordinates": [[[-3.708836, 40.4158424], [-3.7087897, 40.4156325], [-3.708798, 40.4155616], [-3.7086595, 40.4154011], [-3.7085033, 40.41532], [-3.7084549, 40.4153066], [-3.7084244, 40.415278], [-3.7082244, 40.4148238], [-3.7081515, 40.4147084], [-3.7080288, 40.4145314], [-3.7080282, 40.4145032], [-3.708157, 40.4139787], [-3.7081634, 40.4139473], [-3.7081869, 40.4138808], [-3.7082087, 40.413819], [-3.7082439, 40.4137223], [-3.7081165, 40.4136864], [-3.7079828, 40.413642], [-3.707963, 40.4136345], [-3.7079476, 40.4136286], [-3.7079082, 40.4136275], [-3.7077363, 40.4135855], [-3.7076365, 40.4135788], [-3.7074371, 40.4136111], [-3.707358, 40.4136363], [-3.7071916, 40.4136906], [-3.7068596, 40.4137956], [-3.7063758, 40.4139503], [-3.7061889, 40.4139771], [-3.7058261, 40.4139839], [-3.7055564, 40.413982], [-3.7051897, 40.4139567], [-3.7048415, 40.4139267], [-3.7047738, 40.4139361], [-3.7047141, 40.4139498], [-3.7046157, 40.4139835], [-3.7045481, 40.4140127], [-3.7044929, 40.4140368], [-3.70436, 40.4140937], [-3.7039911, 40.4142605], [-3.7039426, 40.4142947], [-3.7035667, 40.4141821], [-3.7035325, 40.4141681], [-3.703398, 40.414124], [-3.703374, 40.4142055], [-3.7031447, 40.4144897], [-3.7031173, 40.4145221], [-3.7029831, 40.4146178], [-3.7025602, 40.4149603], [-3.7023266, 40.4151447], [-3.7016665, 40.4156435], [-3.7012179, 40.4159459], [-3.7008279, 40.4162179], [-3.7007854, 40.416252], [-3.7005949, 40.4164117], [-3.7005388, 40.4164546], [-3.7004373, 40.4166207], [-3.7003723, 40.4167092], [-3.7003272, 40.4167706], [-3.7003007, 40.4168067], [-3.7001007, 40.4170791], [-3.6997847, 40.4175095], [-3.6996788, 40.4176537], [-3.6996189, 40.4177352], [-3.6995965, 40.4177622], [-3.6995298, 40.4178096], [-3.6994513, 40.4178578], [-3.6993008, 40.4179982], [-3.6993273, 40.4180094], [-3.699379, 40.4180444], [-3.6993968, 40.4180621], [-3.6995223, 40.4184075], [-3.6995672, 40.4185311], [-3.6996629, 40.418912], [-3.6997513, 40.4193037], [-3.699685, 40.4196707], [-3.6996724, 40.4197532], [-3.6998303, 40.4197919], [-3.6998848, 40.4198053], [-3.7000801, 40.4198562], [-3.7004084, 40.419916], [-3.7005989, 40.4199445], [-3.7009577, 40.4199922], [-3.7011016, 40.4200052], [-3.7012093, 40.4200147], [-3.7014665, 40.4200195], [-3.7016306, 40.4200221], [-3.7020538, 40.4200513], [-3.7021841, 40.4200602], [-3.702366, 40.4200728], [-3.7030154, 40.4201175], [-3.7031374, 40.4201259], [-3.703246, 40.4201334], [-3.7034844, 40.4201498], [-3.7036988, 40.4201646], [-3.7039144, 40.4201795], [-3.7048281, 40.4202424], [-3.705242, 40.4202709], [-3.7053328, 40.4202772], [-3.7055388, 40.4203052], [-3.7056834, 40.4203197], [-3.7059476, 40.4203412], [-3.7059981, 40.4203492], [-3.7060687, 40.4203727], [-3.706058, 40.4203354], [-3.7060675, 40.420314], [-3.7061777, 40.4202392], [-3.7062436, 40.4202125], [-3.7063111, 40.4201983], [-3.7068014, 40.4202049], [-3.7070537, 40.4202098], [-3.7072453, 40.420215], [-3.7073987, 40.4202172], [-3.7079508, 40.4202326], [-3.7081532, 40.4202383], [-3.7079289, 40.4198834], [-3.7079428, 40.4197664], [-3.7082236, 40.4188248], [-3.7084513, 40.4183852], [-3.7084669, 40.4183551], [-3.7087381, 40.4178977], [-3.7085853, 40.4177294], [-3.7087205, 40.4170144], [-3.7086384, 40.4163773], [-3.7087072, 40.4163499], [-3.7087246, 40.4163382], [-3.7087309, 40.4163246], [-3.7087332, 40.4162991], [-3.7086816, 40.4160003], [-3.7086772, 40.4159636], [-3.708836, 40.4158424]]]}}, {"place_id": 254272398, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 510856334, "lat": "40.41780235", "lon": "-3.7021335000000004", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Calle de la Aduana, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169191", "40.4186856", "-3.7025709", "-3.7016961"], "geojson": {"type": "Polygon", "coordinates": [[[-3.7025709, 40.4169362], [-3.7025073, 40.4169191], [-3.7016961, 40.4186685], [-3.7017597, 40.4186856], [-3.7025709, 40.4169362]]]}}, {"place_id": 255030420, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 442950343, "lat": "40.4170456", "lon": "-3.7031258", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170153", "40.4170509", "-3.7034553", "-3.7027987"], "geojson": {"type": "LineString", "coordinates": [[-3.7027987, 40.4170153], [-3.7029072, 40.4170284], [-3.7030163, 40.4170385], [-3.7031258, 40.4170456], [-3.7032356, 40.4170497], [-3.7033455, 40.4170509], [-3.7034553, 40.417049]]}}, {"place_id": 255391883, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 4405988107, "lat": "40.4171106", "lon": "-3.7032691", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170606", "40.4171606", "-3.7033191", "-3.7032191"], "geojson": {"type": "Point", "coordinates": [-3.7032691, 40.4171106]}}, {"place_id": 255989157, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5303173605, "lat": "40.4169053", "lon": "-3.7039198", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4168553", "40.4169553", "-3.7039698", "-3.7038698"], "geojson": {"type": "Point", "coordinates": [-3.7039198, 40.4169053]}}, {"place_id": 255510654, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 442950341, "lat": "40.417129", "lon": "-3.7031907", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170937", "40.4171313", "-3.7035839", "-3.7028001"], "geojson": {"type": "LineString", "coordinates": [[-3.7028001, 40.4170937], [-3.7028971, 40.4171065], [-3.7029946, 40.4171166], [-3.7030925, 40.4171241], [-3.7031907, 40.417129], [-3.703289, 40.4171313], [-3.7033874, 40.417131], [-3.7034857, 40.4171281], [-3.7035839, 40.4171225]]}}, {"place_id": 255539889, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5299314580, "lat": "40.4169531", "lon": "-3.703164", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169031", "40.4170031", "-3.7032140", "-3.7031140"], "geojson": {"type": "Point", "coordinates": [-3.703164, 40.4169531]}}, {"place_id": 254853063, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5299219187, "lat": "40.4169569", "lon": "-3.7031982", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169069", "40.4170069", "-3.7032482", "-3.7031482"], "geojson": {"type": "Point", "coordinates": [-3.7031982, 40.4169569]}}, {"place_id": 255510744, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 1152699021, "lat": "40.4172065", "lon": "-3.7025303", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4171565", "40.4172565", "-3.7025803", "-3.7024803"], "geojson": {"type": "Point", "coordinates": [-3.7025303, 40.4172065]}}, {"place_id": 255911110, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 3660257614, "lat": "40.4171894", "lon": "-3.7024827", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4171394", "40.4172394", "-3.7025327", "-3.7024327"], "geojson": {"type": "Point", "coordinates": [-3.7024827, 40.4171894]}}, {"place_id": 255858332, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 3146120425, "lat": "40.3490899", "lon": "-3.7117789", "class": "amenity", "type": "restaurant", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "amenity", "name": "Sol", "display_name": "Sol, Calle Vado de Santiago, Villaverde Alto, Casco Hist\u00f3rico de Villaverde, Villaverde, Madrid, Community of Madrid, 28021, Spain", "boundingbox": ["40.3490399", "40.3491399", "-3.7118289", "-3.7117289"], "geojson": {"type": "Point", "coordinates": [-3.7117789, 40.3490899]}}, {"place_id": 253826058, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 21759678, "lat": "40.4169107", "lon": "-3.703897", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4168607", "40.4169607", "-3.7039470", "-3.7038470"], "geojson": {"type": "Point", "coordinates": [-3.703897, 40.4169107]}}, {"place_id": 254445185, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 5303272075, "lat": "40.4170867", "lon": "-3.7032671", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4170367", "40.4171367", "-3.7033171", "-3.7032171"], "geojson": {"type": "Point", "coordinates": [-3.7032671, 40.4170867]}}, {"place_id": 254382444, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 510856333, "lat": "40.41785245", "lon": "-3.7022920067826974", "class": "railway", "type": "platform", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Calle de la Aduana, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4169548", "40.4187340", "-3.7027420", "-3.7018496"], "geojson": {"type": "Polygon", "coordinates": [[[-3.702742, 40.4169719], [-3.7026784, 40.4169548], [-3.7018496, 40.4187169], [-3.7019132, 40.418734], [-3.7027344, 40.416988], [-3.702742, 40.4169719]]]}}, {"place_id": 254725525, "licence": "Data \u00a9 OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "node", "osm_id": 9666750729, "lat": "40.4167134", "lon": "-3.7038554", "class": "railway", "type": "stop", "place_rank": 30, "importance": 9.99999999995449e-06, "addresstype": "railway", "name": "Sol", "display_name": "Sol, Puerta del Sol, Barrio de los Austrias, Sol, Centro, Madrid, Community of Madrid, 28013, Spain", "boundingbox": ["40.4166634", "40.4167634", "-3.7039054", "-3.7038054"], "geojson": {"type": "Point", "coordinates": [-3.7038554, 40.4167134]}}] \ No newline at end of file diff --git a/examples/markov_chains/cache/b64244838e9beadda30d0d2a72a54353258b5c83.json b/examples/markov_chains/cache/b64244838e9beadda30d0d2a72a54353258b5c83.json new file mode 100644 index 0000000..ab2cf1e --- /dev/null +++ b/examples/markov_chains/cache/b64244838e9beadda30d0d2a72a54353258b5c83.json @@ -0,0 +1 @@ +{"version": 0.6, "generator": "Overpass API 0.7.62.1 084b4234", "osm3s": {"timestamp_osm_base": "2024-04-08T12:47:15Z", "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."}, "elements": [{"type": "node", "id": 21627165, "lat": 40.4264961, "lon": -3.6876472}, {"type": "node", "id": 21990700, "lat": 40.4249378, "lon": -3.7007553, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 21990702, "lat": 40.425216, "lon": -3.7000537, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990703, "lat": 40.4252353, "lon": -3.7000117, "tags": {"crossing": "zebra", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 21990704, "lat": 40.4253651, "lon": -3.699723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990705, "lat": 40.4258324, "lon": -3.698691, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990706, "lat": 40.4263178, "lon": -3.6976693, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990717, "lat": 40.4254672, "lon": -3.7009441, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990718, "lat": 40.4260519, "lon": -3.7011811, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 21990719, "lat": 40.4262576, "lon": -3.7012578, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 21990720, "lat": 40.4266623, "lon": -3.7014198}, {"type": "node", "id": 21990721, "lat": 40.4269858, "lon": -3.7015579}, {"type": "node", "id": 21990722, "lat": 40.4272493, "lon": -3.7016691}, {"type": "node", "id": 21990723, "lat": 40.4272902, "lon": -3.7008402}, {"type": "node", "id": 21990724, "lat": 40.4265045, "lon": -3.700532, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990725, "lat": 40.4267552, "lon": -3.6998407, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990726, "lat": 40.4273481, "lon": -3.7000637, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990727, "lat": 40.4277645, "lon": -3.6992917, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990728, "lat": 40.4271013, "lon": -3.6987379, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990729, "lat": 40.4267068, "lon": -3.6981718, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990731, "lat": 40.4275633, "lon": -3.7035723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990732, "lat": 40.4272247, "lon": -3.703615, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990734, "lat": 40.4276412, "lon": -3.7039488, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990735, "lat": 40.4268812, "lon": -3.703658, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990736, "lat": 40.426616, "lon": -3.703707, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990741, "lat": 40.4263485, "lon": -3.7041633, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990742, "lat": 40.4263067, "lon": -3.7037609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990743, "lat": 40.4266838, "lon": -3.7016638}, {"type": "node", "id": 21990744, "lat": 40.426105, "lon": -3.7017698, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990745, "lat": 40.4255595, "lon": -3.7018795, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990746, "lat": 40.4257608, "lon": -3.7038591, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990747, "lat": 40.4258806, "lon": -3.7050195, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990756, "lat": 40.426427, "lon": -3.704943, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22016261, "lat": 40.4278514, "lon": -3.7050403, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 22016262, "lat": 40.428621, "lon": -3.7022173}, {"type": "node", "id": 22016264, "lat": 40.4270407, "lon": -3.7052031, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 22018580, "lat": 40.4286215, "lon": -3.703365, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22018603, "lat": 40.4286709, "lon": -3.7037553, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022079, "lat": 40.4282205, "lon": -3.7049688, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022095, "lat": 40.4280794, "lon": -3.7038599, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022132, "lat": 40.429191, "lon": -3.7036646, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022145, "lat": 40.4291362, "lon": -3.7032648, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022163, "lat": 40.4293795, "lon": -3.7047289, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022173, "lat": 40.4287842, "lon": -3.7048456, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022227, "lat": 40.4289026, "lon": -3.7019855, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022319, "lat": 40.4287858, "lon": -3.7014061, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022337, "lat": 40.4285972, "lon": -3.7005018, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022361, "lat": 40.4283594, "lon": -3.699407, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 22022371, "lat": 40.4284926, "lon": -3.6994245, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 22022469, "lat": 40.4292998, "lon": -3.7036635, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022484, "lat": 40.4294766, "lon": -3.7047082, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22023240, "lat": 40.428903, "lon": -3.7059277, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 22023361, "lat": 40.4271719, "lon": -3.706452, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22023377, "lat": 40.426608, "lon": -3.7067321, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22031310, "lat": 40.4258068, "lon": -3.7042726, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22031313, "lat": 40.4253669, "lon": -3.7009006, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25552423, "lat": 40.4251855, "lon": -3.6841207}, {"type": "node", "id": 25552425, "lat": 40.4252491, "lon": -3.6853692}, {"type": "node", "id": 25552446, "lat": 40.425311, "lon": -3.6865765}, {"type": "node", "id": 25552447, "lat": 40.4253904, "lon": -3.6878644}, {"type": "node", "id": 25552448, "lat": 40.4254613, "lon": -3.688085, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 25552449, "lat": 40.4255705, "lon": -3.6892344, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25552450, "lat": 40.4256049, "lon": -3.6897955, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 25892074, "lat": 40.4198575, "lon": -3.6926419, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 25892152, "lat": 40.4198586, "lon": -3.6933435, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25892156, "lat": 40.420238, "lon": -3.6931651, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25896215, "lat": 40.448114, "lon": -3.7248206}, {"type": "node", "id": 25896216, "lat": 40.4469365, "lon": -3.7246325}, {"type": "node", "id": 25896218, "lat": 40.4462523, "lon": -3.7231557}, {"type": "node", "id": 25896220, "lat": 40.4482292, "lon": -3.7228294}, {"type": "node", "id": 25901825, "lat": 40.4209884, "lon": -3.6928208, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901826, "lat": 40.420482, "lon": -3.6921135, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901838, "lat": 40.4211753, "lon": -3.6918252, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901851, "lat": 40.4206847, "lon": -3.6905634, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901853, "lat": 40.4203042, "lon": -3.6907558, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901885, "lat": 40.4224479, "lon": -3.6921443, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901886, "lat": 40.4218908, "lon": -3.6924031, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901887, "lat": 40.4219137, "lon": -3.6940429, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901888, "lat": 40.4219155, "lon": -3.6941767, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901889, "lat": 40.4224988, "lon": -3.694153, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901890, "lat": 40.4230425, "lon": -3.6941324, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901891, "lat": 40.4230277, "lon": -3.6931408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901892, "lat": 40.422477, "lon": -3.6932557, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901895, "lat": 40.4223687, "lon": -3.691274, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25901897, "lat": 40.4216347, "lon": -3.6895683, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901898, "lat": 40.4205419, "lon": -3.6901942, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901917, "lat": 40.4224921, "lon": -3.689776, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901919, "lat": 40.4221885, "lon": -3.6884002, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901921, "lat": 40.4228351, "lon": -3.6896838, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901922, "lat": 40.42326, "lon": -3.691767, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901923, "lat": 40.4235221, "lon": -3.6929155, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901925, "lat": 40.4231088, "lon": -3.6909534, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25901935, "lat": 40.4251315, "lon": -3.6909553, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901936, "lat": 40.4255185, "lon": -3.6907592, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901937, "lat": 40.4254968, "lon": -3.6910753, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901938, "lat": 40.4255499, "lon": -3.691402, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901940, "lat": 40.4252722, "lon": -3.691194, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25901948, "lat": 40.4245827, "lon": -3.6903143, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901950, "lat": 40.4254485, "lon": -3.6899764, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 25901951, "lat": 40.4255644, "lon": -3.6902789, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901958, "lat": 40.4248462, "lon": -3.6902252, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901959, "lat": 40.4255022, "lon": -3.6900045, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902055, "lat": 40.4265926, "lon": -3.6896823, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902056, "lat": 40.4265564, "lon": -3.6889248, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902058, "lat": 40.4270918, "lon": -3.6895565, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902059, "lat": 40.4265699, "lon": -3.6904737, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902060, "lat": 40.426723, "lon": -3.6914005, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902077, "lat": 40.4279911, "lon": -3.6901007, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902123, "lat": 40.4280447, "lon": -3.6911057, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902124, "lat": 40.4279673, "lon": -3.6893291, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902151, "lat": 40.4294624, "lon": -3.6910498, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902152, "lat": 40.4294102, "lon": -3.6897311, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902154, "lat": 40.4293618, "lon": -3.6889566}, {"type": "node", "id": 25902195, "lat": 40.4305842, "lon": -3.6907454, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902196, "lat": 40.4306044, "lon": -3.6894148}, {"type": "node", "id": 25902199, "lat": 40.430551, "lon": -3.6886425, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902207, "lat": 40.4318026, "lon": -3.6890971, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902210, "lat": 40.4317765, "lon": -3.6904411, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902231, "lat": 40.4325645, "lon": -3.6889003, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902233, "lat": 40.4329162, "lon": -3.6888347, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902235, "lat": 40.4331273, "lon": -3.6888241, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902243, "lat": 40.4329784, "lon": -3.6867203}, {"type": "node", "id": 25902327, "lat": 40.4304617, "lon": -3.6868965}, {"type": "node", "id": 25902329, "lat": 40.429274, "lon": -3.6871389}, {"type": "node", "id": 25902430, "lat": 40.4340892, "lon": -3.6901349}, {"type": "node", "id": 25902431, "lat": 40.4341177, "lon": -3.6889925}, {"type": "node", "id": 25902432, "lat": 40.434687, "lon": -3.6891218, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902433, "lat": 40.4348093, "lon": -3.6892642, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902434, "lat": 40.4351848, "lon": -3.6901531, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902439, "lat": 40.4349114, "lon": -3.6886092, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902441, "lat": 40.4348678, "lon": -3.6888226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902444, "lat": 40.4346768, "lon": -3.6882849, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902445, "lat": 40.4351079, "lon": -3.6881439, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902447, "lat": 40.4352603, "lon": -3.6881459, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902448, "lat": 40.434907, "lon": -3.6882042, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902449, "lat": 40.4350807, "lon": -3.6894231, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902450, "lat": 40.4352026, "lon": -3.6894239, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902452, "lat": 40.4353552, "lon": -3.6890343, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902453, "lat": 40.4352583, "lon": -3.688585, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902455, "lat": 40.4355994, "lon": -3.6888933, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902456, "lat": 40.4354674, "lon": -3.6890707, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902461, "lat": 40.4356018, "lon": -3.6880378, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902467, "lat": 40.4360047, "lon": -3.6873475, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902468, "lat": 40.4361036, "lon": -3.6874467, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902469, "lat": 40.4360624, "lon": -3.6876583, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902471, "lat": 40.4354547, "lon": -3.6882146, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902479, "lat": 40.4362228, "lon": -3.6890374, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902482, "lat": 40.4367322, "lon": -3.6878795, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902485, "lat": 40.4363419, "lon": -3.6875266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902490, "lat": 40.4353665, "lon": -3.6894244, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902491, "lat": 40.4364704, "lon": -3.6901008, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902560, "lat": 40.4354326, "lon": -3.6886888, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902561, "lat": 40.4349689, "lon": -3.6888881, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902584, "lat": 40.4351185, "lon": -3.6865462}, {"type": "node", "id": 25902655, "lat": 40.4351577, "lon": -3.6912629}, {"type": "node", "id": 25902656, "lat": 40.4365344, "lon": -3.6912406, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902664, "lat": 40.4377732, "lon": -3.6904158, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902666, "lat": 40.4376553, "lon": -3.6906044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902673, "lat": 40.4378971, "lon": -3.6901468, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902674, "lat": 40.4380197, "lon": -3.6902089}, {"type": "node", "id": 25902675, "lat": 40.4379694, "lon": -3.6912759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902676, "lat": 40.4381135, "lon": -3.6928882, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902677, "lat": 40.4382099, "lon": -3.6909261}, {"type": "node", "id": 25902678, "lat": 40.4378795, "lon": -3.6908026}, {"type": "node", "id": 25902679, "lat": 40.4382908, "lon": -3.6906818, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902680, "lat": 40.4379888, "lon": -3.6890238, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902690, "lat": 40.4392308, "lon": -3.6915257, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902692, "lat": 40.4393086, "lon": -3.6907348, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902693, "lat": 40.438562, "lon": -3.6904506, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902698, "lat": 40.4392599, "lon": -3.6897751, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902699, "lat": 40.4390634, "lon": -3.6890248, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25902700, "lat": 40.4385972, "lon": -3.6889796, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902703, "lat": 40.4386489, "lon": -3.691327, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902717, "lat": 40.4373694, "lon": -3.6912512, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 25902718, "lat": 40.4376282, "lon": -3.6912565, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902719, "lat": 40.4375664, "lon": -3.6910926, "tags": {"highway": "give_way", "source": "yahoo_maps"}}, {"type": "node", "id": 25902720, "lat": 40.4375652, "lon": -3.6910055, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902722, "lat": 40.4374237, "lon": -3.6907632, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902756, "lat": 40.4387879, "lon": -3.6928228, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902757, "lat": 40.439294, "lon": -3.6927814, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902758, "lat": 40.4410563, "lon": -3.6926225, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902759, "lat": 40.4406508, "lon": -3.6920393, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902760, "lat": 40.4408741, "lon": -3.6923927, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902773, "lat": 40.4408364, "lon": -3.6918671, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902775, "lat": 40.4409775, "lon": -3.6918363, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902777, "lat": 40.4412273, "lon": -3.6922643, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902778, "lat": 40.4411662, "lon": -3.6927028, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902782, "lat": 40.4408757, "lon": -3.6912631, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902783, "lat": 40.4412136, "lon": -3.6910263, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902784, "lat": 40.4411314, "lon": -3.6907663, "tags": {"barrier": "gate", "bicycle": "yes", "foot": "yes", "motorcar": "yes", "motorcycle": "yes", "source": "yahoo_maps"}}, {"type": "node", "id": 25902785, "lat": 40.4410467, "lon": -3.6906262, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902786, "lat": 40.440875, "lon": -3.6904709, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902787, "lat": 40.4399372, "lon": -3.690131, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902788, "lat": 40.4398, "lon": -3.6901467, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902789, "lat": 40.4396871, "lon": -3.6901953, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902790, "lat": 40.4394872, "lon": -3.6903546, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902793, "lat": 40.442278, "lon": -3.6896314, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902794, "lat": 40.4415795, "lon": -3.6906224, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902795, "lat": 40.4413898, "lon": -3.6909487, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902796, "lat": 40.4413626, "lon": -3.6911234, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902797, "lat": 40.44125, "lon": -3.691023, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902798, "lat": 40.4412833, "lon": -3.6915059, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902799, "lat": 40.4414085, "lon": -3.6917773, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902800, "lat": 40.4411712, "lon": -3.6919648, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902801, "lat": 40.441064, "lon": -3.691946}, {"type": "node", "id": 25902804, "lat": 40.441522, "lon": -3.6915663, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 25902806, "lat": 40.4421461, "lon": -3.6917646, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902807, "lat": 40.4413852, "lon": -3.6923344}, {"type": "node", "id": 25902808, "lat": 40.4412995, "lon": -3.6924408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902821, "lat": 40.4414315, "lon": -3.6921376, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902845, "lat": 40.4436309, "lon": -3.6916357, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902846, "lat": 40.4432166, "lon": -3.6916772, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902862, "lat": 40.4450332, "lon": -3.6912503, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902866, "lat": 40.4453368, "lon": -3.690998, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902883, "lat": 40.4458372, "lon": -3.691165, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902884, "lat": 40.4460498, "lon": -3.6908355, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902885, "lat": 40.4463077, "lon": -3.6908068, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902886, "lat": 40.4463656, "lon": -3.6910318, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902890, "lat": 40.4463504, "lon": -3.6916562, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902892, "lat": 40.4461371, "lon": -3.691609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902894, "lat": 40.4461065, "lon": -3.6914894, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902895, "lat": 40.4464894, "lon": -3.6913474, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902900, "lat": 40.4461443, "lon": -3.6894025}, {"type": "node", "id": 25902901, "lat": 40.4463575, "lon": -3.6933399}, {"type": "node", "id": 25902909, "lat": 40.446534, "lon": -3.6930975, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 25902910, "lat": 40.4464156, "lon": -3.6931159, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902921, "lat": 40.4470325, "lon": -3.6915869, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902923, "lat": 40.4487513, "lon": -3.6914322, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902929, "lat": 40.4491842, "lon": -3.6914199, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902931, "lat": 40.4492011, "lon": -3.6904251}, {"type": "node", "id": 25902943, "lat": 40.447223, "lon": -3.6906008, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902945, "lat": 40.4475987, "lon": -3.6905724, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902946, "lat": 40.4510544, "lon": -3.6902444}, {"type": "node", "id": 25902947, "lat": 40.4515696, "lon": -3.6911692, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902949, "lat": 40.451657, "lon": -3.6908029, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902961, "lat": 40.4518187, "lon": -3.690207, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903269, "lat": 40.4346597, "lon": -3.6887525, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903270, "lat": 40.434558, "lon": -3.6886088, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903271, "lat": 40.4329807, "lon": -3.6884833, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903272, "lat": 40.4329988, "lon": -3.6883531, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903282, "lat": 40.4305821, "lon": -3.6890968}, {"type": "node", "id": 25903287, "lat": 40.4293864, "lon": -3.6894134, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903288, "lat": 40.4293782, "lon": -3.6892956, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903289, "lat": 40.4279813, "lon": -3.6897847, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903290, "lat": 40.4279775, "lon": -3.6896608, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903291, "lat": 40.4256842, "lon": -3.6903917, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903292, "lat": 40.4258978, "lon": -3.6902051, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25903296, "lat": 40.4255978, "lon": -3.6899339, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903297, "lat": 40.4246423, "lon": -3.6906456, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903298, "lat": 40.4246891, "lon": -3.6904361, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903299, "lat": 40.423998, "lon": -3.6907533, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903302, "lat": 40.4245306, "lon": -3.6905111, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903307, "lat": 40.4231574, "lon": -3.6912723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903309, "lat": 40.4231354, "lon": -3.6911416, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903324, "lat": 40.422425, "lon": -3.6916197, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25903333, "lat": 40.4224122, "lon": -3.6914949, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903334, "lat": 40.4218837, "lon": -3.6918609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903336, "lat": 40.4218734, "lon": -3.6917415, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903337, "lat": 40.4203006, "lon": -3.6925731, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903338, "lat": 40.4201623, "lon": -3.6925073, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903357, "lat": 40.4385625, "lon": -3.6909677, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903358, "lat": 40.4397573, "lon": -3.6913711, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903359, "lat": 40.4404709, "lon": -3.6916461, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25903360, "lat": 40.4404173, "lon": -3.6914232, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906098, "lat": 40.4281261, "lon": -3.6993664, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906102, "lat": 40.4274853, "lon": -3.6982352, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906103, "lat": 40.4280749, "lon": -3.6980502, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906104, "lat": 40.4282023, "lon": -3.6980599, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906105, "lat": 40.427886, "lon": -3.6971498, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906107, "lat": 40.4271084, "lon": -3.6976019, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906108, "lat": 40.4273042, "lon": -3.6979548, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906109, "lat": 40.4269178, "lon": -3.6984819, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906111, "lat": 40.4265715, "lon": -3.6968128, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906112, "lat": 40.4259731, "lon": -3.6971958, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906116, "lat": 40.4275732, "lon": -3.6956967, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906117, "lat": 40.4277374, "lon": -3.6955312, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906118, "lat": 40.4279632, "lon": -3.6956377, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906121, "lat": 40.4279256, "lon": -3.6961224, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906122, "lat": 40.4277594, "lon": -3.6961642, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906124, "lat": 40.4265916, "lon": -3.695292, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906125, "lat": 40.4258923, "lon": -3.6959231, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906127, "lat": 40.4255346, "lon": -3.6954711, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906128, "lat": 40.4263548, "lon": -3.6947913, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906129, "lat": 40.4261113, "lon": -3.6942911, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906130, "lat": 40.4251755, "lon": -3.694989, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906131, "lat": 40.4258454, "lon": -3.6937164, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906132, "lat": 40.4271361, "lon": -3.694768}, {"type": "node", "id": 25906133, "lat": 40.4272055, "lon": -3.6946875, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25906134, "lat": 40.4274398, "lon": -3.6952097, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 25906135, "lat": 40.4273831, "lon": -3.6952637, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 25906136, "lat": 40.4266661, "lon": -3.6938711}, {"type": "node", "id": 25906137, "lat": 40.4267604, "lon": -3.6938292}, {"type": "node", "id": 25906138, "lat": 40.4264961, "lon": -3.693507, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906139, "lat": 40.4261147, "lon": -3.6927492}, {"type": "node", "id": 25906141, "lat": 40.4260585, "lon": -3.6923994}, {"type": "node", "id": 25906143, "lat": 40.4274035, "lon": -3.6937766, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906144, "lat": 40.4273322, "lon": -3.6922023, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906145, "lat": 40.4268527, "lon": -3.6922673, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906150, "lat": 40.4254922, "lon": -3.6921521, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906175, "lat": 40.4238631, "lon": -3.6944102, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906196, "lat": 40.4245556, "lon": -3.6954502, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906200, "lat": 40.4250011, "lon": -3.6959572, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906204, "lat": 40.4243036, "lon": -3.6968781, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906209, "lat": 40.4243366, "lon": -3.69699, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906212, "lat": 40.424433, "lon": -3.6972609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906216, "lat": 40.4246876, "lon": -3.6970308, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906221, "lat": 40.4250492, "lon": -3.6977867, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906225, "lat": 40.4241632, "lon": -3.6964095, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906265, "lat": 40.4230961, "lon": -3.6955759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906266, "lat": 40.4236766, "lon": -3.695544, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906267, "lat": 40.4230941, "lon": -3.6952276, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906268, "lat": 40.4236412, "lon": -3.6950547, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906269, "lat": 40.4225342, "lon": -3.6956075, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906270, "lat": 40.4219361, "lon": -3.6956524, "tags": {"highway": "traffic_signals", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 25906271, "lat": 40.423743, "lon": -3.6965046, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906272, "lat": 40.4237875, "lon": -3.6972172, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906273, "lat": 40.4230007, "lon": -3.6975802, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906274, "lat": 40.4239442, "lon": -3.6976776, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906275, "lat": 40.4232162, "lon": -3.6981721, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906276, "lat": 40.4234533, "lon": -3.6987951, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906277, "lat": 40.4237089, "lon": -3.6986266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906281, "lat": 40.4229339, "lon": -3.6973759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906286, "lat": 40.4231553, "lon": -3.6966562, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906287, "lat": 40.4224938, "lon": -3.6986906, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906288, "lat": 40.4227186, "lon": -3.6993179, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906289, "lat": 40.4232299, "lon": -3.6989408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906290, "lat": 40.4236109, "lon": -3.7006635}, {"type": "node", "id": 25906292, "lat": 40.4237939, "lon": -3.7006505}, {"type": "node", "id": 25906293, "lat": 40.4239858, "lon": -3.7006522, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25906294, "lat": 40.4239198, "lon": -3.6995051, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906295, "lat": 40.4242584, "lon": -3.7006617}, {"type": "node", "id": 25906296, "lat": 40.4243542, "lon": -3.700669}, {"type": "node", "id": 25906297, "lat": 40.4245153, "lon": -3.6998664}, {"type": "node", "id": 25906298, "lat": 40.4245486, "lon": -3.6996944, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906299, "lat": 40.4244217, "lon": -3.699391, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906300, "lat": 40.4245788, "lon": -3.6980909, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906301, "lat": 40.4247336, "lon": -3.6979921, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906302, "lat": 40.4254007, "lon": -3.7008258, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 25906304, "lat": 40.4256607, "lon": -3.7002501}, {"type": "node", "id": 25906306, "lat": 40.4257818, "lon": -3.6999818}, {"type": "node", "id": 25906307, "lat": 40.4259737, "lon": -3.6995567, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906367, "lat": 40.4211236, "lon": -3.6956591, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906378, "lat": 40.4190271, "lon": -3.6955619, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 25906420, "lat": 40.4205457, "lon": -3.7008834, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906421, "lat": 40.420994, "lon": -3.7006147, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906429, "lat": 40.4218928, "lon": -3.6999293, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906431, "lat": 40.4216722, "lon": -3.6992596, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25934317, "lat": 40.4279981, "lon": -3.6953247, "tags": {"highway": "crossing"}}, {"type": "node", "id": 25934320, "lat": 40.4279563, "lon": -3.6954449}, {"type": "node", "id": 25934323, "lat": 40.4282007, "lon": -3.6937183, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 25934324, "lat": 40.4281198, "lon": -3.6920997}, {"type": "node", "id": 25934447, "lat": 40.428812, "lon": -3.6960444}, {"type": "node", "id": 25934453, "lat": 40.4282104, "lon": -3.6958072}, {"type": "node", "id": 25934459, "lat": 40.4280527, "lon": -3.6959013, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25934465, "lat": 40.4286458, "lon": -3.6972694}, {"type": "node", "id": 25934470, "lat": 40.4285253, "lon": -3.6982115}, {"type": "node", "id": 25934506, "lat": 40.4291147, "lon": -3.6973894}, {"type": "node", "id": 25934520, "lat": 40.4296283, "lon": -3.6975379}, {"type": "node", "id": 25934522, "lat": 40.4295226, "lon": -3.6987132}, {"type": "node", "id": 25934524, "lat": 40.4289699, "lon": -3.6984296}, {"type": "node", "id": 25934540, "lat": 40.4294362, "lon": -3.6996746}, {"type": "node", "id": 25934541, "lat": 40.4293559, "lon": -3.7005957}, {"type": "node", "id": 25934545, "lat": 40.4300031, "lon": -3.7007394, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25934548, "lat": 40.4294422, "lon": -3.7013993}, {"type": "node", "id": 25934553, "lat": 40.4290461, "lon": -3.7018175}, {"type": "node", "id": 25934556, "lat": 40.4291792, "lon": -3.7022467}, {"type": "node", "id": 25934572, "lat": 40.4293825, "lon": -3.7024674, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25934577, "lat": 40.4301767, "lon": -3.7028151}, {"type": "node", "id": 25934578, "lat": 40.4304175, "lon": -3.7017533}, {"type": "node", "id": 25934579, "lat": 40.4299221, "lon": -3.7035436}, {"type": "node", "id": 25934580, "lat": 40.4301209, "lon": -3.7045927}, {"type": "node", "id": 25934823, "lat": 40.4298328, "lon": -3.7056016}, {"type": "node", "id": 25934824, "lat": 40.4298723, "lon": -3.7057738, "tags": {"highway": "give_way"}}, {"type": "node", "id": 25934825, "lat": 40.4298638, "lon": -3.7058827}, {"type": "node", "id": 25934826, "lat": 40.4297966, "lon": -3.7060457}, {"type": "node", "id": 25934828, "lat": 40.429686, "lon": -3.7061387}, {"type": "node", "id": 25934829, "lat": 40.4295867, "lon": -3.7061601}, {"type": "node", "id": 25934830, "lat": 40.4294304, "lon": -3.7060933}, {"type": "node", "id": 25934832, "lat": 40.4293517, "lon": -3.7059832}, {"type": "node", "id": 25934833, "lat": 40.4293116, "lon": -3.7058211}, {"type": "node", "id": 25934835, "lat": 40.4293127, "lon": -3.7057469}, {"type": "node", "id": 25934837, "lat": 40.4293441, "lon": -3.7056164}, {"type": "node", "id": 25934841, "lat": 40.4291227, "lon": -3.7059619, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25934849, "lat": 40.4289125, "lon": -3.7060167, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25934855, "lat": 40.4283555, "lon": -3.7061785}, {"type": "node", "id": 25934856, "lat": 40.4295011, "lon": -3.7054416}, {"type": "node", "id": 25934861, "lat": 40.4295988, "lon": -3.7054227}, {"type": "node", "id": 25934863, "lat": 40.4297497, "lon": -3.7054859}, {"type": "node", "id": 25934875, "lat": 40.4294752, "lon": -3.7052718, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935033, "lat": 40.4297293, "lon": -3.7077323}, {"type": "node", "id": 25935035, "lat": 40.4298219, "lon": -3.7076347}, {"type": "node", "id": 25935043, "lat": 40.4286979, "lon": -3.7078915}, {"type": "node", "id": 25935044, "lat": 40.428749, "lon": -3.7076366, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 25935046, "lat": 40.4288531, "lon": -3.7073711}, {"type": "node", "id": 25935048, "lat": 40.4289144, "lon": -3.7071056}, {"type": "node", "id": 25935049, "lat": 40.4289511, "lon": -3.7068106}, {"type": "node", "id": 25935051, "lat": 40.4289491, "lon": -3.7064967}, {"type": "node", "id": 25935058, "lat": 40.4298441, "lon": -3.7088944, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935060, "lat": 40.4299492, "lon": -3.7089785, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935062, "lat": 40.4288181, "lon": -3.7095138, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935066, "lat": 40.4290392, "lon": -3.7106322}, {"type": "node", "id": 25935069, "lat": 40.4300097, "lon": -3.710511}, {"type": "node", "id": 25935071, "lat": 40.4301213, "lon": -3.7105268, "tags": {"highway": "crossing"}}, {"type": "node", "id": 25935073, "lat": 40.4311227, "lon": -3.7104643}, {"type": "node", "id": 25935074, "lat": 40.4301395, "lon": -3.7089994}, {"type": "node", "id": 25935075, "lat": 40.431067, "lon": -3.7089242}, {"type": "node", "id": 25935134, "lat": 40.4316847, "lon": -3.7104303}, {"type": "node", "id": 25935136, "lat": 40.4317362, "lon": -3.7117185}, {"type": "node", "id": 25935138, "lat": 40.4311025, "lon": -3.7117837}, {"type": "node", "id": 25935139, "lat": 40.4302384, "lon": -3.7118605}, {"type": "node", "id": 25935141, "lat": 40.4301627, "lon": -3.7119214}, {"type": "node", "id": 25935142, "lat": 40.4312218, "lon": -3.7134567}, {"type": "node", "id": 25935144, "lat": 40.4318003, "lon": -3.713409}, {"type": "node", "id": 25935146, "lat": 40.4304137, "lon": -3.713524}, {"type": "node", "id": 25935149, "lat": 40.4303333, "lon": -3.7138466}, {"type": "node", "id": 25935174, "lat": 40.4294838, "lon": -3.7124171}, {"type": "node", "id": 25935514, "lat": 40.4299564, "lon": -3.7141601}, {"type": "node", "id": 25935515, "lat": 40.4289237, "lon": -3.7149592}, {"type": "node", "id": 25935516, "lat": 40.4288591, "lon": -3.7150989}, {"type": "node", "id": 25935517, "lat": 40.4305221, "lon": -3.7146551}, {"type": "node", "id": 25935519, "lat": 40.4306314, "lon": -3.7157961}, {"type": "node", "id": 25935521, "lat": 40.430667, "lon": -3.7162136}, {"type": "node", "id": 25935522, "lat": 40.4305604, "lon": -3.7161447}, {"type": "node", "id": 25935523, "lat": 40.4306489, "lon": -3.7163298}, {"type": "node", "id": 25935524, "lat": 40.4305519, "lon": -3.7162708}, {"type": "node", "id": 25935531, "lat": 40.4316681, "lon": -3.717063}, {"type": "node", "id": 25935532, "lat": 40.4316461, "lon": -3.7169074}, {"type": "node", "id": 25935534, "lat": 40.4307846, "lon": -3.7191171}, {"type": "node", "id": 25935540, "lat": 40.4297103, "lon": -3.7157125}, {"type": "node", "id": 25935554, "lat": 40.4303837, "lon": -3.7200824}, {"type": "node", "id": 25935574, "lat": 40.428856, "lon": -3.7222236}, {"type": "node", "id": 25935576, "lat": 40.4294773, "lon": -3.7222651}, {"type": "node", "id": 26025840, "lat": 40.4391067, "lon": -3.716382, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025841, "lat": 40.4390662, "lon": -3.7152176}, {"type": "node", "id": 26025842, "lat": 40.4390149, "lon": -3.7141033}, {"type": "node", "id": 26025843, "lat": 40.4389609, "lon": -3.7128532}, {"type": "node", "id": 26025844, "lat": 40.4388631, "lon": -3.7111176}, {"type": "node", "id": 26025845, "lat": 40.4388661, "lon": -3.7099342}, {"type": "node", "id": 26025846, "lat": 40.4387991, "lon": -3.708276}, {"type": "node", "id": 26025847, "lat": 40.4378076, "lon": -3.7164675}, {"type": "node", "id": 26025848, "lat": 40.4377547, "lon": -3.7153128}, {"type": "node", "id": 26025849, "lat": 40.4377034, "lon": -3.7141866}, {"type": "node", "id": 26025850, "lat": 40.4376485, "lon": -3.712973}, {"type": "node", "id": 26025851, "lat": 40.4375696, "lon": -3.7112259}, {"type": "node", "id": 26025852, "lat": 40.4375211, "lon": -3.7100371}, {"type": "node", "id": 26025853, "lat": 40.4374404, "lon": -3.7083919}, {"type": "node", "id": 26025854, "lat": 40.4365646, "lon": -3.7165517}, {"type": "node", "id": 26025855, "lat": 40.4365123, "lon": -3.7154042}, {"type": "node", "id": 26025856, "lat": 40.4364487, "lon": -3.7142674}, {"type": "node", "id": 26025857, "lat": 40.4363963, "lon": -3.7130525, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025858, "lat": 40.4363092, "lon": -3.7113317, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025859, "lat": 40.4362474, "lon": -3.7101179}, {"type": "node", "id": 26025860, "lat": 40.4361752, "lon": -3.7084993, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025861, "lat": 40.4360997, "lon": -3.7067718}, {"type": "node", "id": 26025862, "lat": 40.4354674, "lon": -3.7166262, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26025863, "lat": 40.4354183, "lon": -3.715468}, {"type": "node", "id": 26025864, "lat": 40.4353703, "lon": -3.7143358}, {"type": "node", "id": 26025865, "lat": 40.43532, "lon": -3.7131488, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025866, "lat": 40.4352468, "lon": -3.7114209}, {"type": "node", "id": 26025867, "lat": 40.4351966, "lon": -3.7102002}, {"type": "node", "id": 26025869, "lat": 40.4351101, "lon": -3.7085897, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025870, "lat": 40.4350194, "lon": -3.7068517}, {"type": "node", "id": 26025871, "lat": 40.4344753, "lon": -3.7166938, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025872, "lat": 40.4344021, "lon": -3.7155502}, {"type": "node", "id": 26025873, "lat": 40.4343299, "lon": -3.7144047}, {"type": "node", "id": 26025875, "lat": 40.4342546, "lon": -3.7132186}, {"type": "node", "id": 26025876, "lat": 40.4341459, "lon": -3.7115067}, {"type": "node", "id": 26025877, "lat": 40.4340681, "lon": -3.7102813}, {"type": "node", "id": 26025878, "lat": 40.4339648, "lon": -3.7086841, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025879, "lat": 40.4338572, "lon": -3.7069611}, {"type": "node", "id": 26025880, "lat": 40.4331162, "lon": -3.7167863}, {"type": "node", "id": 26025881, "lat": 40.4330872, "lon": -3.7156202}, {"type": "node", "id": 26025882, "lat": 40.4330529, "lon": -3.7144872}, {"type": "node", "id": 26025883, "lat": 40.4330161, "lon": -3.7133155}, {"type": "node", "id": 26025884, "lat": 40.4329623, "lon": -3.7116007}, {"type": "node", "id": 26025885, "lat": 40.432161, "lon": -3.7124657}, {"type": "node", "id": 26025886, "lat": 40.4325412, "lon": -3.7133514}, {"type": "node", "id": 26025887, "lat": 40.432923, "lon": -3.7103471}, {"type": "node", "id": 26025888, "lat": 40.4328585, "lon": -3.7087753}, {"type": "node", "id": 26025889, "lat": 40.4318876, "lon": -3.7157104}, {"type": "node", "id": 26025890, "lat": 40.431844, "lon": -3.7145595, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025891, "lat": 40.4316031, "lon": -3.7088787}, {"type": "node", "id": 26025892, "lat": 40.4319316, "lon": -3.7168691, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025893, "lat": 40.4347823, "lon": -3.7131785}, {"type": "node", "id": 26025894, "lat": 40.4347333, "lon": -3.7114642, "tags": {"highway": "crossing"}}, {"type": "node", "id": 26025895, "lat": 40.4348317, "lon": -3.7143723}, {"type": "node", "id": 26025896, "lat": 40.4336158, "lon": -3.7103124}, {"type": "node", "id": 26025897, "lat": 40.4334742, "lon": -3.7087246}, {"type": "node", "id": 26025901, "lat": 40.4392593, "lon": -3.716566}, {"type": "node", "id": 26025902, "lat": 40.4391965, "lon": -3.7152088}, {"type": "node", "id": 26025903, "lat": 40.4391499, "lon": -3.7140934}, {"type": "node", "id": 26025904, "lat": 40.4390999, "lon": -3.7128416}, {"type": "node", "id": 26025906, "lat": 40.4329702, "lon": -3.7118524}, {"type": "node", "id": 26025907, "lat": 40.4317767, "lon": -3.7127869}, {"type": "node", "id": 26058790, "lat": 40.424296, "lon": -3.7018755}, {"type": "node", "id": 26058801, "lat": 40.4249468, "lon": -3.7019986}, {"type": "node", "id": 26058802, "lat": 40.4246714, "lon": -3.7032496}, {"type": "node", "id": 26058803, "lat": 40.4244763, "lon": -3.7025097}, {"type": "node", "id": 26058804, "lat": 40.4238382, "lon": -3.7030487}, {"type": "node", "id": 26058806, "lat": 40.4241223, "lon": -3.7037749}, {"type": "node", "id": 26058807, "lat": 40.4243588, "lon": -3.7043792}, {"type": "node", "id": 26058808, "lat": 40.4252236, "lon": -3.7031147}, {"type": "node", "id": 26058809, "lat": 40.4251449, "lon": -3.7027971}, {"type": "node", "id": 26058811, "lat": 40.4254399, "lon": -3.7039151}, {"type": "node", "id": 26058812, "lat": 40.4254786, "lon": -3.704241}, {"type": "node", "id": 26066549, "lat": 40.4255728, "lon": -3.705039}, {"type": "node", "id": 26066550, "lat": 40.4257246, "lon": -3.7072358}, {"type": "node", "id": 26066551, "lat": 40.4256802, "lon": -3.7066568}, {"type": "node", "id": 26066552, "lat": 40.4256317, "lon": -3.7060004}, {"type": "node", "id": 26066553, "lat": 40.4260868, "lon": -3.7070379}, {"type": "node", "id": 26066554, "lat": 40.4255659, "lon": -3.7073156}, {"type": "node", "id": 26066555, "lat": 40.4253396, "lon": -3.7073834}, {"type": "node", "id": 26066556, "lat": 40.425082, "lon": -3.7074215}, {"type": "node", "id": 26066557, "lat": 40.4251256, "lon": -3.7066205}, {"type": "node", "id": 26066558, "lat": 40.4249535, "lon": -3.7066244}, {"type": "node", "id": 26066559, "lat": 40.4250084, "lon": -3.7058799}, {"type": "node", "id": 26066560, "lat": 40.4250416, "lon": -3.7053819}, {"type": "node", "id": 26066561, "lat": 40.4251265, "lon": -3.7044266}, {"type": "node", "id": 26066562, "lat": 40.4248838, "lon": -3.7059232}, {"type": "node", "id": 26066563, "lat": 40.4242386, "lon": -3.7051736}, {"type": "node", "id": 26066564, "lat": 40.4240887, "lon": -3.7062896}, {"type": "node", "id": 26066566, "lat": 40.4238598, "lon": -3.7056302}, {"type": "node", "id": 26066571, "lat": 40.4239333, "lon": -3.7074116}, {"type": "node", "id": 26066572, "lat": 40.4243242, "lon": -3.7073916, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066573, "lat": 40.4242426, "lon": -3.7066205}, {"type": "node", "id": 26066574, "lat": 40.4237232, "lon": -3.7053087}, {"type": "node", "id": 26066576, "lat": 40.4232018, "lon": -3.7046553}, {"type": "node", "id": 26066577, "lat": 40.4229476, "lon": -3.7042807}, {"type": "node", "id": 26066578, "lat": 40.4232585, "lon": -3.7037973}, {"type": "node", "id": 26067258, "lat": 40.4251465, "lon": -3.7102944}, {"type": "node", "id": 26067259, "lat": 40.4249713, "lon": -3.7099568}, {"type": "node", "id": 26067260, "lat": 40.4248849, "lon": -3.709831}, {"type": "node", "id": 26067261, "lat": 40.4257323, "lon": -3.7093355}, {"type": "node", "id": 26067262, "lat": 40.4257292, "lon": -3.7092567}, {"type": "node", "id": 26067263, "lat": 40.4246602, "lon": -3.709143}, {"type": "node", "id": 26067265, "lat": 40.4256619, "lon": -3.7085088}, {"type": "node", "id": 26067266, "lat": 40.4262002, "lon": -3.708378}, {"type": "node", "id": 26067267, "lat": 40.426757, "lon": -3.7082559}, {"type": "node", "id": 26067268, "lat": 40.4274021, "lon": -3.7081269}, {"type": "node", "id": 26067269, "lat": 40.427968, "lon": -3.7080122, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067270, "lat": 40.428333, "lon": -3.7079615}, {"type": "node", "id": 26067271, "lat": 40.4256007, "lon": -3.7077741}, {"type": "node", "id": 26067272, "lat": 40.4271583, "lon": -3.7068894}, {"type": "node", "id": 26067273, "lat": 40.4274811, "lon": -3.7063529}, {"type": "node", "id": 26067274, "lat": 40.4261225, "lon": -3.7074728, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067275, "lat": 40.4266565, "lon": -3.707182, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067276, "lat": 40.4274588, "lon": -3.7067769}, {"type": "node", "id": 26067277, "lat": 40.4267097, "lon": -3.7077508}, {"type": "node", "id": 26067281, "lat": 40.4274245, "lon": -3.707533, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067282, "lat": 40.427164, "lon": -3.7075707}, {"type": "node", "id": 26067283, "lat": 40.4279957, "lon": -3.7074282}, {"type": "node", "id": 26067284, "lat": 40.4283419, "lon": -3.7073703}, {"type": "node", "id": 26067285, "lat": 40.4258277, "lon": -3.7098245}, {"type": "node", "id": 26067286, "lat": 40.4254768, "lon": -3.7111194}, {"type": "node", "id": 26067287, "lat": 40.4261562, "lon": -3.7106507}, {"type": "node", "id": 26067288, "lat": 40.4256929, "lon": -3.7116544}, {"type": "node", "id": 26067289, "lat": 40.4263719, "lon": -3.7111713}, {"type": "node", "id": 26067290, "lat": 40.4258038, "lon": -3.7119146}, {"type": "node", "id": 26067291, "lat": 40.426305, "lon": -3.71259}, {"type": "node", "id": 26067292, "lat": 40.4267843, "lon": -3.7121814}, {"type": "node", "id": 26067294, "lat": 40.4253403, "lon": -3.7119618}, {"type": "node", "id": 26067298, "lat": 40.4258956, "lon": -3.7100138}, {"type": "node", "id": 26067300, "lat": 40.4279556, "lon": -3.7101312}, {"type": "node", "id": 26067301, "lat": 40.4287519, "lon": -3.7095557, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26067302, "lat": 40.4268832, "lon": -3.7093974}, {"type": "node", "id": 26067303, "lat": 40.4262829, "lon": -3.7093367, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067304, "lat": 40.4273154, "lon": -3.7094705, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 26067306, "lat": 40.4283086, "lon": -3.7095708}, {"type": "node", "id": 26067307, "lat": 40.4268951, "lon": -3.7096322, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067308, "lat": 40.4278717, "lon": -3.7098977}, {"type": "node", "id": 26067309, "lat": 40.4269564, "lon": -3.7102993, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 26067310, "lat": 40.428271, "lon": -3.7099242}, {"type": "node", "id": 26067313, "lat": 40.4270677, "lon": -3.7094181, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067881, "lat": 40.426356, "lon": -3.7132546}, {"type": "node", "id": 26067884, "lat": 40.4270654, "lon": -3.7136282}, {"type": "node", "id": 26067885, "lat": 40.4271671, "lon": -3.7138322}, {"type": "node", "id": 26067887, "lat": 40.4275452, "lon": -3.7138167, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26067888, "lat": 40.4284636, "lon": -3.7131581}, {"type": "node", "id": 26068006, "lat": 40.425163, "lon": -3.7123967}, {"type": "node", "id": 26080658, "lat": 40.4255872, "lon": -3.7167587}, {"type": "node", "id": 26080663, "lat": 40.4252498, "lon": -3.7172006}, {"type": "node", "id": 26080688, "lat": 40.4247524, "lon": -3.7159496}, {"type": "node", "id": 26080755, "lat": 40.4254769, "lon": -3.7182799}, {"type": "node", "id": 26080756, "lat": 40.4255719, "lon": -3.7184524}, {"type": "node", "id": 26080757, "lat": 40.425781, "lon": -3.7186775}, {"type": "node", "id": 26080762, "lat": 40.4276385, "lon": -3.7204864}, {"type": "node", "id": 26080763, "lat": 40.4268249, "lon": -3.7196945}, {"type": "node", "id": 26080778, "lat": 40.4282605, "lon": -3.7146265}, {"type": "node", "id": 26080779, "lat": 40.4277051, "lon": -3.714219}, {"type": "node", "id": 26080781, "lat": 40.4266075, "lon": -3.7142826}, {"type": "node", "id": 26153007, "lat": 40.4347849, "lon": -3.7126572}, {"type": "node", "id": 26211528, "lat": 40.4355418, "lon": -3.7182714}, {"type": "node", "id": 26211530, "lat": 40.4366445, "lon": -3.7180825}, {"type": "node", "id": 26211532, "lat": 40.4378778, "lon": -3.7178553}, {"type": "node", "id": 26211534, "lat": 40.4389881, "lon": -3.7174892}, {"type": "node", "id": 26211537, "lat": 40.4390784, "lon": -3.7173391}, {"type": "node", "id": 26211539, "lat": 40.4392848, "lon": -3.7173036}, {"type": "node", "id": 26211541, "lat": 40.4393423, "lon": -3.7173415}, {"type": "node", "id": 26211543, "lat": 40.4394086, "lon": -3.7174325}, {"type": "node", "id": 26211545, "lat": 40.4394251, "lon": -3.7174736}, {"type": "node", "id": 26211547, "lat": 40.4393996, "lon": -3.7177781}, {"type": "node", "id": 26211549, "lat": 40.4393258, "lon": -3.7178651}, {"type": "node", "id": 26211551, "lat": 40.4392313, "lon": -3.7179045, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 26211553, "lat": 40.4391327, "lon": -3.7178892}, {"type": "node", "id": 26211555, "lat": 40.439022, "lon": -3.7177847}, {"type": "node", "id": 26211558, "lat": 40.4389737, "lon": -3.7175842}, {"type": "node", "id": 26211561, "lat": 40.4390242, "lon": -3.7174048}, {"type": "node", "id": 26211563, "lat": 40.4394343, "lon": -3.7176864}, {"type": "node", "id": 26211576, "lat": 40.4400804, "lon": -3.7151482}, {"type": "node", "id": 26211577, "lat": 40.4405462, "lon": -3.7156591}, {"type": "node", "id": 26211580, "lat": 40.4400697, "lon": -3.714034}, {"type": "node", "id": 26212606, "lat": 40.4392912, "lon": -3.7123722, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26212608, "lat": 40.4391776, "lon": -3.7123237}, {"type": "node", "id": 26212609, "lat": 40.4390511, "lon": -3.7123153, "tags": {"highway": "give_way"}}, {"type": "node", "id": 26212610, "lat": 40.4390338, "lon": -3.7122851}, {"type": "node", "id": 26212611, "lat": 40.4389864, "lon": -3.7111123}, {"type": "node", "id": 26212612, "lat": 40.4396449, "lon": -3.7110631}, {"type": "node", "id": 26212613, "lat": 40.4395025, "lon": -3.7118202}, {"type": "node", "id": 26212614, "lat": 40.4392529, "lon": -3.7122947}, {"type": "node", "id": 26212616, "lat": 40.4396842, "lon": -3.7111327}, {"type": "node", "id": 26212617, "lat": 40.4392428, "lon": -3.7128296, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26212618, "lat": 40.4389305, "lon": -3.7125857}, {"type": "node", "id": 26212619, "lat": 40.4391981, "lon": -3.7125244}, {"type": "node", "id": 26212621, "lat": 40.4389573, "lon": -3.7120043}, {"type": "node", "id": 26212622, "lat": 40.4388872, "lon": -3.7104722}, {"type": "node", "id": 26242734, "lat": 40.4344299, "lon": -3.7069128}, {"type": "node", "id": 26242736, "lat": 40.4346192, "lon": -3.7086302}, {"type": "node", "id": 26242738, "lat": 40.4374311, "lon": -3.7080403, "tags": {"noexit": "yes"}}, {"type": "node", "id": 26242740, "lat": 40.4365444, "lon": -3.7067343, "tags": {"barrier": "gate", "name": "SelfieWallFiction", "tourism": "artwork"}}, {"type": "node", "id": 26341673, "lat": 40.4200052, "lon": -3.7011016, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 26412916, "lat": 40.4510621, "lon": -3.7033586}, {"type": "node", "id": 26413032, "lat": 40.4505383, "lon": -3.7034373}, {"type": "node", "id": 26413033, "lat": 40.4505302, "lon": -3.703438, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413048, "lat": 40.4499801, "lon": -3.7035192, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413061, "lat": 40.4494289, "lon": -3.7036001}, {"type": "node", "id": 26413086, "lat": 40.4486439, "lon": -3.7037164}, {"type": "node", "id": 26413137, "lat": 40.4474556, "lon": -3.7038912, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26413138, "lat": 40.4470434, "lon": -3.7042558}, {"type": "node", "id": 26413139, "lat": 40.4472146, "lon": -3.70405}, {"type": "node", "id": 26413141, "lat": 40.4471898, "lon": -3.7037492, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 26413142, "lat": 40.4471166, "lon": -3.7036522}, {"type": "node", "id": 26413144, "lat": 40.4469749, "lon": -3.703596}, {"type": "node", "id": 26413145, "lat": 40.4467592, "lon": -3.703753}, {"type": "node", "id": 26413152, "lat": 40.4467279, "lon": -3.7040132}, {"type": "node", "id": 26413156, "lat": 40.4471506, "lon": -3.7041747}, {"type": "node", "id": 26413323, "lat": 40.4468083, "lon": -3.7036778}, {"type": "node", "id": 26413324, "lat": 40.446862, "lon": -3.7042316, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 26413356, "lat": 40.4454648, "lon": -3.7039947, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413358, "lat": 40.4460506, "lon": -3.7039736}, {"type": "node", "id": 26413361, "lat": 40.4461163, "lon": -3.7035488}, {"type": "node", "id": 26413364, "lat": 40.4454132, "lon": -3.7032396, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413367, "lat": 40.4443031, "lon": -3.7027553, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413368, "lat": 40.444347, "lon": -3.7040353}, {"type": "node", "id": 26413513, "lat": 40.4432763, "lon": -3.7040709, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413522, "lat": 40.4431812, "lon": -3.7022696, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413576, "lat": 40.4423162, "lon": -3.7040979}, {"type": "node", "id": 26413579, "lat": 40.4421362, "lon": -3.7041032}, {"type": "node", "id": 26413581, "lat": 40.4421468, "lon": -3.7043999}, {"type": "node", "id": 26413583, "lat": 40.4421979, "lon": -3.7047786}, {"type": "node", "id": 26413584, "lat": 40.442357, "lon": -3.7049743}, {"type": "node", "id": 26413586, "lat": 40.4420104, "lon": -3.70485, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413587, "lat": 40.4420142, "lon": -3.7017696}, {"type": "node", "id": 26413595, "lat": 40.4418977, "lon": -3.7041087}, {"type": "node", "id": 26485808, "lat": 40.420186, "lon": -3.6892902}, {"type": "node", "id": 26485809, "lat": 40.4202684, "lon": -3.6894874, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 26513047, "lat": 40.4211459, "lon": -3.6871766}, {"type": "node", "id": 26513061, "lat": 40.4217567, "lon": -3.6870813}, {"type": "node", "id": 26513067, "lat": 40.4224667, "lon": -3.686977}, {"type": "node", "id": 26513072, "lat": 40.4239576, "lon": -3.6881247}, {"type": "node", "id": 26513085, "lat": 40.4238985, "lon": -3.6867635}, {"type": "node", "id": 26513097, "lat": 40.4210518, "lon": -3.6858532}, {"type": "node", "id": 26513105, "lat": 40.4216958, "lon": -3.6857646}, {"type": "node", "id": 26513111, "lat": 40.4224254, "lon": -3.6856854}, {"type": "node", "id": 26513117, "lat": 40.4238298, "lon": -3.6855316}, {"type": "node", "id": 26513124, "lat": 40.423112, "lon": -3.6856074}, {"type": "node", "id": 26513132, "lat": 40.4230532, "lon": -3.6842952}, {"type": "node", "id": 26513137, "lat": 40.422345, "lon": -3.6843605}, {"type": "node", "id": 26513145, "lat": 40.4216415, "lon": -3.6844209}, {"type": "node", "id": 26513155, "lat": 40.4237576, "lon": -3.6842383}, {"type": "node", "id": 26578942, "lat": 40.4319228, "lon": -3.7171105}, {"type": "node", "id": 26578943, "lat": 40.4322992, "lon": -3.7173983, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578944, "lat": 40.4330227, "lon": -3.7179129}, {"type": "node", "id": 26578945, "lat": 40.4339433, "lon": -3.7185671, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578946, "lat": 40.4341818, "lon": -3.7187427}, {"type": "node", "id": 26578947, "lat": 40.4351259, "lon": -3.7194039}, {"type": "node", "id": 26578950, "lat": 40.4314157, "lon": -3.7196737}, {"type": "node", "id": 26578951, "lat": 40.4309988, "lon": -3.7206561}, {"type": "node", "id": 26578954, "lat": 40.4329844, "lon": -3.7180218}, {"type": "node", "id": 26578956, "lat": 40.4320699, "lon": -3.7202608, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578957, "lat": 40.4316438, "lon": -3.7212525}, {"type": "node", "id": 26578958, "lat": 40.432752, "lon": -3.7178537, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26578960, "lat": 40.4349891, "lon": -3.7195011}, {"type": "node", "id": 26578961, "lat": 40.4349394, "lon": -3.7195778}, {"type": "node", "id": 26578962, "lat": 40.435167, "lon": -3.7202093}, {"type": "node", "id": 26578963, "lat": 40.4340388, "lon": -3.7216644}, {"type": "node", "id": 26578965, "lat": 40.4342779, "lon": -3.7180564, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578966, "lat": 40.433254, "lon": -3.7173492}, {"type": "node", "id": 26578967, "lat": 40.4331107, "lon": -3.716895, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-23", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26578968, "lat": 40.4300712, "lon": -3.7228417}, {"type": "node", "id": 26578969, "lat": 40.4307282, "lon": -3.7234663}, {"type": "node", "id": 26578970, "lat": 40.4313261, "lon": -3.7240494}, {"type": "node", "id": 26578971, "lat": 40.4319054, "lon": -3.7246067}, {"type": "node", "id": 26578973, "lat": 40.433036, "lon": -3.723993}, {"type": "node", "id": 26578974, "lat": 40.4324159, "lon": -3.7233905}, {"type": "node", "id": 26578975, "lat": 40.4318256, "lon": -3.7228178}, {"type": "node", "id": 26578986, "lat": 40.4352371, "lon": -3.7204827}, {"type": "node", "id": 26578987, "lat": 40.4351843, "lon": -3.7211352}, {"type": "node", "id": 26578988, "lat": 40.4349212, "lon": -3.7215893}, {"type": "node", "id": 26578989, "lat": 40.4344848, "lon": -3.7230442}, {"type": "node", "id": 26578990, "lat": 40.4341739, "lon": -3.7244703}, {"type": "node", "id": 26579027, "lat": 40.4353382, "lon": -3.7195097}, {"type": "node", "id": 26579028, "lat": 40.435541, "lon": -3.7195221}, {"type": "node", "id": 26579030, "lat": 40.4358348, "lon": -3.7196376}, {"type": "node", "id": 26579032, "lat": 40.4368431, "lon": -3.7217931}, {"type": "node", "id": 26579033, "lat": 40.4372006, "lon": -3.7224476}, {"type": "node", "id": 26579034, "lat": 40.4378954, "lon": -3.723702}, {"type": "node", "id": 26579040, "lat": 40.4389991, "lon": -3.7181197, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 26579041, "lat": 40.4379929, "lon": -3.7195994}, {"type": "node", "id": 26579042, "lat": 40.4378481, "lon": -3.7197275}, {"type": "node", "id": 26579043, "lat": 40.4373838, "lon": -3.7203368}, {"type": "node", "id": 26579044, "lat": 40.4369037, "lon": -3.7207615}, {"type": "node", "id": 26579045, "lat": 40.4367706, "lon": -3.7209143}, {"type": "node", "id": 26579046, "lat": 40.4366725, "lon": -3.7211491}, {"type": "node", "id": 26579047, "lat": 40.436651, "lon": -3.721401}, {"type": "node", "id": 26579048, "lat": 40.4369694, "lon": -3.7221813}, {"type": "node", "id": 26579049, "lat": 40.437509, "lon": -3.7231935}, {"type": "node", "id": 26579050, "lat": 40.4382137, "lon": -3.7241014}, {"type": "node", "id": 26579076, "lat": 40.4384218, "lon": -3.7248093}, {"type": "node", "id": 26579077, "lat": 40.4375974, "lon": -3.723661}, {"type": "node", "id": 26579080, "lat": 40.4363162, "lon": -3.7214864}, {"type": "node", "id": 26579081, "lat": 40.4360235, "lon": -3.7210226}, {"type": "node", "id": 26579082, "lat": 40.4354763, "lon": -3.7199765}, {"type": "node", "id": 26579083, "lat": 40.4352291, "lon": -3.7196966, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:sound": "no"}}, {"type": "node", "id": 26579100, "lat": 40.4365531, "lon": -3.7214321}, {"type": "node", "id": 26579101, "lat": 40.4365809, "lon": -3.7211174}, {"type": "node", "id": 26579102, "lat": 40.4367639, "lon": -3.7207604}, {"type": "node", "id": 26579103, "lat": 40.4368566, "lon": -3.7206799}, {"type": "node", "id": 26579104, "lat": 40.4371744, "lon": -3.7203969}, {"type": "node", "id": 26579105, "lat": 40.4373172, "lon": -3.7202589}, {"type": "node", "id": 26579106, "lat": 40.4378637, "lon": -3.7194663}, {"type": "node", "id": 26579107, "lat": 40.438863, "lon": -3.717976, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 26579108, "lat": 40.4379047, "lon": -3.7195108}, {"type": "node", "id": 26579109, "lat": 40.4388528, "lon": -3.7181017}, {"type": "node", "id": 26579110, "lat": 40.4389014, "lon": -3.7181562}, {"type": "node", "id": 26579111, "lat": 40.4379451, "lon": -3.7195706}, {"type": "node", "id": 26579176, "lat": 40.4355278, "lon": -3.719375}, {"type": "node", "id": 26579177, "lat": 40.4356243, "lon": -3.7191283}, {"type": "node", "id": 26579178, "lat": 40.4356172, "lon": -3.718884}, {"type": "node", "id": 26579179, "lat": 40.4358026, "lon": -3.7193725}, {"type": "node", "id": 26579180, "lat": 40.4347887, "lon": -3.7183707}, {"type": "node", "id": 26579181, "lat": 40.4344194, "lon": -3.7181492, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26579182, "lat": 40.4342499, "lon": -3.7185721, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 26579183, "lat": 40.4341125, "lon": -3.7184726, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 26579184, "lat": 40.4343699, "lon": -3.7182809, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26808564, "lat": 40.4248448, "lon": -3.7097636}, {"type": "node", "id": 26808565, "lat": 40.425858, "lon": -3.7120325}, {"type": "node", "id": 26808566, "lat": 40.4265297, "lon": -3.7115519}, {"type": "node", "id": 27505287, "lat": 40.4269347, "lon": -3.7103088}, {"type": "node", "id": 27505288, "lat": 40.427195, "lon": -3.7101896}, {"type": "node", "id": 27506521, "lat": 40.4237924, "lon": -3.6941003}, {"type": "node", "id": 27508026, "lat": 40.4276324, "lon": -3.6960384, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 27508048, "lat": 40.4397098, "lon": -3.7175773, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27508159, "lat": 40.4395532, "lon": -3.7175613}, {"type": "node", "id": 27508160, "lat": 40.4395662, "lon": -3.7176454}, {"type": "node", "id": 27508161, "lat": 40.439711, "lon": -3.7176456, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27508162, "lat": 40.4398085, "lon": -3.7176192}, {"type": "node", "id": 27508163, "lat": 40.4399474, "lon": -3.7176476}, {"type": "node", "id": 27508173, "lat": 40.4428131, "lon": -3.7191595}, {"type": "node", "id": 27508174, "lat": 40.4433752, "lon": -3.719475}, {"type": "node", "id": 27508175, "lat": 40.4435383, "lon": -3.7194899}, {"type": "node", "id": 27508176, "lat": 40.4436111, "lon": -3.7194676}, {"type": "node", "id": 27508177, "lat": 40.4436835, "lon": -3.719389}, {"type": "node", "id": 27508178, "lat": 40.443607, "lon": -3.718503}, {"type": "node", "id": 27508179, "lat": 40.4436987, "lon": -3.7196579, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 27508180, "lat": 40.4436973, "lon": -3.719737}, {"type": "node", "id": 27508181, "lat": 40.4438051, "lon": -3.7197942, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 27508182, "lat": 40.4434985, "lon": -3.717269}, {"type": "node", "id": 27508183, "lat": 40.4434538, "lon": -3.7167399}, {"type": "node", "id": 27508184, "lat": 40.4434681, "lon": -3.7163938}, {"type": "node", "id": 27508185, "lat": 40.4434965, "lon": -3.7160934}, {"type": "node", "id": 27508186, "lat": 40.4435978, "lon": -3.7156267, "tags": {"created_by": "YahooApplet 1.0"}}, {"type": "node", "id": 27508195, "lat": 40.4437909, "lon": -3.7151191}, {"type": "node", "id": 27508196, "lat": 40.4438268, "lon": -3.715237}, {"type": "node", "id": 27508197, "lat": 40.4439291, "lon": -3.7151207, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 27508198, "lat": 40.4442853, "lon": -3.7148881}, {"type": "node", "id": 27508199, "lat": 40.4445654, "lon": -3.7148398}, {"type": "node", "id": 27508200, "lat": 40.4448827, "lon": -3.7148266}, {"type": "node", "id": 27508201, "lat": 40.444854, "lon": -3.7140605}, {"type": "node", "id": 27508204, "lat": 40.4437504, "lon": -3.7141448}, {"type": "node", "id": 27508205, "lat": 40.4447754, "lon": -3.7123754}, {"type": "node", "id": 27508208, "lat": 40.4436591, "lon": -3.7124661}, {"type": "node", "id": 27508209, "lat": 40.4426549, "lon": -3.7125442, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27508211, "lat": 40.44268, "lon": -3.7142468}, {"type": "node", "id": 27508213, "lat": 40.4425868, "lon": -3.712642}, {"type": "node", "id": 27508542, "lat": 40.4438095, "lon": -3.7171927}, {"type": "node", "id": 27508543, "lat": 40.4440114, "lon": -3.7170826}, {"type": "node", "id": 27508544, "lat": 40.4441245, "lon": -3.7169938}, {"type": "node", "id": 27508545, "lat": 40.4442699, "lon": -3.7168573}, {"type": "node", "id": 27508546, "lat": 40.4443874, "lon": -3.7167126}, {"type": "node", "id": 27508547, "lat": 40.4443816, "lon": -3.7160288}, {"type": "node", "id": 27508548, "lat": 40.4443657, "lon": -3.7185925}, {"type": "node", "id": 27514605, "lat": 40.4455618, "lon": -3.7147916, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514627, "lat": 40.445778, "lon": -3.7143817, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514644, "lat": 40.44595, "lon": -3.714451, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514646, "lat": 40.4458569, "lon": -3.7150281, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514667, "lat": 40.445888, "lon": -3.713957}, {"type": "node", "id": 27514668, "lat": 40.4463023, "lon": -3.712262}, {"type": "node", "id": 27514670, "lat": 40.4461435, "lon": -3.7136978, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27514692, "lat": 40.4446819, "lon": -3.7105522}, {"type": "node", "id": 27514702, "lat": 40.4441082, "lon": -3.7105901}, {"type": "node", "id": 27514717, "lat": 40.4439501, "lon": -3.7106156, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27514733, "lat": 40.4438344, "lon": -3.7107907}, {"type": "node", "id": 27514734, "lat": 40.4432748, "lon": -3.7116188}, {"type": "node", "id": 27516322, "lat": 40.4427113, "lon": -3.7152088}, {"type": "node", "id": 27516626, "lat": 40.4416333, "lon": -3.7140548, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27516628, "lat": 40.4415742, "lon": -3.714142}, {"type": "node", "id": 27516630, "lat": 40.4415117, "lon": -3.7142342}, {"type": "node", "id": 27516635, "lat": 40.4396681, "lon": -3.7169546, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 27516655, "lat": 40.4395671, "lon": -3.7171557, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27516658, "lat": 40.4395167, "lon": -3.7171021, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27516696, "lat": 40.4410986, "lon": -3.7139702}, {"type": "node", "id": 27516700, "lat": 40.4413059, "lon": -3.7136699}, {"type": "node", "id": 27516704, "lat": 40.4412755, "lon": -3.7126596, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 27517498, "lat": 40.4422228, "lon": -3.7150205}, {"type": "node", "id": 27517499, "lat": 40.4412511, "lon": -3.7164751}, {"type": "node", "id": 27517505, "lat": 40.4413146, "lon": -3.7169311}, {"type": "node", "id": 27517506, "lat": 40.4412681, "lon": -3.7171917}, {"type": "node", "id": 27517507, "lat": 40.4409844, "lon": -3.7181673}, {"type": "node", "id": 27517522, "lat": 40.4411751, "lon": -3.7163753, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 27517855, "lat": 40.4467486, "lon": -3.7104559, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 27517856, "lat": 40.4469391, "lon": -3.7104496}, {"type": "node", "id": 27517857, "lat": 40.4460611, "lon": -3.71047}, {"type": "node", "id": 27517888, "lat": 40.4456241, "lon": -3.7123137}, {"type": "node", "id": 27517891, "lat": 40.4400055, "lon": -3.7127658, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27517898, "lat": 40.439979, "lon": -3.712131}, {"type": "node", "id": 27517937, "lat": 40.4399078, "lon": -3.7105212}, {"type": "node", "id": 27517938, "lat": 40.4406702, "lon": -3.710926}, {"type": "node", "id": 27517939, "lat": 40.4412048, "lon": -3.7111254}, {"type": "node", "id": 27517940, "lat": 40.4416048, "lon": -3.7114759}, {"type": "node", "id": 27517954, "lat": 40.4412665, "lon": -3.7121667, "tags": {"created_by": "YahooApplet 1.0"}}, {"type": "node", "id": 27517955, "lat": 40.4413604, "lon": -3.7119438}, {"type": "node", "id": 27517956, "lat": 40.4427004, "lon": -3.7094032}, {"type": "node", "id": 27517991, "lat": 40.4419163, "lon": -3.7085364}, {"type": "node", "id": 27518000, "lat": 40.4417351, "lon": -3.7083834}, {"type": "node", "id": 27518009, "lat": 40.4415391, "lon": -3.7082667}, {"type": "node", "id": 27518022, "lat": 40.4414584, "lon": -3.7082264}, {"type": "node", "id": 27518032, "lat": 40.4413592, "lon": -3.7081808}, {"type": "node", "id": 27518046, "lat": 40.4410266, "lon": -3.7081151, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 27518078, "lat": 40.4407941, "lon": -3.7081073}, {"type": "node", "id": 27519777, "lat": 40.4435041, "lon": -3.7103225}, {"type": "node", "id": 27519834, "lat": 40.4437974, "lon": -3.7105132, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519838, "lat": 40.4437346, "lon": -3.7106386, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519852, "lat": 40.4438187, "lon": -3.7103582, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519868, "lat": 40.4440581, "lon": -3.7102602}, {"type": "node", "id": 27520539, "lat": 40.4405078, "lon": -3.708124}, {"type": "node", "id": 27520557, "lat": 40.4400437, "lon": -3.708171}, {"type": "node", "id": 27520738, "lat": 40.4399584, "lon": -3.7064428}, {"type": "node", "id": 27520754, "lat": 40.4394748, "lon": -3.7082193}, {"type": "node", "id": 27521668, "lat": 40.4401592, "lon": -3.7098521}, {"type": "node", "id": 27521709, "lat": 40.4404801, "lon": -3.7071942, "tags": {"highway": "turning_circle"}}, {"type": "node", "id": 27522330, "lat": 40.4400013, "lon": -3.7072311}, {"type": "node", "id": 27522332, "lat": 40.4399808, "lon": -3.7068619}, {"type": "node", "id": 27522353, "lat": 40.4412648, "lon": -3.7068781}, {"type": "node", "id": 27522357, "lat": 40.4387443, "lon": -3.706521}, {"type": "node", "id": 27522358, "lat": 40.4386713, "lon": -3.7042134, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27522994, "lat": 40.437168, "lon": -3.7042542, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523108, "lat": 40.436028, "lon": -3.704288, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523275, "lat": 40.4348826, "lon": -3.7043239, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523292, "lat": 40.4349589, "lon": -3.7056849}, {"type": "node", "id": 27523422, "lat": 40.4360629, "lon": -3.7055879}, {"type": "node", "id": 28096046, "lat": 40.4497258, "lon": -3.6968064}, {"type": "node", "id": 28096047, "lat": 40.4495373, "lon": -3.6968259}, {"type": "node", "id": 28096048, "lat": 40.4495163, "lon": -3.6959282}, {"type": "node", "id": 28096049, "lat": 40.4492417, "lon": -3.6968565}, {"type": "node", "id": 28096050, "lat": 40.4493339, "lon": -3.6983677}, {"type": "node", "id": 28096482, "lat": 40.4263313, "lon": -3.6840263}, {"type": "node", "id": 28096483, "lat": 40.4275878, "lon": -3.6813141}, {"type": "node", "id": 28096486, "lat": 40.4261431, "lon": -3.680123}, {"type": "node", "id": 28096491, "lat": 40.4289866, "lon": -3.6812032}, {"type": "node", "id": 28096493, "lat": 40.4314327, "lon": -3.6810092}, {"type": "node", "id": 28096494, "lat": 40.4313723, "lon": -3.6796828}, {"type": "node", "id": 28096615, "lat": 40.4312954, "lon": -3.6780968}, {"type": "node", "id": 28096620, "lat": 40.4290435, "lon": -3.6824572}, {"type": "node", "id": 28096621, "lat": 40.4302345, "lon": -3.6823592, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 28096622, "lat": 40.4314941, "lon": -3.6822555}, {"type": "node", "id": 28096711, "lat": 40.4262058, "lon": -3.6814238}, {"type": "node", "id": 28096713, "lat": 40.4264464, "lon": -3.6864123}, {"type": "node", "id": 28096714, "lat": 40.4263902, "lon": -3.6852465}, {"type": "node", "id": 28096715, "lat": 40.4262667, "lon": -3.6826858}, {"type": "node", "id": 28096716, "lat": 40.4276424, "lon": -3.6825725}, {"type": "node", "id": 28096717, "lat": 40.4277008, "lon": -3.6839134}, {"type": "node", "id": 28096718, "lat": 40.4277645, "lon": -3.6850848}, {"type": "node", "id": 28096719, "lat": 40.427826, "lon": -3.6862071}, {"type": "node", "id": 28096821, "lat": 40.4292194, "lon": -3.6859801}, {"type": "node", "id": 28096822, "lat": 40.4291573, "lon": -3.6849337}, {"type": "node", "id": 28096857, "lat": 40.4311564, "lon": -3.6751823}, {"type": "node", "id": 28096858, "lat": 40.4310798, "lon": -3.673579}, {"type": "node", "id": 28096859, "lat": 40.4310086, "lon": -3.6720878}, {"type": "node", "id": 28096881, "lat": 40.4316107, "lon": -3.684697}, {"type": "node", "id": 28096888, "lat": 40.4327659, "lon": -3.680899}, {"type": "node", "id": 28096889, "lat": 40.4326293, "lon": -3.6809103}, {"type": "node", "id": 28096905, "lat": 40.4328568, "lon": -3.6856046}, {"type": "node", "id": 28096922, "lat": 40.4316586, "lon": -3.6857006}, {"type": "node", "id": 28097220, "lat": 40.4304021, "lon": -3.6858234}, {"type": "node", "id": 28097221, "lat": 40.4303531, "lon": -3.6848019}, {"type": "node", "id": 28097222, "lat": 40.430296, "lon": -3.6836996, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 28097324, "lat": 40.4317109, "lon": -3.6867955}, {"type": "node", "id": 29739480, "lat": 40.4447593, "lon": -3.6857108}, {"type": "node", "id": 29739481, "lat": 40.4444157, "lon": -3.6857136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 29739482, "lat": 40.4440051, "lon": -3.6857485}, {"type": "node", "id": 29739483, "lat": 40.443575, "lon": -3.685785}, {"type": "node", "id": 29739484, "lat": 40.4428099, "lon": -3.68585, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 29739485, "lat": 40.4420801, "lon": -3.68592}, {"type": "node", "id": 29739486, "lat": 40.4413787, "lon": -3.685981}, {"type": "node", "id": 29739489, "lat": 40.4393311, "lon": -3.6861712}, {"type": "node", "id": 29739490, "lat": 40.4382825, "lon": -3.6862387, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 29739491, "lat": 40.4373741, "lon": -3.686318, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 29739493, "lat": 40.4362884, "lon": -3.6864287}, {"type": "node", "id": 29739615, "lat": 40.4291084, "lon": -3.6837975}, {"type": "node", "id": 29739616, "lat": 40.4315582, "lon": -3.6835971, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 29739617, "lat": 40.4327548, "lon": -3.6835}, {"type": "node", "id": 29739619, "lat": 40.4349413, "lon": -3.6833113}, {"type": "node", "id": 29739623, "lat": 40.4404816, "lon": -3.6828504, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 29739636, "lat": 40.4418638, "lon": -3.6827345}, {"type": "node", "id": 29739646, "lat": 40.4419106, "lon": -3.6834186}, {"type": "node", "id": 29741516, "lat": 40.4312293, "lon": -3.6767094}, {"type": "node", "id": 29802991, "lat": 40.4325669, "lon": -3.6796103}, {"type": "node", "id": 29802998, "lat": 40.4336904, "lon": -3.6795192}, {"type": "node", "id": 32602923, "lat": 40.4469338, "lon": -3.7097298}, {"type": "node", "id": 32602924, "lat": 40.4470366, "lon": -3.7084918}, {"type": "node", "id": 32602925, "lat": 40.4470176, "lon": -3.7080759}, {"type": "node", "id": 32602928, "lat": 40.4468589, "lon": -3.7060556}, {"type": "node", "id": 32602929, "lat": 40.4469449, "lon": -3.7062065}, {"type": "node", "id": 32602930, "lat": 40.4470183, "lon": -3.7061992}, {"type": "node", "id": 32602932, "lat": 40.4471239, "lon": -3.7068203}, {"type": "node", "id": 32602934, "lat": 40.447175, "lon": -3.7082803}, {"type": "node", "id": 32602935, "lat": 40.4471949, "lon": -3.7085677}, {"type": "node", "id": 32602937, "lat": 40.4472123, "lon": -3.7089709}, {"type": "node", "id": 32602938, "lat": 40.4471497, "lon": -3.7095648}, {"type": "node", "id": 32604391, "lat": 40.4461065, "lon": -3.707875}, {"type": "node", "id": 32604397, "lat": 40.4459776, "lon": -3.7077996}, {"type": "node", "id": 32604398, "lat": 40.4458619, "lon": -3.7078269}, {"type": "node", "id": 32604399, "lat": 40.4457269, "lon": -3.7079362, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 32604401, "lat": 40.4454762, "lon": -3.7083417}, {"type": "node", "id": 32604410, "lat": 40.4454093, "lon": -3.7084498}, {"type": "node", "id": 32604414, "lat": 40.4452546, "lon": -3.7087}, {"type": "node", "id": 32604418, "lat": 40.4451947, "lon": -3.7087969}, {"type": "node", "id": 32604423, "lat": 40.444433, "lon": -3.7100284}, {"type": "node", "id": 32604425, "lat": 40.4444445, "lon": -3.7101666}, {"type": "node", "id": 32604431, "lat": 40.4442365, "lon": -3.7099807}, {"type": "node", "id": 32604444, "lat": 40.4457491, "lon": -3.707562}, {"type": "node", "id": 32604445, "lat": 40.4459194, "lon": -3.7074167, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 32604452, "lat": 40.4460921, "lon": -3.7074021}, {"type": "node", "id": 32604454, "lat": 40.4467664, "lon": -3.7078912}, {"type": "node", "id": 32604456, "lat": 40.4467999, "lon": -3.7080165}, {"type": "node", "id": 32604458, "lat": 40.4467872, "lon": -3.7080978}, {"type": "node", "id": 32604459, "lat": 40.4466714, "lon": -3.7081433}, {"type": "node", "id": 32604461, "lat": 40.4474404, "lon": -3.7084717, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 32604462, "lat": 40.447587, "lon": -3.708562}, {"type": "node", "id": 32604465, "lat": 40.4452852, "lon": -3.7067676}, {"type": "node", "id": 32604466, "lat": 40.4455695, "lon": -3.7073022, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 32604467, "lat": 40.4451853, "lon": -3.7068932}, {"type": "node", "id": 32604468, "lat": 40.4443716, "lon": -3.7063773, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 32630163, "lat": 40.4475188, "lon": -3.7107177}, {"type": "node", "id": 32630164, "lat": 40.4482529, "lon": -3.7110174}, {"type": "node", "id": 32630165, "lat": 40.4488333, "lon": -3.7112592}, {"type": "node", "id": 32630166, "lat": 40.4486336, "lon": -3.712082}, {"type": "node", "id": 32630167, "lat": 40.4473128, "lon": -3.7115135, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 32630168, "lat": 40.4479599, "lon": -3.708978}, {"type": "node", "id": 32630173, "lat": 40.4450437, "lon": -3.7087056}, {"type": "node", "id": 32630174, "lat": 40.4451211, "lon": -3.708579}, {"type": "node", "id": 32630175, "lat": 40.445288, "lon": -3.7083228}, {"type": "node", "id": 32630176, "lat": 40.4453549, "lon": -3.7082173}, {"type": "node", "id": 32638870, "lat": 40.4286162, "lon": -3.7073193, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 33131373, "lat": 40.4432401, "lon": -3.7056943}, {"type": "node", "id": 33131374, "lat": 40.442427, "lon": -3.7051661}, {"type": "node", "id": 33131379, "lat": 40.4424745, "lon": -3.705017}, {"type": "node", "id": 33131380, "lat": 40.4425726, "lon": -3.7050222}, {"type": "node", "id": 33131381, "lat": 40.4432844, "lon": -3.7055309}, {"type": "node", "id": 33131382, "lat": 40.4435929, "lon": -3.7057623}, {"type": "node", "id": 33131383, "lat": 40.4444199, "lon": -3.7063158}, {"type": "node", "id": 33131384, "lat": 40.4424161, "lon": -3.7051289}, {"type": "node", "id": 33131385, "lat": 40.4424266, "lon": -3.7050494, "tags": {"highway": "give_way"}}, {"type": "node", "id": 33131386, "lat": 40.4432993, "lon": -3.7056116}, {"type": "node", "id": 33131387, "lat": 40.4432769, "lon": -3.7056693, "tags": {"highway": "give_way"}}, {"type": "node", "id": 33131388, "lat": 40.4455074, "lon": -3.7061881}, {"type": "node", "id": 33131390, "lat": 40.4452522, "lon": -3.7068436}, {"type": "node", "id": 33131391, "lat": 40.4433208, "lon": -3.7050822}, {"type": "node", "id": 33131392, "lat": 40.4437659, "lon": -3.7051314}, {"type": "node", "id": 33131393, "lat": 40.443354, "lon": -3.7055765}, {"type": "node", "id": 34407779, "lat": 40.4476602, "lon": -3.7060233}, {"type": "node", "id": 34407848, "lat": 40.4476473, "lon": -3.7069977}, {"type": "node", "id": 34407996, "lat": 40.448219, "lon": -3.7071839}, {"type": "node", "id": 34408133, "lat": 40.4486107, "lon": -3.7074232}, {"type": "node", "id": 34408179, "lat": 40.4488838, "lon": -3.7073975}, {"type": "node", "id": 34408267, "lat": 40.4488384, "lon": -3.7069967}, {"type": "node", "id": 34408287, "lat": 40.448774, "lon": -3.7059571}, {"type": "node", "id": 34408303, "lat": 40.4485438, "lon": -3.7059855}, {"type": "node", "id": 34408321, "lat": 40.448259, "lon": -3.7060087}, {"type": "node", "id": 34408339, "lat": 40.4487474, "lon": -3.7054861}, {"type": "node", "id": 34408380, "lat": 40.4487087, "lon": -3.7048336}, {"type": "node", "id": 34408449, "lat": 40.4495207, "lon": -3.704715}, {"type": "node", "id": 34408462, "lat": 40.4495928, "lon": -3.7056757}, {"type": "node", "id": 34408479, "lat": 40.4501389, "lon": -3.7058704, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 34408502, "lat": 40.4501999, "lon": -3.7058758}, {"type": "node", "id": 34408565, "lat": 40.4500765, "lon": -3.7046259}, {"type": "node", "id": 34408606, "lat": 40.4506594, "lon": -3.7045364}, {"type": "node", "id": 34408611, "lat": 40.4507, "lon": -3.7060581, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 34408615, "lat": 40.4505179, "lon": -3.7069623}, {"type": "node", "id": 34408621, "lat": 40.4504919, "lon": -3.7071654, "tags": {"highway": "give_way"}}, {"type": "node", "id": 34408632, "lat": 40.450541, "lon": -3.7073137}, {"type": "node", "id": 34408653, "lat": 40.4507292, "lon": -3.7076729}, {"type": "node", "id": 34408658, "lat": 40.4508767, "lon": -3.7080006}, {"type": "node", "id": 34408661, "lat": 40.4506086, "lon": -3.7081018}, {"type": "node", "id": 34408665, "lat": 40.4503261, "lon": -3.7082079}, {"type": "node", "id": 34408668, "lat": 40.449752, "lon": -3.7084318}, {"type": "node", "id": 34408825, "lat": 40.4496661, "lon": -3.7082427}, {"type": "node", "id": 34408837, "lat": 40.4501947, "lon": -3.7079406}, {"type": "node", "id": 34408841, "lat": 40.4499353, "lon": -3.7074156}, {"type": "node", "id": 34408844, "lat": 40.4503854, "lon": -3.7073363}, {"type": "node", "id": 34408846, "lat": 40.4498506, "lon": -3.7072303}, {"type": "node", "id": 34408848, "lat": 40.4498516, "lon": -3.7069746}, {"type": "node", "id": 34408851, "lat": 40.4499046, "lon": -3.7069734}, {"type": "node", "id": 34408855, "lat": 40.4490978, "lon": -3.7069861}, {"type": "node", "id": 34408866, "lat": 40.4492629, "lon": -3.707355}, {"type": "node", "id": 51424234, "lat": 40.4494774, "lon": -3.7099266}, {"type": "node", "id": 55138143, "lat": 40.4255068, "lon": -3.716866, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 55138155, "lat": 40.4248129, "lon": -3.7158819, "tags": {"check_date:crossing": "2023-03-30", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 55138166, "lat": 40.4253544, "lon": -3.7153842}, {"type": "node", "id": 55138174, "lat": 40.4259357, "lon": -3.714876}, {"type": "node", "id": 55138181, "lat": 40.4288802, "lon": -3.7217032}, {"type": "node", "id": 55138197, "lat": 40.4323222, "lon": -3.7175377}, {"type": "node", "id": 55138206, "lat": 40.4256383, "lon": -3.7136301}, {"type": "node", "id": 55161023, "lat": 40.431755, "lon": -3.7227494}, {"type": "node", "id": 55161026, "lat": 40.4326199, "lon": -3.7206595}, {"type": "node", "id": 55161030, "lat": 40.4261356, "lon": -3.7161226}, {"type": "node", "id": 55161034, "lat": 40.4266525, "lon": -3.7154954}, {"type": "node", "id": 55161040, "lat": 40.4325245, "lon": -3.7191775}, {"type": "node", "id": 55161044, "lat": 40.426505, "lon": -3.7143761}, {"type": "node", "id": 55161046, "lat": 40.4250146, "lon": -3.7139989}, {"type": "node", "id": 55161049, "lat": 40.4242996, "lon": -3.7144124}, {"type": "node", "id": 55161051, "lat": 40.4271531, "lon": -3.7148919}, {"type": "node", "id": 55161055, "lat": 40.4277862, "lon": -3.7154109}, {"type": "node", "id": 55161059, "lat": 40.4273542, "lon": -3.7161126}, {"type": "node", "id": 55161064, "lat": 40.4269087, "lon": -3.71684}, {"type": "node", "id": 55161067, "lat": 40.426452, "lon": -3.7176075, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 55161074, "lat": 40.4273851, "lon": -3.7185012}, {"type": "node", "id": 55161078, "lat": 40.4277617, "lon": -3.7176403}, {"type": "node", "id": 55161082, "lat": 40.4281253, "lon": -3.7168093}, {"type": "node", "id": 55161088, "lat": 40.4284936, "lon": -3.7159603}, {"type": "node", "id": 55161091, "lat": 40.4293142, "lon": -3.7166476}, {"type": "node", "id": 55161094, "lat": 40.4289351, "lon": -3.7175179}, {"type": "node", "id": 55161100, "lat": 40.4285608, "lon": -3.718385}, {"type": "node", "id": 55161108, "lat": 40.4281743, "lon": -3.7192718}, {"type": "node", "id": 55161119, "lat": 40.4292591, "lon": -3.7203175, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 55161124, "lat": 40.4295748, "lon": -3.719334}, {"type": "node", "id": 55161130, "lat": 40.4299035, "lon": -3.7183351, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161135, "lat": 40.4302182, "lon": -3.7173652, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 55161145, "lat": 40.4299848, "lon": -3.7184152, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161154, "lat": 40.4296533, "lon": -3.7194384}, {"type": "node", "id": 55161167, "lat": 40.4293494, "lon": -3.720405, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 55161170, "lat": 40.4311908, "lon": -3.7181387}, {"type": "node", "id": 55161174, "lat": 40.4318494, "lon": -3.7186516}, {"type": "node", "id": 55161178, "lat": 40.4305906, "lon": -3.7216191}, {"type": "node", "id": 55161181, "lat": 40.4299909, "lon": -3.7210307, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161188, "lat": 40.4312331, "lon": -3.7222423, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161192, "lat": 40.4314659, "lon": -3.7224677}, {"type": "node", "id": 55161197, "lat": 40.4323283, "lon": -3.7204526}, {"type": "node", "id": 55311600, "lat": 40.4244342, "lon": -3.7091715}, {"type": "node", "id": 55311603, "lat": 40.424504, "lon": -3.7091291, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 55404964, "lat": 40.428829, "lon": -3.7219295, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 59633359, "lat": 40.42222, "lon": -3.6996855}, {"type": "node", "id": 60017473, "lat": 40.4414407, "lon": -3.6940906}, {"type": "node", "id": 60017474, "lat": 40.4416583, "lon": -3.6949176, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60017591, "lat": 40.4396769, "lon": -3.7007602, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60017632, "lat": 40.4403571, "lon": -3.6926716}, {"type": "node", "id": 60018311, "lat": 40.433917, "lon": -3.6949204}, {"type": "node", "id": 60018312, "lat": 40.4412901, "lon": -3.6942974, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60018334, "lat": 40.4359399, "lon": -3.7024306}, {"type": "node", "id": 60018337, "lat": 40.4355656, "lon": -3.694781}, {"type": "node", "id": 60018352, "lat": 40.4339847, "lon": -3.6932076, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030239, "lat": 40.4332635, "lon": -3.7054877, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030240, "lat": 40.4336158, "lon": -3.7044958}, {"type": "node", "id": 60030242, "lat": 40.4334256, "lon": -3.7042891, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030243, "lat": 40.4335352, "lon": -3.7040116}, {"type": "node", "id": 60030244, "lat": 40.4337225, "lon": -3.7040323, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030246, "lat": 40.4337705, "lon": -3.7043908}, {"type": "node", "id": 60030248, "lat": 40.4349348, "lon": -3.6987187, "tags": {"highway": "traffic_signals", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943", "wikidata": "Q26791943", "wikipedia": "es:Glorieta del Pintor Sorolla"}}, {"type": "node", "id": 60030251, "lat": 40.4334567, "lon": -3.7040974, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030252, "lat": 40.4334932, "lon": -3.7044382}, {"type": "node", "id": 60030256, "lat": 40.4384698, "lon": -3.7002381, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030257, "lat": 40.4384235, "lon": -3.6993321, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 60030258, "lat": 40.4383471, "lon": -3.6978044, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030259, "lat": 40.4382817, "lon": -3.696289}, {"type": "node", "id": 60030260, "lat": 40.4366721, "lon": -3.6964164}, {"type": "node", "id": 60030277, "lat": 40.436699, "lon": -3.6979437}, {"type": "node", "id": 60030278, "lat": 40.4357244, "lon": -3.6980261}, {"type": "node", "id": 60030279, "lat": 40.4356499, "lon": -3.6964973}, {"type": "node", "id": 60030280, "lat": 40.4366391, "lon": -3.6946902}, {"type": "node", "id": 60030301, "lat": 40.4381932, "lon": -3.6945588, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030302, "lat": 40.4350224, "lon": -3.6965469}, {"type": "node", "id": 60030303, "lat": 40.4349787, "lon": -3.6980881}, {"type": "node", "id": 60030397, "lat": 40.4396024, "lon": -3.6992358}, {"type": "node", "id": 60030398, "lat": 40.4395284, "lon": -3.6976996}, {"type": "node", "id": 60030399, "lat": 40.4383883, "lon": -3.6986283}, {"type": "node", "id": 60030402, "lat": 40.4395592, "lon": -3.6983393}, {"type": "node", "id": 60030404, "lat": 40.440698, "lon": -3.6991458}, {"type": "node", "id": 60030405, "lat": 40.4406262, "lon": -3.6976108}, {"type": "node", "id": 60030406, "lat": 40.4405573, "lon": -3.696109}, {"type": "node", "id": 60030407, "lat": 40.4394564, "lon": -3.6961963}, {"type": "node", "id": 60030408, "lat": 40.4393722, "lon": -3.6944593}, {"type": "node", "id": 60030409, "lat": 40.4388794, "lon": -3.6945007}, {"type": "node", "id": 60030410, "lat": 40.4404759, "lon": -3.6943656}, {"type": "node", "id": 60030727, "lat": 40.4366087, "lon": -3.6930249}, {"type": "node", "id": 60030728, "lat": 40.4351098, "lon": -3.6931402}, {"type": "node", "id": 60030729, "lat": 40.4350642, "lon": -3.6948234}, {"type": "node", "id": 60672316, "lat": 40.4300551, "lon": -3.705634, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 60672339, "lat": 40.4303023, "lon": -3.7055485}, {"type": "node", "id": 60672523, "lat": 40.4314087, "lon": -3.705144, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60672557, "lat": 40.4317441, "lon": -3.7049593}, {"type": "node", "id": 60672559, "lat": 40.4319016, "lon": -3.7049172, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 60672590, "lat": 40.4331259, "lon": -3.7045172, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 60672668, "lat": 40.4321849, "lon": -3.7051423}, {"type": "node", "id": 60672670, "lat": 40.4318019, "lon": -3.7051462}, {"type": "node", "id": 63530461, "lat": 40.4340604, "lon": -3.6912773}, {"type": "node", "id": 63530471, "lat": 40.433105, "lon": -3.6913897}, {"type": "node", "id": 63530476, "lat": 40.4330684, "lon": -3.6911264}, {"type": "node", "id": 63530481, "lat": 40.4328297, "lon": -3.6911595}, {"type": "node", "id": 63530492, "lat": 40.4328011, "lon": -3.691241}, {"type": "node", "id": 63530500, "lat": 40.4328314, "lon": -3.6914201}, {"type": "node", "id": 63530519, "lat": 40.4328833, "lon": -3.6914777}, {"type": "node", "id": 63530535, "lat": 40.4330107, "lon": -3.691493}, {"type": "node", "id": 63530544, "lat": 40.4330655, "lon": -3.6914534}, {"type": "node", "id": 63530546, "lat": 40.430555, "lon": -3.6926627, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 81466844, "lat": 40.4478897, "lon": -3.6954078}, {"type": "node", "id": 81466846, "lat": 40.449229, "lon": -3.6952864}, {"type": "node", "id": 81466847, "lat": 40.4508003, "lon": -3.6951325, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 81473204, "lat": 40.4525842, "lon": -3.6993558, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 81473206, "lat": 40.4524893, "lon": -3.6980802, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 81580395, "lat": 40.4522058, "lon": -3.699436}, {"type": "node", "id": 81580397, "lat": 40.451168, "lon": -3.6996433}, {"type": "node", "id": 81580399, "lat": 40.4510588, "lon": -3.6996514}, {"type": "node", "id": 81580400, "lat": 40.4508878, "lon": -3.6997548}, {"type": "node", "id": 81580401, "lat": 40.450301, "lon": -3.6998084}, {"type": "node", "id": 81580403, "lat": 40.4496223, "lon": -3.6998725}, {"type": "node", "id": 81580404, "lat": 40.4489466, "lon": -3.6999378}, {"type": "node", "id": 81580405, "lat": 40.4482393, "lon": -3.7000093}, {"type": "node", "id": 81580408, "lat": 40.4467139, "lon": -3.6999921}, {"type": "node", "id": 81581404, "lat": 40.4481675, "lon": -3.6984825}, {"type": "node", "id": 81581405, "lat": 40.4482027, "lon": -3.6991863}, {"type": "node", "id": 81581406, "lat": 40.4482715, "lon": -3.7008145}, {"type": "node", "id": 81581407, "lat": 40.4483163, "lon": -3.7017363}, {"type": "node", "id": 81581408, "lat": 40.4483293, "lon": -3.7022058}, {"type": "node", "id": 81582480, "lat": 40.4516272, "lon": -3.6995496}, {"type": "node", "id": 81604772, "lat": 40.4504244, "lon": -3.7019018}, {"type": "node", "id": 81604773, "lat": 40.4503852, "lon": -3.7007188}, {"type": "node", "id": 81604775, "lat": 40.4502607, "lon": -3.6989933}, {"type": "node", "id": 81604776, "lat": 40.4502211, "lon": -3.6982925}, {"type": "node", "id": 81605088, "lat": 40.4472343, "lon": -3.7034523, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 81605091, "lat": 40.4473835, "lon": -3.7026256}, {"type": "node", "id": 81605092, "lat": 40.4473136, "lon": -3.7018064}, {"type": "node", "id": 81605093, "lat": 40.447316, "lon": -3.7016488}, {"type": "node", "id": 81605094, "lat": 40.4474509, "lon": -3.7012606}, {"type": "node", "id": 81605096, "lat": 40.4474664, "lon": -3.7008731}, {"type": "node", "id": 81605097, "lat": 40.4474191, "lon": -3.7000695}, {"type": "node", "id": 81605098, "lat": 40.4473799, "lon": -3.6992612}, {"type": "node", "id": 81605099, "lat": 40.4473434, "lon": -3.6985634}, {"type": "node", "id": 81605725, "lat": 40.4477393, "lon": -3.7022673}, {"type": "node", "id": 82499051, "lat": 40.4497578, "lon": -3.7015521}, {"type": "node", "id": 82499052, "lat": 40.4495412, "lon": -3.6983566}, {"type": "node", "id": 82499214, "lat": 40.4487819, "lon": -3.6969042}, {"type": "node", "id": 82499215, "lat": 40.44886, "lon": -3.6984206}, {"type": "node", "id": 82499216, "lat": 40.4490997, "lon": -3.7022099}, {"type": "node", "id": 82499429, "lat": 40.4510178, "lon": -3.6989287}, {"type": "node", "id": 82499430, "lat": 40.4495773, "lon": -3.6990688}, {"type": "node", "id": 82499431, "lat": 40.4489035, "lon": -3.6991293}, {"type": "node", "id": 82499627, "lat": 40.4498051, "lon": -3.7020842}, {"type": "node", "id": 82499628, "lat": 40.4488339, "lon": -3.7022412}, {"type": "node", "id": 82500114, "lat": 40.4490226, "lon": -3.7016559}, {"type": "node", "id": 82500132, "lat": 40.447904, "lon": -3.7008584}, {"type": "node", "id": 82500158, "lat": 40.4479558, "lon": -3.7017586}, {"type": "node", "id": 98722464, "lat": 40.4520781, "lon": -3.7094429, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98722465, "lat": 40.451885, "lon": -3.7099843}, {"type": "node", "id": 98723334, "lat": 40.4486923, "lon": -3.7092455}, {"type": "node", "id": 98723336, "lat": 40.4495271, "lon": -3.7098153}, {"type": "node", "id": 98723345, "lat": 40.4524553, "lon": -3.7116895, "tags": {"junction": "yes"}}, {"type": "node", "id": 98724253, "lat": 40.4531124, "lon": -3.7060325, "tags": {"junction": "yes", "name": "Glorieta de Miguel Rubiales"}}, {"type": "node", "id": 98724825, "lat": 40.4531911, "lon": -3.7067856}, {"type": "node", "id": 98724826, "lat": 40.4530037, "lon": -3.7080922}, {"type": "node", "id": 98724875, "lat": 40.4524072, "lon": -3.7074557}, {"type": "node", "id": 98725053, "lat": 40.4524056, "lon": -3.7077881}, {"type": "node", "id": 98725054, "lat": 40.4524002, "lon": -3.7069059}, {"type": "node", "id": 98725055, "lat": 40.4523911, "lon": -3.7061574}, {"type": "node", "id": 98725373, "lat": 40.4518602, "lon": -3.704356}, {"type": "node", "id": 98725376, "lat": 40.4503669, "lon": -3.7073764}, {"type": "node", "id": 98725377, "lat": 40.4517312, "lon": -3.707011}, {"type": "node", "id": 98725379, "lat": 40.451707, "lon": -3.7074229}, {"type": "node", "id": 98725380, "lat": 40.4517003, "lon": -3.7077147}, {"type": "node", "id": 98725381, "lat": 40.4517063, "lon": -3.708056}, {"type": "node", "id": 98725384, "lat": 40.4517144, "lon": -3.7093515}, {"type": "node", "id": 98726079, "lat": 40.4511475, "lon": -3.7044621}, {"type": "node", "id": 98726080, "lat": 40.4511815, "lon": -3.7047574}, {"type": "node", "id": 98726081, "lat": 40.4511753, "lon": -3.7062187, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 98726082, "lat": 40.4509925, "lon": -3.7071932}, {"type": "node", "id": 98726299, "lat": 40.4526844, "lon": -3.7061084}, {"type": "node", "id": 98726865, "lat": 40.4527329, "lon": -3.7068534}, {"type": "node", "id": 98727478, "lat": 40.4493862, "lon": -3.7091869, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98727479, "lat": 40.449208, "lon": -3.7085613}, {"type": "node", "id": 98727480, "lat": 40.4490184, "lon": -3.7082354}, {"type": "node", "id": 98727481, "lat": 40.4489365, "lon": -3.7079162}, {"type": "node", "id": 98727626, "lat": 40.4504475, "lon": -3.7100474}, {"type": "node", "id": 98727885, "lat": 40.4509512, "lon": -3.7095324}, {"type": "node", "id": 98727886, "lat": 40.4504985, "lon": -3.7085506}, {"type": "node", "id": 98727957, "lat": 40.4514973, "lon": -3.7093648}, {"type": "node", "id": 98727958, "lat": 40.451034, "lon": -3.7083412}, {"type": "node", "id": 98727994, "lat": 40.4511363, "lon": -3.7094758}, {"type": "node", "id": 98727995, "lat": 40.4509951, "lon": -3.7090774}, {"type": "node", "id": 98727996, "lat": 40.4508382, "lon": -3.7084192}, {"type": "node", "id": 98728183, "lat": 40.450258, "lon": -3.7086492}, {"type": "node", "id": 98728184, "lat": 40.4499075, "lon": -3.7087863}, {"type": "node", "id": 98728832, "lat": 40.4519615, "lon": -3.7093524, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98728833, "lat": 40.4512455, "lon": -3.7094277}, {"type": "node", "id": 98728989, "lat": 40.4478803, "lon": -3.7081409}, {"type": "node", "id": 98728990, "lat": 40.4479275, "lon": -3.7080984}, {"type": "node", "id": 98728991, "lat": 40.4480655, "lon": -3.7080576}, {"type": "node", "id": 98728992, "lat": 40.4484662, "lon": -3.7082904}, {"type": "node", "id": 98731452, "lat": 40.4517013, "lon": -3.7099676}, {"type": "node", "id": 98731608, "lat": 40.4512388, "lon": -3.7100067}, {"type": "node", "id": 98732051, "lat": 40.4522074, "lon": -3.7096083}, {"type": "node", "id": 98732052, "lat": 40.4522607, "lon": -3.7097125, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 98732053, "lat": 40.452397, "lon": -3.7101141}, {"type": "node", "id": 98732054, "lat": 40.452513, "lon": -3.7107558}, {"type": "node", "id": 98732055, "lat": 40.4525609, "lon": -3.7110611}, {"type": "node", "id": 98732056, "lat": 40.4525063, "lon": -3.7113817, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746256, "lat": 40.4509726, "lon": -3.6982217, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746257, "lat": 40.4498186, "lon": -3.6983304}, {"type": "node", "id": 98746258, "lat": 40.4466599, "lon": -3.6986277, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746807, "lat": 40.4465851, "lon": -3.6971318, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746809, "lat": 40.4480236, "lon": -3.6969828, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98746810, "lat": 40.4493211, "lon": -3.6968483}, {"type": "node", "id": 98746811, "lat": 40.4508961, "lon": -3.6966851, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98766581, "lat": 40.4524631, "lon": -3.6937608}, {"type": "node", "id": 98801269, "lat": 40.4515506, "lon": -3.6938401}, {"type": "node", "id": 98944239, "lat": 40.4466351, "lon": -3.7017785}, {"type": "node", "id": 98944240, "lat": 40.445346, "lon": -3.7019519}, {"type": "node", "id": 98944891, "lat": 40.4452698, "lon": -3.7004566}, {"type": "node", "id": 98944892, "lat": 40.4451822, "lon": -3.698779}, {"type": "node", "id": 98944893, "lat": 40.4451024, "lon": -3.6972335}, {"type": "node", "id": 98944895, "lat": 40.4450255, "lon": -3.6957433}, {"type": "node", "id": 98945967, "lat": 40.4441817, "lon": -3.7005401}, {"type": "node", "id": 98945969, "lat": 40.4441021, "lon": -3.6988674}, {"type": "node", "id": 98945970, "lat": 40.4440286, "lon": -3.6973242}, {"type": "node", "id": 98945971, "lat": 40.4439678, "lon": -3.6958089}, {"type": "node", "id": 98946910, "lat": 40.4430239, "lon": -3.6989556}, {"type": "node", "id": 98946911, "lat": 40.4465205, "lon": -3.6986445, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98948612, "lat": 40.4429508, "lon": -3.6974153}, {"type": "node", "id": 98948614, "lat": 40.4464486, "lon": -3.6971197, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98949531, "lat": 40.4431037, "lon": -3.7006361}, {"type": "node", "id": 98949532, "lat": 40.4428815, "lon": -3.6959078}, {"type": "node", "id": 98949534, "lat": 40.4428191, "lon": -3.6947752, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98949981, "lat": 40.4420183, "lon": -3.7007103}, {"type": "node", "id": 98951270, "lat": 40.4445289, "lon": -3.6957682}, {"type": "node", "id": 98951271, "lat": 40.4448179, "lon": -3.6957469}, {"type": "node", "id": 98951272, "lat": 40.4463737, "lon": -3.6956259}, {"type": "node", "id": 98953225, "lat": 40.4419623, "lon": -3.7051775}, {"type": "node", "id": 98955810, "lat": 40.4359867, "lon": -3.7033085}, {"type": "node", "id": 98956113, "lat": 40.4370497, "lon": -3.7029705}, {"type": "node", "id": 98956258, "lat": 40.4342179, "lon": -3.7016832, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98956600, "lat": 40.4368704, "lon": -3.702822}, {"type": "node", "id": 98956601, "lat": 40.4332437, "lon": -3.7012725}, {"type": "node", "id": 98957145, "lat": 40.437033, "lon": -3.7025409}, {"type": "node", "id": 98957147, "lat": 40.4368691, "lon": -3.7010791}, {"type": "node", "id": 98957377, "lat": 40.437194, "lon": -3.7027485}, {"type": "node", "id": 98957378, "lat": 40.4385857, "lon": -3.7026359}, {"type": "node", "id": 98957846, "lat": 40.4371124, "lon": -3.7029436}, {"type": "node", "id": 98958253, "lat": 40.4369979, "lon": -3.70297}, {"type": "node", "id": 98958254, "lat": 40.4369086, "lon": -3.7026054}, {"type": "node", "id": 98958255, "lat": 40.4371835, "lon": -3.7026792}, {"type": "node", "id": 98958321, "lat": 40.4385057, "lon": -3.7010558}, {"type": "node", "id": 98958620, "lat": 40.4345778, "lon": -3.7002138}, {"type": "node", "id": 98958622, "lat": 40.4358548, "lon": -3.7006916}, {"type": "node", "id": 98958746, "lat": 40.4336713, "lon": -3.6998539}, {"type": "node", "id": 98958747, "lat": 40.4331273, "lon": -3.6996172}, {"type": "node", "id": 98958748, "lat": 40.4325975, "lon": -3.6994042}, {"type": "node", "id": 98958749, "lat": 40.4315036, "lon": -3.6989515}, {"type": "node", "id": 98958915, "lat": 40.4347517, "lon": -3.699507}, {"type": "node", "id": 98959041, "lat": 40.4338473, "lon": -3.6991476}, {"type": "node", "id": 98959043, "lat": 40.4333077, "lon": -3.6989204}, {"type": "node", "id": 98959044, "lat": 40.4327785, "lon": -3.6987018}, {"type": "node", "id": 98959052, "lat": 40.4329801, "lon": -3.6978731}, {"type": "node", "id": 98959391, "lat": 40.4324319, "lon": -3.700037}, {"type": "node", "id": 98959492, "lat": 40.4335031, "lon": -3.6980914}, {"type": "node", "id": 98959776, "lat": 40.4329178, "lon": -3.7004355}, {"type": "node", "id": 98959947, "lat": 40.4340482, "lon": -3.6983383}, {"type": "node", "id": 98960185, "lat": 40.4334972, "lon": -3.7005194}, {"type": "node", "id": 98960186, "lat": 40.4331709, "lon": -3.700735}, {"type": "node", "id": 98960226, "lat": 40.4344167, "lon": -3.7008826}, {"type": "node", "id": 98960521, "lat": 40.433974, "lon": -3.7027031, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98960767, "lat": 40.4324449, "lon": -3.7023065}, {"type": "node", "id": 98960768, "lat": 40.4318903, "lon": -3.7021581}, {"type": "node", "id": 98960769, "lat": 40.4310764, "lon": -3.7019396}, {"type": "node", "id": 98960811, "lat": 40.433013, "lon": -3.7024509}, {"type": "node", "id": 98960871, "lat": 40.4348336, "lon": -3.7029624}, {"type": "node", "id": 98960966, "lat": 40.4348003, "lon": -3.7019266}, {"type": "node", "id": 98989151, "lat": 40.4519249, "lon": -3.6883545}, {"type": "node", "id": 98999832, "lat": 40.450268, "lon": -3.6822756, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100881334, "lat": 40.4486894, "lon": -3.6894044}, {"type": "node", "id": 100881577, "lat": 40.449339, "lon": -3.6885976}, {"type": "node", "id": 100881578, "lat": 40.4496754, "lon": -3.6881778}, {"type": "node", "id": 100881579, "lat": 40.4514354, "lon": -3.6862226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 100881715, "lat": 40.4490514, "lon": -3.6892629}, {"type": "node", "id": 100890239, "lat": 40.4378177, "lon": -3.6880186}, {"type": "node", "id": 100890241, "lat": 40.4377393, "lon": -3.6862943, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100890242, "lat": 40.4376921, "lon": -3.6854951}, {"type": "node", "id": 100890243, "lat": 40.4376811, "lon": -3.6852045}, {"type": "node", "id": 100890244, "lat": 40.437642, "lon": -3.6842146}, {"type": "node", "id": 100890246, "lat": 40.4376209, "lon": -3.6830831}, {"type": "node", "id": 100891149, "lat": 40.4378112, "lon": -3.6851235, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891150, "lat": 40.4378187, "lon": -3.685435, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891151, "lat": 40.4378642, "lon": -3.6862856, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891152, "lat": 40.4379443, "lon": -3.6879544}, {"type": "node", "id": 100891869, "lat": 40.4378822, "lon": -3.6883489}, {"type": "node", "id": 100892261, "lat": 40.4376676, "lon": -3.6836358}, {"type": "node", "id": 100993084, "lat": 40.451256, "lon": -3.7199271}, {"type": "node", "id": 100993085, "lat": 40.4515252, "lon": -3.719017}, {"type": "node", "id": 101180201, "lat": 40.4414428, "lon": -3.6947714}, {"type": "node", "id": 101181988, "lat": 40.4414672, "lon": -3.6943065, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 101182466, "lat": 40.443486, "lon": -3.6951234}, {"type": "node", "id": 101190047, "lat": 40.4506246, "lon": -3.6895093}, {"type": "node", "id": 101190048, "lat": 40.4499316, "lon": -3.6885446}, {"type": "node", "id": 101190120, "lat": 40.4491389, "lon": -3.6895521}, {"type": "node", "id": 101190157, "lat": 40.4503863, "lon": -3.6873469}, {"type": "node", "id": 101190286, "lat": 40.4506647, "lon": -3.688477}, {"type": "node", "id": 102192627, "lat": 40.4480584, "lon": -3.685166}, {"type": "node", "id": 102192628, "lat": 40.4471655, "lon": -3.6855583}, {"type": "node", "id": 102192630, "lat": 40.4465349, "lon": -3.6858453}, {"type": "node", "id": 102193004, "lat": 40.4510581, "lon": -3.6857735}, {"type": "node", "id": 102193006, "lat": 40.4510557, "lon": -3.6860257}, {"type": "node", "id": 102193007, "lat": 40.4495332, "lon": -3.6876886}, {"type": "node", "id": 102193009, "lat": 40.4495248, "lon": -3.6878751}, {"type": "node", "id": 102195393, "lat": 40.4493141, "lon": -3.6879617}, {"type": "node", "id": 102195394, "lat": 40.4488535, "lon": -3.6885751}, {"type": "node", "id": 102195398, "lat": 40.4481654, "lon": -3.6885439}, {"type": "node", "id": 102195399, "lat": 40.4478498, "lon": -3.6882243}, {"type": "node", "id": 102195400, "lat": 40.4476539, "lon": -3.6878896}, {"type": "node", "id": 102195402, "lat": 40.4468793, "lon": -3.6843738}, {"type": "node", "id": 102195668, "lat": 40.4490655, "lon": -3.6867122}, {"type": "node", "id": 102196413, "lat": 40.4484121, "lon": -3.6860353}, {"type": "node", "id": 102196415, "lat": 40.4502892, "lon": -3.6858587}, {"type": "node", "id": 102196725, "lat": 40.4468273, "lon": -3.6870345}, {"type": "node", "id": 102196726, "lat": 40.4474634, "lon": -3.6869209}, {"type": "node", "id": 102196728, "lat": 40.4484896, "lon": -3.6867586}, {"type": "node", "id": 102196730, "lat": 40.4496013, "lon": -3.6866737}, {"type": "node", "id": 102196857, "lat": 40.4489454, "lon": -3.6884334}, {"type": "node", "id": 102197178, "lat": 40.4476278, "lon": -3.6839174}, {"type": "node", "id": 102197888, "lat": 40.447465, "lon": -3.6892236}, {"type": "node", "id": 102197890, "lat": 40.4472705, "lon": -3.6888124}, {"type": "node", "id": 102197891, "lat": 40.4471794, "lon": -3.688622}, {"type": "node", "id": 102197892, "lat": 40.4460984, "lon": -3.684977}, {"type": "node", "id": 102198270, "lat": 40.445643, "lon": -3.6854204, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 102198273, "lat": 40.4486271, "lon": -3.6833168}, {"type": "node", "id": 102198274, "lat": 40.4492095, "lon": -3.6829417}, {"type": "node", "id": 102199240, "lat": 40.4497215, "lon": -3.6826224}, {"type": "node", "id": 102200180, "lat": 40.4489193, "lon": -3.6831234}, {"type": "node", "id": 139951327, "lat": 40.4328678, "lon": -3.693329}, {"type": "node", "id": 139951329, "lat": 40.4328174, "lon": -3.6950082}, {"type": "node", "id": 139951330, "lat": 40.4326728, "lon": -3.6964975}, {"type": "node", "id": 139951332, "lat": 40.4322844, "lon": -3.6975432}, {"type": "node", "id": 139971858, "lat": 40.4329663, "lon": -3.6910734, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 139975676, "lat": 40.4330954, "lon": -3.6911661}, {"type": "node", "id": 139977749, "lat": 40.4317468, "lon": -3.6919687, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 139977758, "lat": 40.4317441, "lon": -3.6934207}, {"type": "node", "id": 139977761, "lat": 40.4317033, "lon": -3.6951049}, {"type": "node", "id": 139977763, "lat": 40.4316515, "lon": -3.6973027}, {"type": "node", "id": 139982483, "lat": 40.4434668, "lon": -3.6879514, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 139982486, "lat": 40.4440891, "lon": -3.6870892}, {"type": "node", "id": 139982488, "lat": 40.4447897, "lon": -3.6861222, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 141855405, "lat": 40.4376535, "lon": -3.7042464}, {"type": "node", "id": 141856303, "lat": 40.434473, "lon": -3.7057011}, {"type": "node", "id": 141856893, "lat": 40.4317357, "lon": -3.7050674}, {"type": "node", "id": 141857474, "lat": 40.4336149, "lon": -3.7056028}, {"type": "node", "id": 141857476, "lat": 40.4337727, "lon": -3.7058477}, {"type": "node", "id": 141858985, "lat": 40.4330151, "lon": -3.7062982}, {"type": "node", "id": 141859167, "lat": 40.4328326, "lon": -3.7070774}, {"type": "node", "id": 141859168, "lat": 40.4327904, "lon": -3.7077392}, {"type": "node", "id": 141859608, "lat": 40.4327253, "lon": -3.7071087}, {"type": "node", "id": 141859830, "lat": 40.4328007, "lon": -3.7070176}, {"type": "node", "id": 141859832, "lat": 40.4327924, "lon": -3.7071538}, {"type": "node", "id": 141860142, "lat": 40.4326318, "lon": -3.7071638, "tags": {"highway": "crossing"}}, {"type": "node", "id": 141860144, "lat": 40.4315206, "lon": -3.7073077}, {"type": "node", "id": 141860372, "lat": 40.4315333, "lon": -3.707145}, {"type": "node", "id": 141860374, "lat": 40.432608, "lon": -3.7070213, "tags": {"highway": "crossing"}}, {"type": "node", "id": 141860662, "lat": 40.4315307, "lon": -3.7074998}, {"type": "node", "id": 141861285, "lat": 40.4315192, "lon": -3.7068007}, {"type": "node", "id": 141861309, "lat": 40.4303839, "lon": -3.7075809}, {"type": "node", "id": 141861311, "lat": 40.4303531, "lon": -3.7071162}, {"type": "node", "id": 141862745, "lat": 40.4311938, "lon": -3.703254, "tags": {"highway": "traffic_signals", "survey:date": "2023-12-10"}}, {"type": "node", "id": 141862748, "lat": 40.4332082, "lon": -3.7041334, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141865273, "lat": 40.4336965, "lon": -3.7038305, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 141868929, "lat": 40.431361, "lon": -3.7043394}, {"type": "node", "id": 141870722, "lat": 40.4291534, "lon": -3.7024984}, {"type": "node", "id": 141874455, "lat": 40.4305903, "lon": -3.700968}, {"type": "node", "id": 141875015, "lat": 40.4311185, "lon": -3.7015028}, {"type": "node", "id": 141875017, "lat": 40.4311485, "lon": -3.7011921}, {"type": "node", "id": 141875018, "lat": 40.4313484, "lon": -3.7004022}, {"type": "node", "id": 141880344, "lat": 40.432335, "lon": -3.697975}, {"type": "node", "id": 141880346, "lat": 40.4305698, "lon": -3.7000548, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 141880907, "lat": 40.4320372, "lon": -3.7015699}, {"type": "node", "id": 141881345, "lat": 40.4329365, "lon": -3.7015807}, {"type": "node", "id": 141881346, "lat": 40.4330991, "lon": -3.7020879}, {"type": "node", "id": 141881347, "lat": 40.4326593, "lon": -3.7038935}, {"type": "node", "id": 141881448, "lat": 40.4321063, "lon": -3.7036499, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141881729, "lat": 40.4326158, "lon": -3.7016271}, {"type": "node", "id": 141881777, "lat": 40.4315745, "lon": -3.7034188}, {"type": "node", "id": 141882080, "lat": 40.4323114, "lon": -3.7013651}, {"type": "node", "id": 141882864, "lat": 40.4322768, "lon": -3.7008194}, {"type": "node", "id": 141884430, "lat": 40.432555, "lon": -3.7004361}, {"type": "node", "id": 141885133, "lat": 40.4329226, "lon": -3.7005041}, {"type": "node", "id": 141885351, "lat": 40.4315537, "lon": -3.6996505}, {"type": "node", "id": 141885510, "lat": 40.4310789, "lon": -3.6994557, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 141886481, "lat": 40.429716, "lon": -3.6964357, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141886625, "lat": 40.4307599, "lon": -3.6979527}, {"type": "node", "id": 141886626, "lat": 40.4319368, "lon": -3.6984373}, {"type": "node", "id": 141886675, "lat": 40.4306272, "lon": -3.6992635}, {"type": "node", "id": 141886881, "lat": 40.4308569, "lon": -3.6969381, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141887738, "lat": 40.432413, "lon": -3.6971892}, {"type": "node", "id": 141888359, "lat": 40.4324302, "lon": -3.6976089}, {"type": "node", "id": 141889410, "lat": 40.4323607, "lon": -3.6977335}, {"type": "node", "id": 141915390, "lat": 40.4296676, "lon": -3.6952798}, {"type": "node", "id": 141917742, "lat": 40.431091, "lon": -3.6970563}, {"type": "node", "id": 141918063, "lat": 40.4312934, "lon": -3.6951286}, {"type": "node", "id": 141918065, "lat": 40.4311358, "lon": -3.6934711}, {"type": "node", "id": 141918536, "lat": 40.4307322, "lon": -3.6951902}, {"type": "node", "id": 141919137, "lat": 40.4295871, "lon": -3.6935978, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 141920074, "lat": 40.4306148, "lon": -3.6935137, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 141920921, "lat": 40.4317547, "lon": -3.6915634}, {"type": "node", "id": 141921783, "lat": 40.4305682, "lon": -3.6917959}, {"type": "node", "id": 141923239, "lat": 40.4295059, "lon": -3.6919569}, {"type": "node", "id": 141923543, "lat": 40.4287968, "lon": -3.6920153}, {"type": "node", "id": 141923652, "lat": 40.4288813, "lon": -3.6936556}, {"type": "node", "id": 142191440, "lat": 40.4462363, "lon": -3.6897706}, {"type": "node", "id": 142191967, "lat": 40.4466582, "lon": -3.6897012}, {"type": "node", "id": 142191968, "lat": 40.4484937, "lon": -3.688567}, {"type": "node", "id": 142194318, "lat": 40.4465003, "lon": -3.6956012, "tags": {"crossing": "no"}}, {"type": "node", "id": 142195759, "lat": 40.4462942, "lon": -3.6933335}, {"type": "node", "id": 142195761, "lat": 40.4460725, "lon": -3.6894025}, {"type": "node", "id": 142198196, "lat": 40.4468106, "lon": -3.7023983}, {"type": "node", "id": 142201929, "lat": 40.4467407, "lon": -3.7024045}, {"type": "node", "id": 142222546, "lat": 40.4459638, "lon": -3.6868684}, {"type": "node", "id": 142222548, "lat": 40.4458658, "lon": -3.6863001}, {"type": "node", "id": 142222549, "lat": 40.4458079, "lon": -3.6862034}, {"type": "node", "id": 142222551, "lat": 40.4456892, "lon": -3.686071}, {"type": "node", "id": 142223394, "lat": 40.4457279, "lon": -3.6860035}, {"type": "node", "id": 142223395, "lat": 40.4458289, "lon": -3.6861145}, {"type": "node", "id": 142223397, "lat": 40.4459304, "lon": -3.6862702}, {"type": "node", "id": 142223399, "lat": 40.4460006, "lon": -3.6864777}, {"type": "node", "id": 142227128, "lat": 40.445848, "lon": -3.6860164}, {"type": "node", "id": 142227130, "lat": 40.4459984, "lon": -3.6862453, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 142227132, "lat": 40.4460617, "lon": -3.6864612}, {"type": "node", "id": 142227645, "lat": 40.4458728, "lon": -3.6865678}, {"type": "node", "id": 142227647, "lat": 40.4457925, "lon": -3.6863241}, {"type": "node", "id": 142227648, "lat": 40.4454952, "lon": -3.6859838, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 142230853, "lat": 40.4446597, "lon": -3.6849187}, {"type": "node", "id": 142231379, "lat": 40.4446194, "lon": -3.6849825}, {"type": "node", "id": 142246030, "lat": 40.4467202, "lon": -3.7001461}, {"type": "node", "id": 142248303, "lat": 40.4466022, "lon": -3.7001847}, {"type": "node", "id": 142260103, "lat": 40.4432224, "lon": -3.6835834}, {"type": "node", "id": 142279247, "lat": 40.4448741, "lon": -3.6854948}, {"type": "node", "id": 142279248, "lat": 40.4449803, "lon": -3.685319, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 142279249, "lat": 40.4451097, "lon": -3.6852046}, {"type": "node", "id": 142279251, "lat": 40.4451742, "lon": -3.6851785}, {"type": "node", "id": 142279252, "lat": 40.4451997, "lon": -3.6851649}, {"type": "node", "id": 142279254, "lat": 40.4453958, "lon": -3.6852598}, {"type": "node", "id": 142279256, "lat": 40.4454668, "lon": -3.6855685}, {"type": "node", "id": 142279257, "lat": 40.445441, "lon": -3.6856711, "tags": {"postal_code": "28002"}}, {"type": "node", "id": 142279261, "lat": 40.4450892, "lon": -3.6858512}, {"type": "node", "id": 142281585, "lat": 40.44563, "lon": -3.6857997, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 142283820, "lat": 40.4442437, "lon": -3.6899556}, {"type": "node", "id": 142284527, "lat": 40.4425525, "lon": -3.6900739}, {"type": "node", "id": 142284529, "lat": 40.4428302, "lon": -3.6902753}, {"type": "node", "id": 142284530, "lat": 40.4430798, "lon": -3.6902726}, {"type": "node", "id": 142284532, "lat": 40.4432854, "lon": -3.690065}, {"type": "node", "id": 142284533, "lat": 40.4434322, "lon": -3.6897079}, {"type": "node", "id": 142284535, "lat": 40.4435441, "lon": -3.6893704}, {"type": "node", "id": 142284537, "lat": 40.4436328, "lon": -3.6891601, "tags": {"highway": "crossing"}}, {"type": "node", "id": 142284538, "lat": 40.4438714, "lon": -3.6888792}, {"type": "node", "id": 142284539, "lat": 40.4441813, "lon": -3.6887489}, {"type": "node", "id": 142284541, "lat": 40.4445041, "lon": -3.6888141}, {"type": "node", "id": 142284543, "lat": 40.4448935, "lon": -3.6890736}, {"type": "node", "id": 142294070, "lat": 40.4405884, "lon": -3.6903528}, {"type": "node", "id": 142294113, "lat": 40.4401996, "lon": -3.6902136}, {"type": "node", "id": 142295943, "lat": 40.4392454, "lon": -3.6880194}, {"type": "node", "id": 142295945, "lat": 40.4392659, "lon": -3.6873946}, {"type": "node", "id": 142296560, "lat": 40.4394439, "lon": -3.6863141}, {"type": "node", "id": 142296562, "lat": 40.439573, "lon": -3.686716}, {"type": "node", "id": 142296564, "lat": 40.4395168, "lon": -3.6872004}, {"type": "node", "id": 142296568, "lat": 40.4390051, "lon": -3.6874176}, {"type": "node", "id": 142296570, "lat": 40.4387243, "lon": -3.6875127}, {"type": "node", "id": 142296571, "lat": 40.4384674, "lon": -3.6876354}, {"type": "node", "id": 142301508, "lat": 40.4390858, "lon": -3.6855282}, {"type": "node", "id": 142301509, "lat": 40.4390794, "lon": -3.6851778}, {"type": "node", "id": 142301510, "lat": 40.4391879, "lon": -3.6846905}, {"type": "node", "id": 142301511, "lat": 40.4392659, "lon": -3.6842612}, {"type": "node", "id": 142301512, "lat": 40.4392725, "lon": -3.6837463}, {"type": "node", "id": 142301513, "lat": 40.4392069, "lon": -3.6829578}, {"type": "node", "id": 142302067, "lat": 40.440512, "lon": -3.6832883}, {"type": "node", "id": 142302069, "lat": 40.4407592, "lon": -3.6842384}, {"type": "node", "id": 142302070, "lat": 40.4412936, "lon": -3.6859862}, {"type": "node", "id": 142303401, "lat": 40.4401277, "lon": -3.6847137}, {"type": "node", "id": 142303403, "lat": 40.4397266, "lon": -3.6849193}, {"type": "node", "id": 142303405, "lat": 40.4390964, "lon": -3.6849713}, {"type": "node", "id": 142321412, "lat": 40.43634, "lon": -3.6889083}, {"type": "node", "id": 143497066, "lat": 40.4349953, "lon": -3.6844146}, {"type": "node", "id": 143497929, "lat": 40.4350448, "lon": -3.6854294}, {"type": "node", "id": 143500432, "lat": 40.436235, "lon": -3.6853324}, {"type": "node", "id": 143500434, "lat": 40.4361848, "lon": -3.6843011}, {"type": "node", "id": 143500436, "lat": 40.4360669, "lon": -3.6818791}, {"type": "node", "id": 143500437, "lat": 40.4360059, "lon": -3.6806273}, {"type": "node", "id": 143500439, "lat": 40.4359427, "lon": -3.6793288}, {"type": "node", "id": 143504242, "lat": 40.4348756, "lon": -3.6819848}, {"type": "node", "id": 143505038, "lat": 40.4340419, "lon": -3.6866295}, {"type": "node", "id": 143508728, "lat": 40.4339875, "lon": -3.6855141}, {"type": "node", "id": 143508729, "lat": 40.4339382, "lon": -3.6845028}, {"type": "node", "id": 143508731, "lat": 40.4338176, "lon": -3.6820642}, {"type": "node", "id": 143508732, "lat": 40.4337553, "lon": -3.6808172}, {"type": "node", "id": 143598548, "lat": 40.432703, "lon": -3.6795982}, {"type": "node", "id": 149169016, "lat": 40.4219277, "lon": -3.6950529}, {"type": "node", "id": 150371212, "lat": 40.4410771, "lon": -3.6680915}, {"type": "node", "id": 150760245, "lat": 40.4455407, "lon": -3.7209408}, {"type": "node", "id": 150760271, "lat": 40.4468143, "lon": -3.7189883}, {"type": "node", "id": 150760278, "lat": 40.4467145, "lon": -3.7181462}, {"type": "node", "id": 150760281, "lat": 40.4473048, "lon": -3.7175851}, {"type": "node", "id": 150760286, "lat": 40.446424, "lon": -3.7154, "tags": {"highway": "crossing"}}, {"type": "node", "id": 150760292, "lat": 40.4464372, "lon": -3.7150458}, {"type": "node", "id": 150760294, "lat": 40.4467123, "lon": -3.7139373}, {"type": "node", "id": 150760298, "lat": 40.4470564, "lon": -3.7125483}, {"type": "node", "id": 150760306, "lat": 40.4471678, "lon": -3.7120986}, {"type": "node", "id": 150760309, "lat": 40.4484834, "lon": -3.7126938}, {"type": "node", "id": 150760313, "lat": 40.4480766, "lon": -3.7144113, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760316, "lat": 40.4480466, "lon": -3.7148308, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 150760322, "lat": 40.4487553, "lon": -3.7166192, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 150760333, "lat": 40.4493978, "lon": -3.7130858}, {"type": "node", "id": 150760339, "lat": 40.4505435, "lon": -3.7135642}, {"type": "node", "id": 150760350, "lat": 40.4495768, "lon": -3.7110324}, {"type": "node", "id": 150760355, "lat": 40.4492051, "lon": -3.7146946, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760365, "lat": 40.4492384, "lon": -3.7167007}, {"type": "node", "id": 150760374, "lat": 40.44963, "lon": -3.7170111}, {"type": "node", "id": 150760379, "lat": 40.450042, "lon": -3.7170063}, {"type": "node", "id": 150760384, "lat": 40.4503325, "lon": -3.7166485}, {"type": "node", "id": 150760393, "lat": 40.4507376, "lon": -3.7166829}, {"type": "node", "id": 150760397, "lat": 40.4511924, "lon": -3.7171338}, {"type": "node", "id": 150760405, "lat": 40.4504813, "lon": -3.7165532}, {"type": "node", "id": 150760410, "lat": 40.4504524, "lon": -3.7159998}, {"type": "node", "id": 150760414, "lat": 40.4506184, "lon": -3.7154747}, {"type": "node", "id": 150760418, "lat": 40.4507292, "lon": -3.7152773}, {"type": "node", "id": 150760421, "lat": 40.4489733, "lon": -3.7199046}, {"type": "node", "id": 150760425, "lat": 40.4484809, "lon": -3.7216017}, {"type": "node", "id": 150760431, "lat": 40.4490425, "lon": -3.7212273}, {"type": "node", "id": 150760436, "lat": 40.4499665, "lon": -3.720468}, {"type": "node", "id": 150760441, "lat": 40.4505093, "lon": -3.7199131, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 150760447, "lat": 40.4509028, "lon": -3.7195884, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 150760456, "lat": 40.4464612, "lon": -3.7184666}, {"type": "node", "id": 150760463, "lat": 40.4456906, "lon": -3.7192551, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760466, "lat": 40.4454782, "lon": -3.719622}, {"type": "node", "id": 150760472, "lat": 40.4454591, "lon": -3.7196481}, {"type": "node", "id": 150760477, "lat": 40.4454093, "lon": -3.7196743, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 150760480, "lat": 40.4451305, "lon": -3.7198555}, {"type": "node", "id": 150760483, "lat": 40.4450931, "lon": -3.7198776, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760490, "lat": 40.4455853, "lon": -3.7194688}, {"type": "node", "id": 150760511, "lat": 40.4449322, "lon": -3.7160026}, {"type": "node", "id": 150760517, "lat": 40.4449772, "lon": -3.7169047}, {"type": "node", "id": 150760521, "lat": 40.4451347, "lon": -3.7179169}, {"type": "node", "id": 150760526, "lat": 40.4467022, "lon": -3.7179424, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 150760533, "lat": 40.4466285, "lon": -3.7171163}, {"type": "node", "id": 150760537, "lat": 40.4462407, "lon": -3.716134}, {"type": "node", "id": 150760543, "lat": 40.444914, "lon": -3.7155899}, {"type": "node", "id": 150760546, "lat": 40.445399, "lon": -3.7159522, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760548, "lat": 40.4457891, "lon": -3.717202}, {"type": "node", "id": 150760551, "lat": 40.4460276, "lon": -3.7172718}, {"type": "node", "id": 150760555, "lat": 40.4464002, "lon": -3.7172204, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760560, "lat": 40.4457215, "lon": -3.7175097}, {"type": "node", "id": 150760562, "lat": 40.4456836, "lon": -3.7177725}, {"type": "node", "id": 150760567, "lat": 40.4456957, "lon": -3.7180961}, {"type": "node", "id": 150760572, "lat": 40.4458074, "lon": -3.7185031}, {"type": "node", "id": 150760577, "lat": 40.4460227, "lon": -3.7189215}, {"type": "node", "id": 150760580, "lat": 40.445416, "lon": -3.7178527}, {"type": "node", "id": 150760587, "lat": 40.4455707, "lon": -3.7179639}, {"type": "node", "id": 150760590, "lat": 40.4450145, "lon": -3.7179485}, {"type": "node", "id": 150760596, "lat": 40.4449002, "lon": -3.7180028}, {"type": "node", "id": 150760601, "lat": 40.4448027, "lon": -3.7180825}, {"type": "node", "id": 150760604, "lat": 40.4445916, "lon": -3.718393}, {"type": "node", "id": 150760630, "lat": 40.4443446, "lon": -3.7198782}, {"type": "node", "id": 150760632, "lat": 40.4463753, "lon": -3.7152963}, {"type": "node", "id": 150760640, "lat": 40.4463068, "lon": -3.7154849, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760645, "lat": 40.4462326, "lon": -3.7156219}, {"type": "node", "id": 150760653, "lat": 40.4461, "lon": -3.7157128}, {"type": "node", "id": 150760658, "lat": 40.4458896, "lon": -3.7148098}, {"type": "node", "id": 150760661, "lat": 40.4464829, "lon": -3.7123263}, {"type": "node", "id": 150760666, "lat": 40.4495288, "lon": -3.7115537}, {"type": "node", "id": 150760671, "lat": 40.4504184, "lon": -3.7110818}, {"type": "node", "id": 150760678, "lat": 40.4504649, "lon": -3.7112753}, {"type": "node", "id": 150760682, "lat": 40.4508146, "lon": -3.7114073, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760685, "lat": 40.4509126, "lon": -3.7114336}, {"type": "node", "id": 150760689, "lat": 40.4502151, "lon": -3.711067}, {"type": "node", "id": 150760701, "lat": 40.4434356, "lon": -3.7196479}, {"type": "node", "id": 150760705, "lat": 40.4434532, "lon": -3.7198347}, {"type": "node", "id": 150760710, "lat": 40.4434305, "lon": -3.7207627}, {"type": "node", "id": 150760714, "lat": 40.4440238, "lon": -3.7208599}, {"type": "node", "id": 150760718, "lat": 40.4439941, "lon": -3.721449}, {"type": "node", "id": 150760721, "lat": 40.4440368, "lon": -3.7217845}, {"type": "node", "id": 150760723, "lat": 40.4439025, "lon": -3.7227965}, {"type": "node", "id": 150760727, "lat": 40.4397356, "lon": -3.7183133}, {"type": "node", "id": 150760730, "lat": 40.4397513, "lon": -3.7184751}, {"type": "node", "id": 150760732, "lat": 40.4391199, "lon": -3.7198471}, {"type": "node", "id": 150760739, "lat": 40.4391541, "lon": -3.7202279}, {"type": "node", "id": 150760743, "lat": 40.4410356, "lon": -3.7218489}, {"type": "node", "id": 150760747, "lat": 40.441351, "lon": -3.7217207}, {"type": "node", "id": 150760749, "lat": 40.4418146, "lon": -3.7206647}, {"type": "node", "id": 150760753, "lat": 40.4421497, "lon": -3.7205458}, {"type": "node", "id": 150760756, "lat": 40.4496065, "lon": -3.7159187}, {"type": "node", "id": 150760759, "lat": 40.4498698, "lon": -3.7154925}, {"type": "node", "id": 150760762, "lat": 40.4503911, "lon": -3.7143369}, {"type": "node", "id": 150760925, "lat": 40.4417588, "lon": -3.7267791}, {"type": "node", "id": 150760926, "lat": 40.4419639, "lon": -3.7250282}, {"type": "node", "id": 150760933, "lat": 40.4421999, "lon": -3.7247893}, {"type": "node", "id": 150760935, "lat": 40.442482, "lon": -3.7247979}, {"type": "node", "id": 150760937, "lat": 40.4427143, "lon": -3.7227883}, {"type": "node", "id": 150760941, "lat": 40.4428606, "lon": -3.7226253}, {"type": "node", "id": 150760946, "lat": 40.4455604, "lon": -3.723114}, {"type": "node", "id": 150760950, "lat": 40.4454293, "lon": -3.7243833}, {"type": "node", "id": 150760955, "lat": 40.4453114, "lon": -3.7254427}, {"type": "node", "id": 150760961, "lat": 40.4461019, "lon": -3.7256248, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760966, "lat": 40.4462161, "lon": -3.724525}, {"type": "node", "id": 150760970, "lat": 40.4461597, "lon": -3.7250931}, {"type": "node", "id": 150760978, "lat": 40.4427425, "lon": -3.7250292}, {"type": "node", "id": 150760984, "lat": 40.4431184, "lon": -3.7252282}, {"type": "node", "id": 150760987, "lat": 40.4447959, "lon": -3.7255368, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760992, "lat": 40.4450557, "lon": -3.7254432}, {"type": "node", "id": 177587168, "lat": 40.4458956, "lon": -3.7275243, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 255099047, "lat": 40.4406828, "lon": -3.7011948}, {"type": "node", "id": 255099811, "lat": 40.4404239, "lon": -3.7010825}, {"type": "node", "id": 255289006, "lat": 40.4222034, "lon": -3.6817478}, {"type": "node", "id": 255289007, "lat": 40.4222649, "lon": -3.6830184}, {"type": "node", "id": 256525373, "lat": 40.4378662, "lon": -3.6905819, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 256525374, "lat": 40.4378776, "lon": -3.6904838}, {"type": "node", "id": 256525381, "lat": 40.4381335, "lon": -3.6906041}, {"type": "node", "id": 256525425, "lat": 40.4380919, "lon": -3.6904689, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 263839181, "lat": 40.4461667, "lon": -3.6922538}, {"type": "node", "id": 263839681, "lat": 40.4463731, "lon": -3.692247}, {"type": "node", "id": 266374396, "lat": 40.4358644, "lon": -3.719669}, {"type": "node", "id": 267271033, "lat": 40.4413498, "lon": -3.692567, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 269361123, "lat": 40.4383842, "lon": -3.6985453}, {"type": "node", "id": 269361124, "lat": 40.4367119, "lon": -3.6988487}, {"type": "node", "id": 269361176, "lat": 40.4376642, "lon": -3.699407}, {"type": "node", "id": 269361177, "lat": 40.4372881, "lon": -3.6978939}, {"type": "node", "id": 269361215, "lat": 40.4361366, "lon": -3.6979913}, {"type": "node", "id": 269361216, "lat": 40.436085, "lon": -3.6992134}, {"type": "node", "id": 289004847, "lat": 40.4374764, "lon": -3.6986402}, {"type": "node", "id": 289005947, "lat": 40.4357768, "lon": -3.6990794, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 291274690, "lat": 40.4354234, "lon": -3.7005231}, {"type": "node", "id": 291274693, "lat": 40.4352195, "lon": -3.699783}, {"type": "node", "id": 291274695, "lat": 40.4354937, "lon": -3.6996806}, {"type": "node", "id": 291274698, "lat": 40.4355762, "lon": -3.7000243}, {"type": "node", "id": 291274700, "lat": 40.435319, "lon": -3.7001342}, {"type": "node", "id": 292093353, "lat": 40.4297986, "lon": -3.708441}, {"type": "node", "id": 292093358, "lat": 40.42978, "lon": -3.7082327}, {"type": "node", "id": 293293726, "lat": 40.425321, "lon": -3.7170997}, {"type": "node", "id": 296097815, "lat": 40.4507901, "lon": -3.7196645}, {"type": "node", "id": 296097816, "lat": 40.4495, "lon": -3.7209518}, {"type": "node", "id": 298148410, "lat": 40.4292586, "lon": -3.6962369}, {"type": "node", "id": 298151333, "lat": 40.4312918, "lon": -3.7034402, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 298151334, "lat": 40.4313533, "lon": -3.7041968}, {"type": "node", "id": 298151462, "lat": 40.4317015, "lon": -3.7034782}, {"type": "node", "id": 298152271, "lat": 40.431612, "lon": -3.7005304}, {"type": "node", "id": 298152518, "lat": 40.4340166, "lon": -3.7016207}, {"type": "node", "id": 298153229, "lat": 40.4331441, "lon": -3.7007284}, {"type": "node", "id": 298154188, "lat": 40.4329876, "lon": -3.7005541}, {"type": "node", "id": 298154271, "lat": 40.4330891, "lon": -3.7006569}, {"type": "node", "id": 298156293, "lat": 40.4326089, "lon": -3.7052809}, {"type": "node", "id": 298156457, "lat": 40.4324994, "lon": -3.7052482}, {"type": "node", "id": 298157533, "lat": 40.4366109, "lon": -3.7055424, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298157773, "lat": 40.4372534, "lon": -3.7042502, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 298158014, "lat": 40.4376582, "lon": -3.7050615, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298158022, "lat": 40.437656, "lon": -3.7048481}, {"type": "node", "id": 298158502, "lat": 40.4376556, "lon": -3.7045933}, {"type": "node", "id": 298158521, "lat": 40.4357683, "lon": -3.7042937}, {"type": "node", "id": 298158739, "lat": 40.4357772, "lon": -3.705604}, {"type": "node", "id": 298448863, "lat": 40.427978, "lon": -3.7142741}, {"type": "node", "id": 298609370, "lat": 40.4253388, "lon": -3.7125258}, {"type": "node", "id": 300751449, "lat": 40.4278977, "lon": -3.6893475, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 302786451, "lat": 40.4418843, "lon": -3.7017108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 305776147, "lat": 40.4372134, "lon": -3.7236628}, {"type": "node", "id": 306092383, "lat": 40.4368628, "lon": -3.7027453}, {"type": "node", "id": 306092384, "lat": 40.4369562, "lon": -3.7025599}, {"type": "node", "id": 306092387, "lat": 40.4369426, "lon": -3.7029422}, {"type": "node", "id": 306092388, "lat": 40.4371855, "lon": -3.7028252}, {"type": "node", "id": 306092389, "lat": 40.4370666, "lon": -3.702544}, {"type": "node", "id": 306092390, "lat": 40.4331241, "lon": -3.6912993, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 306092392, "lat": 40.4328018, "lon": -3.6913397, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 306546522, "lat": 40.4432403, "lon": -3.6872267}, {"type": "node", "id": 318919466, "lat": 40.4286581, "lon": -3.7214834}, {"type": "node", "id": 325172790, "lat": 40.4253492, "lon": -3.7036209}, {"type": "node", "id": 325172794, "lat": 40.4251454, "lon": -3.7038934}, {"type": "node", "id": 325172800, "lat": 40.4252271, "lon": -3.7041792}, {"type": "node", "id": 326195947, "lat": 40.424456, "lon": -3.6941985, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 326196041, "lat": 40.4238382, "lon": -3.6977583}, {"type": "node", "id": 327492865, "lat": 40.4328841, "lon": -3.6845906, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 327492878, "lat": 40.4329145, "lon": -3.685601}, {"type": "node", "id": 330271089, "lat": 40.445914, "lon": -3.7273545, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 330271161, "lat": 40.4417963, "lon": -3.7266673, "tags": {"bicycle": "yes", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 338727723, "lat": 40.4470318, "lon": -3.7092979}, {"type": "node", "id": 338727732, "lat": 40.4467673, "lon": -3.7041255}, {"type": "node", "id": 338727741, "lat": 40.4468056, "lon": -3.7050476}, {"type": "node", "id": 338727751, "lat": 40.4457863, "lon": -3.7051402, "tags": {"highway": "turning_circle"}}, {"type": "node", "id": 338727758, "lat": 40.4478713, "lon": -3.703833}, {"type": "node", "id": 338727830, "lat": 40.4465953, "lon": -3.700319}, {"type": "node", "id": 338727849, "lat": 40.4465827, "lon": -3.7007212}, {"type": "node", "id": 338727906, "lat": 40.4465063, "lon": -3.7039531, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 338727916, "lat": 40.4465825, "lon": -3.7037392, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 338727925, "lat": 40.4469954, "lon": -3.7045542, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 338727935, "lat": 40.4470771, "lon": -3.7060046}, {"type": "node", "id": 338727945, "lat": 40.4469094, "lon": -3.7068013}, {"type": "node", "id": 338727954, "lat": 40.4468797, "lon": -3.7059942}, {"type": "node", "id": 338727964, "lat": 40.4469346, "lon": -3.7059329}, {"type": "node", "id": 338727974, "lat": 40.4469664, "lon": -3.7059243}, {"type": "node", "id": 338727985, "lat": 40.4470397, "lon": -3.7059461, "tags": {"highway": "give_way"}}, {"type": "node", "id": 338728013, "lat": 40.4470585, "lon": -3.7056513}, {"type": "node", "id": 338728036, "lat": 40.4468754, "lon": -3.7023787}, {"type": "node", "id": 338728050, "lat": 40.4466691, "lon": -3.7023727}, {"type": "node", "id": 338728098, "lat": 40.446878, "lon": -3.7024773}, {"type": "node", "id": 338728134, "lat": 40.4469105, "lon": -3.703261}, {"type": "node", "id": 338728145, "lat": 40.4467417, "lon": -3.7035479}, {"type": "node", "id": 338728155, "lat": 40.4466793, "lon": -3.7026677}, {"type": "node", "id": 338728189, "lat": 40.4458285, "lon": -3.7074652}, {"type": "node", "id": 338728203, "lat": 40.4444264, "lon": -3.7101147}, {"type": "node", "id": 338728219, "lat": 40.4445071, "lon": -3.7103188}, {"type": "node", "id": 338728428, "lat": 40.447213, "lon": -3.7092266}, {"type": "node", "id": 338728444, "lat": 40.4470551, "lon": -3.708915}, {"type": "node", "id": 338728451, "lat": 40.4439585, "lon": -3.7104431}, {"type": "node", "id": 338734205, "lat": 40.4490412, "lon": -3.7019362}, {"type": "node", "id": 338734223, "lat": 40.4488174, "lon": -3.7020378}, {"type": "node", "id": 338896745, "lat": 40.4365688, "lon": -3.7219011}, {"type": "node", "id": 338896746, "lat": 40.4372744, "lon": -3.7232632}, {"type": "node", "id": 338896749, "lat": 40.4373973, "lon": -3.7234711}, {"type": "node", "id": 338896752, "lat": 40.4367859, "lon": -3.7223214}, {"type": "node", "id": 338896753, "lat": 40.4372838, "lon": -3.7233107}, {"type": "node", "id": 338896754, "lat": 40.4373425, "lon": -3.7234678}, {"type": "node", "id": 338896756, "lat": 40.4369139, "lon": -3.7208543}, {"type": "node", "id": 338896757, "lat": 40.4367791, "lon": -3.721043}, {"type": "node", "id": 338896759, "lat": 40.4367473, "lon": -3.721311}, {"type": "node", "id": 338896760, "lat": 40.4369276, "lon": -3.7217217}, {"type": "node", "id": 338896761, "lat": 40.4376498, "lon": -3.7231453}, {"type": "node", "id": 338944951, "lat": 40.441175, "lon": -3.7218737}, {"type": "node", "id": 338944965, "lat": 40.4420237, "lon": -3.7205312}, {"type": "node", "id": 338945022, "lat": 40.4420985, "lon": -3.7248028}, {"type": "node", "id": 338945030, "lat": 40.4424983, "lon": -3.7249453}, {"type": "node", "id": 338956158, "lat": 40.4438766, "lon": -3.7253767, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 338956163, "lat": 40.4445037, "lon": -3.7254859}, {"type": "node", "id": 338956169, "lat": 40.4439812, "lon": -3.7221626}, {"type": "node", "id": 338956205, "lat": 40.4432458, "lon": -3.7252536}, {"type": "node", "id": 339391803, "lat": 40.4508499, "lon": -3.6959321}, {"type": "node", "id": 339391870, "lat": 40.4483736, "lon": -3.703759, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339391878, "lat": 40.451809, "lon": -3.7032474, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339410670, "lat": 40.4486434, "lon": -3.7093941}, {"type": "node", "id": 339636165, "lat": 40.4472327, "lon": -3.6917026}, {"type": "node", "id": 339636170, "lat": 40.4473571, "lon": -3.6926731}, {"type": "node", "id": 339636176, "lat": 40.4473463, "lon": -3.6929475}, {"type": "node", "id": 339636192, "lat": 40.4473833, "lon": -3.692929}, {"type": "node", "id": 339636199, "lat": 40.4474553, "lon": -3.6930278}, {"type": "node", "id": 339636249, "lat": 40.4464634, "lon": -3.6916413, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 339636378, "lat": 40.4463657, "lon": -3.6913641, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339636384, "lat": 40.4463786, "lon": -3.6911557, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 339824055, "lat": 40.4509583, "lon": -3.7196102, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 339824056, "lat": 40.4510781, "lon": -3.7196762}, {"type": "node", "id": 339824057, "lat": 40.451163, "lon": -3.7197774}, {"type": "node", "id": 339824059, "lat": 40.45121, "lon": -3.7198519}, {"type": "node", "id": 339824066, "lat": 40.4511596, "lon": -3.7194157}, {"type": "node", "id": 339824100, "lat": 40.4480426, "lon": -3.7237393}, {"type": "node", "id": 339825209, "lat": 40.4461906, "lon": -3.7250608, "tags": {"highway": "stop"}}, {"type": "node", "id": 340219557, "lat": 40.4269816, "lon": -3.7107713, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 340225432, "lat": 40.4478294, "lon": -3.6954229}, {"type": "node", "id": 340225846, "lat": 40.4512329, "lon": -3.6950931}, {"type": "node", "id": 340225883, "lat": 40.4473229, "lon": -3.6919676}, {"type": "node", "id": 340226353, "lat": 40.4473726, "lon": -3.6990854}, {"type": "node", "id": 340228147, "lat": 40.4489175, "lon": -3.6914397}, {"type": "node", "id": 340228671, "lat": 40.4473334, "lon": -3.6948269}, {"type": "node", "id": 340228711, "lat": 40.4467573, "lon": -3.6950101}, {"type": "node", "id": 340228729, "lat": 40.4465721, "lon": -3.6950318, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 340228748, "lat": 40.4465195, "lon": -3.6950967}, {"type": "node", "id": 340228759, "lat": 40.4473182, "lon": -3.6945663}, {"type": "node", "id": 340228769, "lat": 40.4467505, "lon": -3.6947794}, {"type": "node", "id": 340228781, "lat": 40.4465575, "lon": -3.6948214, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 340228784, "lat": 40.4464999, "lon": -3.6947938}, {"type": "node", "id": 340228785, "lat": 40.4460669, "lon": -3.6951589}, {"type": "node", "id": 341829485, "lat": 40.4330912, "lon": -3.6901047}, {"type": "node", "id": 341829497, "lat": 40.4328766, "lon": -3.6908121, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 341829506, "lat": 40.4328983, "lon": -3.6901436}, {"type": "node", "id": 341829519, "lat": 40.433068, "lon": -3.690714}, {"type": "node", "id": 341829531, "lat": 40.4330838, "lon": -3.690452}, {"type": "node", "id": 344601408, "lat": 40.4342261, "lon": -3.718178, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 344604078, "lat": 40.4412945, "lon": -3.6910427, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 344795413, "lat": 40.4340253, "lon": -3.6921753}, {"type": "node", "id": 344795459, "lat": 40.4329209, "lon": -3.692104}, {"type": "node", "id": 344875504, "lat": 40.4473545, "lon": -3.7023068}, {"type": "node", "id": 345213334, "lat": 40.439082, "lon": -3.7200244}, {"type": "node", "id": 345255555, "lat": 40.4353845, "lon": -3.6889254, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 345537803, "lat": 40.4250635, "lon": -3.690123}, {"type": "node", "id": 345538472, "lat": 40.4248341, "lon": -3.6910357, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 345538475, "lat": 40.4242986, "lon": -3.6904324, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 351923288, "lat": 40.4460719, "lon": -3.6911516}, {"type": "node", "id": 353290961, "lat": 40.4392419, "lon": -3.6835441}, {"type": "node", "id": 355172281, "lat": 40.4460878, "lon": -3.6913989}, {"type": "node", "id": 355174895, "lat": 40.4457662, "lon": -3.691435}, {"type": "node", "id": 356264959, "lat": 40.4411665, "lon": -3.692128}, {"type": "node", "id": 359308509, "lat": 40.4462621, "lon": -3.6913456}, {"type": "node", "id": 359308510, "lat": 40.4461891, "lon": -3.6913464}, {"type": "node", "id": 359392862, "lat": 40.4468127, "lon": -3.7101996}, {"type": "node", "id": 359392864, "lat": 40.4468561, "lon": -3.7101756}, {"type": "node", "id": 359392867, "lat": 40.4469391, "lon": -3.710203}, {"type": "node", "id": 359392869, "lat": 40.4469709, "lon": -3.7102818, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 359404815, "lat": 40.4452522, "lon": -3.7195452}, {"type": "node", "id": 359412218, "lat": 40.4506623, "lon": -3.7088948}, {"type": "node", "id": 365604154, "lat": 40.4490425, "lon": -3.7194165}, {"type": "node", "id": 365604231, "lat": 40.4490145, "lon": -3.7196288}, {"type": "node", "id": 365614645, "lat": 40.4486132, "lon": -3.721147}, {"type": "node", "id": 365614754, "lat": 40.4486986, "lon": -3.7213293}, {"type": "node", "id": 365614755, "lat": 40.4488368, "lon": -3.7213688}, {"type": "node", "id": 365886560, "lat": 40.4298709, "lon": -3.7091852, "tags": {"highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 365886561, "lat": 40.4295443, "lon": -3.7058129}, {"type": "node", "id": 365886562, "lat": 40.4289286, "lon": -3.7021501, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 365886564, "lat": 40.4248919, "lon": -3.6906599}, {"type": "node", "id": 369845645, "lat": 40.4392682, "lon": -3.6827104}, {"type": "node", "id": 369846113, "lat": 40.4362499, "lon": -3.6832001}, {"type": "node", "id": 370503465, "lat": 40.4257609, "lon": -3.692048}, {"type": "node", "id": 370503469, "lat": 40.4254986, "lon": -3.6921803, "tags": {"barrier": "lift_gate", "foot": "yes"}}, {"type": "node", "id": 370503507, "lat": 40.4250912, "lon": -3.6923075}, {"type": "node", "id": 370503551, "lat": 40.4237602, "lon": -3.696942}, {"type": "node", "id": 370503552, "lat": 40.4239844, "lon": -3.6971357}, {"type": "node", "id": 370503553, "lat": 40.426526, "lon": -3.6968401}, {"type": "node", "id": 370503620, "lat": 40.4267243, "lon": -3.6969956}, {"type": "node", "id": 370503621, "lat": 40.4263401, "lon": -3.6965537}, {"type": "node", "id": 370503626, "lat": 40.4276556, "lon": -3.6961727}, {"type": "node", "id": 380747013, "lat": 40.4249099, "lon": -3.6940404}, {"type": "node", "id": 385569660, "lat": 40.4302672, "lon": -3.7121524}, {"type": "node", "id": 385569772, "lat": 40.4303395, "lon": -3.7133066}, {"type": "node", "id": 385569773, "lat": 40.4303729, "lon": -3.7137348}, {"type": "node", "id": 385569774, "lat": 40.4303097, "lon": -3.7139611}, {"type": "node", "id": 385569775, "lat": 40.4302528, "lon": -3.7140288}, {"type": "node", "id": 385569776, "lat": 40.4295054, "lon": -3.7145356, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 389139048, "lat": 40.4255572, "lon": -3.6904648}, {"type": "node", "id": 389139055, "lat": 40.4249082, "lon": -3.6910061}, {"type": "node", "id": 390582262, "lat": 40.4249644, "lon": -3.6923566}, {"type": "node", "id": 394684528, "lat": 40.4380569, "lon": -3.6915884}, {"type": "node", "id": 394684646, "lat": 40.4380887, "lon": -3.6912907}, {"type": "node", "id": 394684648, "lat": 40.4384181, "lon": -3.6908052, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 394684649, "lat": 40.4386448, "lon": -3.6908271}, {"type": "node", "id": 408757686, "lat": 40.4252599, "lon": -3.6994346}, {"type": "node", "id": 433406808, "lat": 40.4389818, "lon": -3.717901}, {"type": "node", "id": 433406813, "lat": 40.4391223, "lon": -3.717415}, {"type": "node", "id": 433406814, "lat": 40.4391584, "lon": -3.7168323}, {"type": "node", "id": 433406816, "lat": 40.4389953, "lon": -3.7132867}, {"type": "node", "id": 433406824, "lat": 40.4390931, "lon": -3.7127141}, {"type": "node", "id": 433406826, "lat": 40.439054, "lon": -3.7132882}, {"type": "node", "id": 433406832, "lat": 40.4392097, "lon": -3.7168337}, {"type": "node", "id": 433406834, "lat": 40.4391896, "lon": -3.7174288}, {"type": "node", "id": 433406835, "lat": 40.4390334, "lon": -3.7179512}, {"type": "node", "id": 433406848, "lat": 40.4395282, "lon": -3.7179738}, {"type": "node", "id": 433406868, "lat": 40.4382652, "lon": -3.7191939}, {"type": "node", "id": 444644585, "lat": 40.438756, "lon": -3.7069568}, {"type": "node", "id": 444644587, "lat": 40.439183, "lon": -3.7064937}, {"type": "node", "id": 536185687, "lat": 40.4463638, "lon": -3.6954112}, {"type": "node", "id": 544426537, "lat": 40.4514485, "lon": -3.7063072}, {"type": "node", "id": 544435179, "lat": 40.4520681, "lon": -3.706954}, {"type": "node", "id": 544435182, "lat": 40.4520872, "lon": -3.7062052}, {"type": "node", "id": 554166725, "lat": 40.4254187, "lon": -3.6909019}, {"type": "node", "id": 554166728, "lat": 40.4252771, "lon": -3.6909726, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 554167206, "lat": 40.4350624, "lon": -3.688934}, {"type": "node", "id": 554167210, "lat": 40.4351046, "lon": -3.6885636}, {"type": "node", "id": 554167331, "lat": 40.435023, "lon": -3.6886877, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 563326690, "lat": 40.4420758, "lon": -3.7048046}, {"type": "node", "id": 563326691, "lat": 40.4419453, "lon": -3.7002159}, {"type": "node", "id": 563326692, "lat": 40.4419746, "lon": -3.7010513}, {"type": "node", "id": 563326693, "lat": 40.4379315, "lon": -3.68946}, {"type": "node", "id": 565714233, "lat": 40.446977, "lon": -3.6914432}, {"type": "node", "id": 569034140, "lat": 40.4445846, "lon": -3.6972773}, {"type": "node", "id": 581287799, "lat": 40.4254989, "lon": -3.6915281}, {"type": "node", "id": 581287837, "lat": 40.4457899, "lon": -3.7147323, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 581870023, "lat": 40.4377611, "lon": -3.6856552}, {"type": "node", "id": 582754412, "lat": 40.4473858, "lon": -3.7086247, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 587643323, "lat": 40.4344645, "lon": -3.7191665}, {"type": "node", "id": 588635983, "lat": 40.4395911, "lon": -3.6902557}, {"type": "node", "id": 613053062, "lat": 40.4421081, "lon": -3.7049442, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 614036231, "lat": 40.4292017, "lon": -3.7152549}, {"type": "node", "id": 614036232, "lat": 40.429073, "lon": -3.7151152}, {"type": "node", "id": 614036233, "lat": 40.4291792, "lon": -3.7148818}, {"type": "node", "id": 614036235, "lat": 40.4298181, "lon": -3.714482}, {"type": "node", "id": 614036236, "lat": 40.4298566, "lon": -3.7144215}, {"type": "node", "id": 614036238, "lat": 40.429867, "lon": -3.7140364}, {"type": "node", "id": 614036239, "lat": 40.4296856, "lon": -3.7132846}, {"type": "node", "id": 616211590, "lat": 40.4472062, "lon": -3.7040736}, {"type": "node", "id": 616211591, "lat": 40.4470709, "lon": -3.7042421, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 616211953, "lat": 40.4469032, "lon": -3.7036096, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 616212459, "lat": 40.4467213, "lon": -3.7175937}, {"type": "node", "id": 616220786, "lat": 40.4326959, "lon": -3.697753, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 616225689, "lat": 40.4303643, "lon": -3.7073539, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 616225704, "lat": 40.4298042, "lon": -3.7074511}, {"type": "node", "id": 616225755, "lat": 40.4315175, "lon": -3.7072255, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 616226050, "lat": 40.431447, "lon": -3.7069651}, {"type": "node", "id": 616226051, "lat": 40.4304039, "lon": -3.7070797}, {"type": "node", "id": 616226070, "lat": 40.4309086, "lon": -3.7075662}, {"type": "node", "id": 616263063, "lat": 40.446296, "lon": -3.7003667}, {"type": "node", "id": 616263143, "lat": 40.4462199, "lon": -3.698694}, {"type": "node", "id": 616263147, "lat": 40.4461151, "lon": -3.6971521, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 616264641, "lat": 40.448116, "lon": -3.6836251}, {"type": "node", "id": 616264645, "lat": 40.4483837, "lon": -3.6885605}, {"type": "node", "id": 616264715, "lat": 40.4482205, "lon": -3.6877373}, {"type": "node", "id": 616264718, "lat": 40.4482562, "lon": -3.6876337}, {"type": "node", "id": 616264721, "lat": 40.4482146, "lon": -3.6873678}, {"type": "node", "id": 616264722, "lat": 40.4481444, "lon": -3.68731}, {"type": "node", "id": 616264726, "lat": 40.4480524, "lon": -3.686821}, {"type": "node", "id": 616264739, "lat": 40.4481096, "lon": -3.6873977}, {"type": "node", "id": 616264741, "lat": 40.4481537, "lon": -3.6876592}, {"type": "node", "id": 622204580, "lat": 40.4306087, "lon": -3.716495, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204581, "lat": 40.4305213, "lon": -3.7164404, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204582, "lat": 40.4303497, "lon": -3.7161242, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204583, "lat": 40.4303867, "lon": -3.7160325, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204584, "lat": 40.4305637, "lon": -3.7159502, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204585, "lat": 40.4306512, "lon": -3.7159519, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204586, "lat": 40.430839, "lon": -3.7163247, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204587, "lat": 40.4307992, "lon": -3.7164323, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 630734756, "lat": 40.4289738, "lon": -3.7024298}, {"type": "node", "id": 674449753, "lat": 40.4352878, "lon": -3.689218, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674449754, "lat": 40.4380118, "lon": -3.6905486, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 674449756, "lat": 40.4379918, "lon": -3.6899992, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 674477932, "lat": 40.4310712, "lon": -3.7090148, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 674477942, "lat": 40.4316782, "lon": -3.7103063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477945, "lat": 40.4318227, "lon": -3.7104205, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477947, "lat": 40.4315172, "lon": -3.7088859, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477948, "lat": 40.4315985, "lon": -3.7087911, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477950, "lat": 40.4311161, "lon": -3.7103596, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 674477952, "lat": 40.4327583, "lon": -3.7087836, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477954, "lat": 40.4328631, "lon": -3.7088873, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477977, "lat": 40.4341099, "lon": -3.7027377, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477979, "lat": 40.4347568, "lon": -3.7029423, "tags": {"highway": "crossing"}}, {"type": "node", "id": 674477982, "lat": 40.4339407, "lon": -3.7028345, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 674477994, "lat": 40.4347859, "lon": -3.7020716, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477995, "lat": 40.4343505, "lon": -3.7017245, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674477996, "lat": 40.4349201, "lon": -3.7019808, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492240, "lat": 40.4242603, "lon": -3.7073935, "tags": {"button_operated": "no", "check_date:crossing": "2021-06-20", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492244, "lat": 40.4265173, "lon": -3.706778, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674492245, "lat": 40.4279494, "lon": -3.7062604, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492248, "lat": 40.4270961, "lon": -3.7064863, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492250, "lat": 40.430711, "lon": -3.7001515, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492251, "lat": 40.4307636, "lon": -3.6998234, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492252, "lat": 40.4304412, "lon": -3.7002136, "tags": {"button_operated": "no", "check_date:crossing": "2021-08-31", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492253, "lat": 40.4304158, "lon": -3.6999518, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492259, "lat": 40.4327595, "lon": -3.7010387}, {"type": "node", "id": 706689897, "lat": 40.4448438, "lon": -3.6875606}, {"type": "node", "id": 706689900, "lat": 40.4453955, "lon": -3.6875112}, {"type": "node", "id": 706689901, "lat": 40.4459324, "lon": -3.6874674}, {"type": "node", "id": 706689902, "lat": 40.4453074, "lon": -3.6858397}, {"type": "node", "id": 706689906, "lat": 40.4466099, "lon": -3.688846}, {"type": "node", "id": 706689907, "lat": 40.4468436, "lon": -3.6894663}, {"type": "node", "id": 706689917, "lat": 40.4468381, "lon": -3.6896011}, {"type": "node", "id": 706689919, "lat": 40.4468576, "lon": -3.6887922}, {"type": "node", "id": 706689923, "lat": 40.447069, "lon": -3.6894651}, {"type": "node", "id": 706689925, "lat": 40.4469875, "lon": -3.6893772}, {"type": "node", "id": 706689927, "lat": 40.4469115, "lon": -3.6893914}, {"type": "node", "id": 706689929, "lat": 40.4488376, "lon": -3.6880606}, {"type": "node", "id": 706689931, "lat": 40.4492416, "lon": -3.6870912}, {"type": "node", "id": 706689933, "lat": 40.4490779, "lon": -3.6879609}, {"type": "node", "id": 706689939, "lat": 40.4477545, "lon": -3.6852991}, {"type": "node", "id": 737215754, "lat": 40.4451693, "lon": -3.708838, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 750475948, "lat": 40.4454438, "lon": -3.7242554, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 750475949, "lat": 40.4461879, "lon": -3.7232137, "tags": {"check_date:crossing": "2021-02-19", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 750475950, "lat": 40.4461379, "lon": -3.7232039}, {"type": "node", "id": 768765505, "lat": 40.4291055, "lon": -3.7019314}, {"type": "node", "id": 768765511, "lat": 40.4299846, "lon": -3.7027291}, {"type": "node", "id": 797297571, "lat": 40.4365674, "lon": -3.7207979, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 797297574, "lat": 40.4362304, "lon": -3.7201717}, {"type": "node", "id": 797297575, "lat": 40.4365403, "lon": -3.7207685}, {"type": "node", "id": 797297579, "lat": 40.4360502, "lon": -3.7198353}, {"type": "node", "id": 844466098, "lat": 40.4469059, "lon": -3.7031283, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 845455932, "lat": 40.4413801, "lon": -3.691372}, {"type": "node", "id": 851530281, "lat": 40.4366536, "lon": -3.7217899}, {"type": "node", "id": 858587173, "lat": 40.4291399, "lon": -3.7148846}, {"type": "node", "id": 858587179, "lat": 40.4303998, "lon": -3.713728}, {"type": "node", "id": 858587187, "lat": 40.4303638, "lon": -3.7135486}, {"type": "node", "id": 858587190, "lat": 40.4291026, "lon": -3.7149584}, {"type": "node", "id": 858587192, "lat": 40.4296273, "lon": -3.7145143}, {"type": "node", "id": 858587194, "lat": 40.4299086, "lon": -3.7158219}, {"type": "node", "id": 858587196, "lat": 40.4298925, "lon": -3.7143165}, {"type": "node", "id": 858587216, "lat": 40.4292297, "lon": -3.7147308}, {"type": "node", "id": 858587220, "lat": 40.4291207, "lon": -3.7150956}, {"type": "node", "id": 858587224, "lat": 40.4302882, "lon": -3.713404}, {"type": "node", "id": 858587228, "lat": 40.4297461, "lon": -3.7133835}, {"type": "node", "id": 858587232, "lat": 40.4303651, "lon": -3.7141618, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 858587240, "lat": 40.4298215, "lon": -3.7157112}, {"type": "node", "id": 875774460, "lat": 40.4470655, "lon": -3.699304}, {"type": "node", "id": 875774476, "lat": 40.4466847, "lon": -3.6993339}, {"type": "node", "id": 893869106, "lat": 40.4265803, "lon": -3.712938}, {"type": "node", "id": 893869107, "lat": 40.4263332, "lon": -3.713122}, {"type": "node", "id": 904853734, "lat": 40.4263838, "lon": -3.6966036}, {"type": "node", "id": 904853746, "lat": 40.4270552, "lon": -3.6964611, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 904868123, "lat": 40.4253594, "lon": -3.7124126}, {"type": "node", "id": 904868125, "lat": 40.4251694, "lon": -3.7122778}, {"type": "node", "id": 907465886, "lat": 40.4493361, "lon": -3.7163371}, {"type": "node", "id": 907465887, "lat": 40.4492155, "lon": -3.716489}, {"type": "node", "id": 907465899, "lat": 40.4490763, "lon": -3.7162572}, {"type": "node", "id": 907465902, "lat": 40.4493227, "lon": -3.7163934}, {"type": "node", "id": 907465904, "lat": 40.4491232, "lon": -3.7161723}, {"type": "node", "id": 907465906, "lat": 40.4502245, "lon": -3.7168517}, {"type": "node", "id": 907465908, "lat": 40.4499464, "lon": -3.7170469}, {"type": "node", "id": 907465912, "lat": 40.4491276, "lon": -3.716459}, {"type": "node", "id": 907465913, "lat": 40.4492071, "lon": -3.7161376}, {"type": "node", "id": 907465925, "lat": 40.4493183, "lon": -3.7162232}, {"type": "node", "id": 907465929, "lat": 40.4493345, "lon": -3.7162782}, {"type": "node", "id": 907465934, "lat": 40.4490744, "lon": -3.7163622}, {"type": "node", "id": 907465936, "lat": 40.449296, "lon": -3.7164408}, {"type": "node", "id": 907465940, "lat": 40.4493603, "lon": -3.7168075}, {"type": "node", "id": 907465943, "lat": 40.4491149, "lon": -3.7186699}, {"type": "node", "id": 907465948, "lat": 40.4491947, "lon": -3.7168217}, {"type": "node", "id": 913080864, "lat": 40.4348271, "lon": -3.7191917, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 913080865, "lat": 40.4261823, "lon": -3.7130119, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 913080866, "lat": 40.4280123, "lon": -3.7144444, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080867, "lat": 40.4348638, "lon": -3.7197373, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080868, "lat": 40.4302695, "lon": -3.7139316, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 913080870, "lat": 40.434757, "lon": -3.7193684, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080871, "lat": 40.427796, "lon": -3.7141462}, {"type": "node", "id": 913080874, "lat": 40.4303519, "lon": -3.7140295}, {"type": "node", "id": 913206910, "lat": 40.429108, "lon": -3.7149541, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 914974919, "lat": 40.4403727, "lon": -3.6805679}, {"type": "node", "id": 914974922, "lat": 40.4400914, "lon": -3.6712772}, {"type": "node", "id": 914974927, "lat": 40.4405632, "lon": -3.6690705}, {"type": "node", "id": 914974930, "lat": 40.4403216, "lon": -3.6698034}, {"type": "node", "id": 914974933, "lat": 40.4415002, "lon": -3.6772859}, {"type": "node", "id": 914974934, "lat": 40.4408819, "lon": -3.6745147}, {"type": "node", "id": 914974937, "lat": 40.4412029, "lon": -3.675578}, {"type": "node", "id": 914974938, "lat": 40.4414531, "lon": -3.6766467}, {"type": "node", "id": 914974940, "lat": 40.4390211, "lon": -3.6832502}, {"type": "node", "id": 914974941, "lat": 40.4401663, "lon": -3.6719596}, {"type": "node", "id": 914974943, "lat": 40.4413505, "lon": -3.6783293}, {"type": "node", "id": 916938490, "lat": 40.4382197, "lon": -3.7242605}, {"type": "node", "id": 927751050, "lat": 40.4269303, "lon": -3.7147067}, {"type": "node", "id": 927751052, "lat": 40.4272781, "lon": -3.7139107}, {"type": "node", "id": 929294330, "lat": 40.4202096, "lon": -3.6956428}, {"type": "node", "id": 929294336, "lat": 40.4319681, "lon": -3.7172774, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 930662415, "lat": 40.4238682, "lon": -3.6992701}, {"type": "node", "id": 930662432, "lat": 40.4281422, "lon": -3.7034514}, {"type": "node", "id": 930662446, "lat": 40.4280926, "lon": -3.7020193}, {"type": "node", "id": 936505954, "lat": 40.4299147, "lon": -3.7087053}, {"type": "node", "id": 937660052, "lat": 40.4336567, "lon": -3.7176409}, {"type": "node", "id": 937660054, "lat": 40.4334309, "lon": -3.7182063}, {"type": "node", "id": 937660056, "lat": 40.433661, "lon": -3.7185057, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 937660057, "lat": 40.4333441, "lon": -3.7182773, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 942080445, "lat": 40.4225369, "lon": -3.6883449}, {"type": "node", "id": 942080448, "lat": 40.4211903, "lon": -3.6885487}, {"type": "node", "id": 942080459, "lat": 40.4223322, "lon": -3.6841854, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 942080469, "lat": 40.4240367, "lon": -3.6883754}, {"type": "node", "id": 942080477, "lat": 40.424449, "lon": -3.6899565}, {"type": "node", "id": 942080478, "lat": 40.4207347, "lon": -3.6859118, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 989204859, "lat": 40.4440459, "lon": -3.6951867}, {"type": "node", "id": 989204862, "lat": 40.4472868, "lon": -3.6954848}, {"type": "node", "id": 989204869, "lat": 40.4456833, "lon": -3.6951174}, {"type": "node", "id": 989204960, "lat": 40.4460588, "lon": -3.6949282}, {"type": "node", "id": 989204966, "lat": 40.4462121, "lon": -3.6950723}, {"type": "node", "id": 989204999, "lat": 40.447942, "lon": -3.6954028}, {"type": "node", "id": 989205005, "lat": 40.4463127, "lon": -3.6949889}, {"type": "node", "id": 989205016, "lat": 40.4468565, "lon": -3.6949893}, {"type": "node", "id": 989205020, "lat": 40.447969, "lon": -3.6958769}, {"type": "node", "id": 989205027, "lat": 40.4452317, "lon": -3.6949928}, {"type": "node", "id": 989205057, "lat": 40.4462449, "lon": -3.694889, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 989205076, "lat": 40.4440808, "lon": -3.6957935}, {"type": "node", "id": 989205097, "lat": 40.446305, "lon": -3.69486}, {"type": "node", "id": 989205114, "lat": 40.4473027, "lon": -3.6959462}, {"type": "node", "id": 989205158, "lat": 40.445173, "lon": -3.6952136, "tags": {"highway": "give_way"}}, {"type": "node", "id": 989277971, "lat": 40.4495669, "lon": -3.6880211, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 989278010, "lat": 40.4488681, "lon": -3.6893348, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 989278057, "lat": 40.4489934, "lon": -3.6889785, "tags": {"highway": "crossing"}}, {"type": "node", "id": 989278143, "lat": 40.4489732, "lon": -3.6904506, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 989278226, "lat": 40.4490565, "lon": -3.6903053}, {"type": "node", "id": 989278228, "lat": 40.4496122, "lon": -3.6882541}, {"type": "node", "id": 989278265, "lat": 40.4490937, "lon": -3.6890678, "tags": {"highway": "crossing"}}, {"type": "node", "id": 996183497, "lat": 40.4311041, "lon": -3.6740873}, {"type": "node", "id": 996183822, "lat": 40.4238727, "lon": -3.6863008}, {"type": "node", "id": 996184088, "lat": 40.4238562, "lon": -3.6860061}, {"type": "node", "id": 1011869670, "lat": 40.4329755, "lon": -3.6906081}, {"type": "node", "id": 1011869673, "lat": 40.432896, "lon": -3.6910433}, {"type": "node", "id": 1011869674, "lat": 40.4328812, "lon": -3.6911004}, {"type": "node", "id": 1011869675, "lat": 40.4351346, "lon": -3.6921067}, {"type": "node", "id": 1011869678, "lat": 40.4340292, "lon": -3.6920758}, {"type": "node", "id": 1016578176, "lat": 40.4455198, "lon": -3.6952068}, {"type": "node", "id": 1016578196, "lat": 40.4443769, "lon": -3.6982291}, {"type": "node", "id": 1016578203, "lat": 40.4349707, "lon": -3.6983449, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1016578214, "lat": 40.4503523, "lon": -3.7089482}, {"type": "node", "id": 1016578216, "lat": 40.4449387, "lon": -3.7004764}, {"type": "node", "id": 1016578237, "lat": 40.4435058, "lon": -3.6985488}, {"type": "node", "id": 1016578249, "lat": 40.4529834, "lon": -3.7060524, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1016578253, "lat": 40.4348523, "lon": -3.6990975, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 1016578272, "lat": 40.4455435, "lon": -3.6956977}, {"type": "node", "id": 1016578323, "lat": 40.4346649, "lon": -3.6986068, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1016578355, "lat": 40.4445353, "lon": -3.7005104}, {"type": "node", "id": 1016578357, "lat": 40.4431721, "lon": -3.6973966}, {"type": "node", "id": 1016578361, "lat": 40.4447961, "lon": -3.6972594}, {"type": "node", "id": 1016578427, "lat": 40.4352454, "lon": -3.6988535, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1016578444, "lat": 40.4440768, "lon": -3.698336}, {"type": "node", "id": 1056095515, "lat": 40.4461599, "lon": -3.7229087}, {"type": "node", "id": 1056095522, "lat": 40.4456588, "lon": -3.7215275}, {"type": "node", "id": 1067565836, "lat": 40.4259215, "lon": -3.7128138}, {"type": "node", "id": 1067565849, "lat": 40.4335794, "lon": -3.7184435}, {"type": "node", "id": 1085874133, "lat": 40.431233, "lon": -3.6884912}, {"type": "node", "id": 1095709752, "lat": 40.4290527, "lon": -3.7218553, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709754, "lat": 40.4288889, "lon": -3.7214929}, {"type": "node", "id": 1095709756, "lat": 40.4287432, "lon": -3.7215649, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709757, "lat": 40.428822, "lon": -3.7220519}, {"type": "node", "id": 1095709758, "lat": 40.4292094, "lon": -3.7204701, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709759, "lat": 40.4289787, "lon": -3.7215922}, {"type": "node", "id": 1095709761, "lat": 40.4289104, "lon": -3.7213946, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709762, "lat": 40.4290119, "lon": -3.7214905, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709764, "lat": 40.4292944, "lon": -3.7205734, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1135863592, "lat": 40.4506483, "lon": -3.7165914}, {"type": "node", "id": 1135863597, "lat": 40.4504215, "lon": -3.7165709}, {"type": "node", "id": 1135863628, "lat": 40.4505965, "lon": -3.7165692}, {"type": "node", "id": 1135863642, "lat": 40.4497907, "lon": -3.7170744}, {"type": "node", "id": 1135863649, "lat": 40.4504953, "lon": -3.7157442}, {"type": "node", "id": 1135863682, "lat": 40.4512599, "lon": -3.7171387}, {"type": "node", "id": 1135863683, "lat": 40.4506852, "lon": -3.7166202}, {"type": "node", "id": 1135863691, "lat": 40.4504541, "lon": -3.7161902}, {"type": "node", "id": 1135863744, "lat": 40.4509564, "lon": -3.7169928}, {"type": "node", "id": 1135863748, "lat": 40.4506135, "lon": -3.7164728, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1135863783, "lat": 40.4505372, "lon": -3.716557}, {"type": "node", "id": 1140217778, "lat": 40.4469738, "lon": -3.7193165}, {"type": "node", "id": 1140217791, "lat": 40.4463187, "lon": -3.7079319}, {"type": "node", "id": 1140217792, "lat": 40.4492796, "lon": -3.7096192, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217797, "lat": 40.4510348, "lon": -3.7109435, "tags": {"highway": "traffic_signals", "traffic_signals:direction": "both"}}, {"type": "node", "id": 1140217801, "lat": 40.4497097, "lon": -3.7102539}, {"type": "node", "id": 1140217808, "lat": 40.4496758, "lon": -3.710312}, {"type": "node", "id": 1140217818, "lat": 40.4466906, "lon": -3.7173188}, {"type": "node", "id": 1140217820, "lat": 40.448036, "lon": -3.7090229, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217822, "lat": 40.4492293, "lon": -3.7097729, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217830, "lat": 40.4496136, "lon": -3.7105955}, {"type": "node", "id": 1140217832, "lat": 40.4476526, "lon": -3.7084599, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1140217842, "lat": 40.4473001, "lon": -3.7085968}, {"type": "node", "id": 1140217843, "lat": 40.4480921, "lon": -3.7088605, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217847, "lat": 40.4499366, "lon": -3.7102305}, {"type": "node", "id": 1152699024, "lat": 40.4299038, "lon": -3.6932928, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1152699045, "lat": 40.4489142, "lon": -3.6910956}, {"type": "node", "id": 1179021796, "lat": 40.4302912, "lon": -3.7140656, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179021802, "lat": 40.4302796, "lon": -3.7126892}, {"type": "node", "id": 1179021961, "lat": 40.4291488, "lon": -3.7202106, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022127, "lat": 40.4288049, "lon": -3.7148748, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1179022148, "lat": 40.4305138, "lon": -3.7135158, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022178, "lat": 40.4304083, "lon": -3.7145838}, {"type": "node", "id": 1179022182, "lat": 40.4289864, "lon": -3.7151983, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022300, "lat": 40.4288176, "lon": -3.7152035, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022304, "lat": 40.4303955, "lon": -3.7133532, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022387, "lat": 40.428992, "lon": -3.7148916, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022390, "lat": 40.425854, "lon": -3.7187477, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1179022518, "lat": 40.4296865, "lon": -3.7158021, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1179022533, "lat": 40.4286907, "lon": -3.7149422}, {"type": "node", "id": 1179022535, "lat": 40.4304736, "lon": -3.7141485, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022558, "lat": 40.4296862, "lon": -3.7155082}, {"type": "node", "id": 1179022561, "lat": 40.4290368, "lon": -3.7150377, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847112, "lat": 40.4448889, "lon": -3.7092913, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847114, "lat": 40.442224, "lon": -3.701862, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847117, "lat": 40.4421447, "lon": -3.7043235, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847118, "lat": 40.4441573, "lon": -3.7101048, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1203847119, "lat": 40.4434104, "lon": -3.7057166}, {"type": "node", "id": 1203847120, "lat": 40.4419073, "lon": -3.7043965}, {"type": "node", "id": 1203847122, "lat": 40.4418175, "lon": -3.6991549}, {"type": "node", "id": 1203847126, "lat": 40.4420055, "lon": -3.7016108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847127, "lat": 40.4450114, "lon": -3.7087567, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847134, "lat": 40.4422168, "lon": -3.704837, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1203847135, "lat": 40.4420012, "lon": -3.7002637}, {"type": "node", "id": 1203847140, "lat": 40.4446881, "lon": -3.709616, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847146, "lat": 40.4434891, "lon": -3.7058498}, {"type": "node", "id": 1203847148, "lat": 40.4420901, "lon": -3.7046654}, {"type": "node", "id": 1203847153, "lat": 40.4466447, "lon": -3.7081359}, {"type": "node", "id": 1203847158, "lat": 40.4444258, "lon": -3.7105691, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847159, "lat": 40.4458338, "lon": -3.7072074, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847161, "lat": 40.4419003, "lon": -3.7042358, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847162, "lat": 40.4422373, "lon": -3.7041013, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847164, "lat": 40.4419504, "lon": -3.6991469}, {"type": "node", "id": 1203847168, "lat": 40.4468937, "lon": -3.7083808, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847173, "lat": 40.4436639, "lon": -3.7103581}, {"type": "node", "id": 1203847174, "lat": 40.4456049, "lon": -3.7078017, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847177, "lat": 40.4422295, "lon": -3.7048578}, {"type": "node", "id": 1203847179, "lat": 40.4421233, "lon": -3.7045698}, {"type": "node", "id": 1203847181, "lat": 40.4468444, "lon": -3.7104781, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1203847183, "lat": 40.4467321, "lon": -3.7081392}, {"type": "node", "id": 1203847193, "lat": 40.4420505, "lon": -3.7049536}, {"type": "node", "id": 1203847202, "lat": 40.4420243, "lon": -3.7019831, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847215, "lat": 40.4433877, "lon": -3.7056636, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1203847216, "lat": 40.4419303, "lon": -3.7046793}, {"type": "node", "id": 1203847225, "lat": 40.4419714, "lon": -3.7041059, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847226, "lat": 40.4468969, "lon": -3.7079957, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847227, "lat": 40.4445139, "lon": -3.7103278}, {"type": "node", "id": 1203847229, "lat": 40.44213, "lon": -3.7039035, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847232, "lat": 40.4419524, "lon": -3.704764}, {"type": "node", "id": 1203847233, "lat": 40.4440342, "lon": -3.7105943}, {"type": "node", "id": 1209332387, "lat": 40.4206806, "lon": -3.6859445}, {"type": "node", "id": 1211171045, "lat": 40.4295685, "lon": -3.7052449, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1211171046, "lat": 40.4296104, "lon": -3.7063626, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1211171047, "lat": 40.4297048, "lon": -3.7063513, "tags": {"button_operated": "no", "check_date:crossing": "2021-12-03", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1211171050, "lat": 40.4297499, "lon": -3.7061081, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211171056, "lat": 40.429427, "lon": -3.7054936, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211192956, "lat": 40.4296739, "lon": -3.7059695, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211192961, "lat": 40.4295192, "lon": -3.7056302, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1212072712, "lat": 40.445359, "lon": -3.7178578}, {"type": "node", "id": 1212072724, "lat": 40.4436973, "lon": -3.719476}, {"type": "node", "id": 1212072739, "lat": 40.4456813, "lon": -3.7179585}, {"type": "node", "id": 1212072740, "lat": 40.4453801, "lon": -3.7196721}, {"type": "node", "id": 1212072741, "lat": 40.4436478, "lon": -3.7195435}, {"type": "node", "id": 1212072752, "lat": 40.4449559, "lon": -3.719948}, {"type": "node", "id": 1212072762, "lat": 40.4465571, "lon": -3.7183525, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1212072772, "lat": 40.4473964, "lon": -3.7174916}, {"type": "node", "id": 1212072788, "lat": 40.4454715, "lon": -3.717873}, {"type": "node", "id": 1212072791, "lat": 40.4453505, "lon": -3.7193049, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1212072795, "lat": 40.4436648, "lon": -3.7194226, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1212072810, "lat": 40.4444769, "lon": -3.7185177}, {"type": "node", "id": 1212072813, "lat": 40.4437541, "lon": -3.7197753}, {"type": "node", "id": 1212072818, "lat": 40.446193, "lon": -3.7198861, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1212072820, "lat": 40.4457275, "lon": -3.718265}, {"type": "node", "id": 1212072836, "lat": 40.447005, "lon": -3.7178919, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1212072844, "lat": 40.4452375, "lon": -3.7194265, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1212072849, "lat": 40.4454755, "lon": -3.7210345}, {"type": "node", "id": 1212072856, "lat": 40.4434606, "lon": -3.7195371}, {"type": "node", "id": 1212072857, "lat": 40.4462205, "lon": -3.7172698}, {"type": "node", "id": 1212072858, "lat": 40.4436273, "lon": -3.7196833}, {"type": "node", "id": 1212072884, "lat": 40.4436476, "lon": -3.7194449}, {"type": "node", "id": 1212072896, "lat": 40.4453527, "lon": -3.7196585}, {"type": "node", "id": 1212072897, "lat": 40.4435357, "lon": -3.7195989}, {"type": "node", "id": 1212072906, "lat": 40.4450024, "lon": -3.7199409}, {"type": "node", "id": 1223809784, "lat": 40.4306606, "lon": -3.6886123, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809785, "lat": 40.4349713, "lon": -3.6893736, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809786, "lat": 40.4311573, "lon": -3.6870127, "tags": {"check_date:crossing": "2023-03-30", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809787, "lat": 40.4352837, "lon": -3.688373, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809793, "lat": 40.4331072, "lon": -3.6883449, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809796, "lat": 40.4335465, "lon": -3.6888808}, {"type": "node", "id": 1223809798, "lat": 40.4351976, "lon": -3.6896272, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809800, "lat": 40.4354178, "lon": -3.6887938}, {"type": "node", "id": 1223809804, "lat": 40.4338076, "lon": -3.6884688}, {"type": "node", "id": 1223809808, "lat": 40.4351419, "lon": -3.6891964, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809811, "lat": 40.435518, "lon": -3.6894494}, {"type": "node", "id": 1223809814, "lat": 40.4350143, "lon": -3.6888043}, {"type": "node", "id": 1223809815, "lat": 40.4347434, "lon": -3.6886279}, {"type": "node", "id": 1223809816, "lat": 40.4330904, "lon": -3.6884644, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809817, "lat": 40.4339774, "lon": -3.6883052, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1223809819, "lat": 40.4346057, "lon": -3.6890698}, {"type": "node", "id": 1223809820, "lat": 40.4312256, "lon": -3.6883474, "tags": {"check_date:crossing": "2021-10-12", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809824, "lat": 40.4306843, "lon": -3.688955, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809827, "lat": 40.4347823, "lon": -3.6882776}, {"type": "node", "id": 1223809828, "lat": 40.435456, "lon": -3.6884667, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809830, "lat": 40.4306976, "lon": -3.6890679, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809832, "lat": 40.4339211, "lon": -3.6883694}, {"type": "node", "id": 1223809838, "lat": 40.4352677, "lon": -3.6890082}, {"type": "node", "id": 1223809841, "lat": 40.4341163, "lon": -3.6890873, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809843, "lat": 40.4340995, "lon": -3.6882074}, {"type": "node", "id": 1223809845, "lat": 40.4307344, "lon": -3.6893807, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809847, "lat": 40.4330784, "lon": -3.6888286, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809854, "lat": 40.4359722, "lon": -3.6892164}, {"type": "node", "id": 1245495098, "lat": 40.4451078, "lon": -3.7210314}, {"type": "node", "id": 1245495108, "lat": 40.4456653, "lon": -3.7215493}, {"type": "node", "id": 1253137011, "lat": 40.4254844, "lon": -3.6882422}, {"type": "node", "id": 1276028458, "lat": 40.4241464, "lon": -3.7027637}, {"type": "node", "id": 1278838929, "lat": 40.4197251, "lon": -3.6934131}, {"type": "node", "id": 1278838932, "lat": 40.4234188, "lon": -3.6908177, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1278838937, "lat": 40.4241807, "lon": -3.6880886, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278838956, "lat": 40.4248144, "lon": -3.6903023}, {"type": "node", "id": 1278838973, "lat": 40.4225193, "lon": -3.6921111, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278838975, "lat": 40.4251332, "lon": -3.6907273, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1278838976, "lat": 40.4234669, "lon": -3.6909946, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 1278838994, "lat": 40.4255753, "lon": -3.690163, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 1278839005, "lat": 40.4253795, "lon": -3.687687, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1278839019, "lat": 40.4234978, "lon": -3.6911116, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 1278839022, "lat": 40.4222104, "lon": -3.691589, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839025, "lat": 40.4240137, "lon": -3.6882783, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839038, "lat": 40.4254012, "lon": -3.6902392, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839040, "lat": 40.4224424, "lon": -3.6918723, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839042, "lat": 40.4254411, "lon": -3.6898153, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839048, "lat": 40.423212, "lon": -3.6915278, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839062, "lat": 40.4222436, "lon": -3.6916969, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839071, "lat": 40.4259156, "lon": -3.6903307, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1278839077, "lat": 40.4218111, "lon": -3.6924462, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839084, "lat": 40.4250807, "lon": -3.6908809, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1278839092, "lat": 40.4255012, "lon": -3.6911921, "tags": {"button_operated": "no", "check_date:crossing": "2021-05-15", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1278839114, "lat": 40.4218862, "lon": -3.692139, "tags": {"button_operated": "no", "check_date:crossing": "2021-12-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1278839121, "lat": 40.4234047, "lon": -3.6916998, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839131, "lat": 40.4244183, "lon": -3.69038, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1278839146, "lat": 40.4255819, "lon": -3.6878256, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1280098498, "lat": 40.4473241, "lon": -3.6947398}, {"type": "node", "id": 1311052133, "lat": 40.4381562, "lon": -3.6902508}, {"type": "node", "id": 1311052137, "lat": 40.445219, "lon": -3.6858647}, {"type": "node", "id": 1311052148, "lat": 40.4379963, "lon": -3.690873, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1311052151, "lat": 40.4458837, "lon": -3.6914188}, {"type": "node", "id": 1311052154, "lat": 40.4458449, "lon": -3.6864281}, {"type": "node", "id": 1311052157, "lat": 40.4357533, "lon": -3.689051}, {"type": "node", "id": 1311052159, "lat": 40.4381437, "lon": -3.6910568, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1311052161, "lat": 40.4460285, "lon": -3.6863251}, {"type": "node", "id": 1311052162, "lat": 40.4459304, "lon": -3.6864737}, {"type": "node", "id": 1311052172, "lat": 40.4459685, "lon": -3.6863646}, {"type": "node", "id": 1311052179, "lat": 40.4383347, "lon": -3.6908239}, {"type": "node", "id": 1314916897, "lat": 40.448184, "lon": -3.6933374}, {"type": "node", "id": 1314916898, "lat": 40.4484121, "lon": -3.6945526}, {"type": "node", "id": 1314916899, "lat": 40.4513372, "lon": -3.6940931}, {"type": "node", "id": 1314916900, "lat": 40.4508807, "lon": -3.6922411}, {"type": "node", "id": 1314916903, "lat": 40.4490177, "lon": -3.6922086}, {"type": "node", "id": 1314916904, "lat": 40.4508286, "lon": -3.6943183}, {"type": "node", "id": 1314916905, "lat": 40.4505726, "lon": -3.6943744}, {"type": "node", "id": 1314916907, "lat": 40.4478171, "lon": -3.6930037}, {"type": "node", "id": 1314916909, "lat": 40.4476225, "lon": -3.6946615}, {"type": "node", "id": 1314916910, "lat": 40.4507041, "lon": -3.6920317}, {"type": "node", "id": 1314916911, "lat": 40.4479638, "lon": -3.6946196}, {"type": "node", "id": 1314916913, "lat": 40.4509559, "lon": -3.6939867}, {"type": "node", "id": 1314916915, "lat": 40.4495729, "lon": -3.6944634}, {"type": "node", "id": 1314916917, "lat": 40.4520946, "lon": -3.6938633}, {"type": "node", "id": 1314916918, "lat": 40.4493904, "lon": -3.6944832}, {"type": "node", "id": 1314916920, "lat": 40.4518901, "lon": -3.6939129}, {"type": "node", "id": 1314916924, "lat": 40.449407, "lon": -3.6921546}, {"type": "node", "id": 1314916925, "lat": 40.4510891, "lon": -3.6942581}, {"type": "node", "id": 1314916927, "lat": 40.4482229, "lon": -3.6943285}, {"type": "node", "id": 1314919701, "lat": 40.4512128, "lon": -3.6939204}, {"type": "node", "id": 1314919703, "lat": 40.4477806, "lon": -3.6946421}, {"type": "node", "id": 1314919705, "lat": 40.4466294, "lon": -3.6949545}, {"type": "node", "id": 1314919706, "lat": 40.4509481, "lon": -3.6937888}, {"type": "node", "id": 1314926631, "lat": 40.4494068, "lon": -3.6920345}, {"type": "node", "id": 1314926656, "lat": 40.4469646, "lon": -3.6948436}, {"type": "node", "id": 1314926740, "lat": 40.4494708, "lon": -3.6952416}, {"type": "node", "id": 1314938250, "lat": 40.4490232, "lon": -3.6893786}, {"type": "node", "id": 1314938252, "lat": 40.4491216, "lon": -3.6903032}, {"type": "node", "id": 1314938254, "lat": 40.4491807, "lon": -3.6910059}, {"type": "node", "id": 1314938257, "lat": 40.4490524, "lon": -3.6913739}, {"type": "node", "id": 1314938264, "lat": 40.4491311, "lon": -3.6910282}, {"type": "node", "id": 1314938266, "lat": 40.4488813, "lon": -3.6913223}, {"type": "node", "id": 1314938271, "lat": 40.4491141, "lon": -3.6920226}, {"type": "node", "id": 1314938273, "lat": 40.4474754, "lon": -3.6915394}, {"type": "node", "id": 1314938275, "lat": 40.4473232, "lon": -3.6913572}, {"type": "node", "id": 1314938277, "lat": 40.449133, "lon": -3.6904642}, {"type": "node", "id": 1314938283, "lat": 40.4492007, "lon": -3.6916711}, {"type": "node", "id": 1316546238, "lat": 40.42692, "lon": -3.6938161, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1316546411, "lat": 40.4270562, "lon": -3.6948449, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1316546497, "lat": 40.4266934, "lon": -3.6939269, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1316546802, "lat": 40.4261637, "lon": -3.6928441, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1316546929, "lat": 40.4271824, "lon": -3.6948617, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1316547022, "lat": 40.4267242, "lon": -3.6937563, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1320787110, "lat": 40.4400548, "lon": -3.7176919}, {"type": "node", "id": 1320787444, "lat": 40.437735, "lon": -3.7178806}, {"type": "node", "id": 1320787628, "lat": 40.4376278, "lon": -3.7198161}, {"type": "node", "id": 1320787649, "lat": 40.4392438, "lon": -3.7203143}, {"type": "node", "id": 1336935931, "lat": 40.4462823, "lon": -3.6911634}, {"type": "node", "id": 1336935943, "lat": 40.450007, "lon": -3.6911016}, {"type": "node", "id": 1336935947, "lat": 40.4497309, "lon": -3.6913486}, {"type": "node", "id": 1336935950, "lat": 40.4501719, "lon": -3.6909568}, {"type": "node", "id": 1339493411, "lat": 40.4424134, "lon": -3.7248122, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1339493413, "lat": 40.4478286, "lon": -3.7246028, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493417, "lat": 40.4425226, "lon": -3.724973}, {"type": "node", "id": 1339493442, "lat": 40.4465922, "lon": -3.724562, "tags": {"check_date:crossing": "2023-02-03", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1339493488, "lat": 40.4486558, "lon": -3.7212583, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1339493495, "lat": 40.4462244, "lon": -3.7231987, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 1339493529, "lat": 40.4477756, "lon": -3.7246625}, {"type": "node", "id": 1339493531, "lat": 40.4467435, "lon": -3.7247456, "tags": {"check_date:crossing": "2023-02-03", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1339493540, "lat": 40.4428242, "lon": -3.7250998}, {"type": "node", "id": 1339493606, "lat": 40.4454347, "lon": -3.7243391, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 1339493625, "lat": 40.4476416, "lon": -3.7247569}, {"type": "node", "id": 1339493632, "lat": 40.4428988, "lon": -3.7251877}, {"type": "node", "id": 1339493643, "lat": 40.4478971, "lon": -3.7244488}, {"type": "node", "id": 1339493660, "lat": 40.442476, "lon": -3.7248628}, {"type": "node", "id": 1339493668, "lat": 40.4478542, "lon": -3.7247918, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493673, "lat": 40.4486052, "lon": -3.7214987, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1339493689, "lat": 40.4479218, "lon": -3.7246479, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493698, "lat": 40.4419847, "lon": -3.7249359}, {"type": "node", "id": 1339493701, "lat": 40.4478699, "lon": -3.7245335}, {"type": "node", "id": 1350673783, "lat": 40.4488508, "lon": -3.7165331}, {"type": "node", "id": 1350673784, "lat": 40.4491705, "lon": -3.7166377}, {"type": "node", "id": 1350673785, "lat": 40.4491047, "lon": -3.7165881, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1350673787, "lat": 40.4490106, "lon": -3.7165309}, {"type": "node", "id": 1357992429, "lat": 40.4290241, "lon": -3.7025836, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992432, "lat": 40.4290602, "lon": -3.7024796, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1357992434, "lat": 40.4291435, "lon": -3.7026398, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1357992435, "lat": 40.4291819, "lon": -3.7023662, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1357992445, "lat": 40.4294024, "lon": -3.712487, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 1357992452, "lat": 40.4295275, "lon": -3.7125496, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992454, "lat": 40.4300883, "lon": -3.7119874, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992456, "lat": 40.4300529, "lon": -3.7033207}, {"type": "node", "id": 1357992470, "lat": 40.4301294, "lon": -3.7030465}, {"type": "node", "id": 1357992473, "lat": 40.4301769, "lon": -3.7120765, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992474, "lat": 40.4302585, "lon": -3.7120641, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992475, "lat": 40.4310987, "lon": -3.7032146, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1357992476, "lat": 40.4311825, "lon": -3.7031409, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1358036196, "lat": 40.4272842, "lon": -3.7184034, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036197, "lat": 40.427332, "lon": -3.7186216, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1358036198, "lat": 40.4274523, "lon": -3.7183465, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036199, "lat": 40.4274979, "lon": -3.7186105, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1358036200, "lat": 40.4280977, "lon": -3.7168724, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1358036201, "lat": 40.4281004, "lon": -3.7191944, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036202, "lat": 40.4281246, "lon": -3.7193778, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036203, "lat": 40.4282307, "lon": -3.7191456, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1359796755, "lat": 40.437514, "lon": -3.6899255}, {"type": "node", "id": 1359796756, "lat": 40.4378469, "lon": -3.6890457}, {"type": "node", "id": 1362534264, "lat": 40.4330514, "lon": -3.6884529}, {"type": "node", "id": 1364770889, "lat": 40.425502, "lon": -3.7183441}, {"type": "node", "id": 1364770912, "lat": 40.4258713, "lon": -3.7185601, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1364770953, "lat": 40.4269157, "lon": -3.719576, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1364770957, "lat": 40.426924, "lon": -3.7197935, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1364771094, "lat": 40.4277117, "lon": -3.720559, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1364771096, "lat": 40.4277176, "lon": -3.7203194, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1364771581, "lat": 40.42955, "lon": -3.72209}, {"type": "node", "id": 1364771695, "lat": 40.4301432, "lon": -3.7226721}, {"type": "node", "id": 1364771799, "lat": 40.4308009, "lon": -3.7232901, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1364771873, "lat": 40.431398, "lon": -3.7238723}, {"type": "node", "id": 1364771904, "lat": 40.4319793, "lon": -3.7244253, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1364772083, "lat": 40.4329403, "lon": -3.7239085, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1364772380, "lat": 40.4339343, "lon": -3.7215957, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1364772468, "lat": 40.4342275, "lon": -3.7242977}, {"type": "node", "id": 1364772709, "lat": 40.4345533, "lon": -3.7227891}, {"type": "node", "id": 1364772877, "lat": 40.4349908, "lon": -3.7198643, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1364772880, "lat": 40.4349998, "lon": -3.7214422}, {"type": "node", "id": 1364772922, "lat": 40.4351424, "lon": -3.7212339}, {"type": "node", "id": 1364772947, "lat": 40.4352109, "lon": -3.7203383, "tags": {"bus": "yes", "name": "Ruperto Chap\u00ed - Pza. Moncloa", "public_transport": "stop_position"}}, {"type": "node", "id": 1364772956, "lat": 40.4352208, "lon": -3.720943}, {"type": "node", "id": 1364773043, "lat": 40.4355683, "lon": -3.7184435, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1364773344, "lat": 40.4371984, "lon": -3.7236956, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1365197179, "lat": 40.425422, "lon": -3.690626}, {"type": "node", "id": 1366142630, "lat": 40.4324087, "lon": -3.6974328, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1366142631, "lat": 40.432291, "lon": -3.6974231, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1366142634, "lat": 40.4323776, "lon": -3.6979251, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 1377881473, "lat": 40.4326898, "lon": -3.6821571}, {"type": "node", "id": 1377881475, "lat": 40.432808, "lon": -3.6845971}, {"type": "node", "id": 1377881477, "lat": 40.4328305, "lon": -3.6821455}, {"type": "node", "id": 1377881478, "lat": 40.4328824, "lon": -3.6861952}, {"type": "node", "id": 1377881483, "lat": 40.4328975, "lon": -3.683485}, {"type": "node", "id": 1377881485, "lat": 40.4329526, "lon": -3.6845851}, {"type": "node", "id": 1377881488, "lat": 40.433003, "lon": -3.685593}, {"type": "node", "id": 1377881495, "lat": 40.444602, "lon": -3.686381}, {"type": "node", "id": 1377881496, "lat": 40.4446664, "lon": -3.685694, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881506, "lat": 40.4446892, "lon": -3.6856958}, {"type": "node", "id": 1377881508, "lat": 40.444694, "lon": -3.6851729}, {"type": "node", "id": 1377881511, "lat": 40.4447279, "lon": -3.6852139}, {"type": "node", "id": 1377881522, "lat": 40.4447891, "lon": -3.6855962}, {"type": "node", "id": 1377881523, "lat": 40.4447681, "lon": -3.6857841}, {"type": "node", "id": 1377881524, "lat": 40.4448011, "lon": -3.6865391}, {"type": "node", "id": 1377881525, "lat": 40.4448122, "lon": -3.6860039}, {"type": "node", "id": 1377881528, "lat": 40.4447984, "lon": -3.6858761}, {"type": "node", "id": 1377881539, "lat": 40.4449078, "lon": -3.6855765, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881542, "lat": 40.4449766, "lon": -3.6859338}, {"type": "node", "id": 1377881546, "lat": 40.4450097, "lon": -3.6858076}, {"type": "node", "id": 1377881551, "lat": 40.4453366, "lon": -3.686076, "tags": {"highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1377881557, "lat": 40.445356, "lon": -3.6852098}, {"type": "node", "id": 1377881558, "lat": 40.4453817, "lon": -3.6857747, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881560, "lat": 40.4454511, "lon": -3.6854257, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881561, "lat": 40.445555, "lon": -3.6860385}, {"type": "node", "id": 1377881565, "lat": 40.4456776, "lon": -3.6858518}, {"type": "node", "id": 1378696850, "lat": 40.4276408, "lon": -3.7142997, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696853, "lat": 40.427723, "lon": -3.714099, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696856, "lat": 40.4277922, "lon": -3.7142829, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696858, "lat": 40.4280202, "lon": -3.7142015, "tags": {"button_operated": "no", "check_date:crossing": "2023-05-22", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696860, "lat": 40.4280391, "lon": -3.7143183, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696861, "lat": 40.4299131, "lon": -3.7105242, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1378696865, "lat": 40.4300272, "lon": -3.7106767, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696867, "lat": 40.4301082, "lon": -3.7103876, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696871, "lat": 40.4302415, "lon": -3.7105195, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696873, "lat": 40.4307465, "lon": -3.7157882, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696877, "lat": 40.4314295, "lon": -3.71689, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696878, "lat": 40.4315932, "lon": -3.7171698, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696879, "lat": 40.4318636, "lon": -3.7172019}, {"type": "node", "id": 1439705328, "lat": 40.4354847, "lon": -3.6887439, "tags": {"bench": "yes", "bin": "yes", "bus": "yes", "highway": "bus_stop", "lit": "yes", "name": "Emilio Castelar", "operator": "EMT Madrid", "public_transport": "platform", "ref": "58", "shelter": "yes", "source": "https://navegapormadrid.emtmadrid.es/app/", "tactile_paving": "yes"}}, {"type": "node", "id": 1446632660, "lat": 40.4338561, "lon": -3.7185037, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447181174, "lat": 40.4462248, "lon": -3.6916381, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447395580, "lat": 40.4387354, "lon": -3.717723, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 1447402323, "lat": 40.4458219, "lon": -3.7122935, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447529412, "lat": 40.437301, "lon": -3.6901298}, {"type": "node", "id": 1474148374, "lat": 40.4240452, "lon": -3.7054228}, {"type": "node", "id": 1474148375, "lat": 40.4241349, "lon": -3.6964642}, {"type": "node", "id": 1474148376, "lat": 40.4250821, "lon": -3.6978753, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1474148377, "lat": 40.4259505, "lon": -3.7057689}, {"type": "node", "id": 1474148379, "lat": 40.4264967, "lon": -3.7056683}, {"type": "node", "id": 1474148380, "lat": 40.43777, "lon": -3.6841772}, {"type": "node", "id": 1474148381, "lat": 40.4383489, "lon": -3.6841778}, {"type": "node", "id": 1474148394, "lat": 40.4468123, "lon": -3.7078278}, {"type": "node", "id": 1474148396, "lat": 40.4469651, "lon": -3.707771}, {"type": "node", "id": 1474148398, "lat": 40.4481237, "lon": -3.6983897, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1474148402, "lat": 40.4496961, "lon": -3.7021223}, {"type": "node", "id": 1474148418, "lat": 40.4497952, "lon": -3.701935}, {"type": "node", "id": 1474148425, "lat": 40.4498254, "lon": -3.7022758}, {"type": "node", "id": 1474148441, "lat": 40.4499337, "lon": -3.7020457}, {"type": "node", "id": 1474148445, "lat": 40.4510259, "lon": -3.7017382}, {"type": "node", "id": 1474148446, "lat": 40.4511683, "lon": -3.6999574}, {"type": "node", "id": 1474148448, "lat": 40.45127, "lon": -3.7004862}, {"type": "node", "id": 1474148455, "lat": 40.4514776, "lon": -3.7015665}, {"type": "node", "id": 1486142511, "lat": 40.4350563, "lon": -3.7194436}, {"type": "node", "id": 1486142513, "lat": 40.4354371, "lon": -3.7194511}, {"type": "node", "id": 1486142530, "lat": 40.4355916, "lon": -3.7192624}, {"type": "node", "id": 1486142531, "lat": 40.4356384, "lon": -3.7189708}, {"type": "node", "id": 1486142532, "lat": 40.4356811, "lon": -3.7195413}, {"type": "node", "id": 1486142534, "lat": 40.4356921, "lon": -3.7191524}, {"type": "node", "id": 1486142559, "lat": 40.4361824, "lon": -3.7213068}, {"type": "node", "id": 1486142561, "lat": 40.436412, "lon": -3.7215718}, {"type": "node", "id": 1486142563, "lat": 40.4364614, "lon": -3.7217064}, {"type": "node", "id": 1486142567, "lat": 40.4365199, "lon": -3.7217021}, {"type": "node", "id": 1486142569, "lat": 40.4365564, "lon": -3.721286}, {"type": "node", "id": 1486142572, "lat": 40.4365883, "lon": -3.7216095}, {"type": "node", "id": 1486142593, "lat": 40.4366202, "lon": -3.7208167}, {"type": "node", "id": 1486142595, "lat": 40.4366324, "lon": -3.7209752}, {"type": "node", "id": 1486142596, "lat": 40.4366597, "lon": -3.721262}, {"type": "node", "id": 1486142597, "lat": 40.4366597, "lon": -3.7215037}, {"type": "node", "id": 1486142598, "lat": 40.4366858, "lon": -3.7208696}, {"type": "node", "id": 1486142599, "lat": 40.4366825, "lon": -3.7216035}, {"type": "node", "id": 1486142601, "lat": 40.4366917, "lon": -3.7208047}, {"type": "node", "id": 1486142603, "lat": 40.4367129, "lon": -3.7210264}, {"type": "node", "id": 1486142623, "lat": 40.4367464, "lon": -3.7211783}, {"type": "node", "id": 1486142624, "lat": 40.4367849, "lon": -3.7214591}, {"type": "node", "id": 1486142626, "lat": 40.4368346, "lon": -3.7209449}, {"type": "node", "id": 1486142632, "lat": 40.4371576, "lon": -3.7205842}, {"type": "node", "id": 1486142645, "lat": 40.4373025, "lon": -3.7235136}, {"type": "node", "id": 1486142647, "lat": 40.4373377, "lon": -3.7228777}, {"type": "node", "id": 1486142650, "lat": 40.4374835, "lon": -3.7202257}, {"type": "node", "id": 1486142652, "lat": 40.4377171, "lon": -3.7197885}, {"type": "node", "id": 1486142655, "lat": 40.4378242, "lon": -3.7234618}, {"type": "node", "id": 1493669240, "lat": 40.425749, "lon": -3.6898897}, {"type": "node", "id": 1493669241, "lat": 40.4261601, "lon": -3.6897757}, {"type": "node", "id": 1493669242, "lat": 40.4263723, "lon": -3.6897369}, {"type": "node", "id": 1493669252, "lat": 40.4325711, "lon": -3.6881301}, {"type": "node", "id": 1493669255, "lat": 40.4335294, "lon": -3.688111}, {"type": "node", "id": 1500124428, "lat": 40.4384747, "lon": -3.7177594, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1500124447, "lat": 40.4389754, "lon": -3.7176356, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124468, "lat": 40.4390111, "lon": -3.7140062, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124471, "lat": 40.4389979, "lon": -3.7177338}, {"type": "node", "id": 1500124475, "lat": 40.4390099, "lon": -3.7163847, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1500124478, "lat": 40.4390201, "lon": -3.7142371, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124500, "lat": 40.4390602, "lon": -3.7150965, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124504, "lat": 40.439074, "lon": -3.7153763, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124510, "lat": 40.4390715, "lon": -3.7178477}, {"type": "node", "id": 1500124514, "lat": 40.4390764, "lon": -3.7176561}, {"type": "node", "id": 1500124528, "lat": 40.4390996, "lon": -3.7161306, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124531, "lat": 40.4391023, "lon": -3.7170904, "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124536, "lat": 40.4391215, "lon": -3.7169186}, {"type": "node", "id": 1500124542, "lat": 40.4391376, "lon": -3.7176868}, {"type": "node", "id": 1500124545, "lat": 40.4391423, "lon": -3.7139638, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124558, "lat": 40.4391511, "lon": -3.7171243}, {"type": "node", "id": 1500124561, "lat": 40.439155, "lon": -3.7142185, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124568, "lat": 40.4391433, "lon": -3.7172994}, {"type": "node", "id": 1500124571, "lat": 40.4391903, "lon": -3.7150823, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124573, "lat": 40.4392026, "lon": -3.7177717, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124587, "lat": 40.4392043, "lon": -3.715364, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124589, "lat": 40.4392143, "lon": -3.7172872, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124591, "lat": 40.4392122, "lon": -3.7171243}, {"type": "node", "id": 1500124593, "lat": 40.4392362, "lon": -3.716131, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124594, "lat": 40.4392513, "lon": -3.7140868, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124607, "lat": 40.4392612, "lon": -3.7174592, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124610, "lat": 40.4392856, "lon": -3.7170778, "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124613, "lat": 40.4393085, "lon": -3.7152011, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124631, "lat": 40.4394441, "lon": -3.7175789, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1500124638, "lat": 40.4395842, "lon": -3.7180483, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124657, "lat": 40.4404439, "lon": -3.7158097, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1500160587, "lat": 40.4374304, "lon": -3.7201499}, {"type": "node", "id": 1500160589, "lat": 40.4375277, "lon": -3.7200262}, {"type": "node", "id": 1501200385, "lat": 40.4245034, "lon": -3.7119367, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1501227816, "lat": 40.4285241, "lon": -3.7021726, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227820, "lat": 40.428756, "lon": -3.7023021, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227823, "lat": 40.4287628, "lon": -3.7021614, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227827, "lat": 40.4288425, "lon": -3.7020673}, {"type": "node", "id": 1501227829, "lat": 40.4288428, "lon": -3.7016676, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227833, "lat": 40.4289018, "lon": -3.7023701}, {"type": "node", "id": 1501227838, "lat": 40.4289333, "lon": -3.7016351, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227841, "lat": 40.4289862, "lon": -3.7018508, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1501227845, "lat": 40.4292245, "lon": -3.7016547, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1501227850, "lat": 40.4292795, "lon": -3.7023861}, {"type": "node", "id": 1501230372, "lat": 40.4295117, "lon": -3.7014949, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1502697018, "lat": 40.4370528, "lon": -3.724039, "tags": {"bus": "yes", "name": "Avenida de la Memoria", "old_name": "Av. S\u00e9neca - Arco de la Victoria", "public_transport": "stop_position"}}, {"type": "node", "id": 1505080991, "lat": 40.4327958, "lon": -3.7177586, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505080997, "lat": 40.4329502, "lon": -3.7181514, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081002, "lat": 40.4330631, "lon": -3.7178083, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "wheelchair": "yes"}}, {"type": "node", "id": 1505081009, "lat": 40.4330936, "lon": -3.7170642}, {"type": "node", "id": 1505081012, "lat": 40.433081, "lon": -3.7180901, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081018, "lat": 40.4331002, "lon": -3.7171729}, {"type": "node", "id": 1505081022, "lat": 40.4332193, "lon": -3.717402}, {"type": "node", "id": 1505081023, "lat": 40.4333594, "lon": -3.7174276, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1505081028, "lat": 40.4333847, "lon": -3.7181732, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1505081040, "lat": 40.433633, "lon": -3.718343}, {"type": "node", "id": 1505081139, "lat": 40.4418889, "lon": -3.6828894}, {"type": "node", "id": 1505081155, "lat": 40.4457642, "lon": -3.7145575}, {"type": "node", "id": 1505081157, "lat": 40.4458963, "lon": -3.7146427}, {"type": "node", "id": 1505081158, "lat": 40.4459844, "lon": -3.7148539, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1505081159, "lat": 40.4461259, "lon": -3.691548, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081160, "lat": 40.4461582, "lon": -3.6920934}, {"type": "node", "id": 1505081161, "lat": 40.4461852, "lon": -3.6951618}, {"type": "node", "id": 1505081164, "lat": 40.4462566, "lon": -3.6951823, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1505081174, "lat": 40.4462562, "lon": -3.6956488, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081178, "lat": 40.4463556, "lon": -3.6945565}, {"type": "node", "id": 1505081179, "lat": 40.4463627, "lon": -3.6920545}, {"type": "node", "id": 1505081180, "lat": 40.446384, "lon": -3.6958591, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081189, "lat": 40.4464253, "lon": -3.6945424}, {"type": "node", "id": 1505081192, "lat": 40.4465175, "lon": -3.6958483, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081193, "lat": 40.4466061, "lon": -3.7039608}, {"type": "node", "id": 1505081195, "lat": 40.4466579, "lon": -3.7037533}, {"type": "node", "id": 1505081196, "lat": 40.4466651, "lon": -3.6955691, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081204, "lat": 40.4467123, "lon": -3.7033437, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1505081210, "lat": 40.4467838, "lon": -3.7044044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081213, "lat": 40.4468261, "lon": -3.7042032}, {"type": "node", "id": 1505081224, "lat": 40.4469142, "lon": -3.70333, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1505081225, "lat": 40.44694, "lon": -3.703471}, {"type": "node", "id": 1505081226, "lat": 40.4469418, "lon": -3.7042636}, {"type": "node", "id": 1505081227, "lat": 40.4469939, "lon": -3.7044791}, {"type": "node", "id": 1505081228, "lat": 40.4470498, "lon": -3.7036106}, {"type": "node", "id": 1505081230, "lat": 40.4471964, "lon": -3.7035401}, {"type": "node", "id": 1505081231, "lat": 40.4472091, "lon": -3.7037972}, {"type": "node", "id": 1505081242, "lat": 40.4472303, "lon": -3.7039416, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081244, "lat": 40.4473321, "lon": -3.7038403}, {"type": "node", "id": 1505106008, "lat": 40.4313586, "lon": -3.6794159, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106009, "lat": 40.4313664, "lon": -3.67958}, {"type": "node", "id": 1505106010, "lat": 40.4313789, "lon": -3.6798431, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106022, "lat": 40.4325727, "lon": -3.6797404, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106033, "lat": 40.4327094, "lon": -3.6797269, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106044, "lat": 40.4336964, "lon": -3.6796391, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106068, "lat": 40.4359471, "lon": -3.6794189, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505184339, "lat": 40.4261523, "lon": -3.6803135, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1522690059, "lat": 40.4191651, "lon": -3.6955731, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1522690091, "lat": 40.448862, "lon": -3.7019641}, {"type": "node", "id": 1522690105, "lat": 40.4498102, "lon": -3.7021603}, {"type": "node", "id": 1537917857, "lat": 40.4347065, "lon": -3.7183568}, {"type": "node", "id": 1537917871, "lat": 40.4351651, "lon": -3.7183198}, {"type": "node", "id": 1537917872, "lat": 40.4352374, "lon": -3.7194763}, {"type": "node", "id": 1555729943, "lat": 40.436284, "lon": -3.6863379}, {"type": "node", "id": 1555729951, "lat": 40.4225239, "lon": -3.6882247}, {"type": "node", "id": 1555729961, "lat": 40.4253822, "lon": -3.6877316}, {"type": "node", "id": 1555729967, "lat": 40.4239595, "lon": -3.6880004}, {"type": "node", "id": 1555729975, "lat": 40.4377343, "lon": -3.6862525}, {"type": "node", "id": 1555729980, "lat": 40.4264916, "lon": -3.6875556}, {"type": "node", "id": 1555729985, "lat": 40.4211834, "lon": -3.6883941, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 1591329818, "lat": 40.4261235, "lon": -3.7012066, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329824, "lat": 40.4264091, "lon": -3.7013157, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329839, "lat": 40.4266118, "lon": -3.7005721, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1591329840, "lat": 40.4266446, "lon": -3.6967655, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329844, "lat": 40.426767, "lon": -3.6970555, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329853, "lat": 40.4268501, "lon": -3.699875, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591329866, "lat": 40.4269731, "lon": -3.6984064, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329868, "lat": 40.4270713, "lon": -3.6987025, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329870, "lat": 40.4270639, "lon": -3.6989487, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329871, "lat": 40.4272432, "lon": -3.7008206, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329872, "lat": 40.427255, "lon": -3.7015531, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329873, "lat": 40.4272966, "lon": -3.7007403, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329881, "lat": 40.4273069, "lon": -3.7020184}, {"type": "node", "id": 1591329883, "lat": 40.4273772, "lon": -3.7017202, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329885, "lat": 40.427378, "lon": -3.7008764, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329888, "lat": 40.427396, "lon": -3.6993689, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329890, "lat": 40.4274131, "lon": -3.7000906, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329895, "lat": 40.4275136, "lon": -3.7017748}, {"type": "node", "id": 1591329900, "lat": 40.4275452, "lon": -3.6982168, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329902, "lat": 40.4275775, "lon": -3.6960729, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329916, "lat": 40.4278285, "lon": -3.6971809, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329927, "lat": 40.4279098, "lon": -3.6953497}, {"type": "node", "id": 1591329929, "lat": 40.4278614, "lon": -3.6964573, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329935, "lat": 40.428009, "lon": -3.6980739, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329944, "lat": 40.4281002, "lon": -3.699243, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329945, "lat": 40.4280803, "lon": -3.6971071, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329948, "lat": 40.4282596, "lon": -3.6993899, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329955, "lat": 40.4283075, "lon": -3.6991251, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329959, "lat": 40.4282956, "lon": -3.6981056, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329962, "lat": 40.4284196, "lon": -3.6997209, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329976, "lat": 40.4284217, "lon": -3.6990911, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329977, "lat": 40.4285156, "lon": -3.7005034, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329980, "lat": 40.428533, "lon": -3.698157, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329982, "lat": 40.4285357, "lon": -3.6996708, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329985, "lat": 40.4286314, "lon": -3.6994545, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329988, "lat": 40.4286374, "lon": -3.6973728, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330000, "lat": 40.4286949, "lon": -3.7013806, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330002, "lat": 40.4287148, "lon": -3.6972873, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330004, "lat": 40.4287808, "lon": -3.6962354, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330008, "lat": 40.4287948, "lon": -3.7004895, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330012, "lat": 40.4288702, "lon": -3.6983807, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330015, "lat": 40.4289779, "lon": -3.6983725, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330025, "lat": 40.4290416, "lon": -3.7032832, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330026, "lat": 40.4291286, "lon": -3.6972875, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330027, "lat": 40.4291746, "lon": -3.6974068, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330029, "lat": 40.4292313, "lon": -3.6964438, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330031, "lat": 40.4293625, "lon": -3.7005216, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330034, "lat": 40.4294251, "lon": -3.699813, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330037, "lat": 40.4294302, "lon": -3.6986697, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330056, "lat": 40.4294398, "lon": -3.7006143, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330058, "lat": 40.4294476, "lon": -3.6995479, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330059, "lat": 40.429513, "lon": -3.69882, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330060, "lat": 40.4295319, "lon": -3.69861, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330061, "lat": 40.4296199, "lon": -3.6976312, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330063, "lat": 40.429639, "lon": -3.6974189, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330081, "lat": 40.429642, "lon": -3.6964018, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330083, "lat": 40.4297029, "lon": -3.6975667, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330085, "lat": 40.4297099, "lon": -3.6966302, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330088, "lat": 40.4300755, "lon": -3.7027698, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1591330108, "lat": 40.4305403, "lon": -3.6992205, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330139, "lat": 40.4306368, "lon": -3.6991551, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330144, "lat": 40.4307725, "lon": -3.697846, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330146, "lat": 40.4308324, "lon": -3.6979797, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330158, "lat": 40.4308363, "lon": -3.6971205, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330161, "lat": 40.4308534, "lon": -3.6967897, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330163, "lat": 40.430941, "lon": -3.6994167, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330165, "lat": 40.4310915, "lon": -3.7011715, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330168, "lat": 40.4310839, "lon": -3.7018618, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330170, "lat": 40.4311166, "lon": -3.6969294, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330173, "lat": 40.4311595, "lon": -3.7019623, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330178, "lat": 40.4312086, "lon": -3.7012169, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330180, "lat": 40.4313097, "lon": -3.7005614, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330186, "lat": 40.4315985, "lon": -3.703331, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330194, "lat": 40.4316286, "lon": -3.6990081, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330195, "lat": 40.4316747, "lon": -3.6971686, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330196, "lat": 40.4318452, "lon": -3.6983562, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330197, "lat": 40.4318377, "lon": -3.702143, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330198, "lat": 40.4319105, "lon": -3.7020868, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330199, "lat": 40.432006, "lon": -3.7015423, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330212, "lat": 40.4322381, "lon": -3.7037098, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330215, "lat": 40.432371, "lon": -3.7022887, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330218, "lat": 40.4324293, "lon": -3.7023745, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330220, "lat": 40.4324628, "lon": -3.7022333, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330222, "lat": 40.4324979, "lon": -3.7023205, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330227, "lat": 40.4325723, "lon": -3.699503, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330231, "lat": 40.4326798, "lon": -3.7038154, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330245, "lat": 40.4331527, "lon": -3.7041108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330247, "lat": 40.4334008, "lon": -3.69805, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330252, "lat": 40.4335233, "lon": -3.6979228, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698083, "lat": 40.4303461, "lon": -3.711851, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698084, "lat": 40.4311093, "lon": -3.7118787, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698085, "lat": 40.4312148, "lon": -3.7133668, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698086, "lat": 40.4312455, "lon": -3.7052062, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698087, "lat": 40.4314026, "lon": -3.7048693, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698088, "lat": 40.431425, "lon": -3.7054103, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698091, "lat": 40.4316085, "lon": -3.7089804, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698092, "lat": 40.431569, "lon": -3.7050148, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1596698093, "lat": 40.4316158, "lon": -3.711728, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698094, "lat": 40.4316904, "lon": -3.7105386, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1596698095, "lat": 40.4317326, "lon": -3.7116223, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698096, "lat": 40.4317389, "lon": -3.7117883, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698097, "lat": 40.4317301, "lon": -3.7134151, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698098, "lat": 40.4317524, "lon": -3.7145652, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698099, "lat": 40.4317961, "lon": -3.713298, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698100, "lat": 40.4318046, "lon": -3.7135202, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698101, "lat": 40.4318404, "lon": -3.7144643, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698102, "lat": 40.4318481, "lon": -3.7146674, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698103, "lat": 40.4318281, "lon": -3.7127354, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698104, "lat": 40.4318842, "lon": -3.7156185, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698105, "lat": 40.4318918, "lon": -3.715819, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698106, "lat": 40.4318947, "lon": -3.7134015, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698107, "lat": 40.4319057, "lon": -3.7145563, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698108, "lat": 40.4321893, "lon": -3.7125351, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698110, "lat": 40.4325885, "lon": -3.7017201, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1596698113, "lat": 40.4328208, "lon": -3.7103555, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698115, "lat": 40.4328694, "lon": -3.7116127, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698116, "lat": 40.4329111, "lon": -3.7118788, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698117, "lat": 40.4329263, "lon": -3.7104519, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698118, "lat": 40.4329559, "lon": -3.7024376, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698119, "lat": 40.4329657, "lon": -3.7117169, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698121, "lat": 40.4330127, "lon": -3.7132045, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698122, "lat": 40.4330193, "lon": -3.7134175, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1596698123, "lat": 40.4330143, "lon": -3.7115977, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698124, "lat": 40.4330321, "lon": -3.7023649, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1596698125, "lat": 40.4330581, "lon": -3.714589, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698127, "lat": 40.4331278, "lon": -3.713306, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698128, "lat": 40.4333131, "lon": -3.7041275}, {"type": "node", "id": 1596698132, "lat": 40.4336339, "lon": -3.7115465}, {"type": "node", "id": 1596698135, "lat": 40.4340227, "lon": -3.711513, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698138, "lat": 40.4340617, "lon": -3.710181, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1596698139, "lat": 40.434077, "lon": -3.7104215, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1596698140, "lat": 40.434125, "lon": -3.7132286, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698141, "lat": 40.4341387, "lon": -3.7113934, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698143, "lat": 40.4341609, "lon": -3.7102727, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1596698144, "lat": 40.4342272, "lon": -3.7115023, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698145, "lat": 40.4342481, "lon": -3.7131162, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698146, "lat": 40.4342623, "lon": -3.7133399, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698147, "lat": 40.4343238, "lon": -3.7143077, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698148, "lat": 40.4343454, "lon": -3.7132123, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698149, "lat": 40.4344138, "lon": -3.7143992, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698151, "lat": 40.4348038, "lon": -3.7130977, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698152, "lat": 40.4347881, "lon": -3.7132861, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698153, "lat": 40.4348282, "lon": -3.7142861, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698154, "lat": 40.4351783, "lon": -3.7114267, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698155, "lat": 40.4352513, "lon": -3.7115284, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698156, "lat": 40.4353245, "lon": -3.7132552, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698157, "lat": 40.4354093, "lon": -3.7131425, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1613048503, "lat": 40.4408537, "lon": -3.6917058, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048504, "lat": 40.4409123, "lon": -3.6914836, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048507, "lat": 40.4410852, "lon": -3.6943142}, {"type": "node", "id": 1613048510, "lat": 40.4411378, "lon": -3.6943097, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048518, "lat": 40.4412865, "lon": -3.694188, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1613048520, "lat": 40.4412987, "lon": -3.6944315}, {"type": "node", "id": 1613048522, "lat": 40.4413769, "lon": -3.6946639}, {"type": "node", "id": 1613048524, "lat": 40.4414182, "lon": -3.6919143}, {"type": "node", "id": 1613048525, "lat": 40.4413929, "lon": -3.6915343}, {"type": "node", "id": 1613048526, "lat": 40.4414464, "lon": -3.6941694, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048540, "lat": 40.4415278, "lon": -3.6948703}, {"type": "node", "id": 1613048541, "lat": 40.4415508, "lon": -3.6918798, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048543, "lat": 40.4415818, "lon": -3.6949102}, {"type": "node", "id": 1613048550, "lat": 40.4416085, "lon": -3.6947196}, {"type": "node", "id": 1613048554, "lat": 40.4418225, "lon": -3.6990759}, {"type": "node", "id": 1613048555, "lat": 40.4416888, "lon": -3.697522, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048558, "lat": 40.4417455, "lon": -3.6990804, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048569, "lat": 40.4418024, "lon": -3.6975124}, {"type": "node", "id": 1613048570, "lat": 40.4418451, "lon": -3.6959934, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048571, "lat": 40.4418545, "lon": -3.6948389, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048577, "lat": 40.4418788, "lon": -3.6990702}, {"type": "node", "id": 1613048580, "lat": 40.4420986, "lon": -3.7007111, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048583, "lat": 40.442286, "lon": -3.6990273, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048586, "lat": 40.4427209, "lon": -3.6947794, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048587, "lat": 40.4427834, "lon": -3.6959165, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048588, "lat": 40.4428345, "lon": -3.694967, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048589, "lat": 40.4428631, "lon": -3.6974228, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048590, "lat": 40.4428756, "lon": -3.6957993, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048592, "lat": 40.4428862, "lon": -3.6960182, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048594, "lat": 40.4429437, "lon": -3.6959026, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048599, "lat": 40.4429494, "lon": -3.6989617, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048600, "lat": 40.4429567, "lon": -3.6975393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048602, "lat": 40.4430212, "lon": -3.7006422, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048604, "lat": 40.4430395, "lon": -3.7022143, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048606, "lat": 40.4430291, "lon": -3.6990649, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048615, "lat": 40.4430992, "lon": -3.7005408, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048616, "lat": 40.4431088, "lon": -3.7007415, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048617, "lat": 40.4431741, "lon": -3.702117, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048618, "lat": 40.4431925, "lon": -3.7024533, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048621, "lat": 40.4431971, "lon": -3.7006278, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048623, "lat": 40.4431996, "lon": -3.697485, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 1613048626, "lat": 40.4432349, "lon": -3.694939}, {"type": "node", "id": 1613048637, "lat": 40.4432439, "lon": -3.6953825}, {"type": "node", "id": 1613048639, "lat": 40.4432639, "lon": -3.6957812, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048641, "lat": 40.4432679, "lon": -3.7039008, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048644, "lat": 40.443253, "lon": -3.6958795}, {"type": "node", "id": 1613048646, "lat": 40.4432852, "lon": -3.7042338, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048648, "lat": 40.4433779, "lon": -3.7040658, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048650, "lat": 40.4435801, "lon": -3.6951706}, {"type": "node", "id": 1613048658, "lat": 40.4436994, "lon": -3.6952045}, {"type": "node", "id": 1613048659, "lat": 40.4439215, "lon": -3.6973333, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048661, "lat": 40.4439619, "lon": -3.6959224, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048663, "lat": 40.4440178, "lon": -3.6958048, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048666, "lat": 40.4440239, "lon": -3.6972242, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048667, "lat": 40.444033, "lon": -3.6974165, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048676, "lat": 40.4440328, "lon": -3.698873, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048678, "lat": 40.4440517, "lon": -3.6953267, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1613048680, "lat": 40.4440602, "lon": -3.6956944, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048683, "lat": 40.4440977, "lon": -3.6987743, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048686, "lat": 40.4441071, "lon": -3.6989731, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048689, "lat": 40.4441813, "lon": -3.6988609, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1636560190, "lat": 40.4455555, "lon": -3.7207497}, {"type": "node", "id": 1636560194, "lat": 40.4455555, "lon": -3.721112}, {"type": "node", "id": 1636560197, "lat": 40.4455803, "lon": -3.7212698}, {"type": "node", "id": 1636560215, "lat": 40.4456746, "lon": -3.7203734}, {"type": "node", "id": 1636560218, "lat": 40.4457555, "lon": -3.7202437}, {"type": "node", "id": 1636560221, "lat": 40.4458971, "lon": -3.7201019}, {"type": "node", "id": 1636560225, "lat": 40.4465249, "lon": -3.7239262}, {"type": "node", "id": 1636560228, "lat": 40.4465872, "lon": -3.719595}, {"type": "node", "id": 1636560232, "lat": 40.4466725, "lon": -3.7194711}, {"type": "node", "id": 1636560235, "lat": 40.4466903, "lon": -3.7244054}, {"type": "node", "id": 1636560239, "lat": 40.4467312, "lon": -3.7193402}, {"type": "node", "id": 1636560241, "lat": 40.4467882, "lon": -3.7191626}, {"type": "node", "id": 1636560243, "lat": 40.4467849, "lon": -3.7185845, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1636560244, "lat": 40.4467971, "lon": -3.7245433}, {"type": "node", "id": 1636560299, "lat": 40.4483581, "lon": -3.7222008}, {"type": "node", "id": 1651583792, "lat": 40.4287045, "lon": -3.7079826, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583794, "lat": 40.4288028, "lon": -3.7093426, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583795, "lat": 40.4288307, "lon": -3.7096888, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583797, "lat": 40.4288367, "lon": -3.7078701, "tags": {"highway": "crossing", "source": "bing"}}, {"type": "node", "id": 1651583798, "lat": 40.4289211, "lon": -3.7061775, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583800, "lat": 40.4291572, "lon": -3.7106288, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583801, "lat": 40.4296619, "lon": -3.7077427, "tags": {"highway": "crossing", "source": "bing"}}, {"type": "node", "id": 1651583802, "lat": 40.4296965, "lon": -3.708944, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583803, "lat": 40.4298516, "lon": -3.7007058, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583804, "lat": 40.4301247, "lon": -3.7007867, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250182, "lat": 40.4440945, "lon": -3.7005479, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250183, "lat": 40.4441349, "lon": -3.7026842, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250184, "lat": 40.4441768, "lon": -3.700437, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250185, "lat": 40.4441874, "lon": -3.700659, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250186, "lat": 40.4442609, "lon": -3.7005334, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250187, "lat": 40.4442938, "lon": -3.7026163, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250188, "lat": 40.4443122, "lon": -3.7029497, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250189, "lat": 40.4443396, "lon": -3.7038572, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250190, "lat": 40.4444411, "lon": -3.6957745, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1654250191, "lat": 40.4445114, "lon": -3.6972834, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250192, "lat": 40.4445325, "lon": -3.6958692, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250193, "lat": 40.4445811, "lon": -3.6971814, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250194, "lat": 40.4448214, "lon": -3.6956385, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250195, "lat": 40.4450037, "lon": -3.7040117, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1654250196, "lat": 40.4450314, "lon": -3.6958567, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250197, "lat": 40.4450339, "lon": -3.6972393, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250198, "lat": 40.4450962, "lon": -3.6971127, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250199, "lat": 40.4451145, "lon": -3.6987845, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250200, "lat": 40.4451074, "lon": -3.6973292, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250201, "lat": 40.4451161, "lon": -3.6957331, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1654250202, "lat": 40.4451767, "lon": -3.6986711, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250203, "lat": 40.4451892, "lon": -3.6989137, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250205, "lat": 40.4452056, "lon": -3.7004602, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1654250206, "lat": 40.4452621, "lon": -3.6987724, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250207, "lat": 40.4452637, "lon": -3.7003477, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1654250208, "lat": 40.4452676, "lon": -3.703173, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250209, "lat": 40.445275, "lon": -3.7005751, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250210, "lat": 40.4453597, "lon": -3.7004485, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250211, "lat": 40.4454066, "lon": -3.7031072, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250212, "lat": 40.4454215, "lon": -3.7034132, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250213, "lat": 40.4454275, "lon": -3.701943, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250214, "lat": 40.4454424, "lon": -3.7038181, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1654250220, "lat": 40.4456158, "lon": -3.6971901}, {"type": "node", "id": 1654250223, "lat": 40.4456895, "lon": -3.6987374}, {"type": "node", "id": 1654250226, "lat": 40.4457812, "lon": -3.7004096}, {"type": "node", "id": 1654250231, "lat": 40.446342, "lon": -3.6971287, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1654250232, "lat": 40.4464412, "lon": -3.6969771, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1654250233, "lat": 40.4464997, "lon": -3.7003463, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250234, "lat": 40.4465301, "lon": -3.7017889, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250235, "lat": 40.4465261, "lon": -3.6988218, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250236, "lat": 40.4465754, "lon": -3.6969637, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1654250237, "lat": 40.446666, "lon": -3.6988062, "tags": {"button_operated": "no", "check_date:crossing": "2023-11-14", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250238, "lat": 40.4466962, "lon": -3.6971203, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250240, "lat": 40.4467525, "lon": -3.698619, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1660871696, "lat": 40.4289387, "lon": -3.7068905}, {"type": "node", "id": 1660871699, "lat": 40.429644, "lon": -3.7067355, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1660892624, "lat": 40.4288825, "lon": -3.7099137}, {"type": "node", "id": 1660892627, "lat": 40.4285347, "lon": -3.7097461}, {"type": "node", "id": 1660892630, "lat": 40.4289284, "lon": -3.7100979}, {"type": "node", "id": 1666720773, "lat": 40.4280613, "lon": -3.7062425, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 1666721129, "lat": 40.4288108, "lon": -3.707479}, {"type": "node", "id": 1669117690, "lat": 40.4318739, "lon": -3.7168766, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117694, "lat": 40.4319288, "lon": -3.7169938, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117696, "lat": 40.431968, "lon": -3.7157043, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117707, "lat": 40.4330095, "lon": -3.7167935, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-23", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117711, "lat": 40.4330825, "lon": -3.7155326, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117715, "lat": 40.4330926, "lon": -3.7157193, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117718, "lat": 40.4331215, "lon": -3.7166655, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117721, "lat": 40.4331688, "lon": -3.7156126, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117723, "lat": 40.4332312, "lon": -3.7167792, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117724, "lat": 40.4342951, "lon": -3.717938, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117734, "lat": 40.434332, "lon": -3.7155516, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117737, "lat": 40.4343797, "lon": -3.7167003, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117741, "lat": 40.4343946, "lon": -3.7154188, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117747, "lat": 40.434468, "lon": -3.7165786, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117752, "lat": 40.434483, "lon": -3.7155482, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117758, "lat": 40.4344975, "lon": -3.718206, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117762, "lat": 40.4345453, "lon": -3.716689, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117780, "lat": 40.4348838, "lon": -3.7056895, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117781, "lat": 40.434955, "lon": -3.7056097, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117783, "lat": 40.4349654, "lon": -3.705813, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117788, "lat": 40.4350264, "lon": -3.7069846, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117791, "lat": 40.4350994, "lon": -3.7068436, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117795, "lat": 40.4352664, "lon": -3.7101976, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117800, "lat": 40.4353753, "lon": -3.7144526, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117805, "lat": 40.4353602, "lon": -3.7166337, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117821, "lat": 40.4354142, "lon": -3.7153718, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117825, "lat": 40.4354224, "lon": -3.7155655, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117828, "lat": 40.4354187, "lon": -3.7182858, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117831, "lat": 40.435463, "lon": -3.7165234, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117834, "lat": 40.4354603, "lon": -3.7167276, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117836, "lat": 40.4354604, "lon": -3.7143316, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117838, "lat": 40.4354922, "lon": -3.7154627, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117862, "lat": 40.4355402, "lon": -3.7166222, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117865, "lat": 40.4355164, "lon": -3.7181383, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117870, "lat": 40.4356547, "lon": -3.7182469, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117879, "lat": 40.4360604, "lon": -3.7054686, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117882, "lat": 40.4360877, "lon": -3.7085064, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117886, "lat": 40.4360961, "lon": -3.7066473, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117906, "lat": 40.4361488, "lon": -3.7055794, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117908, "lat": 40.4361697, "lon": -3.7083947, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117911, "lat": 40.4361818, "lon": -3.7086144, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117913, "lat": 40.4362414, "lon": -3.7113374, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117915, "lat": 40.4362419, "lon": -3.7100141, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117919, "lat": 40.4363044, "lon": -3.7112364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117922, "lat": 40.4363435, "lon": -3.7101068, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117925, "lat": 40.4363781, "lon": -3.7142724, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117951, "lat": 40.436391, "lon": -3.7129519, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117957, "lat": 40.4364017, "lon": -3.7131619, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117961, "lat": 40.4364272, "lon": -3.7136788}, {"type": "node", "id": 1669117964, "lat": 40.4364438, "lon": -3.7141745, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117965, "lat": 40.4364533, "lon": -3.7143558, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117967, "lat": 40.4364907, "lon": -3.7165567, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117970, "lat": 40.4364746, "lon": -3.7130464, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117973, "lat": 40.4365045, "lon": -3.7152784, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118003, "lat": 40.4365176, "lon": -3.7155113, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118005, "lat": 40.4365594, "lon": -3.7164497, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669118007, "lat": 40.4365699, "lon": -3.7166518, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669118010, "lat": 40.4365906, "lon": -3.7154012, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118013, "lat": 40.4366362, "lon": -3.7179142, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118015, "lat": 40.4367655, "lon": -3.7180607, "tags": {"crossing:signals": "yes", "highway": "crossing"}}, {"type": "node", "id": 1669118016, "lat": 40.4376311, "lon": -3.7141914, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118019, "lat": 40.4376425, "lon": -3.7128403, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118030, "lat": 40.4376532, "lon": -3.7130819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118033, "lat": 40.4376763, "lon": -3.7135886}, {"type": "node", "id": 1669118035, "lat": 40.4376867, "lon": -3.7153218, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118037, "lat": 40.4376994, "lon": -3.7140973, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118040, "lat": 40.4377083, "lon": -3.7142938, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118042, "lat": 40.4377501, "lon": -3.7152136, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118045, "lat": 40.437759, "lon": -3.7154111, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118047, "lat": 40.4377839, "lon": -3.7141816, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118063, "lat": 40.437763, "lon": -3.7129658, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118067, "lat": 40.437803, "lon": -3.7163774, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118071, "lat": 40.4378123, "lon": -3.7165603, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118075, "lat": 40.4378359, "lon": -3.7153025, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118077, "lat": 40.4378711, "lon": -3.7177233, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1669118079, "lat": 40.4387939, "lon": -3.7111231, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118081, "lat": 40.4388553, "lon": -3.7128975, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118084, "lat": 40.4389072, "lon": -3.7122207, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118101, "lat": 40.4389392, "lon": -3.7141071, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118105, "lat": 40.4389507, "lon": -3.7152275, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118109, "lat": 40.4389798, "lon": -3.7129767, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118112, "lat": 40.4390298, "lon": -3.712212, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118116, "lat": 40.4390412, "lon": -3.7111096, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118119, "lat": 40.4391015, "lon": -3.7129635, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118122, "lat": 40.4395524, "lon": -3.7118524, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118140, "lat": 40.4395924, "lon": -3.7110645, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1689543016, "lat": 40.4292641, "lon": -3.6870111, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1689543018, "lat": 40.4304485, "lon": -3.6867582}, {"type": "node", "id": 1689543023, "lat": 40.431707, "lon": -3.6867144}, {"type": "node", "id": 1689543025, "lat": 40.4329038, "lon": -3.6865547, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1689543046, "lat": 40.4330225, "lon": -3.6865449, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1689543052, "lat": 40.4340358, "lon": -3.6865048}, {"type": "node", "id": 1689543055, "lat": 40.4340584, "lon": -3.6882267}, {"type": "node", "id": 1689543057, "lat": 40.4350912, "lon": -3.6863782, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1718376821, "lat": 40.4226957, "lon": -3.6966025}, {"type": "node", "id": 1719813640, "lat": 40.4375235, "lon": -3.691184}, {"type": "node", "id": 1719813695, "lat": 40.4384593, "lon": -3.6912707}, {"type": "node", "id": 1719813895, "lat": 40.4408567, "lon": -3.692116, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1736112455, "lat": 40.4316324, "lon": -3.7071395, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1736112458, "lat": 40.4316481, "lon": -3.7072891, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1736112460, "lat": 40.4317415, "lon": -3.707309}, {"type": "node", "id": 1736112461, "lat": 40.4317514, "lon": -3.7070848}, {"type": "node", "id": 1736112462, "lat": 40.4325412, "lon": -3.706996}, {"type": "node", "id": 1736112463, "lat": 40.4325647, "lon": -3.7072155}, {"type": "node", "id": 1736112464, "lat": 40.4326624, "lon": -3.7070181}, {"type": "node", "id": 1736112465, "lat": 40.4326772, "lon": -3.7071632}, {"type": "node", "id": 1736112466, "lat": 40.432725, "lon": -3.7070596}, {"type": "node", "id": 1736112467, "lat": 40.4327605, "lon": -3.7071531}, {"type": "node", "id": 1736112471, "lat": 40.4327629, "lon": -3.7070134}, {"type": "node", "id": 1736112474, "lat": 40.4328209, "lon": -3.7071871}, {"type": "node", "id": 1736112476, "lat": 40.4328301, "lon": -3.7071062}, {"type": "node", "id": 1736112478, "lat": 40.4328546, "lon": -3.7069602}, {"type": "node", "id": 1752467527, "lat": 40.4458496, "lon": -3.6914209, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467528, "lat": 40.4459055, "lon": -3.6909643, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467529, "lat": 40.4460766, "lon": -3.6906063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467530, "lat": 40.4461532, "lon": -3.6919583, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467531, "lat": 40.4462725, "lon": -3.6905778, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467533, "lat": 40.4463542, "lon": -3.6914813}, {"type": "node", "id": 1752467534, "lat": 40.446361, "lon": -3.6919364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467538, "lat": 40.4464756, "lon": -3.6907468, "tags": {"check_date:crossing": "2022-08-12", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467545, "lat": 40.4465074, "lon": -3.6911403, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467567, "lat": 40.4467532, "lon": -3.6930747, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1752467592, "lat": 40.4472085, "lon": -3.6916713, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1752467616, "lat": 40.4472508, "lon": -3.6930416}, {"type": "node", "id": 1752467617, "lat": 40.4472992, "lon": -3.6918459}, {"type": "node", "id": 1752467619, "lat": 40.4473301, "lon": -3.6921152}, {"type": "node", "id": 1752467620, "lat": 40.4473304, "lon": -3.6929843}, {"type": "node", "id": 1752467622, "lat": 40.4474047, "lon": -3.6914911}, {"type": "node", "id": 1752467628, "lat": 40.4477981, "lon": -3.6901766, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467632, "lat": 40.4489711, "lon": -3.6903532, "tags": {"check_date:crossing": "2023-03-29", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467635, "lat": 40.4491968, "lon": -3.6903192, "tags": {"check_date:crossing": "2023-03-29", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467638, "lat": 40.4492163, "lon": -3.6908993, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467639, "lat": 40.4492261, "lon": -3.691044, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467647, "lat": 40.4514279, "lon": -3.6906799, "tags": {"button_operated": "no", "check_date:crossing": "2021-10-02", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467648, "lat": 40.4514352, "lon": -3.6908278, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467652, "lat": 40.4515307, "lon": -3.6901884, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1753722767, "lat": 40.4489141, "lon": -3.6904558, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1754199353, "lat": 40.423928, "lon": -3.7006497}, {"type": "node", "id": 1754199355, "lat": 40.4239446, "lon": -3.699994}, {"type": "node", "id": 1754816974, "lat": 40.4409442, "lon": -3.6925674}, {"type": "node", "id": 1754816976, "lat": 40.4410744, "lon": -3.6912553}, {"type": "node", "id": 1754816978, "lat": 40.4411136, "lon": -3.6911929, "tags": {"check_date:crossing": "2022-01-13", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754816979, "lat": 40.4411324, "lon": -3.6925717, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754816980, "lat": 40.4411873, "lon": -3.6928519}, {"type": "node", "id": 1754816982, "lat": 40.4412836, "lon": -3.6912857, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754816983, "lat": 40.4412342, "lon": -3.6921104, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754816984, "lat": 40.4413711, "lon": -3.6908683}, {"type": "node", "id": 1754816985, "lat": 40.44137, "lon": -3.6911764, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes"}}, {"type": "node", "id": 1754816986, "lat": 40.4413727, "lon": -3.6910073}, {"type": "node", "id": 1754816987, "lat": 40.4413774, "lon": -3.691291}, {"type": "node", "id": 1754816990, "lat": 40.4414693, "lon": -3.6920548}, {"type": "node", "id": 1754816991, "lat": 40.4414999, "lon": -3.6912855, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 1754816996, "lat": 40.4415594, "lon": -3.6919819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754817005, "lat": 40.4416542, "lon": -3.6912671}, {"type": "node", "id": 1754817007, "lat": 40.4416653, "lon": -3.6919484}, {"type": "node", "id": 1754817011, "lat": 40.4417199, "lon": -3.6913391}, {"type": "node", "id": 1754817035, "lat": 40.4418731, "lon": -3.6913502}, {"type": "node", "id": 1754817038, "lat": 40.4419443, "lon": -3.6912576}, {"type": "node", "id": 1754817040, "lat": 40.44197, "lon": -3.6914039}, {"type": "node", "id": 1754817042, "lat": 40.4420311, "lon": -3.6914452}, {"type": "node", "id": 1754817043, "lat": 40.4422585, "lon": -3.6917531}, {"type": "node", "id": 1754817055, "lat": 40.442214, "lon": -3.6915229}, {"type": "node", "id": 1754817060, "lat": 40.4425559, "lon": -3.691735}, {"type": "node", "id": 1754817062, "lat": 40.442631, "lon": -3.6914865}, {"type": "node", "id": 1754817069, "lat": 40.4427168, "lon": -3.6914806}, {"type": "node", "id": 1754817071, "lat": 40.4428247, "lon": -3.6911727}, {"type": "node", "id": 1754817091, "lat": 40.443469, "lon": -3.6916599}, {"type": "node", "id": 1754817093, "lat": 40.4434898, "lon": -3.6911032, "tags": {"crossing": "no"}}, {"type": "node", "id": 1754817102, "lat": 40.4436377, "lon": -3.6910877}, {"type": "node", "id": 1754817108, "lat": 40.4436956, "lon": -3.6916314, "tags": {"button_operated": "yes", "check_date:crossing": "2022-05-21", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817115, "lat": 40.4438543, "lon": -3.691065, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1754817117, "lat": 40.4438704, "lon": -3.6913673, "tags": {"button_operated": "yes", "check_date:crossing": "2022-05-21", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817132, "lat": 40.4442075, "lon": -3.6913387}, {"type": "node", "id": 1754817134, "lat": 40.4442502, "lon": -3.6915775}, {"type": "node", "id": 1754817140, "lat": 40.4449552, "lon": -3.6909499}, {"type": "node", "id": 1754817142, "lat": 40.4450808, "lon": -3.6914994}, {"type": "node", "id": 1754817170, "lat": 40.4455541, "lon": -3.6908873, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1754817172, "lat": 40.4455769, "lon": -3.691584}, {"type": "node", "id": 1754817193, "lat": 40.4458999, "lon": -3.6908512, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754819488, "lat": 40.4412646, "lon": -3.6923567, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754819503, "lat": 40.4413393, "lon": -3.6923999, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754820534, "lat": 40.4418446, "lon": -3.6915669}, {"type": "node", "id": 1759501456, "lat": 40.4365054, "lon": -3.6900024, "tags": {"kerb": "no"}}, {"type": "node", "id": 1759501457, "lat": 40.4365565, "lon": -3.6899332}, {"type": "node", "id": 1759501459, "lat": 40.4366362, "lon": -3.6902102}, {"type": "node", "id": 1759501461, "lat": 40.4366594, "lon": -3.6898895}, {"type": "node", "id": 1759501463, "lat": 40.4373367, "lon": -3.6906878}, {"type": "node", "id": 1759501464, "lat": 40.4374197, "lon": -3.689859}, {"type": "node", "id": 1759501466, "lat": 40.4374197, "lon": -3.6904108}, {"type": "node", "id": 1759501488, "lat": 40.4374845, "lon": -3.6908514}, {"type": "node", "id": 1759501491, "lat": 40.4375376, "lon": -3.6909539, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501505, "lat": 40.4376843, "lon": -3.6911286}, {"type": "node", "id": 1759501507, "lat": 40.4377279, "lon": -3.6903885, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501511, "lat": 40.4377401, "lon": -3.6900542, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501517, "lat": 40.4378901, "lon": -3.6902923, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1759501519, "lat": 40.4378873, "lon": -3.6900001, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501542, "lat": 40.4379236, "lon": -3.6899935, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501551, "lat": 40.4379211, "lon": -3.6910188, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501555, "lat": 40.4379478, "lon": -3.6911762}, {"type": "node", "id": 1759501559, "lat": 40.4380987, "lon": -3.6911746}, {"type": "node", "id": 1759501564, "lat": 40.4381808, "lon": -3.6912902, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501593, "lat": 40.4383147, "lon": -3.6912714}, {"type": "node", "id": 1759501614, "lat": 40.4384114, "lon": -3.6909389, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501620, "lat": 40.4384226, "lon": -3.6907355, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501646, "lat": 40.4384804, "lon": -3.6904027, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501673, "lat": 40.4388087, "lon": -3.69057}, {"type": "node", "id": 1759501675, "lat": 40.438926, "lon": -3.691422}, {"type": "node", "id": 1759501676, "lat": 40.4393316, "lon": -3.6915638, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501677, "lat": 40.4394222, "lon": -3.6904542}, {"type": "node", "id": 1759501679, "lat": 40.4395598, "lon": -3.6861436}, {"type": "node", "id": 1759501690, "lat": 40.4395857, "lon": -3.6869887}, {"type": "node", "id": 1759501693, "lat": 40.4395869, "lon": -3.6908285}, {"type": "node", "id": 1759501705, "lat": 40.4396528, "lon": -3.6911804}, {"type": "node", "id": 1759501721, "lat": 40.4398503, "lon": -3.6910475, "tags": {"crossing:markings": "yes", "crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 1759501735, "lat": 40.4400067, "lon": -3.6909777}, {"type": "node", "id": 1759501751, "lat": 40.4402803, "lon": -3.6902517}, {"type": "node", "id": 1759501798, "lat": 40.440782, "lon": -3.6921997}, {"type": "node", "id": 1759501825, "lat": 40.4409928, "lon": -3.6905653}, {"type": "node", "id": 1760085654, "lat": 40.4256933, "lon": -3.6907112, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085655, "lat": 40.4258528, "lon": -3.6898686, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085659, "lat": 40.4262608, "lon": -3.690562}, {"type": "node", "id": 1760085662, "lat": 40.4268245, "lon": -3.6904069}, {"type": "node", "id": 1760085663, "lat": 40.4271136, "lon": -3.690014}, {"type": "node", "id": 1760085665, "lat": 40.4271842, "lon": -3.6903125}, {"type": "node", "id": 1760085666, "lat": 40.4278859, "lon": -3.6896848, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085667, "lat": 40.4279618, "lon": -3.6892216, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085668, "lat": 40.4279723, "lon": -3.6894917, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085669, "lat": 40.4279865, "lon": -3.6899512, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085670, "lat": 40.4280599, "lon": -3.6893025, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085673, "lat": 40.428105, "lon": -3.6896275, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085674, "lat": 40.4281088, "lon": -3.6900698, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-18", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085675, "lat": 40.4281217, "lon": -3.6897477, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085677, "lat": 40.428517, "lon": -3.6891716}, {"type": "node", "id": 1760085679, "lat": 40.4287537, "lon": -3.6898977}, {"type": "node", "id": 1760085680, "lat": 40.4288487, "lon": -3.6890608}, {"type": "node", "id": 1760085686, "lat": 40.4292102, "lon": -3.6898056, "tags": {"check_date:crossing": "2023-04-18", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "incorrect"}}, {"type": "node", "id": 1760085688, "lat": 40.4292252, "lon": -3.6889841, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-24", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085689, "lat": 40.4292418, "lon": -3.6893312, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085691, "lat": 40.4292598, "lon": -3.6894469, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085693, "lat": 40.429367, "lon": -3.6891342, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085694, "lat": 40.4294006, "lon": -3.6895832, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085695, "lat": 40.4294162, "lon": -3.6898833, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085696, "lat": 40.4294731, "lon": -3.6893905, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085698, "lat": 40.4295209, "lon": -3.6897018, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085699, "lat": 40.4304236, "lon": -3.6890223, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085702, "lat": 40.4305635, "lon": -3.6888415, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085703, "lat": 40.4305942, "lon": -3.6892729, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085704, "lat": 40.4306019, "lon": -3.6895769, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085706, "lat": 40.4325897, "lon": -3.6914763, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1760085707, "lat": 40.4327208, "lon": -3.6914413}, {"type": "node", "id": 1760085708, "lat": 40.4327261, "lon": -3.6913451}, {"type": "node", "id": 1760085710, "lat": 40.4328749, "lon": -3.6908873}, {"type": "node", "id": 1760085711, "lat": 40.4329238, "lon": -3.6916066}, {"type": "node", "id": 1760085712, "lat": 40.4329388, "lon": -3.6917377, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085713, "lat": 40.4329486, "lon": -3.6915027, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085714, "lat": 40.4329678, "lon": -3.6916066}, {"type": "node", "id": 1760085715, "lat": 40.4330208, "lon": -3.6910883}, {"type": "node", "id": 1760085716, "lat": 40.4330197, "lon": -3.6909537, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085717, "lat": 40.4330914, "lon": -3.6880071}, {"type": "node", "id": 1760085718, "lat": 40.4331632, "lon": -3.6880029, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085719, "lat": 40.433179, "lon": -3.6912189}, {"type": "node", "id": 1760085720, "lat": 40.4332049, "lon": -3.691335}, {"type": "node", "id": 1760085721, "lat": 40.4332254, "lon": -3.6912501}, {"type": "node", "id": 1760085722, "lat": 40.4332951, "lon": -3.691288, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1760085723, "lat": 40.4333296, "lon": -3.6880434}, {"type": "node", "id": 1760085724, "lat": 40.4351519, "lon": -3.6889653, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085725, "lat": 40.4353511, "lon": -3.68863, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085726, "lat": 40.4355781, "lon": -3.688253}, {"type": "node", "id": 1760085727, "lat": 40.4356724, "lon": -3.6883349, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 1760085728, "lat": 40.4357637, "lon": -3.6884419}, {"type": "node", "id": 1760085729, "lat": 40.4358115, "lon": -3.6885619}, {"type": "node", "id": 1760085730, "lat": 40.4358454, "lon": -3.6887075}, {"type": "node", "id": 1760085731, "lat": 40.4358991, "lon": -3.6888038}, {"type": "node", "id": 1760085733, "lat": 40.4359759, "lon": -3.6888735}, {"type": "node", "id": 1760085734, "lat": 40.4360237, "lon": -3.6889177}, {"type": "node", "id": 1770052216, "lat": 40.4408494, "lon": -3.7181002, "tags": {"crossing": "traffic_signals", "crossing:markings": "dashes", "highway": "crossing"}}, {"type": "node", "id": 1770052218, "lat": 40.4410253, "lon": -3.7180384, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770052220, "lat": 40.4410668, "lon": -3.718215}, {"type": "node", "id": 1770052221, "lat": 40.4411156, "lon": -3.7138021}, {"type": "node", "id": 1770052222, "lat": 40.4411754, "lon": -3.7137137}, {"type": "node", "id": 1770052223, "lat": 40.4412285, "lon": -3.7136723}, {"type": "node", "id": 1770052224, "lat": 40.4412692, "lon": -3.7136592}, {"type": "node", "id": 1770052225, "lat": 40.4413074, "lon": -3.7163908, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770052226, "lat": 40.4414276, "lon": -3.7143583}, {"type": "node", "id": 1770052227, "lat": 40.4416612, "lon": -3.7143995, "tags": {"crossing": "uncontrolled", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1770052234, "lat": 40.4425305, "lon": -3.7153656}, {"type": "node", "id": 1770052237, "lat": 40.442841, "lon": -3.7190289, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770056846, "lat": 40.4413061, "lon": -3.7142252, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1770056847, "lat": 40.4413603, "lon": -3.7144576, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1770056848, "lat": 40.4415163, "lon": -3.7139173, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1789638279, "lat": 40.4261399, "lon": -3.7131086, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1789638280, "lat": 40.4261856, "lon": -3.713308, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1789638281, "lat": 40.4268448, "lon": -3.713592, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638282, "lat": 40.4268811, "lon": -3.7134974, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638283, "lat": 40.4270674, "lon": -3.7138881, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638284, "lat": 40.4271279, "lon": -3.7138442}, {"type": "node", "id": 1801212173, "lat": 40.4468514, "lon": -3.7058465, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2009", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1801212180, "lat": 40.4470035, "lon": -3.7072922}, {"type": "node", "id": 1801212182, "lat": 40.4470775, "lon": -3.7072987}, {"type": "node", "id": 1801212265, "lat": 40.4476792, "lon": -3.703861}, {"type": "node", "id": 1801212330, "lat": 40.4479641, "lon": -3.7080741}, {"type": "node", "id": 1801212350, "lat": 40.4482586, "lon": -3.7072538}, {"type": "node", "id": 1855027664, "lat": 40.4250234, "lon": -3.6967412}, {"type": "node", "id": 1855027673, "lat": 40.4253839, "lon": -3.6963927, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1855037740, "lat": 40.4257748, "lon": -3.6988177}, {"type": "node", "id": 1855037742, "lat": 40.4258729, "lon": -3.6986082}, {"type": "node", "id": 1869415375, "lat": 40.43593, "lon": -3.7196094}, {"type": "node", "id": 1900998783, "lat": 40.4200523, "lon": -3.6956435, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1900998825, "lat": 40.4218066, "lon": -3.6883085}, {"type": "node", "id": 1900998827, "lat": 40.421813, "lon": -3.6884581}, {"type": "node", "id": 1915012227, "lat": 40.4243467, "lon": -3.6905934, "tags": {"button_operated": "no", "check_date:crossing": "2022-04-16", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1915012228, "lat": 40.4243736, "lon": -3.6906824, "tags": {"button_operated": "no", "check_date:crossing": "2022-04-16", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1915012230, "lat": 40.4245099, "lon": -3.6901724, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1915012238, "lat": 40.4249786, "lon": -3.6909836}, {"type": "node", "id": 1915012248, "lat": 40.4253149, "lon": -3.6902173}, {"type": "node", "id": 1915012255, "lat": 40.4253073, "lon": -3.6906867}, {"type": "node", "id": 1915012257, "lat": 40.4253331, "lon": -3.6909583}, {"type": "node", "id": 1915012263, "lat": 40.4254723, "lon": -3.6902675}, {"type": "node", "id": 1924384857, "lat": 40.4322679, "lon": -3.7051741, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1924384860, "lat": 40.4391207, "lon": -3.7123496}, {"type": "node", "id": 1924384869, "lat": 40.4394473, "lon": -3.7073408, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1924384875, "lat": 40.4413685, "lon": -3.7067096}, {"type": "node", "id": 1924384878, "lat": 40.4414147, "lon": -3.7064272}, {"type": "node", "id": 1950481098, "lat": 40.4222064, "lon": -3.6818923, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1950481100, "lat": 40.4223573, "lon": -3.684563, "tags": {"crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 1950481101, "lat": 40.4230719, "lon": -3.6845013, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481116, "lat": 40.4251981, "lon": -3.6843675, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1950481121, "lat": 40.4252074, "lon": -3.6865902, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481123, "lat": 40.4252417, "lon": -3.6852238, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1950481125, "lat": 40.4253057, "lon": -3.686474, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481126, "lat": 40.4253744, "lon": -3.6841051, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481127, "lat": 40.4254552, "lon": -3.6865566, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481154, "lat": 40.4262118, "lon": -3.6815476, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1950481156, "lat": 40.4262595, "lon": -3.6825375, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481157, "lat": 40.4262722, "lon": -3.6827992, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481160, "lat": 40.4276024, "lon": -3.6839215, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481161, "lat": 40.4276472, "lon": -3.6826822, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481162, "lat": 40.4277114, "lon": -3.6841219, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481166, "lat": 40.4277595, "lon": -3.6849943, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481168, "lat": 40.4277717, "lon": -3.6852226, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481170, "lat": 40.427881, "lon": -3.6850752, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481187, "lat": 40.4289926, "lon": -3.6813336, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481189, "lat": 40.428994, "lon": -3.6838069, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1950481190, "lat": 40.4290367, "lon": -3.6823081, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481191, "lat": 40.4291278, "lon": -3.6859934, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481193, "lat": 40.4291656, "lon": -3.6850726, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481194, "lat": 40.4292696, "lon": -3.6849139, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481195, "lat": 40.4293093, "lon": -3.685963, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481197, "lat": 40.4293518, "lon": -3.6887863, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1963430772, "lat": 40.4263226, "lon": -3.6838444, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1963430773, "lat": 40.4266486, "lon": -3.6876159, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430774, "lat": 40.4278645, "lon": -3.6872992}, {"type": "node", "id": 1963430775, "lat": 40.4278688, "lon": -3.6873875}, {"type": "node", "id": 1963430776, "lat": 40.4278767, "lon": -3.6875468, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1963430777, "lat": 40.4280242, "lon": -3.6873605, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430778, "lat": 40.4294114, "lon": -3.6871163, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430779, "lat": 40.4302736, "lon": -3.6869475, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1963430780, "lat": 40.4304459, "lon": -3.6866992, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1963430782, "lat": 40.4306565, "lon": -3.6868741, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1969162855, "lat": 40.4348747, "lon": -3.6893241}, {"type": "node", "id": 1973690383, "lat": 40.4231192, "lon": -3.685513, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690384, "lat": 40.4232094, "lon": -3.6855996, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690386, "lat": 40.4237669, "lon": -3.6844042, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1973690387, "lat": 40.4237769, "lon": -3.6867815, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690388, "lat": 40.4238213, "lon": -3.6853802, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690389, "lat": 40.4238408, "lon": -3.6857299, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690390, "lat": 40.4238899, "lon": -3.6866088, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690391, "lat": 40.4239078, "lon": -3.6869306, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690392, "lat": 40.423961, "lon": -3.6879647, "tags": {"crossing": "zebra", "highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690393, "lat": 40.4240291, "lon": -3.6867468, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690395, "lat": 40.4281928, "lon": -3.6935752, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690396, "lat": 40.4293388, "lon": -3.6936181, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1981925767, "lat": 40.4251267, "lon": -3.6853848, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925770, "lat": 40.425396, "lon": -3.6853519, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925776, "lat": 40.426285, "lon": -3.6852573, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925778, "lat": 40.4263403, "lon": -3.684211, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1981925780, "lat": 40.4263428, "lon": -3.6864314, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1981925782, "lat": 40.4264609, "lon": -3.6865347, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925784, "lat": 40.4264916, "lon": -3.6852316, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925787, "lat": 40.4265484, "lon": -3.6863998, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925789, "lat": 40.429088, "lon": -3.6849411, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1993796499, "lat": 40.4498061, "lon": -3.7132538}, {"type": "node", "id": 2001290867, "lat": 40.4483, "lon": -3.7224838}, {"type": "node", "id": 2001290872, "lat": 40.4427643, "lon": -3.7226758}, {"type": "node", "id": 2004157540, "lat": 40.4447903, "lon": -3.7229657}, {"type": "node", "id": 2004157542, "lat": 40.4453305, "lon": -3.7253913}, {"type": "node", "id": 2004157573, "lat": 40.4435368, "lon": -3.7253093, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004157581, "lat": 40.4455466, "lon": -3.7232385, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2004157588, "lat": 40.4452768, "lon": -3.7254718}, {"type": "node", "id": 2004157595, "lat": 40.4442167, "lon": -3.7254359, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2004157610, "lat": 40.4429531, "lon": -3.7251977, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004157614, "lat": 40.4449782, "lon": -3.7254634}, {"type": "node", "id": 2004157616, "lat": 40.4448715, "lon": -3.7255369}, {"type": "node", "id": 2004177617, "lat": 40.4437068, "lon": -3.7253431}, {"type": "node", "id": 2004177693, "lat": 40.4440381, "lon": -3.7254048}, {"type": "node", "id": 2005647264, "lat": 40.4204947, "lon": -3.6872673, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2005647267, "lat": 40.4204173, "lon": -3.6872213}, {"type": "node", "id": 2005647280, "lat": 40.420379, "lon": -3.6871133}, {"type": "node", "id": 2025638795, "lat": 40.4293805, "lon": -3.7060346}, {"type": "node", "id": 2025638801, "lat": 40.4294927, "lon": -3.7061365}, {"type": "node", "id": 2025638803, "lat": 40.4296835, "lon": -3.7054422}, {"type": "node", "id": 2053099678, "lat": 40.4218921, "lon": -3.6924999, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2053099698, "lat": 40.4232852, "lon": -3.6918775, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2053142625, "lat": 40.4358824, "lon": -3.6893212}, {"type": "node", "id": 2053142650, "lat": 40.4279961, "lon": -3.690194, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2053142652, "lat": 40.4418153, "lon": -3.6918136}, {"type": "node", "id": 2053142667, "lat": 40.4380412, "lon": -3.691536, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2053142696, "lat": 40.4380656, "lon": -3.6915332, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2053142713, "lat": 40.4266084, "lon": -3.6906129, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2060837658, "lat": 40.4346976, "lon": -3.7002624, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2060837659, "lat": 40.4369279, "lon": -3.7011362}, {"type": "node", "id": 2095964621, "lat": 40.4415214, "lon": -3.704123}, {"type": "node", "id": 2095964625, "lat": 40.4392369, "lon": -3.7005715}, {"type": "node", "id": 2160260298, "lat": 40.4464772, "lon": -3.7076756}, {"type": "node", "id": 2160260301, "lat": 40.4468491, "lon": -3.7078474}, {"type": "node", "id": 2160260303, "lat": 40.4469019, "lon": -3.7078543, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2160260308, "lat": 40.4469177, "lon": -3.7078452}, {"type": "node", "id": 2160260312, "lat": 40.447117, "lon": -3.7079902, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2239998650, "lat": 40.4215718, "lon": -3.6956609}, {"type": "node", "id": 2277540507, "lat": 40.4425864, "lon": -3.7239489}, {"type": "node", "id": 2277540555, "lat": 40.4435071, "lon": -3.7227315}, {"type": "node", "id": 2277540701, "lat": 40.4480136, "lon": -3.7088148}, {"type": "node", "id": 2277540728, "lat": 40.4491069, "lon": -3.7159719, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 2277540734, "lat": 40.450281, "lon": -3.7104606}, {"type": "node", "id": 2277540736, "lat": 40.4504574, "lon": -3.7141148}, {"type": "node", "id": 2283339292, "lat": 40.4284894, "lon": -3.7095816}, {"type": "node", "id": 2283339295, "lat": 40.4299727, "lon": -3.7091641, "tags": {"highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 2283339296, "lat": 40.4298058, "lon": -3.7085176, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283339298, "lat": 40.4285451, "lon": -3.7096238}, {"type": "node", "id": 2283339299, "lat": 40.4285741, "lon": -3.7097179}, {"type": "node", "id": 2283339300, "lat": 40.4298947, "lon": -3.7084868, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283361212, "lat": 40.4384808, "lon": -3.7004993, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361217, "lat": 40.4340153, "lon": -3.7043512, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361221, "lat": 40.433868, "lon": -3.7026769, "tags": {"crossing": "zebra", "highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 2283361222, "lat": 40.4384607, "lon": -3.7000662, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361223, "lat": 40.4341806, "lon": -3.7018469, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 2283361226, "lat": 40.4375243, "lon": -3.6994186}, {"type": "node", "id": 2283361229, "lat": 40.4401416, "lon": -3.7009642, "tags": {"highway": "traffic_signals", "traffic_signals": "emergency"}}, {"type": "node", "id": 2283361231, "lat": 40.4395323, "lon": -3.7007012, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361233, "lat": 40.4387879, "lon": -3.7003762, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361235, "lat": 40.4374427, "lon": -3.6998003}, {"type": "node", "id": 2283361238, "lat": 40.4396689, "lon": -3.7006166, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361249, "lat": 40.4383365, "lon": -3.7001832, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361250, "lat": 40.4405056, "lon": -3.7011142, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283386633, "lat": 40.4502789, "lon": -3.7034758, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283386640, "lat": 40.4490978, "lon": -3.703649, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 2321219900, "lat": 40.439079, "lon": -3.6891487}, {"type": "node", "id": 2331169534, "lat": 40.4251901, "lon": -3.7042093}, {"type": "node", "id": 2331169552, "lat": 40.4252905, "lon": -3.7041726}, {"type": "node", "id": 2331169562, "lat": 40.4253615, "lon": -3.7036699}, {"type": "node", "id": 2331169567, "lat": 40.4253551, "lon": -3.7041761}, {"type": "node", "id": 2331169575, "lat": 40.4254153, "lon": -3.7042025}, {"type": "node", "id": 2331169580, "lat": 40.4254686, "lon": -3.704161}, {"type": "node", "id": 2351032610, "lat": 40.4311477, "lon": -3.6868256}, {"type": "node", "id": 2351032614, "lat": 40.4330314, "lon": -3.6861607}, {"type": "node", "id": 2351032617, "lat": 40.4361317, "lon": -3.6832101, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2351032620, "lat": 40.4367605, "lon": -3.6830832}, {"type": "node", "id": 2377018002, "lat": 40.4251068, "lon": -3.68791, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 2436859012, "lat": 40.4501273, "lon": -3.7093379, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2436859019, "lat": 40.4485315, "lon": -3.7098638}, {"type": "node", "id": 2436859026, "lat": 40.4475849, "lon": -3.7107456, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859052, "lat": 40.4474555, "lon": -3.710688, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859054, "lat": 40.4508618, "lon": -3.7095379, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2436859060, "lat": 40.4475004, "lon": -3.7107822, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859061, "lat": 40.4475461, "lon": -3.7106131, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859063, "lat": 40.4476493, "lon": -3.7087976}, {"type": "node", "id": 2436859064, "lat": 40.4502207, "lon": -3.7094981, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2448104588, "lat": 40.4416699, "lon": -3.7209832}, {"type": "node", "id": 2448104589, "lat": 40.4403663, "lon": -3.7212797}, {"type": "node", "id": 2448104592, "lat": 40.4418081, "lon": -3.720679}, {"type": "node", "id": 2448104602, "lat": 40.4417305, "lon": -3.7208453, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2448104605, "lat": 40.4416495, "lon": -3.7210317}, {"type": "node", "id": 2448104609, "lat": 40.4404127, "lon": -3.7213193}, {"type": "node", "id": 2453487277, "lat": 40.4394263, "lon": -3.7204873, "tags": {"check_date:crossing": "2023-06-11", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2454261067, "lat": 40.439348, "lon": -3.7204215}, {"type": "node", "id": 2462922518, "lat": 40.4397163, "lon": -3.7185913}, {"type": "node", "id": 2462922533, "lat": 40.4397155, "lon": -3.7182652}, {"type": "node", "id": 2466305329, "lat": 40.4404471, "lon": -3.7155504, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466305332, "lat": 40.4406616, "lon": -3.7157906, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2466312888, "lat": 40.4428686, "lon": -3.7122245, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312889, "lat": 40.4423951, "lon": -3.7126875}, {"type": "node", "id": 2466312890, "lat": 40.4426442, "lon": -3.7131165, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2466312892, "lat": 40.4457734, "lon": -3.7104851}, {"type": "node", "id": 2466312893, "lat": 40.444329, "lon": -3.7098345}, {"type": "node", "id": 2466312895, "lat": 40.4462897, "lon": -3.7067003}, {"type": "node", "id": 2466312896, "lat": 40.4424237, "lon": -3.7127782}, {"type": "node", "id": 2466312897, "lat": 40.4461856, "lon": -3.7066386}, {"type": "node", "id": 2466312898, "lat": 40.4424011, "lon": -3.7129132, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312899, "lat": 40.4438899, "lon": -3.7107067, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312901, "lat": 40.4464486, "lon": -3.7070226}, {"type": "node", "id": 2466312902, "lat": 40.4457119, "lon": -3.7076238, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2466312903, "lat": 40.4426256, "lon": -3.7129016}, {"type": "node", "id": 2466312904, "lat": 40.4423481, "lon": -3.7126124}, {"type": "node", "id": 2466312905, "lat": 40.4460244, "lon": -3.7066493}, {"type": "node", "id": 2466312906, "lat": 40.4423021, "lon": -3.7125737, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689585, "lat": 40.4479543, "lon": -3.6955893, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689592, "lat": 40.4420378, "lon": -3.6859235, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2466689596, "lat": 40.4460106, "lon": -3.6880226}, {"type": "node", "id": 2466689601, "lat": 40.45081, "lon": -3.6952874, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2466689608, "lat": 40.4509586, "lon": -3.6951181, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689611, "lat": 40.4460291, "lon": -3.6883759}, {"type": "node", "id": 2466689613, "lat": 40.4418339, "lon": -3.6834663, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466689617, "lat": 40.4431794, "lon": -3.6839083}, {"type": "node", "id": 2466689631, "lat": 40.4458439, "lon": -3.6874739, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466689651, "lat": 40.448039, "lon": -3.6953927, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2478280851, "lat": 40.436698, "lon": -3.7214385}, {"type": "node", "id": 2478280862, "lat": 40.4364732, "lon": -3.7208157}, {"type": "node", "id": 2478280868, "lat": 40.4365143, "lon": -3.7209184}, {"type": "node", "id": 2478280869, "lat": 40.436745, "lon": -3.7215698}, {"type": "node", "id": 2478280870, "lat": 40.4367884, "lon": -3.7216798}, {"type": "node", "id": 2478280871, "lat": 40.436545, "lon": -3.7210008}, {"type": "node", "id": 2479576398, "lat": 40.43406, "lon": -3.7179121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2480627225, "lat": 40.4363949, "lon": -3.7215972}, {"type": "node", "id": 2480627226, "lat": 40.4365624, "lon": -3.7217721}, {"type": "node", "id": 2480627227, "lat": 40.4361077, "lon": -3.7211876}, {"type": "node", "id": 2480627228, "lat": 40.4365232, "lon": -3.7218175}, {"type": "node", "id": 2480629206, "lat": 40.4340253, "lon": -3.7188251}, {"type": "node", "id": 2480629208, "lat": 40.4340387, "lon": -3.7187159, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2493553179, "lat": 40.433124, "lon": -3.7054438, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 2493553189, "lat": 40.4327368, "lon": -3.707034}, {"type": "node", "id": 2493553207, "lat": 40.4325875, "lon": -3.7070984, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493553208, "lat": 40.4317647, "lon": -3.7073036}, {"type": "node", "id": 2493553209, "lat": 40.4327764, "lon": -3.7071566}, {"type": "node", "id": 2493553212, "lat": 40.4328071, "lon": -3.7071452}, {"type": "node", "id": 2493553217, "lat": 40.4328165, "lon": -3.7070322, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 2493553219, "lat": 40.4325922, "lon": -3.7071838}, {"type": "node", "id": 2493553221, "lat": 40.4325834, "lon": -3.7070231}, {"type": "node", "id": 2493553247, "lat": 40.4327821, "lon": -3.7070111}, {"type": "node", "id": 2493553251, "lat": 40.4327461, "lon": -3.7071439, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 2493613389, "lat": 40.4495608, "lon": -3.7099815}, {"type": "node", "id": 2493613399, "lat": 40.4496469, "lon": -3.7100161, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2493627463, "lat": 40.4470367, "lon": -3.7104906, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2493633627, "lat": 40.4428783, "lon": -3.7125269, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2493633628, "lat": 40.4461462, "lon": -3.7104641, "tags": {"traffic_calming": "hump"}}, {"type": "node", "id": 2493633629, "lat": 40.4466267, "lon": -3.7104386, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493963663, "lat": 40.4501086, "lon": -3.6887637}, {"type": "node", "id": 2493963671, "lat": 40.4506768, "lon": -3.6886891}, {"type": "node", "id": 2493963716, "lat": 40.4519361, "lon": -3.6885691}, {"type": "node", "id": 2506473199, "lat": 40.4205607, "lon": -3.6886534, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 2506590865, "lat": 40.4460709, "lon": -3.6877096}, {"type": "node", "id": 2506590867, "lat": 40.4461188, "lon": -3.6875235}, {"type": "node", "id": 2508927633, "lat": 40.4201066, "lon": -3.6926812, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2525814068, "lat": 40.4342404, "lon": -3.7144104, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2525814070, "lat": 40.4352793, "lon": -3.7143403, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2525814071, "lat": 40.4377057, "lon": -3.7142354, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814073, "lat": 40.4353658, "lon": -3.7142282, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2525814085, "lat": 40.4365186, "lon": -3.7142617, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2525814094, "lat": 40.4342891, "lon": -3.7144073, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814117, "lat": 40.4330561, "lon": -3.7145423, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814124, "lat": 40.4374149, "lon": -3.7142054}, {"type": "node", "id": 2525814138, "lat": 40.4364143, "lon": -3.7142698, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814141, "lat": 40.4353222, "lon": -3.7143382, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2528643105, "lat": 40.4460617, "lon": -3.6909921}, {"type": "node", "id": 2533387846, "lat": 40.4524508, "lon": -3.69939, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 2533387853, "lat": 40.4522562, "lon": -3.6965601, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2533399084, "lat": 40.4459957, "lon": -3.6885686}, {"type": "node", "id": 2551347562, "lat": 40.4283951, "lon": -3.7133102, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2584038761, "lat": 40.4278867, "lon": -3.7095194}, {"type": "node", "id": 2584038764, "lat": 40.4273472, "lon": -3.7094613, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2584038766, "lat": 40.4273837, "lon": -3.7084846}, {"type": "node", "id": 2584446944, "lat": 40.4202822, "lon": -3.6922011, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2615210656, "lat": 40.4417295, "lon": -3.6960163}, {"type": "node", "id": 2615463410, "lat": 40.4201673, "lon": -3.6891606}, {"type": "node", "id": 2623662123, "lat": 40.451648, "lon": -3.6906635, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 2641385220, "lat": 40.4475949, "lon": -3.6914356}, {"type": "node", "id": 2641385221, "lat": 40.4468218, "lon": -3.6913165}, {"type": "node", "id": 2661689879, "lat": 40.4345018, "lon": -3.7075499}, {"type": "node", "id": 2661689880, "lat": 40.4338999, "lon": -3.7076514}, {"type": "node", "id": 2671594369, "lat": 40.4471697, "lon": -3.6913253}, {"type": "node", "id": 2671594370, "lat": 40.4473229, "lon": -3.6912219}, {"type": "node", "id": 2673302088, "lat": 40.4392245, "lon": -3.7158884, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2673302089, "lat": 40.4397654, "lon": -3.7168077, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2679640383, "lat": 40.4355118, "lon": -3.6866882, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2679640384, "lat": 40.4355174, "lon": -3.6865882}, {"type": "node", "id": 2679640385, "lat": 40.4356406, "lon": -3.6864934, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2679640387, "lat": 40.4357104, "lon": -3.6870954}, {"type": "node", "id": 2679640389, "lat": 40.4357732, "lon": -3.6869339}, {"type": "node", "id": 2679640392, "lat": 40.4361055, "lon": -3.6875356}, {"type": "node", "id": 2679640393, "lat": 40.4361237, "lon": -3.6872632}, {"type": "node", "id": 2679640394, "lat": 40.4361468, "lon": -3.6876108}, {"type": "node", "id": 2679640395, "lat": 40.4361683, "lon": -3.6873983}, {"type": "node", "id": 2679640396, "lat": 40.436173, "lon": -3.687499}, {"type": "node", "id": 2679640397, "lat": 40.4362629, "lon": -3.687559}, {"type": "node", "id": 2685986776, "lat": 40.4275891, "lon": -3.6958572}, {"type": "node", "id": 2685986777, "lat": 40.4276541, "lon": -3.6955838}, {"type": "node", "id": 2685986817, "lat": 40.4278262, "lon": -3.69562}, {"type": "node", "id": 2685986828, "lat": 40.4278333, "lon": -3.6961661}, {"type": "node", "id": 2685986907, "lat": 40.4278957, "lon": -3.6957316}, {"type": "node", "id": 2685986909, "lat": 40.4279343, "lon": -3.6958939}, {"type": "node", "id": 2685986911, "lat": 40.4279486, "lon": -3.696004}, {"type": "node", "id": 2685986913, "lat": 40.4280475, "lon": -3.6957856}, {"type": "node", "id": 2687649521, "lat": 40.4368982, "lon": -3.7028907}, {"type": "node", "id": 2687649522, "lat": 40.4371162, "lon": -3.7025713}, {"type": "node", "id": 2687649523, "lat": 40.4371571, "lon": -3.7028931}, {"type": "node", "id": 2687649524, "lat": 40.4372836, "lon": -3.702728, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2688019415, "lat": 40.4385012, "lon": -3.6842641}, {"type": "node", "id": 2688019416, "lat": 40.4380238, "lon": -3.6849579}, {"type": "node", "id": 2688019417, "lat": 40.43772, "lon": -3.6846888}, {"type": "node", "id": 2688019418, "lat": 40.4376995, "lon": -3.6841934}, {"type": "node", "id": 2688019419, "lat": 40.4376826, "lon": -3.6838412}, {"type": "node", "id": 2688019420, "lat": 40.4377288, "lon": -3.6849337}, {"type": "node", "id": 2688019425, "lat": 40.4382272, "lon": -3.6845402}, {"type": "node", "id": 2688019426, "lat": 40.4383131, "lon": -3.6843814}, {"type": "node", "id": 2688019427, "lat": 40.438822, "lon": -3.6834699}, {"type": "node", "id": 2688019428, "lat": 40.4388906, "lon": -3.683273, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2688334675, "lat": 40.4282543, "lon": -3.6950398}, {"type": "node", "id": 2759786002, "lat": 40.4513437, "lon": -3.7192389}, {"type": "node", "id": 2823682506, "lat": 40.4359355, "lon": -3.7197745}, {"type": "node", "id": 2827804125, "lat": 40.4253617, "lon": -3.6881034, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 2846389423, "lat": 40.4391427, "lon": -3.6873972}, {"type": "node", "id": 2846389424, "lat": 40.4392676, "lon": -3.6877229}, {"type": "node", "id": 2887253640, "lat": 40.4499607, "lon": -3.7033076, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2900420502, "lat": 40.4446995, "lon": -3.7209668}, {"type": "node", "id": 2900420510, "lat": 40.4440006, "lon": -3.721248}, {"type": "node", "id": 2910133816, "lat": 40.4244942, "lon": -3.6954885}, {"type": "node", "id": 2915208795, "lat": 40.4304308, "lon": -3.7076321}, {"type": "node", "id": 2915209114, "lat": 40.4315257, "lon": -3.7069571}, {"type": "node", "id": 2915209115, "lat": 40.4316785, "lon": -3.7071183}, {"type": "node", "id": 2915209116, "lat": 40.4316853, "lon": -3.7072062, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2915209117, "lat": 40.4316874, "lon": -3.7071142}, {"type": "node", "id": 2915209118, "lat": 40.4316949, "lon": -3.7072961}, {"type": "node", "id": 2915247995, "lat": 40.4308557, "lon": -3.7053487}, {"type": "node", "id": 2959128481, "lat": 40.4235037, "lon": -3.6928351, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 2972134285, "lat": 40.4517156, "lon": -3.7032616, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972168636, "lat": 40.4461971, "lon": -3.7039657}, {"type": "node", "id": 2972891887, "lat": 40.4418854, "lon": -3.7051673}, {"type": "node", "id": 2972891893, "lat": 40.4413313, "lon": -3.7063527, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972891919, "lat": 40.4393605, "lon": -3.704192}, {"type": "node", "id": 2972892240, "lat": 40.4450341, "lon": -3.7040109, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2972892243, "lat": 40.4424774, "lon": -3.7052024, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "source": "Bing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972892248, "lat": 40.4419323, "lon": -3.7050427, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972892276, "lat": 40.4428043, "lon": -3.7051773, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "source": "Bing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972941176, "lat": 40.4348977, "lon": -3.7044865, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941183, "lat": 40.4386637, "lon": -3.7039921, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941184, "lat": 40.4371559, "lon": -3.7040819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941210, "lat": 40.4360232, "lon": -3.7041118, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2972941337, "lat": 40.4361406, "lon": -3.7042853, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941350, "lat": 40.4387929, "lon": -3.7042104, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941369, "lat": 40.4348742, "lon": -3.7041701, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941375, "lat": 40.4386755, "lon": -3.7043533, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941381, "lat": 40.4350089, "lon": -3.7043217, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972941385, "lat": 40.4385479, "lon": -3.7042168, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941408, "lat": 40.4376542, "lon": -3.7043946, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2972941418, "lat": 40.4360298, "lon": -3.7044466, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2972993211, "lat": 40.4322978, "lon": -3.7051837, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972993213, "lat": 40.4320041, "lon": -3.7049673}, {"type": "node", "id": 2972993217, "lat": 40.432254, "lon": -3.7048378}, {"type": "node", "id": 2972993222, "lat": 40.4334982, "lon": -3.70474}, {"type": "node", "id": 2972993223, "lat": 40.4337966, "lon": -3.7041589}, {"type": "node", "id": 2972993226, "lat": 40.4321488, "lon": -3.7050873}, {"type": "node", "id": 2972993228, "lat": 40.4335982, "lon": -3.70399}, {"type": "node", "id": 2972993229, "lat": 40.4316088, "lon": -3.7051651, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 2972993230, "lat": 40.4337983, "lon": -3.7043186, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 2972993231, "lat": 40.4321146, "lon": -3.7049801, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2972993232, "lat": 40.4314512, "lon": -3.7051286}, {"type": "node", "id": 2972995634, "lat": 40.4320718, "lon": -3.7050178}, {"type": "node", "id": 2972995635, "lat": 40.4336746, "lon": -3.7044824}, {"type": "node", "id": 2972995636, "lat": 40.432118, "lon": -3.7048401}, {"type": "node", "id": 2972995638, "lat": 40.429962, "lon": -3.7057288}, {"type": "node", "id": 2972995640, "lat": 40.4299501, "lon": -3.7056327}, {"type": "node", "id": 2972995642, "lat": 40.4322728, "lon": -3.7048303, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972995643, "lat": 40.4300793, "lon": -3.7056259, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972995644, "lat": 40.4314891, "lon": -3.7062981}, {"type": "node", "id": 2972995650, "lat": 40.4337281, "lon": -3.7044465}, {"type": "node", "id": 2972995652, "lat": 40.4339612, "lon": -3.7043528}, {"type": "node", "id": 2972995656, "lat": 40.4319055, "lon": -3.7051314}, {"type": "node", "id": 2973015547, "lat": 40.429315, "lon": -3.7058554, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2973015551, "lat": 40.4280373, "lon": -3.7061114, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2973015552, "lat": 40.4292147, "lon": -3.7059559, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2973015554, "lat": 40.4283683, "lon": -3.7063249, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2973015555, "lat": 40.4292109, "lon": -3.7059153, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2973127101, "lat": 40.4280597, "lon": -3.7144792, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3033655161, "lat": 40.4314695, "lon": -3.7167919, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3033655162, "lat": 40.4320046, "lon": -3.7171741, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3050556981, "lat": 40.4266876, "lon": -3.701702}, {"type": "node", "id": 3051148235, "lat": 40.4391685, "lon": -3.6884851}, {"type": "node", "id": 3051152634, "lat": 40.4391789, "lon": -3.6884223}, {"type": "node", "id": 3068189415, "lat": 40.4518534, "lon": -3.6911904, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 3068279548, "lat": 40.4198363, "lon": -3.6926473, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3077638487, "lat": 40.4429961, "lon": -3.6948261}, {"type": "node", "id": 3077638494, "lat": 40.4489192, "lon": -3.6894053}, {"type": "node", "id": 3078183623, "lat": 40.4495038, "lon": -3.6880936, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3078426882, "lat": 40.4426267, "lon": -3.690157}, {"type": "node", "id": 3078426883, "lat": 40.4427138, "lon": -3.6902203}, {"type": "node", "id": 3078426884, "lat": 40.4429593, "lon": -3.6902945}, {"type": "node", "id": 3078426885, "lat": 40.4431787, "lon": -3.6902131}, {"type": "node", "id": 3078426886, "lat": 40.4432597, "lon": -3.6882462, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3078426887, "lat": 40.4434876, "lon": -3.6883316, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3096525841, "lat": 40.4334154, "lon": -3.7055542, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3096525842, "lat": 40.4334228, "lon": -3.7042223}, {"type": "node", "id": 3096525843, "lat": 40.433461, "lon": -3.7048128, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3096525844, "lat": 40.4334619, "lon": -3.7043959}, {"type": "node", "id": 3096525845, "lat": 40.4334915, "lon": -3.7040476}, {"type": "node", "id": 3096525856, "lat": 40.4336033, "lon": -3.7039515}, {"type": "node", "id": 3096525871, "lat": 40.4337027, "lon": -3.7039647}, {"type": "node", "id": 3096525872, "lat": 40.4337172, "lon": -3.7057332}, {"type": "node", "id": 3096525873, "lat": 40.4337674, "lon": -3.7040877}, {"type": "node", "id": 3096525874, "lat": 40.4337728, "lon": -3.7056086, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3096525875, "lat": 40.4338073, "lon": -3.7042386}, {"type": "node", "id": 3096525888, "lat": 40.4386478, "lon": -3.7082895, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3096525891, "lat": 40.4386784, "lon": -3.704422}, {"type": "node", "id": 3096525894, "lat": 40.4387136, "lon": -3.7057379}, {"type": "node", "id": 3096525895, "lat": 40.4387503, "lon": -3.7067615, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3096525897, "lat": 40.438803, "lon": -3.7083796}, {"type": "node", "id": 3096525900, "lat": 40.4388569, "lon": -3.7097011}, {"type": "node", "id": 3096525913, "lat": 40.4391023, "lon": -3.7099237}, {"type": "node", "id": 3108256672, "lat": 40.4459064, "lon": -3.7274248, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3135450430, "lat": 40.4461059, "lon": -3.6884419}, {"type": "node", "id": 3135450431, "lat": 40.4476472, "lon": -3.6915254}, {"type": "node", "id": 3135450432, "lat": 40.4461627, "lon": -3.6885783}, {"type": "node", "id": 3135960742, "lat": 40.4491992, "lon": -3.6903782, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3136812043, "lat": 40.4389571, "lon": -3.7181784}, {"type": "node", "id": 3136812045, "lat": 40.4388146, "lon": -3.7180479}, {"type": "node", "id": 3136816570, "lat": 40.4366511, "lon": -3.7165453, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3136816577, "lat": 40.4365387, "lon": -3.7165535, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3136816605, "lat": 40.4362058, "lon": -3.7165761}, {"type": "node", "id": 3144095498, "lat": 40.4262726, "lon": -3.6989076}, {"type": "node", "id": 3144095503, "lat": 40.4267141, "lon": -3.6981874}, {"type": "node", "id": 3144095506, "lat": 40.4269121, "lon": -3.6993806}, {"type": "node", "id": 3161163797, "lat": 40.4227273, "lon": -3.6967738, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 3161269011, "lat": 40.4236891, "lon": -3.6965117}, {"type": "node", "id": 3162003417, "lat": 40.449379, "lon": -3.7168212, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3163832986, "lat": 40.4239401, "lon": -3.6997382}, {"type": "node", "id": 3167086912, "lat": 40.4416944, "lon": -3.6951044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3205998419, "lat": 40.4360733, "lon": -3.682011, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3212178930, "lat": 40.435338, "lon": -3.7154734, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3213799205, "lat": 40.4443841, "lon": -3.7122873, "tags": {"access": "permit", "barrier": "gate", "bicycle": "permit", "foot": "permit", "motor_vehicle": "permit"}}, {"type": "node", "id": 3213799206, "lat": 40.4443896, "lon": -3.7124067}, {"type": "node", "id": 3213799225, "lat": 40.4446888, "lon": -3.7107263, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3213799228, "lat": 40.4447694, "lon": -3.7122586, "tags": {"access": "permit", "barrier": "gate", "bicycle": "permit", "foot": "permit", "motor_vehicle": "permit"}}, {"type": "node", "id": 3216764227, "lat": 40.4378745, "lon": -3.6850124, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3216764228, "lat": 40.4379008, "lon": -3.6852885, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3216764229, "lat": 40.4378059, "lon": -3.6850024, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3216764230, "lat": 40.4376768, "lon": -3.6850744, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3221366172, "lat": 40.4495534, "lon": -3.6952417}, {"type": "node", "id": 3221366173, "lat": 40.4495645, "lon": -3.6966304}, {"type": "node", "id": 3221366174, "lat": 40.4495879, "lon": -3.6959223}, {"type": "node", "id": 3221366175, "lat": 40.4496309, "lon": -3.6966175}, {"type": "node", "id": 3223006054, "lat": 40.4448382, "lon": -3.725545}, {"type": "node", "id": 3224859919, "lat": 40.446339, "lon": -3.7197837}, {"type": "node", "id": 3224866049, "lat": 40.4480074, "lon": -3.7247506}, {"type": "node", "id": 3232907774, "lat": 40.442029, "lon": -3.7248551}, {"type": "node", "id": 3232907775, "lat": 40.4420651, "lon": -3.7248212}, {"type": "node", "id": 3232907776, "lat": 40.4421539, "lon": -3.7247886}, {"type": "node", "id": 3232907777, "lat": 40.4423336, "lon": -3.7248171}, {"type": "node", "id": 3232907778, "lat": 40.4424802, "lon": -3.7249094}, {"type": "node", "id": 3232907779, "lat": 40.4425165, "lon": -3.7245983, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907780, "lat": 40.4425887, "lon": -3.7249899, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907781, "lat": 40.4426211, "lon": -3.7235919, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907782, "lat": 40.4427369, "lon": -3.7227217}, {"type": "node", "id": 3232907783, "lat": 40.442789, "lon": -3.7250613}, {"type": "node", "id": 3232907784, "lat": 40.4428159, "lon": -3.7226415}, {"type": "node", "id": 3233005268, "lat": 40.4467382, "lon": -3.7244937}, {"type": "node", "id": 3233005269, "lat": 40.4468584, "lon": -3.7245898}, {"type": "node", "id": 3233009661, "lat": 40.4462904, "lon": -3.7249885}, {"type": "node", "id": 3233009662, "lat": 40.4464722, "lon": -3.7248833}, {"type": "node", "id": 3233009663, "lat": 40.4465251, "lon": -3.7248361}, {"type": "node", "id": 3233009664, "lat": 40.4466036, "lon": -3.724769}, {"type": "node", "id": 3233009665, "lat": 40.4466376, "lon": -3.7245129}, {"type": "node", "id": 3233009666, "lat": 40.4466494, "lon": -3.724561}, {"type": "node", "id": 3233009667, "lat": 40.4466494, "lon": -3.7246951}, {"type": "node", "id": 3233009668, "lat": 40.4466663, "lon": -3.7244613, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 3233009669, "lat": 40.4466647, "lon": -3.7245748, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3233009670, "lat": 40.446669, "lon": -3.7245988}, {"type": "node", "id": 3233009671, "lat": 40.4466703, "lon": -3.7246298}, {"type": "node", "id": 3233009672, "lat": 40.4466761, "lon": -3.7243794}, {"type": "node", "id": 3233009673, "lat": 40.4467645, "lon": -3.724616}, {"type": "node", "id": 3235382373, "lat": 40.4206012, "lon": -3.6886452, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3247246409, "lat": 40.4439154, "lon": -3.689793}, {"type": "node", "id": 3247246412, "lat": 40.4441278, "lon": -3.6876958}, {"type": "node", "id": 3247246413, "lat": 40.4441627, "lon": -3.6883931}, {"type": "node", "id": 3247246414, "lat": 40.4442233, "lon": -3.6897674}, {"type": "node", "id": 3247246418, "lat": 40.4445485, "lon": -3.6897416}, {"type": "node", "id": 3247246420, "lat": 40.4449145, "lon": -3.6897126}, {"type": "node", "id": 3253320370, "lat": 40.4349612, "lon": -3.7197505}, {"type": "node", "id": 3253320371, "lat": 40.4349689, "lon": -3.719821}, {"type": "node", "id": 3253320372, "lat": 40.4349866, "lon": -3.7196792}, {"type": "node", "id": 3253320373, "lat": 40.4350081, "lon": -3.7196517}, {"type": "node", "id": 3253320374, "lat": 40.4350324, "lon": -3.7196454}, {"type": "node", "id": 3253320375, "lat": 40.4351667, "lon": -3.7196847}, {"type": "node", "id": 3253320376, "lat": 40.4353165, "lon": -3.719775}, {"type": "node", "id": 3253942876, "lat": 40.432429, "lon": -3.7194122}, {"type": "node", "id": 3253942905, "lat": 40.4339663, "lon": -3.7218327, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3257568695, "lat": 40.4307758, "lon": -3.7157862, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258762560, "lat": 40.4394514, "lon": -3.6977111, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766761, "lat": 40.4395226, "lon": -3.6975793, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766762, "lat": 40.4395264, "lon": -3.6976595, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3258766763, "lat": 40.439533, "lon": -3.6977957, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766765, "lat": 40.4396088, "lon": -3.6976978, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766775, "lat": 40.4405567, "lon": -3.6976177, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3258766776, "lat": 40.4406214, "lon": -3.6974977, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258766777, "lat": 40.4406279, "lon": -3.6976377, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3258766778, "lat": 40.4406311, "lon": -3.6977064, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3258766779, "lat": 40.4407191, "lon": -3.697604, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258766781, "lat": 40.441795, "lon": -3.6973617, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3258766782, "lat": 40.4419177, "lon": -3.6975027, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3258766783, "lat": 40.4430463, "lon": -3.6974073, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3267220581, "lat": 40.4258437, "lon": -3.7120014, "tags": {"crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713820, "lat": 40.433042, "lon": -3.6834727, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713822, "lat": 40.4337767, "lon": -3.6834103, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3268713823, "lat": 40.4338117, "lon": -3.681945, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713824, "lat": 40.4338232, "lon": -3.6821748, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713825, "lat": 40.4338761, "lon": -3.6832321, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3268713826, "lat": 40.4338936, "lon": -3.6835862, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713828, "lat": 40.4347708, "lon": -3.6833258, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3268713829, "lat": 40.4348649, "lon": -3.6844255, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713830, "lat": 40.4349206, "lon": -3.6854394, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713831, "lat": 40.4349309, "lon": -3.6830656, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713832, "lat": 40.4349376, "lon": -3.6865602, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713833, "lat": 40.4349528, "lon": -3.6835467, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3268713834, "lat": 40.4349903, "lon": -3.6843142, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713836, "lat": 40.4350027, "lon": -3.6845665, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713837, "lat": 40.4350388, "lon": -3.6853049, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713838, "lat": 40.4350509, "lon": -3.6855524, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713839, "lat": 40.4350981, "lon": -3.6864659}, {"type": "node", "id": 3268713840, "lat": 40.435127, "lon": -3.6832955, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713841, "lat": 40.435142, "lon": -3.6844024, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713843, "lat": 40.4351889, "lon": -3.685418, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713844, "lat": 40.4352997, "lon": -3.6867143, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713845, "lat": 40.4360747, "lon": -3.683215, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3268713846, "lat": 40.4361421, "lon": -3.6834238, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3268713847, "lat": 40.4363312, "lon": -3.6831632}, {"type": "node", "id": 3274917092, "lat": 40.4460817, "lon": -3.6866234}, {"type": "node", "id": 3274917101, "lat": 40.4466257, "lon": -3.6979215}, {"type": "node", "id": 3275193116, "lat": 40.4479318, "lon": -3.6837354}, {"type": "node", "id": 3275193117, "lat": 40.4479369, "lon": -3.6860741}, {"type": "node", "id": 3293613522, "lat": 40.4339531, "lon": -3.6947779}, {"type": "node", "id": 3321767697, "lat": 40.450506, "lon": -3.7113241}, {"type": "node", "id": 3321767702, "lat": 40.4509237, "lon": -3.710871, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3321767704, "lat": 40.4513913, "lon": -3.7111698}, {"type": "node", "id": 3323813668, "lat": 40.4196992, "lon": -3.6926831}, {"type": "node", "id": 3323813669, "lat": 40.4226714, "lon": -3.6883249, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3323948845, "lat": 40.425087, "lon": -3.6902485}, {"type": "node", "id": 3323948846, "lat": 40.425234, "lon": -3.6902106}, {"type": "node", "id": 3323948847, "lat": 40.4252373, "lon": -3.6907128}, {"type": "node", "id": 3323948848, "lat": 40.4253667, "lon": -3.6906621}, {"type": "node", "id": 3323948849, "lat": 40.4254183, "lon": -3.6899007}, {"type": "node", "id": 3347872569, "lat": 40.4483338, "lon": -3.695367}, {"type": "node", "id": 3347872584, "lat": 40.4489706, "lon": -3.6953101}, {"type": "node", "id": 3347875437, "lat": 40.4495321, "lon": -3.6952601}, {"type": "node", "id": 3357109504, "lat": 40.4446808, "lon": -3.7064054}, {"type": "node", "id": 3357109510, "lat": 40.4452159, "lon": -3.7067182}, {"type": "node", "id": 3390533481, "lat": 40.4482341, "lon": -3.6856916}, {"type": "node", "id": 3418035816, "lat": 40.4212459, "lon": -3.6917927}, {"type": "node", "id": 3418035823, "lat": 40.4221494, "lon": -3.6913773, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035825, "lat": 40.4229153, "lon": -3.6910412, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035826, "lat": 40.4230015, "lon": -3.6913459, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035827, "lat": 40.4230765, "lon": -3.6907611, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418035829, "lat": 40.4231245, "lon": -3.69183}, {"type": "node", "id": 3418035839, "lat": 40.4244612, "lon": -3.6900022}, {"type": "node", "id": 3418035841, "lat": 40.4252051, "lon": -3.6909762}, {"type": "node", "id": 3418035844, "lat": 40.4254583, "lon": -3.6908526}, {"type": "node", "id": 3418035846, "lat": 40.4256392, "lon": -3.6899212}, {"type": "node", "id": 3418127828, "lat": 40.4281057, "lon": -3.6958565}, {"type": "node", "id": 3418127829, "lat": 40.4281679, "lon": -3.6958238, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127830, "lat": 40.4281731, "lon": -3.6957843, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127832, "lat": 40.4297164, "lon": -3.6962997, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418127834, "lat": 40.4321173, "lon": -3.6975088, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127835, "lat": 40.4322856, "lon": -3.6974719, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127836, "lat": 40.4323416, "lon": -3.6979312, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127837, "lat": 40.4323488, "lon": -3.6978915, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418127838, "lat": 40.432407, "lon": -3.6973722, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127839, "lat": 40.4325799, "lon": -3.6977661}, {"type": "node", "id": 3418127840, "lat": 40.4326345, "lon": -3.6966548}, {"type": "node", "id": 3418222082, "lat": 40.4267903, "lon": -3.6997368, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 3418222088, "lat": 40.4285234, "lon": -3.6899592}, {"type": "node", "id": 3419296693, "lat": 40.4378525, "lon": -3.6860586, "tags": {"highway": "traffic_signals", "name": "Mar\u00eda de Molina- Serrano"}}, {"type": "node", "id": 3424799415, "lat": 40.4235509, "lon": -3.6930418, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424799419, "lat": 40.4238946, "lon": -3.6946492}, {"type": "node", "id": 3424799420, "lat": 40.4239101, "lon": -3.6945149}, {"type": "node", "id": 3424799422, "lat": 40.4239365, "lon": -3.6943794}, {"type": "node", "id": 3424799423, "lat": 40.4239538, "lon": -3.6948045}, {"type": "node", "id": 3424799424, "lat": 40.4239406, "lon": -3.694559, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3424799427, "lat": 40.4239947, "lon": -3.6948221, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3424799429, "lat": 40.4240164, "lon": -3.6949119}, {"type": "node", "id": 3424799430, "lat": 40.4240118, "lon": -3.6947624}, {"type": "node", "id": 3424799432, "lat": 40.4240664, "lon": -3.6949512}, {"type": "node", "id": 3424799433, "lat": 40.4240806, "lon": -3.6948806}, {"type": "node", "id": 3424799435, "lat": 40.4241062, "lon": -3.6949276}, {"type": "node", "id": 3424799436, "lat": 40.4241306, "lon": -3.6949868, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3424801041, "lat": 40.4234117, "lon": -3.6928731, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801042, "lat": 40.4234885, "lon": -3.6927684, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801043, "lat": 40.4236177, "lon": -3.6928785, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801044, "lat": 40.4238131, "lon": -3.694191, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801045, "lat": 40.4239064, "lon": -3.6949526, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3424801046, "lat": 40.4239737, "lon": -3.6943655, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3424801047, "lat": 40.4244176, "lon": -3.6954928, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3424801049, "lat": 40.4245088, "lon": -3.6955646, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801050, "lat": 40.424639, "lon": -3.6955451, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801054, "lat": 40.4257817, "lon": -3.6937396, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424801055, "lat": 40.4258805, "lon": -3.6937923, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424964317, "lat": 40.4218894, "lon": -3.6923212, "tags": {"highway": "stop"}}, {"type": "node", "id": 3424964318, "lat": 40.4273648, "lon": -3.7017153}, {"type": "node", "id": 3425361815, "lat": 40.4501836, "lon": -3.7202461, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3425361827, "lat": 40.4509948, "lon": -3.7196263, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426608081, "lat": 40.4224596, "lon": -3.6925421}, {"type": "node", "id": 3426732097, "lat": 40.4317812, "lon": -3.6973626}, {"type": "node", "id": 3426732099, "lat": 40.4335977, "lon": -3.6974256}, {"type": "node", "id": 3426732139, "lat": 40.4356449, "lon": -3.6990212, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732143, "lat": 40.4357698, "lon": -3.698955, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732145, "lat": 40.4357858, "lon": -3.6992811, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732162, "lat": 40.4360908, "lon": -3.6990843, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732167, "lat": 40.4365876, "lon": -3.6994226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732170, "lat": 40.4367105, "lon": -3.6993241, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732171, "lat": 40.4367394, "lon": -3.6996509, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732173, "lat": 40.4371519, "lon": -3.7238021}, {"type": "node", "id": 3426732176, "lat": 40.4372554, "lon": -3.7235953}, {"type": "node", "id": 3426732241, "lat": 40.4460691, "lon": -3.7259267}, {"type": "node", "id": 3426732244, "lat": 40.4472091, "lon": -3.7246798, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426732245, "lat": 40.4473959, "lon": -3.7247122, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426732246, "lat": 40.4479688, "lon": -3.7240991, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426800337, "lat": 40.4237035, "lon": -3.6941039, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 3426834960, "lat": 40.440459, "lon": -3.7010958, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3426834961, "lat": 40.4405678, "lon": -3.7011443}, {"type": "node", "id": 3428307530, "lat": 40.42644, "lon": -3.7007166, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3428425005, "lat": 40.4210209, "lon": -3.692123}, {"type": "node", "id": 3428425011, "lat": 40.4231775, "lon": -3.6912628, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425012, "lat": 40.4254349, "lon": -3.6898594, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425014, "lat": 40.4256017, "lon": -3.6897439, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425015, "lat": 40.4256336, "lon": -3.6920974, "tags": {"crossing": "marked", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3428425018, "lat": 40.4258159, "lon": -3.6898745, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425020, "lat": 40.4258664, "lon": -3.6902122}, {"type": "node", "id": 3428476987, "lat": 40.4376458, "lon": -3.6993282, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3429367546, "lat": 40.4200706, "lon": -3.7011589}, {"type": "node", "id": 3429367549, "lat": 40.4200933, "lon": -3.7011556, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3437173834, "lat": 40.4387727, "lon": -3.6834198}, {"type": "node", "id": 3437173844, "lat": 40.4390082, "lon": -3.6833124, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3437173853, "lat": 40.4392126, "lon": -3.6833205, "tags": {"crossing:markings": "yes", "crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 3437178877, "lat": 40.4374774, "lon": -3.6830957, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 3437178878, "lat": 40.4376158, "lon": -3.6833528, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3437178880, "lat": 40.4377325, "lon": -3.6833478, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3450371632, "lat": 40.4330424, "lon": -3.6879849}, {"type": "node", "id": 3452275287, "lat": 40.450094, "lon": -3.7103361}, {"type": "node", "id": 3452544028, "lat": 40.4467828, "lon": -3.699327, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3457902044, "lat": 40.4459514, "lon": -3.6865793}, {"type": "node", "id": 3457902046, "lat": 40.445976, "lon": -3.6872108}, {"type": "node", "id": 3457902047, "lat": 40.4459977, "lon": -3.6884861}, {"type": "node", "id": 3457902049, "lat": 40.4464894, "lon": -3.6978897}, {"type": "node", "id": 3463244177, "lat": 40.4508042, "lon": -3.6924319}, {"type": "node", "id": 3463244178, "lat": 40.4508093, "lon": -3.6923867}, {"type": "node", "id": 3463244179, "lat": 40.4508129, "lon": -3.6924762}, {"type": "node", "id": 3463244180, "lat": 40.4508274, "lon": -3.6923476}, {"type": "node", "id": 3463244182, "lat": 40.450834, "lon": -3.6925126}, {"type": "node", "id": 3463244184, "lat": 40.4508557, "lon": -3.6923209}, {"type": "node", "id": 3463244186, "lat": 40.4508642, "lon": -3.6925353}, {"type": "node", "id": 3463244187, "lat": 40.4508896, "lon": -3.6923108}, {"type": "node", "id": 3463244190, "lat": 40.4508988, "lon": -3.6925407}, {"type": "node", "id": 3463244195, "lat": 40.4509227, "lon": -3.6923182}, {"type": "node", "id": 3463244196, "lat": 40.4509311, "lon": -3.6925287}, {"type": "node", "id": 3463244201, "lat": 40.4509512, "lon": -3.6923415}, {"type": "node", "id": 3463244202, "lat": 40.4509576, "lon": -3.6925017}, {"type": "node", "id": 3463244205, "lat": 40.450971, "lon": -3.6923771}, {"type": "node", "id": 3463244206, "lat": 40.4509745, "lon": -3.6924635}, {"type": "node", "id": 3463244207, "lat": 40.4509792, "lon": -3.6924199}, {"type": "node", "id": 3470996670, "lat": 40.4357672, "lon": -3.719523}, {"type": "node", "id": 3470996671, "lat": 40.4358366, "lon": -3.7195403}, {"type": "node", "id": 3471276060, "lat": 40.4297363, "lon": -3.7194799, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3471276061, "lat": 40.4302438, "lon": -3.7175947}, {"type": "node", "id": 3471276062, "lat": 40.4321272, "lon": -3.7203144, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3471276063, "lat": 40.4336023, "lon": -3.7213585}, {"type": "node", "id": 3471365915, "lat": 40.4293076, "lon": -3.7201665, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3471365921, "lat": 40.4293948, "lon": -3.7202552, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3471365928, "lat": 40.4294791, "lon": -3.7205313, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3472111968, "lat": 40.4490693, "lon": -3.7163095}, {"type": "node", "id": 3472111969, "lat": 40.4490946, "lon": -3.7164167}, {"type": "node", "id": 3472111970, "lat": 40.4491695, "lon": -3.7164841}, {"type": "node", "id": 3472111971, "lat": 40.449163, "lon": -3.7161456}, {"type": "node", "id": 3472111972, "lat": 40.4492509, "lon": -3.716149}, {"type": "node", "id": 3484491402, "lat": 40.4523368, "lon": -3.7074809, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3523936294, "lat": 40.432223, "lon": -3.7048846}, {"type": "node", "id": 3524215759, "lat": 40.4443517, "lon": -3.719879}, {"type": "node", "id": 3536931755, "lat": 40.4322118, "lon": -3.7048228}, {"type": "node", "id": 3567320802, "lat": 40.4413082, "lon": -3.7217979}, {"type": "node", "id": 3567320803, "lat": 40.4413316, "lon": -3.7217584}, {"type": "node", "id": 3567320804, "lat": 40.4413209, "lon": -3.7217805}, {"type": "node", "id": 3567320805, "lat": 40.4412847, "lon": -3.7218221}, {"type": "node", "id": 3567320806, "lat": 40.4411071, "lon": -3.7218744}, {"type": "node", "id": 3567480241, "lat": 40.4430382, "lon": -3.6846384}, {"type": "node", "id": 3567546252, "lat": 40.4328687, "lon": -3.6867247}, {"type": "node", "id": 3575366957, "lat": 40.4434392, "lon": -3.7196857, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3575366967, "lat": 40.4436922, "lon": -3.7194424, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3575370945, "lat": 40.4438132, "lon": -3.7227815, "tags": {"check_date:crossing": "2023-09-30", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3575378538, "lat": 40.4390906, "lon": -3.7201025}, {"type": "node", "id": 3575378546, "lat": 40.4398585, "lon": -3.7208516, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3575378560, "lat": 40.4412344, "lon": -3.7218565}, {"type": "node", "id": 3578396516, "lat": 40.4494147, "lon": -3.7161327, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3578396564, "lat": 40.4497396, "lon": -3.7170636}, {"type": "node", "id": 3578397014, "lat": 40.4498835, "lon": -3.717066}, {"type": "node", "id": 3578397044, "lat": 40.4501412, "lon": -3.716931}, {"type": "node", "id": 3578397058, "lat": 40.4503948, "lon": -3.7164319, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3578397060, "lat": 40.4504301, "lon": -3.7163952}, {"type": "node", "id": 3578397061, "lat": 40.4504285, "lon": -3.71631}, {"type": "node", "id": 3578397062, "lat": 40.45046, "lon": -3.7165548}, {"type": "node", "id": 3578397063, "lat": 40.450446, "lon": -3.7164914}, {"type": "node", "id": 3578397065, "lat": 40.4504432, "lon": -3.7162433, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397067, "lat": 40.4504597, "lon": -3.7162428, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397070, "lat": 40.4504653, "lon": -3.7158675}, {"type": "node", "id": 3578397071, "lat": 40.4504733, "lon": -3.7162425, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397072, "lat": 40.450485, "lon": -3.7164865, "tags": {"highway": "stop"}}, {"type": "node", "id": 3578397073, "lat": 40.4505034, "lon": -3.7163128}, {"type": "node", "id": 3578422051, "lat": 40.4469787, "lon": -3.7246398, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3578422054, "lat": 40.4476985, "lon": -3.7247167, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3587032531, "lat": 40.4219221, "lon": -3.6914818}, {"type": "node", "id": 3594139290, "lat": 40.4356881, "lon": -3.7182414}, {"type": "node", "id": 3594864826, "lat": 40.4364519, "lon": -3.7207636}, {"type": "node", "id": 3601013261, "lat": 40.4418018, "lon": -3.7266159, "tags": {"bicycle": "yes", "check_date:crossing": "2023-10-25", "crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3627050622, "lat": 40.432708, "lon": -3.6867352, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627050623, "lat": 40.4329877, "lon": -3.6868829, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627050624, "lat": 40.433084, "lon": -3.6905216, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3627050626, "lat": 40.4331428, "lon": -3.6901063, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3627050628, "lat": 40.433184, "lon": -3.6867007, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627507752, "lat": 40.4360097, "lon": -3.6807045, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3627507753, "lat": 40.436062, "lon": -3.6817782, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3632136772, "lat": 40.4518122, "lon": -3.6885809, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3633377344, "lat": 40.4390942, "lon": -3.7199307}, {"type": "node", "id": 3633377349, "lat": 40.4402297, "lon": -3.7177713}, {"type": "node", "id": 3636842772, "lat": 40.4518021, "lon": -3.6883672, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3644754710, "lat": 40.4278174, "lon": -3.7153594}, {"type": "node", "id": 3659320548, "lat": 40.4485527, "lon": -3.7037312}, {"type": "node", "id": 3663308736, "lat": 40.439118, "lon": -3.7140957, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3663308739, "lat": 40.4409958, "lon": -3.7139741, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308740, "lat": 40.4410563, "lon": -3.7139702, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3663308741, "lat": 40.4410879, "lon": -3.7138832}, {"type": "node", "id": 3663308742, "lat": 40.4411274, "lon": -3.7140295}, {"type": "node", "id": 3663308743, "lat": 40.4413018, "lon": -3.7135336, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308763, "lat": 40.4437104, "lon": -3.7106054, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663308764, "lat": 40.4437447, "lon": -3.7140209, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308765, "lat": 40.443753, "lon": -3.7141852, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3663308767, "lat": 40.4437925, "lon": -3.7103582, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663308768, "lat": 40.4447818, "lon": -3.7125196, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308769, "lat": 40.4448494, "lon": -3.7139628, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308770, "lat": 40.4457956, "lon": -3.7139662, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663324548, "lat": 40.4441363, "lon": -3.7101377, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663324554, "lat": 40.4467536, "lon": -3.7050527, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3675302630, "lat": 40.4393261, "lon": -3.6906487, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3675303745, "lat": 40.4380062, "lon": -3.6928887, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3675303746, "lat": 40.4380831, "lon": -3.6945681, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303747, "lat": 40.4381173, "lon": -3.6929536, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303748, "lat": 40.4382013, "lon": -3.6946915, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303749, "lat": 40.4382326, "lon": -3.6928876, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303750, "lat": 40.438326, "lon": -3.6945475, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3684260031, "lat": 40.4373796, "lon": -3.7232545}, {"type": "node", "id": 3684260033, "lat": 40.4375835, "lon": -3.7237627}, {"type": "node", "id": 3684260040, "lat": 40.4376837, "lon": -3.7238494}, {"type": "node", "id": 3684260046, "lat": 40.4377474, "lon": -3.7239844}, {"type": "node", "id": 3708287453, "lat": 40.4327342, "lon": -3.7071295}, {"type": "node", "id": 3708287454, "lat": 40.4327454, "lon": -3.7070242}, {"type": "node", "id": 3708287455, "lat": 40.4328193, "lon": -3.7071314}, {"type": "node", "id": 3750568824, "lat": 40.4382123, "lon": -3.6906042}, {"type": "node", "id": 3750569725, "lat": 40.4381541, "lon": -3.6904889}, {"type": "node", "id": 3750600821, "lat": 40.4378675, "lon": -3.6903503}, {"type": "node", "id": 3750600822, "lat": 40.4381432, "lon": -3.6907845, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3750603026, "lat": 40.4380971, "lon": -3.6908492}, {"type": "node", "id": 3750603028, "lat": 40.437834, "lon": -3.6903811}, {"type": "node", "id": 3769069723, "lat": 40.4349656, "lon": -3.7196694}, {"type": "node", "id": 3802946095, "lat": 40.4469712, "lon": -3.7079369, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946098, "lat": 40.4469836, "lon": -3.7042663}, {"type": "node", "id": 3802946104, "lat": 40.4470365, "lon": -3.7079607, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946106, "lat": 40.4470404, "lon": -3.7086188, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946109, "lat": 40.4470828, "lon": -3.7036273, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3802946112, "lat": 40.4470908, "lon": -3.7042302}, {"type": "node", "id": 3802946114, "lat": 40.447119, "lon": -3.7086148, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946115, "lat": 40.4471273, "lon": -3.7087916}, {"type": "node", "id": 3802946116, "lat": 40.4471332, "lon": -3.7085381}, {"type": "node", "id": 3802946117, "lat": 40.4471513, "lon": -3.7036886}, {"type": "node", "id": 3802946118, "lat": 40.4471903, "lon": -3.7080205, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946119, "lat": 40.4471798, "lon": -3.7083419, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946120, "lat": 40.447182, "lon": -3.7041276}, {"type": "node", "id": 3802946121, "lat": 40.4471843, "lon": -3.7084114}, {"type": "node", "id": 3802946122, "lat": 40.4472258, "lon": -3.7038678}, {"type": "node", "id": 3802946125, "lat": 40.4472684, "lon": -3.7083805}, {"type": "node", "id": 3802947044, "lat": 40.4467204, "lon": -3.7039463}, {"type": "node", "id": 3802947046, "lat": 40.4467272, "lon": -3.7038527, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802947048, "lat": 40.4467364, "lon": -3.7038136}, {"type": "node", "id": 3802947050, "lat": 40.4467436, "lon": -3.7040717}, {"type": "node", "id": 3802947055, "lat": 40.4467822, "lon": -3.7037121}, {"type": "node", "id": 3802947057, "lat": 40.4467943, "lon": -3.7041676}, {"type": "node", "id": 3802947062, "lat": 40.4468373, "lon": -3.7036492}, {"type": "node", "id": 3802947071, "lat": 40.4468692, "lon": -3.7036263}, {"type": "node", "id": 3802947078, "lat": 40.4469009, "lon": -3.7042519}, {"type": "node", "id": 3802947082, "lat": 40.4469387, "lon": -3.7035994}, {"type": "node", "id": 3842361694, "lat": 40.424649, "lon": -3.7032692}, {"type": "node", "id": 3842361695, "lat": 40.4245858, "lon": -3.7033315}, {"type": "node", "id": 3883232008, "lat": 40.4358175, "lon": -3.6999291}, {"type": "node", "id": 3883232009, "lat": 40.4367845, "lon": -3.7001475}, {"type": "node", "id": 3918709945, "lat": 40.4407122, "lon": -3.6798041}, {"type": "node", "id": 3927556254, "lat": 40.4303406, "lon": -3.7200412, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556255, "lat": 40.4303661, "lon": -3.7174964, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556256, "lat": 40.4304025, "lon": -3.7200372, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556757, "lat": 40.430424, "lon": -3.7199854, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556758, "lat": 40.430437, "lon": -3.7201294, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556759, "lat": 40.4307582, "lon": -3.719093, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556760, "lat": 40.4308138, "lon": -3.7190467, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556761, "lat": 40.430851, "lon": -3.7191744, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556763, "lat": 40.4309638, "lon": -3.7207385, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927556764, "lat": 40.4310335, "lon": -3.7206856, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556765, "lat": 40.4310602, "lon": -3.7207103, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556766, "lat": 40.4311475, "lon": -3.718105, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556767, "lat": 40.431228, "lon": -3.7180493, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556768, "lat": 40.4312286, "lon": -3.7181682, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556769, "lat": 40.4312556, "lon": -3.7181892, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556770, "lat": 40.431371, "lon": -3.7197786, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556771, "lat": 40.4313698, "lon": -3.7196315, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556772, "lat": 40.4314737, "lon": -3.7197218, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556773, "lat": 40.4317953, "lon": -3.7186095, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556774, "lat": 40.4318115, "lon": -3.718741, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556775, "lat": 40.4319018, "lon": -3.7186925, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597013, "lat": 40.4245719, "lon": -3.698148, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597014, "lat": 40.4245755, "lon": -3.6981179, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927597015, "lat": 40.4247427, "lon": -3.698017, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927597016, "lat": 40.4247529, "lon": -3.6980449, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597017, "lat": 40.4247591, "lon": -3.698062, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597018, "lat": 40.424983, "lon": -3.6978298, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927597019, "lat": 40.4250224, "lon": -3.6977306, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927597020, "lat": 40.4250371, "lon": -3.6977614, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3946882542, "lat": 40.4261359, "lon": -3.6925571}, {"type": "node", "id": 3946882543, "lat": 40.4260558, "lon": -3.692628}, {"type": "node", "id": 3946934257, "lat": 40.4364623, "lon": -3.7216289}, {"type": "node", "id": 3946934258, "lat": 40.4353704, "lon": -3.7198388}, {"type": "node", "id": 3946934259, "lat": 40.4354156, "lon": -3.7198986}, {"type": "node", "id": 3946934260, "lat": 40.4351092, "lon": -3.7196592}, {"type": "node", "id": 3946934261, "lat": 40.4350711, "lon": -3.7196473}, {"type": "node", "id": 3951439717, "lat": 40.4502562, "lon": -3.7102057, "tags": {"barrier": "block"}}, {"type": "node", "id": 3951439723, "lat": 40.4499344, "lon": -3.7100886}, {"type": "node", "id": 3951439724, "lat": 40.4499812, "lon": -3.7100588}, {"type": "node", "id": 3951439725, "lat": 40.4500297, "lon": -3.7100609}, {"type": "node", "id": 3951455564, "lat": 40.4521716, "lon": -3.7095517, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436603, "lat": 40.4490252, "lon": -3.7163831, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436614, "lat": 40.4491926, "lon": -3.7168712, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436615, "lat": 40.4491964, "lon": -3.7165519, "tags": {"crossing": "uncontrolled", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3971975769, "lat": 40.4502274, "lon": -3.6984033, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975770, "lat": 40.4503183, "lon": -3.6982823, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975771, "lat": 40.4509005, "lon": -3.6982285, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975772, "lat": 40.4509681, "lon": -3.6981321, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975773, "lat": 40.4510534, "lon": -3.6995447, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3971975774, "lat": 40.4511237, "lon": -3.6982084, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3971975775, "lat": 40.4511681, "lon": -3.699727, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3971975776, "lat": 40.451269, "lon": -3.6996226, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975777, "lat": 40.4513465, "lon": -3.6981865}, {"type": "node", "id": 3971975778, "lat": 40.4514316, "lon": -3.6995895}, {"type": "node", "id": 3971975779, "lat": 40.4516031, "lon": -3.6981624}, {"type": "node", "id": 3971975780, "lat": 40.451681, "lon": -3.6995373}, {"type": "node", "id": 3971975781, "lat": 40.4518332, "lon": -3.6981407}, {"type": "node", "id": 3971975782, "lat": 40.4519083, "lon": -3.6994855}, {"type": "node", "id": 3971975783, "lat": 40.4520897, "lon": -3.6981166}, {"type": "node", "id": 3971975784, "lat": 40.4521255, "lon": -3.6994498}, {"type": "node", "id": 3971975785, "lat": 40.452353, "lon": -3.6980918, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3999479563, "lat": 40.449842, "lon": -3.7101632}, {"type": "node", "id": 4014645041, "lat": 40.4463712, "lon": -3.7122791, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4016402391, "lat": 40.4293828, "lon": -3.689361}, {"type": "node", "id": 4062386147, "lat": 40.4243717, "lon": -3.7021136}, {"type": "node", "id": 4062386148, "lat": 40.4243352, "lon": -3.7020665}, {"type": "node", "id": 4062386149, "lat": 40.4240797, "lon": -3.7021691, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 4062386151, "lat": 40.4243496, "lon": -3.7020999}, {"type": "node", "id": 4062425597, "lat": 40.4238471, "lon": -3.70215}, {"type": "node", "id": 4062425598, "lat": 40.4238924, "lon": -3.7021822}, {"type": "node", "id": 4062425600, "lat": 40.42387, "lon": -3.7021744}, {"type": "node", "id": 4080737331, "lat": 40.4342395, "lon": -3.7190122}, {"type": "node", "id": 4108431405, "lat": 40.4454457, "lon": -3.7210635}, {"type": "node", "id": 4108431408, "lat": 40.4473589, "lon": -3.7247058}, {"type": "node", "id": 4108443945, "lat": 40.4315255, "lon": -3.7074005, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 4109163310, "lat": 40.4338845, "lon": -3.6834011}, {"type": "node", "id": 4110020824, "lat": 40.429074, "lon": -3.7150373}, {"type": "node", "id": 4110020825, "lat": 40.4290899, "lon": -3.715166}, {"type": "node", "id": 4110093642, "lat": 40.4264557, "lon": -3.7131003, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4131272686, "lat": 40.447895, "lon": -3.7245579}, {"type": "node", "id": 4131272700, "lat": 40.4479649, "lon": -3.7247108}, {"type": "node", "id": 4131272774, "lat": 40.4487252, "lon": -3.7214421}, {"type": "node", "id": 4131272777, "lat": 40.4487604, "lon": -3.721357}, {"type": "node", "id": 4131272778, "lat": 40.4487764, "lon": -3.7200019}, {"type": "node", "id": 4131272779, "lat": 40.4488149, "lon": -3.7200107}, {"type": "node", "id": 4131272780, "lat": 40.4488723, "lon": -3.719997}, {"type": "node", "id": 4131272781, "lat": 40.4489209, "lon": -3.7201483}, {"type": "node", "id": 4131272784, "lat": 40.448927, "lon": -3.7199509}, {"type": "node", "id": 4131272785, "lat": 40.4489561, "lon": -3.7200203}, {"type": "node", "id": 4131272794, "lat": 40.449231, "lon": -3.7144758, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 4131272804, "lat": 40.4497513, "lon": -3.7157162}, {"type": "node", "id": 4134046207, "lat": 40.4271433, "lon": -3.6988513}, {"type": "node", "id": 4134046208, "lat": 40.427162, "lon": -3.6989761}, {"type": "node", "id": 4134046209, "lat": 40.4271975, "lon": -3.6988334, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4134046210, "lat": 40.4273333, "lon": -3.6992155}, {"type": "node", "id": 4134046212, "lat": 40.4274026, "lon": -3.6991255}, {"type": "node", "id": 4134046213, "lat": 40.4274109, "lon": -3.6992856, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4134046215, "lat": 40.42747, "lon": -3.6991659}, {"type": "node", "id": 4134046216, "lat": 40.4276238, "lon": -3.6993168}, {"type": "node", "id": 4134046217, "lat": 40.4276311, "lon": -3.6992016}, {"type": "node", "id": 4140937593, "lat": 40.4202515, "lon": -3.6894465, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4153842594, "lat": 40.4391183, "lon": -3.7201751}, {"type": "node", "id": 4157306544, "lat": 40.4328425, "lon": -3.7208179}, {"type": "node", "id": 4161783641, "lat": 40.4417846, "lon": -3.7267299}, {"type": "node", "id": 4161784431, "lat": 40.4423761, "lon": -3.7248228}, {"type": "node", "id": 4161784448, "lat": 40.4425011, "lon": -3.7247075}, {"type": "node", "id": 4169858409, "lat": 40.4307409, "lon": -3.696877, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4169858412, "lat": 40.4321464, "lon": -3.6975216, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4172945199, "lat": 40.4363277, "lon": -3.6872346, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945200, "lat": 40.4362958, "lon": -3.6865797, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4172945201, "lat": 40.4362814, "lon": -3.6862851, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945202, "lat": 40.4362408, "lon": -3.6854509, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945203, "lat": 40.4362296, "lon": -3.6852197, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945204, "lat": 40.4361909, "lon": -3.684426, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4172945205, "lat": 40.4361804, "lon": -3.6842097, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4172945206, "lat": 40.4361219, "lon": -3.6830096, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4172945207, "lat": 40.4360014, "lon": -3.6805339, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4184539389, "lat": 40.4328514, "lon": -3.6854931, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4184539390, "lat": 40.4328134, "lon": -3.6847097, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4184539391, "lat": 40.4328019, "lon": -3.6844713, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4184539393, "lat": 40.4327664, "lon": -3.6837392, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4184539396, "lat": 40.4326563, "lon": -3.683508, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4184539400, "lat": 40.4327419, "lon": -3.6832332, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4190852714, "lat": 40.4267865, "lon": -3.6913877, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4197170916, "lat": 40.4334206, "lon": -3.7230961}, {"type": "node", "id": 4202134078, "lat": 40.4265876, "lon": -3.6934779}, {"type": "node", "id": 4203412903, "lat": 40.430173, "lon": -3.7173339, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4206082204, "lat": 40.447703, "lon": -3.6838749, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4206086994, "lat": 40.4352957, "lon": -3.6865283}, {"type": "node", "id": 4208190799, "lat": 40.4436303, "lon": -3.6909519, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4208916614, "lat": 40.4365841, "lon": -3.716923}, {"type": "node", "id": 4211592127, "lat": 40.4361166, "lon": -3.7025049, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4225207889, "lat": 40.4265035, "lon": -3.6878051, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 4229127178, "lat": 40.434089, "lon": -3.7016493, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 4234171259, "lat": 40.4256665, "lon": -3.7166754, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4237239311, "lat": 40.4470683, "lon": -3.7058141, "tags": {"crossing": "zebra", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4237239314, "lat": 40.4470498, "lon": -3.7054563, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4242179816, "lat": 40.4259927, "lon": -3.714826, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4242179828, "lat": 40.4259896, "lon": -3.7149235, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4244157681, "lat": 40.4315488, "lon": -3.6834014, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4245283126, "lat": 40.4298505, "lon": -3.7182875, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4249550724, "lat": 40.4321319, "lon": -3.7201274, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4251839614, "lat": 40.449592, "lon": -3.6983528, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4255551361, "lat": 40.430684, "lon": -3.693508, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4260545532, "lat": 40.449282, "lon": -3.7130376, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4260707791, "lat": 40.4250418, "lon": -3.7007932, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4260707794, "lat": 40.4249426, "lon": -3.7006785, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 4264320243, "lat": 40.4376229, "lon": -3.6831067}, {"type": "node", "id": 4269562177, "lat": 40.427689, "lon": -3.6850943, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4269623495, "lat": 40.4480238, "lon": -3.6851802, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "kerb": "lowered"}}, {"type": "node", "id": 4270791877, "lat": 40.4377465, "lon": -3.6880762, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4273925936, "lat": 40.4395559, "lon": -3.711067, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4277498385, "lat": 40.4488184, "lon": -3.711321, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4280384800, "lat": 40.4354401, "lon": -3.7154665, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4280822366, "lat": 40.4483725, "lon": -3.7036037, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4285281349, "lat": 40.4255593, "lon": -3.7136759, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4285281350, "lat": 40.4256826, "lon": -3.7137203, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4288632349, "lat": 40.4439021, "lon": -3.7106883, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4299253661, "lat": 40.4509015, "lon": -3.6967939, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4307136109, "lat": 40.4385676, "lon": -3.6993203, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4307191016, "lat": 40.4331205, "lon": -3.6890849, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4307340621, "lat": 40.4273898, "lon": -3.7160491, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4307340622, "lat": 40.4273104, "lon": -3.7160751, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4307340623, "lat": 40.4273315, "lon": -3.7160929, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4309747785, "lat": 40.4199796, "lon": -3.6956444, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826936, "lat": 40.4210551, "lon": -3.695659, "tags": {"crossing": "marked", "crossing:markings": "yes", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826943, "lat": 40.4218555, "lon": -3.6956546, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826952, "lat": 40.4219348, "lon": -3.6955586, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826954, "lat": 40.4219975, "lon": -3.6956507, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812552, "lat": 40.4391842, "lon": -3.7123026, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4311812558, "lat": 40.4399514, "lon": -3.7103992, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812567, "lat": 40.4400338, "lon": -3.7105494, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812574, "lat": 40.4401045, "lon": -3.7093613}, {"type": "node", "id": 4311812576, "lat": 40.440126, "lon": -3.7094324}, {"type": "node", "id": 4311812580, "lat": 40.4401768, "lon": -3.7094739, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812587, "lat": 40.4402346, "lon": -3.7095002}, {"type": "node", "id": 4311812596, "lat": 40.4402964, "lon": -3.7094811}, {"type": "node", "id": 4311812602, "lat": 40.440352, "lon": -3.7107504}, {"type": "node", "id": 4311985760, "lat": 40.4300531, "lon": -3.7184768, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4311995394, "lat": 40.4231077, "lon": -3.6955167, "tags": {"crossing": "zebra", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4311995395, "lat": 40.423103, "lon": -3.6955444, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4316800036, "lat": 40.4391867, "lon": -3.6849719, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4316800038, "lat": 40.4394146, "lon": -3.6849735}, {"type": "node", "id": 4316800079, "lat": 40.44049, "lon": -3.6830529, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4324546709, "lat": 40.4318801, "lon": -3.7186755, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4346484128, "lat": 40.4268609, "lon": -3.7169209, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4349725681, "lat": 40.4302645, "lon": -3.6887165}, {"type": "node", "id": 4349802667, "lat": 40.4295583, "lon": -3.6889083}, {"type": "node", "id": 4349802672, "lat": 40.430429, "lon": -3.6871165, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 4349802673, "lat": 40.4304638, "lon": -3.6878357}, {"type": "node", "id": 4349802678, "lat": 40.4305036, "lon": -3.688493, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4349802687, "lat": 40.4305189, "lon": -3.6871052, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 4386417609, "lat": 40.4319266, "lon": -3.716736, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4386417611, "lat": 40.4320059, "lon": -3.7168603, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4393276534, "lat": 40.4391988, "lon": -3.6894935}, {"type": "node", "id": 4393276535, "lat": 40.439234, "lon": -3.6896282}, {"type": "node", "id": 4412200928, "lat": 40.4348293, "lon": -3.7028705, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4412200929, "lat": 40.4349107, "lon": -3.7029855, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4412200930, "lat": 40.4370053, "lon": -3.6996063}, {"type": "node", "id": 4412200931, "lat": 40.4383206, "lon": -3.6993424, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4414962255, "lat": 40.4493497, "lon": -3.716193, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4414962275, "lat": 40.4490948, "lon": -3.7162101}, {"type": "node", "id": 4414962276, "lat": 40.4492893, "lon": -3.7161786}, {"type": "node", "id": 4414962277, "lat": 40.4492589, "lon": -3.7164739}, {"type": "node", "id": 4414966126, "lat": 40.4504811, "lon": -3.7163608}, {"type": "node", "id": 4416531498, "lat": 40.4350391, "lon": -3.6912651, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416531499, "lat": 40.4350808, "lon": -3.6901511, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4416531500, "lat": 40.4351526, "lon": -3.6914415, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416531501, "lat": 40.4351615, "lon": -3.6911085, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 4416531502, "lat": 40.4352882, "lon": -3.6912606, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416570440, "lat": 40.4337914, "lon": -3.705933}, {"type": "node", "id": 4416570441, "lat": 40.4337975, "lon": -3.7060202}, {"type": "node", "id": 4416845740, "lat": 40.4334856, "lon": -3.708807, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4416845741, "lat": 40.4338506, "lon": -3.7086931, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4416845742, "lat": 40.4339601, "lon": -3.7085801, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4416845743, "lat": 40.4339735, "lon": -3.7087925, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4417379976, "lat": 40.434125, "lon": -3.7184402}, {"type": "node", "id": 4417379979, "lat": 40.4342639, "lon": -3.7185384}, {"type": "node", "id": 4422722024, "lat": 40.4368761, "lon": -3.7026699}, {"type": "node", "id": 4422722031, "lat": 40.4369998, "lon": -3.702448}, {"type": "node", "id": 4422722048, "lat": 40.4371566, "lon": -3.702618}, {"type": "node", "id": 4422726767, "lat": 40.4384504, "lon": -3.699868}, {"type": "node", "id": 4428052239, "lat": 40.4331258, "lon": -3.7172359}, {"type": "node", "id": 4431658905, "lat": 40.4350318, "lon": -3.7056805, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4431660197, "lat": 40.4405487, "lon": -3.7108679}, {"type": "node", "id": 4431660200, "lat": 40.4409269, "lon": -3.7110045}, {"type": "node", "id": 4431660202, "lat": 40.4410901, "lon": -3.711054}, {"type": "node", "id": 4431660207, "lat": 40.4414818, "lon": -3.7113676, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4431660208, "lat": 40.4415362, "lon": -3.7116156, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4437576917, "lat": 40.4351077, "lon": -3.7102035, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4437576918, "lat": 40.4351918, "lon": -3.7100999, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4437576919, "lat": 40.4352025, "lon": -3.7103251, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576920, "lat": 40.4352425, "lon": -3.7113164, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576921, "lat": 40.4352465, "lon": -3.7131539, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576922, "lat": 40.4353118, "lon": -3.7114155, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576923, "lat": 40.4353155, "lon": -3.7130437, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437657599, "lat": 40.4292663, "lon": -3.7166065, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4437657600, "lat": 40.4293, "lon": -3.7166897, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4439143643, "lat": 40.4480304, "lon": -3.697125, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4439143647, "lat": 40.4481874, "lon": -3.6969676, "tags": {"check_date:tactile_paving": "2023-07-07", "crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4452608798, "lat": 40.4488027, "lon": -3.6893404}, {"type": "node", "id": 4456608447, "lat": 40.4319225, "lon": -3.7245667, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4456617454, "lat": 40.4264981, "lon": -3.6889397, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4456617457, "lat": 40.4257304, "lon": -3.6891596, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4456617460, "lat": 40.4256444, "lon": -3.6891845, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4461268759, "lat": 40.4494795, "lon": -3.7056444}, {"type": "node", "id": 4461268763, "lat": 40.4490258, "lon": -3.7054586}, {"type": "node", "id": 4467080337, "lat": 40.4374648, "lon": -3.6985937, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4467080343, "lat": 40.4374443, "lon": -3.6986452, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4470285254, "lat": 40.4318199, "lon": -3.714561, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4470285255, "lat": 40.4318863, "lon": -3.7156751, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4470285278, "lat": 40.4330496, "lon": -3.714381, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4470285286, "lat": 40.4331341, "lon": -3.714482, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 4470512290, "lat": 40.4250284, "lon": -3.6841336, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4485511527, "lat": 40.4374621, "lon": -3.7088411}, {"type": "node", "id": 4490265351, "lat": 40.4378103, "lon": -3.7165224, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4490265809, "lat": 40.4391415, "lon": -3.7164152}, {"type": "node", "id": 4490265810, "lat": 40.4392109, "lon": -3.7164943}, {"type": "node", "id": 4498622025, "lat": 40.4448826, "lon": -3.7147922, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4498622026, "lat": 40.4448795, "lon": -3.7147335, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4498622034, "lat": 40.4448565, "lon": -3.7141519, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4498622037, "lat": 40.4449334, "lon": -3.7140506, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4499335102, "lat": 40.4495734, "lon": -3.6989898, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4499335104, "lat": 40.4495304, "lon": -3.6990711}, {"type": "node", "id": 4500945119, "lat": 40.4291082, "lon": -3.7150291}, {"type": "node", "id": 4519701707, "lat": 40.4389835, "lon": -3.7176859}, {"type": "node", "id": 4519701708, "lat": 40.43925, "lon": -3.7172919}, {"type": "node", "id": 4519701709, "lat": 40.4391784, "lon": -3.7172897}, {"type": "node", "id": 4519701710, "lat": 40.4391097, "lon": -3.717316}, {"type": "node", "id": 4519701711, "lat": 40.4390493, "lon": -3.7173691}, {"type": "node", "id": 4519701712, "lat": 40.4390036, "lon": -3.7174451}, {"type": "node", "id": 4519701713, "lat": 40.438978, "lon": -3.717536}, {"type": "node", "id": 4519701714, "lat": 40.439045, "lon": -3.7178186}, {"type": "node", "id": 4519701715, "lat": 40.439101, "lon": -3.7178714}, {"type": "node", "id": 4519701716, "lat": 40.439379, "lon": -3.7173825}, {"type": "node", "id": 4519701717, "lat": 40.4394428, "lon": -3.7176332}, {"type": "node", "id": 4519701718, "lat": 40.4394381, "lon": -3.7175252}, {"type": "node", "id": 4519701719, "lat": 40.4394199, "lon": -3.7177341}, {"type": "node", "id": 4519701720, "lat": 40.4391814, "lon": -3.7179038}, {"type": "node", "id": 4519701721, "lat": 40.4392801, "lon": -3.7178914}, {"type": "node", "id": 4519701722, "lat": 40.4393662, "lon": -3.7178268}, {"type": "node", "id": 4536011529, "lat": 40.4389853, "lon": -3.7099355, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011530, "lat": 40.4388699, "lon": -3.7100481, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011531, "lat": 40.4387467, "lon": -3.7099388, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing"}}, {"type": "node", "id": 4536011532, "lat": 40.4373551, "lon": -3.7083991, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011533, "lat": 40.4374458, "lon": -3.7085012, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011534, "lat": 40.4374379, "lon": -3.708297, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011535, "lat": 40.4374432, "lon": -3.7084539, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011536, "lat": 40.437559, "lon": -3.710035, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4536011537, "lat": 40.4378035, "lon": -3.7153062, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011538, "lat": 40.4376548, "lon": -3.7131171, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011539, "lat": 40.4374798, "lon": -3.7112334, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011540, "lat": 40.4375656, "lon": -3.711128, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4536011541, "lat": 40.4375739, "lon": -3.7113359, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4536011542, "lat": 40.437637, "lon": -3.7112202, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4536011543, "lat": 40.4377376, "lon": -3.7164721, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4547336041, "lat": 40.4367607, "lon": -3.6964094, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4547336043, "lat": 40.4366696, "lon": -3.6963592, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4547336052, "lat": 40.4366699, "lon": -3.6962924, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4547724398, "lat": 40.4465055, "lon": -3.6948833}, {"type": "node", "id": 4547724401, "lat": 40.4464752, "lon": -3.6953815, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4547724402, "lat": 40.446524, "lon": -3.6953851, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4547724403, "lat": 40.4465538, "lon": -3.6950526, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4547724404, "lat": 40.4466246, "lon": -3.6950018}, {"type": "node", "id": 4547724405, "lat": 40.4468064, "lon": -3.6950058}, {"type": "node", "id": 4548286961, "lat": 40.4511463, "lon": -3.717123}, {"type": "node", "id": 4548286962, "lat": 40.4510162, "lon": -3.7170505}, {"type": "node", "id": 4548286970, "lat": 40.4511068, "lon": -3.7171069}, {"type": "node", "id": 4548286971, "lat": 40.451064, "lon": -3.7170841}, {"type": "node", "id": 4548286972, "lat": 40.4503882, "lon": -3.7165936}, {"type": "node", "id": 4548286973, "lat": 40.4493163, "lon": -3.7168039}, {"type": "node", "id": 4548286974, "lat": 40.4492713, "lon": -3.7168061}, {"type": "node", "id": 4548286975, "lat": 40.4505198, "lon": -3.7137872}, {"type": "node", "id": 4548425705, "lat": 40.4391212, "lon": -3.7167637}, {"type": "node", "id": 4548425734, "lat": 40.4388786, "lon": -3.7128938}, {"type": "node", "id": 4548425735, "lat": 40.4389015, "lon": -3.7128852}, {"type": "node", "id": 4548435342, "lat": 40.439151, "lon": -3.7123435}, {"type": "node", "id": 4548435343, "lat": 40.4390928, "lon": -3.7123448}, {"type": "node", "id": 4548435344, "lat": 40.438958, "lon": -3.7124803}, {"type": "node", "id": 4548451517, "lat": 40.4375277, "lon": -3.7101706, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548451520, "lat": 40.437591, "lon": -3.7100328, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548451521, "lat": 40.4374375, "lon": -3.7100422, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548454344, "lat": 40.4389071, "lon": -3.7107909}, {"type": "node", "id": 4548454345, "lat": 40.4388715, "lon": -3.7108514}, {"type": "node", "id": 4548454346, "lat": 40.4388831, "lon": -3.710365}, {"type": "node", "id": 4548454347, "lat": 40.4389485, "lon": -3.7106241}, {"type": "node", "id": 4548454348, "lat": 40.4389811, "lon": -3.7108577}, {"type": "node", "id": 4548454349, "lat": 40.4388242, "lon": -3.7111207, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4549589307, "lat": 40.4365975, "lon": -3.7208133}, {"type": "node", "id": 4549589308, "lat": 40.436644, "lon": -3.7208162, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4558946111, "lat": 40.4453298, "lon": -3.7196347}, {"type": "node", "id": 4558946112, "lat": 40.4453134, "lon": -3.7196028}, {"type": "node", "id": 4558946113, "lat": 40.4453148, "lon": -3.7194911}, {"type": "node", "id": 4558946114, "lat": 40.4453958, "lon": -3.719423}, {"type": "node", "id": 4558946115, "lat": 40.4454261, "lon": -3.7194276}, {"type": "node", "id": 4558946116, "lat": 40.4454537, "lon": -3.7194444}, {"type": "node", "id": 4558946117, "lat": 40.4454759, "lon": -3.7194718}, {"type": "node", "id": 4558946118, "lat": 40.445305, "lon": -3.719566, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4558946119, "lat": 40.4454905, "lon": -3.719507}, {"type": "node", "id": 4558946120, "lat": 40.4454356, "lon": -3.7196659}, {"type": "node", "id": 4558946121, "lat": 40.4453485, "lon": -3.7194426}, {"type": "node", "id": 4558946122, "lat": 40.4453775, "lon": -3.7194264}, {"type": "node", "id": 4558946123, "lat": 40.445325, "lon": -3.7194703}, {"type": "node", "id": 4558946124, "lat": 40.4454303, "lon": -3.7193842}, {"type": "node", "id": 4558946125, "lat": 40.4454959, "lon": -3.7195464, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4558946126, "lat": 40.4454917, "lon": -3.7195861}, {"type": "node", "id": 4558946127, "lat": 40.4453055, "lon": -3.7195276}, {"type": "node", "id": 4558946128, "lat": 40.4444884, "lon": -3.7186875}, {"type": "node", "id": 4575762320, "lat": 40.437842, "lon": -3.6841723, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762333, "lat": 40.4383021, "lon": -3.6841402, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762334, "lat": 40.4377316, "lon": -3.6853034}, {"type": "node", "id": 4575762335, "lat": 40.4377738, "lon": -3.686241}, {"type": "node", "id": 4575762336, "lat": 40.4377944, "lon": -3.6856317}, {"type": "node", "id": 4575762337, "lat": 40.4378021, "lon": -3.6858784}, {"type": "node", "id": 4575762338, "lat": 40.4378038, "lon": -3.6861196}, {"type": "node", "id": 4575762339, "lat": 40.4377985, "lon": -3.6848324}, {"type": "node", "id": 4575762340, "lat": 40.4378281, "lon": -3.684868}, {"type": "node", "id": 4575762341, "lat": 40.4378564, "lon": -3.6848885}, {"type": "node", "id": 4575762342, "lat": 40.4379031, "lon": -3.6848976, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762343, "lat": 40.4379424, "lon": -3.6848934}, {"type": "node", "id": 4575801317, "lat": 40.4329583, "lon": -3.6847, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801319, "lat": 40.4329462, "lon": -3.6844585, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801321, "lat": 40.4329821, "lon": -3.6904165}, {"type": "node", "id": 4575801327, "lat": 40.4329898, "lon": -3.6869117}, {"type": "node", "id": 4575801329, "lat": 40.4330051, "lon": -3.6856354}, {"type": "node", "id": 4575801336, "lat": 40.4328583, "lon": -3.6856387}, {"type": "node", "id": 4575801337, "lat": 40.4329973, "lon": -3.68548, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4576234312, "lat": 40.4268995, "lon": -3.6839794}, {"type": "node", "id": 4576234358, "lat": 40.4217604, "lon": -3.6871709, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234359, "lat": 40.4217016, "lon": -3.687085, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234370, "lat": 40.421185, "lon": -3.6884363}, {"type": "node", "id": 4576234377, "lat": 40.4213504, "lon": -3.6885254, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4576234821, "lat": 40.4210757, "lon": -3.6871884, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234822, "lat": 40.4212195, "lon": -3.6871651, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234823, "lat": 40.421152, "lon": -3.6872625, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234824, "lat": 40.4211399, "lon": -3.6870764, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234825, "lat": 40.4210836, "lon": -3.685826}, {"type": "node", "id": 4576234826, "lat": 40.4210225, "lon": -3.6858777}, {"type": "node", "id": 4576234827, "lat": 40.4210748, "lon": -3.6858883, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234828, "lat": 40.4211029, "lon": -3.6859527, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576291395, "lat": 40.4364777, "lon": -3.6902559, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4583284263, "lat": 40.4390559, "lon": -3.7129954}, {"type": "node", "id": 4591425746, "lat": 40.4358908, "lon": -3.6999427, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4591425747, "lat": 40.4366971, "lon": -3.7001306, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4595952174, "lat": 40.4378233, "lon": -3.6870308}, {"type": "node", "id": 4603975784, "lat": 40.4263855, "lon": -3.6851482, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4604349217, "lat": 40.4395461, "lon": -3.6902985}, {"type": "node", "id": 4604349218, "lat": 40.4394142, "lon": -3.6901041}, {"type": "node", "id": 4604349219, "lat": 40.4392847, "lon": -3.6900858}, {"type": "node", "id": 4626597055, "lat": 40.4329223, "lon": -3.6910793}, {"type": "node", "id": 4626597056, "lat": 40.4328765, "lon": -3.6909521, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4626597057, "lat": 40.4329184, "lon": -3.6909526, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4626597062, "lat": 40.4326617, "lon": -3.6914106}, {"type": "node", "id": 4626597070, "lat": 40.4331181, "lon": -3.6912296}, {"type": "node", "id": 4627327426, "lat": 40.4377651, "lon": -3.6880648, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4627367186, "lat": 40.4300635, "lon": -3.7045918, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4627367188, "lat": 40.4300861, "lon": -3.7045868, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4627368189, "lat": 40.4301234, "lon": -3.704627, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 4629861377, "lat": 40.4270146, "lon": -3.7036413}, {"type": "node", "id": 4630240427, "lat": 40.4412992, "lon": -3.7170272}, {"type": "node", "id": 4630240464, "lat": 40.4427953, "lon": -3.717345, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "yes;zebra", "highway": "crossing", "kerb": "lowered", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4633369992, "lat": 40.4339425, "lon": -3.6948445}, {"type": "node", "id": 4633369993, "lat": 40.433906, "lon": -3.6949542, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4633502260, "lat": 40.4363151, "lon": -3.711449, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4637125716, "lat": 40.4329185, "lon": -3.710238, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4637125717, "lat": 40.433011, "lon": -3.7103399, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637125719, "lat": 40.4339976, "lon": -3.7102861, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637125721, "lat": 40.4362542, "lon": -3.7102505, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4637277827, "lat": 40.4400364, "lon": -3.7098604, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637304251, "lat": 40.4393578, "lon": -3.7121983, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 4637304252, "lat": 40.4398059, "lon": -3.7106453}, {"type": "node", "id": 4637304253, "lat": 40.4399044, "lon": -3.7107134}, {"type": "node", "id": 4637799990, "lat": 40.4360641, "lon": -3.7056249}, {"type": "node", "id": 4637799991, "lat": 40.4364811, "lon": -3.7055911}, {"type": "node", "id": 4637799992, "lat": 40.4365362, "lon": -3.705575}, {"type": "node", "id": 4637824948, "lat": 40.4349498, "lon": -3.7068587, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4637824949, "lat": 40.4351167, "lon": -3.7087109, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824950, "lat": 40.4350006, "lon": -3.7085987, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824951, "lat": 40.4351042, "lon": -3.7084763, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824952, "lat": 40.435189, "lon": -3.708583, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824964, "lat": 40.4337485, "lon": -3.7057916}, {"type": "node", "id": 4637824965, "lat": 40.4337863, "lon": -3.7058909}, {"type": "node", "id": 4642427967, "lat": 40.431901, "lon": -3.6983829}, {"type": "node", "id": 4643041889, "lat": 40.4314485, "lon": -3.7000395}, {"type": "node", "id": 4650310634, "lat": 40.4338954, "lon": -3.6901394}, {"type": "node", "id": 4659927117, "lat": 40.4508529, "lon": -3.6921674}, {"type": "node", "id": 4659927119, "lat": 40.4493565, "lon": -3.6920972}, {"type": "node", "id": 4659927120, "lat": 40.4491456, "lon": -3.6915108}, {"type": "node", "id": 4659927121, "lat": 40.4491906, "lon": -3.6918302}, {"type": "node", "id": 4659927122, "lat": 40.4482967, "lon": -3.6944686}, {"type": "node", "id": 4659927123, "lat": 40.4490108, "lon": -3.6895047}, {"type": "node", "id": 4659927126, "lat": 40.450936, "lon": -3.6941499}, {"type": "node", "id": 4659927127, "lat": 40.4493683, "lon": -3.6919648}, {"type": "node", "id": 4659927134, "lat": 40.4507737, "lon": -3.6920741}, {"type": "node", "id": 4659927138, "lat": 40.4493295, "lon": -3.6920321}, {"type": "node", "id": 4659927139, "lat": 40.4508128, "lon": -3.6921087}, {"type": "node", "id": 4659927140, "lat": 40.4510579, "lon": -3.6939052}, {"type": "node", "id": 4666869634, "lat": 40.4483392, "lon": -3.694509}, {"type": "node", "id": 4666869635, "lat": 40.4481974, "lon": -3.6932741}, {"type": "node", "id": 4666869636, "lat": 40.448139, "lon": -3.6932511}, {"type": "node", "id": 4666869637, "lat": 40.4474003, "lon": -3.6929721}, {"type": "node", "id": 4666869640, "lat": 40.4490629, "lon": -3.6921841}, {"type": "node", "id": 4666869646, "lat": 40.4482165, "lon": -3.6932316}, {"type": "node", "id": 4666869647, "lat": 40.4482477, "lon": -3.6944077}, {"type": "node", "id": 4666869648, "lat": 40.4481611, "lon": -3.6932821}, {"type": "node", "id": 4666869657, "lat": 40.4481886, "lon": -3.6944144, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4666869660, "lat": 40.4481232, "lon": -3.6944831}, {"type": "node", "id": 4666869661, "lat": 40.4477838, "lon": -3.6929897}, {"type": "node", "id": 4733163155, "lat": 40.4474435, "lon": -3.689176, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4733163167, "lat": 40.4474522, "lon": -3.6891971, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4757946968, "lat": 40.4324515, "lon": -3.7191206, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4757946972, "lat": 40.4322785, "lon": -3.7176352, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4769243625, "lat": 40.4397483, "lon": -3.7183897}, {"type": "node", "id": 4808839534, "lat": 40.4393922, "lon": -3.6927652, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4808864933, "lat": 40.4280019, "lon": -3.6971176, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4808864935, "lat": 40.4285202, "lon": -3.699431}, {"type": "node", "id": 4819134930, "lat": 40.4287002, "lon": -3.7004771, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4819134933, "lat": 40.4290519, "lon": -3.7018286}, {"type": "node", "id": 4823975333, "lat": 40.4268742, "lon": -3.7093148, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4825301730, "lat": 40.4461856, "lon": -3.6949107}, {"type": "node", "id": 4825301731, "lat": 40.4463638, "lon": -3.6947895}, {"type": "node", "id": 4825301732, "lat": 40.444799, "lon": -3.685325}, {"type": "node", "id": 4827673941, "lat": 40.4243871, "lon": -3.709112, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing", "junction": "yes"}}, {"type": "node", "id": 4827701833, "lat": 40.4263481, "lon": -3.7111178, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4827701836, "lat": 40.4269239, "lon": -3.709402, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4827701837, "lat": 40.4258354, "lon": -3.709272, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4827701838, "lat": 40.4257224, "lon": -3.7091806, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4827701839, "lat": 40.4256817, "lon": -3.7093493}, {"type": "node", "id": 4833611535, "lat": 40.4298594, "lon": -3.6935755, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4840111217, "lat": 40.4292844, "lon": -3.6872742, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4884569835, "lat": 40.4482526, "lon": -3.6984778, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4884569836, "lat": 40.4481727, "lon": -3.6985705, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4892388512, "lat": 40.4456062, "lon": -3.7205616}, {"type": "node", "id": 4909695835, "lat": 40.4460196, "lon": -3.7141882}, {"type": "node", "id": 4909695836, "lat": 40.4463168, "lon": -3.7129874}, {"type": "node", "id": 4920630095, "lat": 40.4480707, "lon": -3.7170535}, {"type": "node", "id": 4920630096, "lat": 40.44893, "lon": -3.7164527}, {"type": "node", "id": 4920630097, "lat": 40.4490668, "lon": -3.7165533}, {"type": "node", "id": 4921021997, "lat": 40.4345939, "lon": -3.710241}, {"type": "node", "id": 4921022002, "lat": 40.4346526, "lon": -3.7114703}, {"type": "node", "id": 4924651863, "lat": 40.437113, "lon": -3.7221189}, {"type": "node", "id": 4924651864, "lat": 40.4373161, "lon": -3.7225024}, {"type": "node", "id": 4928918414, "lat": 40.4277166, "lon": -3.6963288, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4929425966, "lat": 40.435735, "lon": -3.7204621}, {"type": "node", "id": 4933405777, "lat": 40.4361268, "lon": -3.684309, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4933407204, "lat": 40.4362489, "lon": -3.6842961, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4951747255, "lat": 40.4225238, "lon": -3.6986691, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4955056567, "lat": 40.4438915, "lon": -3.7040492}, {"type": "node", "id": 4959669363, "lat": 40.4491133, "lon": -3.7160815, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4990990038, "lat": 40.449327, "lon": -3.6982553, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4990990039, "lat": 40.4498118, "lon": -3.6982187, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5001253641, "lat": 40.4331193, "lon": -3.7176622, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343788, "lat": 40.4345832, "lon": -3.7203928, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343789, "lat": 40.4344111, "lon": -3.7207949, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343790, "lat": 40.4342815, "lon": -3.7210976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5006352946, "lat": 40.4344741, "lon": -3.7191731, "tags": {"bus": "yes", "name": "Moncloa", "public_transport": "stop_position"}}, {"type": "node", "id": 5006352965, "lat": 40.4341691, "lon": -3.72136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5006946998, "lat": 40.4305738, "lon": -3.6889831}, {"type": "node", "id": 5007730069, "lat": 40.4281989, "lon": -3.6950985, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5063895996, "lat": 40.4467441, "lon": -3.7037932}, {"type": "node", "id": 5063895997, "lat": 40.4297158, "lon": -3.6965656}, {"type": "node", "id": 5063896010, "lat": 40.4292427, "lon": -3.6963612}, {"type": "node", "id": 5068655472, "lat": 40.4381337, "lon": -3.6908202}, {"type": "node", "id": 5068655473, "lat": 40.4377203, "lon": -3.6860847}, {"type": "node", "id": 5068655474, "lat": 40.4378083, "lon": -3.6882595}, {"type": "node", "id": 5069264830, "lat": 40.4382846, "lon": -3.6985432, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264831, "lat": 40.4385196, "lon": -3.6985974, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264832, "lat": 40.4384289, "lon": -3.6994405, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5069264833, "lat": 40.438231, "lon": -3.6978142, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing"}}, {"type": "node", "id": 5069264834, "lat": 40.4384732, "lon": -3.6977938, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264835, "lat": 40.4383555, "lon": -3.6979723, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5069264836, "lat": 40.4381623, "lon": -3.6962985, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5069264837, "lat": 40.438402, "lon": -3.6962795, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5069264838, "lat": 40.4382867, "lon": -3.6964151, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5091750318, "lat": 40.4465413, "lon": -3.7120954, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5162768431, "lat": 40.442855, "lon": -3.6859943, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5162768434, "lat": 40.443411, "lon": -3.6877729, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5162768442, "lat": 40.4422216, "lon": -3.6859063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5191925504, "lat": 40.4430176, "lon": -3.6858324, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5195760372, "lat": 40.4384035, "lon": -3.7010628, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5204319847, "lat": 40.4372327, "lon": -3.7100543}, {"type": "node", "id": 5214866722, "lat": 40.445417, "lon": -3.7033443}, {"type": "node", "id": 5214866723, "lat": 40.4443089, "lon": -3.7028692}, {"type": "node", "id": 5214866724, "lat": 40.443188, "lon": -3.702381}, {"type": "node", "id": 5214866725, "lat": 40.4420207, "lon": -3.7019284}, {"type": "node", "id": 5214866731, "lat": 40.4384733, "lon": -3.7003238}, {"type": "node", "id": 5214866732, "lat": 40.4367357, "lon": -3.6995967}, {"type": "node", "id": 5214866733, "lat": 40.4357812, "lon": -3.6991871}, {"type": "node", "id": 5214866736, "lat": 40.4348718, "lon": -3.6990167, "tags": {"bicycle": "yes", "highway": "traffic_signals"}}, {"type": "node", "id": 5214866739, "lat": 40.4334873, "lon": -3.6982006, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5214866740, "lat": 40.4329572, "lon": -3.6979782}, {"type": "node", "id": 5214866745, "lat": 40.4308455, "lon": -3.6970531}, {"type": "node", "id": 5214866746, "lat": 40.4287916, "lon": -3.6961687}, {"type": "node", "id": 5214866747, "lat": 40.4279988, "lon": -3.6959951}, {"type": "node", "id": 5218975633, "lat": 40.4302417, "lon": -3.6825176, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 5218975639, "lat": 40.4302845, "lon": -3.6834495, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5218975655, "lat": 40.430507, "lon": -3.6836825, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 5232402843, "lat": 40.4295696, "lon": -3.6919472}, {"type": "node", "id": 5232409902, "lat": 40.4317271, "lon": -3.6949452}, {"type": "node", "id": 5232421894, "lat": 40.4328235, "lon": -3.6820061, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5232421896, "lat": 40.4326829, "lon": -3.6820163, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5235745134, "lat": 40.4224935, "lon": -3.6856777, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5235745135, "lat": 40.4224187, "lon": -3.6855749, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5242554914, "lat": 40.4304333, "lon": -3.6886805, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5242554915, "lat": 40.4305817, "lon": -3.6884803, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 5255281513, "lat": 40.4394967, "lon": -3.6902257}, {"type": "node", "id": 5273358099, "lat": 40.4302969, "lon": -3.7174425, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 5273361954, "lat": 40.4303307, "lon": -3.717339, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5273361955, "lat": 40.4302416, "lon": -3.7172968, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5282009925, "lat": 40.4244368, "lon": -3.711887}, {"type": "node", "id": 5300692986, "lat": 40.4261508, "lon": -3.680282, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 5321904954, "lat": 40.4344278, "lon": -3.7170219, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927323, "lat": 40.4299912, "lon": -3.7027321, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927324, "lat": 40.4310098, "lon": -3.7031748, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927325, "lat": 40.4329937, "lon": -3.7040402, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927326, "lat": 40.4440401, "lon": -3.7026431, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5342774136, "lat": 40.4453467, "lon": -3.7039985, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5345796054, "lat": 40.4418148, "lon": -3.697765, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5350038446, "lat": 40.4299405, "lon": -3.7227121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5350055330, "lat": 40.445676, "lon": -3.7147619, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385239918, "lat": 40.4358502, "lon": -3.7182177, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385239919, "lat": 40.4321197, "lon": -3.7172585, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385239920, "lat": 40.42995, "lon": -3.7157143, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241321, "lat": 40.4284183, "lon": -3.7145938, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241322, "lat": 40.4260475, "lon": -3.7129099, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241323, "lat": 40.4246605, "lon": -3.7119059, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241329, "lat": 40.4229688, "lon": -3.6882792, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241330, "lat": 40.4260413, "lon": -3.687736, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241331, "lat": 40.4295615, "lon": -3.6870869, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241332, "lat": 40.4304189, "lon": -3.6861596, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241346, "lat": 40.4300398, "lon": -3.6837207, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241347, "lat": 40.4275647, "lon": -3.6839246, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241348, "lat": 40.4248412, "lon": -3.684149, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241356, "lat": 40.4259517, "lon": -3.712972, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241357, "lat": 40.4278975, "lon": -3.7143602, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241358, "lat": 40.4300458, "lon": -3.7159148, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241359, "lat": 40.4320374, "lon": -3.7173281, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241360, "lat": 40.4341003, "lon": -3.7179376, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241361, "lat": 40.4357262, "lon": -3.7182351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5422404797, "lat": 40.4336631, "lon": -3.7039971}, {"type": "node", "id": 5422404799, "lat": 40.433523, "lon": -3.7044644}, {"type": "node", "id": 5422404800, "lat": 40.433439, "lon": -3.7043453}, {"type": "node", "id": 5422404801, "lat": 40.4334334, "lon": -3.7041569}, {"type": "node", "id": 5425359850, "lat": 40.4399087, "lon": -3.7165979}, {"type": "node", "id": 5425359851, "lat": 40.4396066, "lon": -3.7162241}, {"type": "node", "id": 5425359852, "lat": 40.4393299, "lon": -3.7162319, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5425359853, "lat": 40.4392423, "lon": -3.7162349}, {"type": "node", "id": 5458872059, "lat": 40.431236, "lon": -3.6768494, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5469164207, "lat": 40.4413935, "lon": -3.7126497}, {"type": "node", "id": 5469164208, "lat": 40.4412721, "lon": -3.7125316}, {"type": "node", "id": 5553995268, "lat": 40.4494119, "lon": -3.7129298, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5602141868, "lat": 40.431223, "lon": -3.6765782}, {"type": "node", "id": 5602141869, "lat": 40.4311648, "lon": -3.6753588}, {"type": "node", "id": 5754419278, "lat": 40.4340498, "lon": -3.7086771, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5754419279, "lat": 40.4331719, "lon": -3.7057866, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5754419280, "lat": 40.4333207, "lon": -3.7052923, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5754419281, "lat": 40.4338527, "lon": -3.7068905, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5754419282, "lat": 40.433928, "lon": -3.706955, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5776878411, "lat": 40.4506498, "lon": -3.7125783}, {"type": "node", "id": 5776878415, "lat": 40.4508721, "lon": -3.7116095}, {"type": "node", "id": 5776878427, "lat": 40.4525396, "lon": -3.7112028, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5777193961, "lat": 40.4315295, "lon": -3.7070511, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5777193962, "lat": 40.4314255, "lon": -3.7069675, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5777200233, "lat": 40.4301343, "lon": -3.7106642}, {"type": "node", "id": 5783034260, "lat": 40.4462451, "lon": -3.7137458, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5784462286, "lat": 40.4432225, "lon": -3.705484, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462287, "lat": 40.4431628, "lon": -3.7056451, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462288, "lat": 40.442851, "lon": -3.7050274, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462289, "lat": 40.4433341, "lon": -3.7054062, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462290, "lat": 40.4433706, "lon": -3.7050892, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5784870819, "lat": 40.4424397, "lon": -3.7099011}, {"type": "node", "id": 5784870820, "lat": 40.4426236, "lon": -3.7093172, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5784870821, "lat": 40.4426466, "lon": -3.7095048, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5802031854, "lat": 40.4375042, "lon": -3.6986368, "tags": {"highway": "give_way"}}, {"type": "node", "id": 5802031858, "lat": 40.4375266, "lon": -3.6986341, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031859, "lat": 40.4374877, "lon": -3.6986858, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031871, "lat": 40.4371173, "lon": -3.699463, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031873, "lat": 40.4367279, "lon": -3.6994902, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 5802031881, "lat": 40.4367744, "lon": -3.6988313, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031895, "lat": 40.4357192, "lon": -3.6979195, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031896, "lat": 40.4358181, "lon": -3.6980182, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031897, "lat": 40.4357261, "lon": -3.6980609, "tags": {"highway": "give_way"}}, {"type": "node", "id": 5863695677, "lat": 40.436607, "lon": -3.6964215, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5941381327, "lat": 40.4480655, "lon": -3.6976046}, {"type": "node", "id": 5941381328, "lat": 40.4480186, "lon": -3.6968856, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5941381329, "lat": 40.4478729, "lon": -3.6958862, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5963987026, "lat": 40.4344704, "lon": -3.7017784, "tags": {"bus": "yes", "name": "Gral. \u00c1lvarez Castro - Eloy Gonzalo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1386", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987027, "lat": 40.436571, "lon": -3.7027001, "tags": {"bus": "yes", "name": "Gral. \u00c1lvarez Castro - Viriato", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1862", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987028, "lat": 40.4386467, "lon": -3.7036957, "tags": {"bus": "yes", "name": "Jos\u00e9 Abascal - Bravo Murillo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "807", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987029, "lat": 40.4434549, "lon": -3.7040638, "tags": {"bus": "yes", "name": "Bravo Murillo - Crist\u00f3bal Bordi\u00fa", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1382", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987030, "lat": 40.445608, "lon": -3.7039911, "tags": {"bus": "yes", "name": "Bravo Murillo - Maudes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1419", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987031, "lat": 40.4489788, "lon": -3.7036661, "tags": {"bus": "yes", "name": "Bravo Murillo - Almansa", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1600", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987032, "lat": 40.4513214, "lon": -3.7033197, "tags": {"bus": "yes", "name": "Bravo Murillo - Carolinas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1570", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987036, "lat": 40.4272274, "lon": -3.7064342, "tags": {"bus": "yes", "name": "San Bernardo - Dao\u00edz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1769", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987037, "lat": 40.4252931, "lon": -3.7073903, "tags": {"bus": "yes", "name": "San Bernardo - Ministerio Justicia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1767", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607249, "lat": 40.4342386, "lon": -3.7129666, "tags": {"bus": "yes", "name": "Fernando El Cat\u00f3lico - G. El Bueno", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "542", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607250, "lat": 40.4340034, "lon": -3.7092639, "tags": {"bus": "yes", "name": "Fernando El Cat\u00f3lico - Vallehermoso", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "541", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5966607251, "lat": 40.4338059, "lon": -3.7061522, "tags": {"bus": "yes", "name": "Fernando el Cat\u00f3lico - Magallanes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "540", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607252, "lat": 40.4338879, "lon": -3.7030512, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Cardenal Cisneros", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "538", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607253, "lat": 40.434988, "lon": -3.6976773, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Alonso Cano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1895", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607254, "lat": 40.4350528, "lon": -3.6952584, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fdez. de la Hoz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "528", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607255, "lat": 40.4351841, "lon": -3.6901827, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fortuny", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "530", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607256, "lat": 40.4350752, "lon": -3.6860508, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Serrano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2600", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607275, "lat": 40.434975, "lon": -3.6840009, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Vel\u00e1zquez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2598", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607276, "lat": 40.4349686, "lon": -3.6838702, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Vel\u00e1zquez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2599", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607277, "lat": 40.4354635, "lon": -3.6868663, "tags": {"bus": "yes", "name": "Hermanos B\u00e9cquer - Serrano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2601", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607278, "lat": 40.4357956, "lon": -3.6878781, "tags": {"bus": "yes", "name": "Gral. Or\u00e1a - P\u00ba Castellana", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "537", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607279, "lat": 40.4358786, "lon": -3.6878098, "tags": {"bus": "yes", "name": "Gral. Or\u00e1a - P\u00ba Castellana", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2602", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607280, "lat": 40.4351753, "lon": -3.6905419, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fortuny", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "529", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607281, "lat": 40.4351234, "lon": -3.6926058, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Zurbano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1893", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607282, "lat": 40.4351228, "lon": -3.6926303, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Zurbano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1894", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607283, "lat": 40.4350323, "lon": -3.6960576, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fdez. de la Hoz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "527", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607284, "lat": 40.4346875, "lon": -3.6997711, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Juan de Austria", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "526", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610985, "lat": 40.4346826, "lon": -3.6997914, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Juan De Austria", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "525", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610986, "lat": 40.4341914, "lon": -3.7027635, "tags": {"bus": "yes", "name": "Cardenal Cisneros - Eloy Gonzalo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "524", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610987, "lat": 40.4349193, "lon": -3.7049101, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Magallanes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "523", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610988, "lat": 40.4351347, "lon": -3.709044, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Vallehermoso", "operator": "Lineas 16 y 61 - Parada 522", "public_transport": "stop_position", "ref": "522", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610989, "lat": 40.4353325, "lon": -3.7134447, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Guzm\u00e1n El Bueno", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "521", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610990, "lat": 40.4354919, "lon": -3.7174177, "tags": {"bus": "yes", "name": "Fern\u00e1ndez de los R\u00edos - Hilari\u00f3n Eslava", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "520", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484995, "lat": 40.4250353, "lon": -3.7074196, "tags": {"bus": "yes", "name": "San Bernardo - Ministerio Justicia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1768", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484996, "lat": 40.4295194, "lon": -3.7049656, "tags": {"bus": "yes", "name": "Carranza - Gta. Bilbao", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1226", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484997, "lat": 40.4291847, "lon": -3.7029727, "tags": {"bus": "yes", "name": "Carranza - Gta. Bilbao", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1226", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484998, "lat": 40.428415, "lon": -3.6990596, "tags": {"bus": "yes", "name": "Sagasta - Manuel Silvela", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1228", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484999, "lat": 40.4283354, "lon": -3.6958353, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Alonso Mart\u00ednez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1864", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5970485000, "lat": 40.4318253, "lon": -3.6973818, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Chamber\u00ed", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1863", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970485003, "lat": 40.4293976, "lon": -3.7060547, "tags": {"bus": "yes", "name": "Gta. de Ruiz Jim\u00e9nez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1772", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506942, "lat": 40.4515624, "lon": -3.7032846, "tags": {"bus": "yes", "name": "Bravo Murillo - Teruel", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1569", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506943, "lat": 40.4492109, "lon": -3.7036316, "tags": {"bus": "yes", "name": "Bravo Murillo - Palencia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1568", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506944, "lat": 40.4460549, "lon": -3.7035195, "tags": {"bus": "yes", "name": "Sta. Engracia N\u00ba 162", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1420", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506945, "lat": 40.4417752, "lon": -3.7016655, "tags": {"bus": "yes", "name": "Sta. Engracia - R\u00edos Rosas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1398", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506946, "lat": 40.439444, "lon": -3.7006612, "tags": {"bus": "yes", "name": "Sta. Engracia - Bret\u00f3n los Herreros", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1397", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506947, "lat": 40.4362302, "lon": -3.6992771, "tags": {"bus": "yes", "name": "Sta. Engracia - Garc\u00eda de Paredes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1870", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506948, "lat": 40.4345526, "lon": -3.6985575, "tags": {"bus": "yes", "name": "Sta. Engracia - Gral. Mtnez. Campos", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1869", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506949, "lat": 40.4326259, "lon": -3.6976976, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Chamber\u00ed", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1868", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506950, "lat": 40.4306683, "lon": -3.6968453, "tags": {"bus": "yes", "name": "Sta. Engracia - Caracas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "4675", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506951, "lat": 40.4282449, "lon": -3.6957973, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Alonso Mart\u00ednez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1865", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5970506952, "lat": 40.4264227, "lon": -3.6969068, "tags": {"bus": "yes", "name": "Pza. de Santa B\u00e1rbara", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "5639", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506953, "lat": 40.4235518, "lon": -3.6987302, "tags": {"bus": "yes", "name": "Hortaleza - Gravina", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "278", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506954, "lat": 40.4213829, "lon": -3.7003181, "tags": {"bus": "yes", "name": "Hortaleza - Infantas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "5376", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5987136571, "lat": 40.4394453, "lon": -3.7064765}, {"type": "node", "id": 6000178811, "lat": 40.4366214, "lon": -3.6937445}, {"type": "node", "id": 6020619571, "lat": 40.4415968, "lon": -3.6960268, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6020619572, "lat": 40.441724, "lon": -3.6958749, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6020619573, "lat": 40.4418714, "lon": -3.6989191, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6020619574, "lat": 40.4419991, "lon": -3.6990594, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6074452275, "lat": 40.4313032, "lon": -3.6782598, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6074452277, "lat": 40.4312916, "lon": -3.6780166, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6101370500, "lat": 40.4447767, "lon": -3.6889959, "tags": {"highway": "crossing"}}, {"type": "node", "id": 6101370501, "lat": 40.4443538, "lon": -3.6887596}, {"type": "node", "id": 6101370502, "lat": 40.4437449, "lon": -3.6890132}, {"type": "node", "id": 6101370503, "lat": 40.4440186, "lon": -3.6887861}, {"type": "node", "id": 6101370504, "lat": 40.4435686, "lon": -3.6898195}, {"type": "node", "id": 6109456225, "lat": 40.4200381, "lon": -3.7011484}, {"type": "node", "id": 6109456233, "lat": 40.4201413, "lon": -3.7011387}, {"type": "node", "id": 6130961139, "lat": 40.4298295, "lon": -3.7138812}, {"type": "node", "id": 6187709127, "lat": 40.4370087, "lon": -3.7025407}, {"type": "node", "id": 6211774594, "lat": 40.4261991, "lon": -3.6812851, "tags": {"crossing": "marked", "crossing:markings": "yes", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6231141665, "lat": 40.4315464, "lon": -3.7077991}, {"type": "node", "id": 6231141666, "lat": 40.4315404, "lon": -3.7076843}, {"type": "node", "id": 6235643930, "lat": 40.4470065, "lon": -3.7104779}, {"type": "node", "id": 6238484470, "lat": 40.4465633, "lon": -3.7123474, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238484473, "lat": 40.4472555, "lon": -3.7121382, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6238484475, "lat": 40.4493833, "lon": -3.713223, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 6238487898, "lat": 40.4466716, "lon": -3.7141013, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487900, "lat": 40.4462601, "lon": -3.7124354, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487901, "lat": 40.4461491, "lon": -3.7122722, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487902, "lat": 40.4463497, "lon": -3.7120672, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487903, "lat": 40.4464413, "lon": -3.7124977, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487904, "lat": 40.4456429, "lon": -3.7122342, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6238487905, "lat": 40.4460121, "lon": -3.7106769, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6238487906, "lat": 40.4458867, "lon": -3.7104792, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487907, "lat": 40.446674, "lon": -3.7104367, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6238487908, "lat": 40.4469158, "lon": -3.7101849, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238548037, "lat": 40.4504275, "lon": -3.7135207, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 6277264493, "lat": 40.4427745, "lon": -3.7094879}, {"type": "node", "id": 6301052256, "lat": 40.42383, "lon": -3.6971996}, {"type": "node", "id": 6301052259, "lat": 40.4239642, "lon": -3.6971441}, {"type": "node", "id": 6314640596, "lat": 40.4400976, "lon": -3.7127581, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640612, "lat": 40.443847, "lon": -3.7151718, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314640613, "lat": 40.440012, "lon": -3.7128944, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640616, "lat": 40.4426824, "lon": -3.7143195, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6314640618, "lat": 40.4413015, "lon": -3.7135243, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314640621, "lat": 40.4400002, "lon": -3.7126388, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640622, "lat": 40.4412794, "lon": -3.7127894, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640624, "lat": 40.4407164, "lon": -3.7127064}, {"type": "node", "id": 6314674724, "lat": 40.425517, "lon": -3.7018878, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314674725, "lat": 40.4249595, "lon": -3.7020496, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314674726, "lat": 40.4251921, "lon": -3.7031607, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314750363, "lat": 40.4314513, "lon": -3.7075083, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6314750367, "lat": 40.4293073, "lon": -3.7047431}, {"type": "node", "id": 6318921548, "lat": 40.4354858, "lon": -3.7194126}, {"type": "node", "id": 6318921549, "lat": 40.4355543, "lon": -3.7193372}, {"type": "node", "id": 6318921550, "lat": 40.4355763, "lon": -3.719298}, {"type": "node", "id": 6318921551, "lat": 40.4356106, "lon": -3.7191975}, {"type": "node", "id": 6318921552, "lat": 40.4356285, "lon": -3.719055}, {"type": "node", "id": 6320489341, "lat": 40.4381028, "lon": -3.7178186}, {"type": "node", "id": 6327649411, "lat": 40.4436137, "lon": -3.7162737}, {"type": "node", "id": 6327649412, "lat": 40.4435867, "lon": -3.716275, "tags": {"access": "permissive", "barrier": "gate"}}, {"type": "node", "id": 6327649413, "lat": 40.4434798, "lon": -3.7162811}, {"type": "node", "id": 6327649426, "lat": 40.4439022, "lon": -3.7171422}, {"type": "node", "id": 6348133632, "lat": 40.4465435, "lon": -3.7171551, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133633, "lat": 40.4461462, "lon": -3.7156811, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133634, "lat": 40.4447828, "lon": -3.7148308, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133635, "lat": 40.4449695, "lon": -3.7156313, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133636, "lat": 40.444868, "lon": -3.7160057, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133637, "lat": 40.4450052, "lon": -3.716915, "tags": {"highway": "give_way"}}, {"type": "node", "id": 6348133638, "lat": 40.4449994, "lon": -3.7170473, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133639, "lat": 40.4450662, "lon": -3.7169373, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133640, "lat": 40.4457834, "lon": -3.7172278, "tags": {"highway": "give_way"}}, {"type": "node", "id": 6348133642, "lat": 40.4458502, "lon": -3.7160496}, {"type": "node", "id": 6348197385, "lat": 40.4465275, "lon": -3.7121506, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6348197393, "lat": 40.4466911, "lon": -3.7106656}, {"type": "node", "id": 6348197395, "lat": 40.4468781, "lon": -3.7107405, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6366504393, "lat": 40.4476454, "lon": -3.7195762}, {"type": "node", "id": 6380793478, "lat": 40.4449075, "lon": -3.7154304, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6380793483, "lat": 40.445777, "lon": -3.7172569, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6380794185, "lat": 40.4462351, "lon": -3.7172658}, {"type": "node", "id": 6380794196, "lat": 40.4466419, "lon": -3.7171599}, {"type": "node", "id": 6380794264, "lat": 40.4461428, "lon": -3.7161114, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6380794280, "lat": 40.4459513, "lon": -3.715294}, {"type": "node", "id": 6380794283, "lat": 40.4459231, "lon": -3.7152145}, {"type": "node", "id": 6380794341, "lat": 40.4461558, "lon": -3.7128628}, {"type": "node", "id": 6380794348, "lat": 40.4459965, "lon": -3.7135131}, {"type": "node", "id": 6417677196, "lat": 40.4305999, "lon": -3.6898163}, {"type": "node", "id": 6420985242, "lat": 40.4400113, "lon": -3.6847733}, {"type": "node", "id": 6424299725, "lat": 40.4378788, "lon": -3.7042373}, {"type": "node", "id": 6440431086, "lat": 40.4329718, "lon": -3.7144921, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6441681710, "lat": 40.4306071, "lon": -3.7146501, "tags": {"highway": "crossing"}}, {"type": "node", "id": 6441681725, "lat": 40.4301055, "lon": -3.7089957, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 6441681744, "lat": 40.4306156, "lon": -3.7156313, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681745, "lat": 40.430394, "lon": -3.7133396, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681746, "lat": 40.4302245, "lon": -3.7117011, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681747, "lat": 40.4301054, "lon": -3.7103619, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681748, "lat": 40.4298887, "lon": -3.7084169, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681749, "lat": 40.4296161, "lon": -3.7064262, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681751, "lat": 40.4298828, "lon": -3.7092989, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681752, "lat": 40.4300345, "lon": -3.7107434, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681753, "lat": 40.4303717, "lon": -3.7142244, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681754, "lat": 40.4301829, "lon": -3.7121484, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6515115932, "lat": 40.4251847, "lon": -3.6910455}, {"type": "node", "id": 6592972601, "lat": 40.429896, "lon": -3.7142458}, {"type": "node", "id": 6592972602, "lat": 40.4298827, "lon": -3.7141135}, {"type": "node", "id": 6592972603, "lat": 40.4298976, "lon": -3.7141728}, {"type": "node", "id": 6634926258, "lat": 40.4324109, "lon": -3.6978853}, {"type": "node", "id": 6684049122, "lat": 40.4481036, "lon": -3.6981184}, {"type": "node", "id": 6684049129, "lat": 40.4479586, "lon": -3.6956648}, {"type": "node", "id": 6764785321, "lat": 40.4508687, "lon": -3.6997566, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6841096839, "lat": 40.4271934, "lon": -3.7036189}, {"type": "node", "id": 6841096842, "lat": 40.4266522, "lon": -3.7037003}, {"type": "node", "id": 6861422000, "lat": 40.4405469, "lon": -3.6835289}, {"type": "node", "id": 6861422001, "lat": 40.440606, "lon": -3.6837683}, {"type": "node", "id": 6934412482, "lat": 40.4517839, "lon": -3.703121, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6934422584, "lat": 40.4510631, "lon": -3.7035091, "tags": {"crossing:markings": "yes", "crossing:signals": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6934437085, "lat": 40.4505738, "lon": -3.703578, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6934437086, "lat": 40.4499892, "lon": -3.7036665, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6934437088, "lat": 40.4486544, "lon": -3.7038598, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6947820725, "lat": 40.4450589, "lon": -3.7210237}, {"type": "node", "id": 6981674370, "lat": 40.4320189, "lon": -3.7203711, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6981674371, "lat": 40.4320075, "lon": -3.7202025, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6981674372, "lat": 40.4318464, "lon": -3.7170544, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 6981674375, "lat": 40.4291209, "lon": -3.7151968}, {"type": "node", "id": 6981674376, "lat": 40.429573, "lon": -3.7144424}, {"type": "node", "id": 6981674377, "lat": 40.4295611, "lon": -3.7145226}, {"type": "node", "id": 6981674379, "lat": 40.4299348, "lon": -3.7140804, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6981674380, "lat": 40.4302286, "lon": -3.7139763}, {"type": "node", "id": 6981674381, "lat": 40.4293132, "lon": -3.7147988}, {"type": "node", "id": 7058240037, "lat": 40.4502179, "lon": -3.7110171, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240038, "lat": 40.4502518, "lon": -3.7105923, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240040, "lat": 40.4496872, "lon": -3.710287, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240043, "lat": 40.4496021, "lon": -3.7101786, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240046, "lat": 40.4496642, "lon": -3.7100287, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7058240047, "lat": 40.4496069, "lon": -3.7102092, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 7058240050, "lat": 40.4497035, "lon": -3.7110403, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240058, "lat": 40.4494906, "lon": -3.7092481, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240062, "lat": 40.4494443, "lon": -3.7094377, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058272481, "lat": 40.4486118, "lon": -3.709543, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058272483, "lat": 40.4495494, "lon": -3.7113471, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058286485, "lat": 40.4495167, "lon": -3.7116937, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7062214667, "lat": 40.4419059, "lon": -3.7007148}, {"type": "node", "id": 7062214669, "lat": 40.4388629, "lon": -3.7065148, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214670, "lat": 40.4400394, "lon": -3.7080753, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214671, "lat": 40.4399709, "lon": -3.7081772, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214672, "lat": 40.4400493, "lon": -3.7082815, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214673, "lat": 40.4408865, "lon": -3.7078621, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062214674, "lat": 40.4406794, "lon": -3.7081142, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062214675, "lat": 40.4406761, "lon": -3.708433, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062256617, "lat": 40.4393831, "lon": -3.6962019, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062256618, "lat": 40.4395399, "lon": -3.6961895, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062256619, "lat": 40.4404723, "lon": -3.6961157, "tags": {"highway": "crossing"}}, {"type": "node", "id": 7062256620, "lat": 40.4406457, "lon": -3.696102, "tags": {"highway": "crossing"}}, {"type": "node", "id": 7068076319, "lat": 40.4357689, "lon": -3.7044482, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 7068076320, "lat": 40.4357719, "lon": -3.7049939}, {"type": "node", "id": 7098087916, "lat": 40.4314266, "lon": -3.6808765, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087918, "lat": 40.431438, "lon": -3.6811166, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087922, "lat": 40.4326248, "lon": -3.6807833, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087923, "lat": 40.4327588, "lon": -3.6807704, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7098087928, "lat": 40.4313755, "lon": -3.6797477}, {"type": "node", "id": 7140036350, "lat": 40.4263423, "lon": -3.7192214}, {"type": "node", "id": 7159758624, "lat": 40.4252755, "lon": -3.6999222}, {"type": "node", "id": 7159758625, "lat": 40.4256912, "lon": -3.7001824}, {"type": "node", "id": 7159758665, "lat": 40.4265305, "lon": -3.7004603}, {"type": "node", "id": 7159758672, "lat": 40.4267405, "lon": -3.6998812}, {"type": "node", "id": 7159758684, "lat": 40.4259607, "lon": -3.6995856}, {"type": "node", "id": 7159758686, "lat": 40.4257551, "lon": -3.700041}, {"type": "node", "id": 7159758687, "lat": 40.4257056, "lon": -3.7010407}, {"type": "node", "id": 7300259079, "lat": 40.4380179, "lon": -3.6878962, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2017", "tactile_paving": "yes"}}, {"type": "node", "id": 7300259083, "lat": 40.4380678, "lon": -3.68902, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2017"}}, {"type": "node", "id": 7414071643, "lat": 40.451268, "lon": -3.7016394}, {"type": "node", "id": 7510718610, "lat": 40.4356066, "lon": -3.7195248}, {"type": "node", "id": 7510718611, "lat": 40.4357444, "lon": -3.719572}, {"type": "node", "id": 7510718612, "lat": 40.4357255, "lon": -3.7195255}, {"type": "node", "id": 7510718613, "lat": 40.4359031, "lon": -3.7195846}, {"type": "node", "id": 7510718614, "lat": 40.4359106, "lon": -3.7195696}, {"type": "node", "id": 7510718615, "lat": 40.4359549, "lon": -3.719652}, {"type": "node", "id": 7510718616, "lat": 40.4372864, "lon": -3.7234197}, {"type": "node", "id": 7510718617, "lat": 40.4373638, "lon": -3.7234589}, {"type": "node", "id": 7510718618, "lat": 40.4373786, "lon": -3.72346}, {"type": "node", "id": 7510718619, "lat": 40.437322, "lon": -3.7234874}, {"type": "node", "id": 7510718620, "lat": 40.4372873, "lon": -3.7233659}, {"type": "node", "id": 7537445994, "lat": 40.4274937, "lon": -3.7138548}, {"type": "node", "id": 7537445996, "lat": 40.4277638, "lon": -3.7141592}, {"type": "node", "id": 7537445997, "lat": 40.4280028, "lon": -3.7142442}, {"type": "node", "id": 7537445998, "lat": 40.4279916, "lon": -3.7142622}, {"type": "node", "id": 7537445999, "lat": 40.4277317, "lon": -3.7141881}, {"type": "node", "id": 7537446000, "lat": 40.426242, "lon": -3.7132768}, {"type": "node", "id": 7537446001, "lat": 40.4263217, "lon": -3.7132559}, {"type": "node", "id": 7537446002, "lat": 40.4262829, "lon": -3.7132621}, {"type": "node", "id": 7537446003, "lat": 40.4256431, "lon": -3.7136597}, {"type": "node", "id": 7537446004, "lat": 40.425657, "lon": -3.7136886}, {"type": "node", "id": 7537446005, "lat": 40.425009, "lon": -3.7140581}, {"type": "node", "id": 7537446006, "lat": 40.4250033, "lon": -3.7140197}, {"type": "node", "id": 7537446007, "lat": 40.4250032, "lon": -3.7140404}, {"type": "node", "id": 7537616086, "lat": 40.4246124, "lon": -3.690351}, {"type": "node", "id": 7537616087, "lat": 40.4246593, "lon": -3.6904063}, {"type": "node", "id": 7537616088, "lat": 40.4247999, "lon": -3.6903504}, {"type": "node", "id": 7540286795, "lat": 40.4269284, "lon": -3.7096194}, {"type": "node", "id": 7549586455, "lat": 40.4372666, "lon": -3.7234969}, {"type": "node", "id": 7549586457, "lat": 40.4372875, "lon": -3.7235374}, {"type": "node", "id": 7549586459, "lat": 40.4374241, "lon": -3.7235049}, {"type": "node", "id": 7549586460, "lat": 40.4374126, "lon": -3.723488}, {"type": "node", "id": 7549586462, "lat": 40.4367208, "lon": -3.7219308}, {"type": "node", "id": 7549586463, "lat": 40.4368618, "lon": -3.7223041}, {"type": "node", "id": 7549586464, "lat": 40.4369782, "lon": -3.7224193}, {"type": "node", "id": 7549586465, "lat": 40.4373049, "lon": -3.7230445}, {"type": "node", "id": 7549586466, "lat": 40.4372456, "lon": -3.7229185}, {"type": "node", "id": 7549586470, "lat": 40.4379914, "lon": -3.7242248}, {"type": "node", "id": 7549586473, "lat": 40.4376903, "lon": -3.7239176}, {"type": "node", "id": 7549586474, "lat": 40.437735, "lon": -3.723868}, {"type": "node", "id": 7549586477, "lat": 40.4362473, "lon": -3.7213974}, {"type": "node", "id": 7549586478, "lat": 40.4367445, "lon": -3.7212443}, {"type": "node", "id": 7549586479, "lat": 40.43676, "lon": -3.7211009}, {"type": "node", "id": 7549586480, "lat": 40.4367584, "lon": -3.721379}, {"type": "node", "id": 7549586481, "lat": 40.4368267, "lon": -3.721544}, {"type": "node", "id": 7549586482, "lat": 40.4376179, "lon": -3.72325}, {"type": "node", "id": 7549586483, "lat": 40.4378461, "lon": -3.7237412}, {"type": "node", "id": 7549586484, "lat": 40.4379625, "lon": -3.7236916}, {"type": "node", "id": 7549593988, "lat": 40.4380399, "lon": -3.7240163}, {"type": "node", "id": 7549593989, "lat": 40.4380777, "lon": -3.7238696}, {"type": "node", "id": 7549593990, "lat": 40.4374274, "lon": -3.7228941}, {"type": "node", "id": 7549593996, "lat": 40.4380704, "lon": -3.7239969}, {"type": "node", "id": 7549593998, "lat": 40.4373149, "lon": -3.7204228}, {"type": "node", "id": 7549593999, "lat": 40.4373723, "lon": -3.7202125}, {"type": "node", "id": 7549719106, "lat": 40.4207063, "lon": -3.6859246}, {"type": "node", "id": 7549719136, "lat": 40.4204453, "lon": -3.6872497}, {"type": "node", "id": 7549719138, "lat": 40.4203917, "lon": -3.687166}, {"type": "node", "id": 7549719146, "lat": 40.4204685, "lon": -3.6872618}, {"type": "node", "id": 7549719160, "lat": 40.4239927, "lon": -3.6882021}, {"type": "node", "id": 7549719161, "lat": 40.4239765, "lon": -3.6881599}, {"type": "node", "id": 7549719165, "lat": 40.425023, "lon": -3.6907119}, {"type": "node", "id": 7549719166, "lat": 40.4245449, "lon": -3.6902559}, {"type": "node", "id": 7549719167, "lat": 40.4245238, "lon": -3.6902142}, {"type": "node", "id": 7549719169, "lat": 40.4247946, "lon": -3.690394}, {"type": "node", "id": 7549719170, "lat": 40.4249534, "lon": -3.6901679}, {"type": "node", "id": 7549719171, "lat": 40.4245108, "lon": -3.6903398}, {"type": "node", "id": 7549719172, "lat": 40.4247303, "lon": -3.6902672}, {"type": "node", "id": 7549719173, "lat": 40.4248316, "lon": -3.6902523}, {"type": "node", "id": 7549719174, "lat": 40.4248866, "lon": -3.6901991}, {"type": "node", "id": 7549719175, "lat": 40.4244856, "lon": -3.6903505}, {"type": "node", "id": 7549719176, "lat": 40.4245097, "lon": -3.6903192}, {"type": "node", "id": 7549719177, "lat": 40.4245267, "lon": -3.6902568}, {"type": "node", "id": 7549719178, "lat": 40.4245218, "lon": -3.690285}, {"type": "node", "id": 7549719179, "lat": 40.4255242, "lon": -3.6902806}, {"type": "node", "id": 7549719181, "lat": 40.4253531, "lon": -3.6900105}, {"type": "node", "id": 7549719182, "lat": 40.4251209, "lon": -3.6900806}, {"type": "node", "id": 7549719183, "lat": 40.4253836, "lon": -3.6899419}, {"type": "node", "id": 7549719184, "lat": 40.4255574, "lon": -3.6900907}, {"type": "node", "id": 7549719185, "lat": 40.4255329, "lon": -3.6900441}, {"type": "node", "id": 7549719186, "lat": 40.4255012, "lon": -3.6909233}, {"type": "node", "id": 7549719187, "lat": 40.4254932, "lon": -3.6908007}, {"type": "node", "id": 7549719188, "lat": 40.4253839, "lon": -3.6909302}, {"type": "node", "id": 7549719189, "lat": 40.4249635, "lon": -3.6906923}, {"type": "node", "id": 7549719190, "lat": 40.4250633, "lon": -3.6907215}, {"type": "node", "id": 7549719191, "lat": 40.4247967, "lon": -3.6904531}, {"type": "node", "id": 7549719192, "lat": 40.4248122, "lon": -3.690523}, {"type": "node", "id": 7549719193, "lat": 40.424829, "lon": -3.6905734}, {"type": "node", "id": 7549719194, "lat": 40.4248526, "lon": -3.6906177}, {"type": "node", "id": 7549719195, "lat": 40.4248692, "lon": -3.6902088}, {"type": "node", "id": 7549719197, "lat": 40.4256098, "lon": -3.689198}, {"type": "node", "id": 7549719198, "lat": 40.4255887, "lon": -3.6892133}, {"type": "node", "id": 7549719199, "lat": 40.4255177, "lon": -3.688472}, {"type": "node", "id": 7549719200, "lat": 40.4254397, "lon": -3.6897844}, {"type": "node", "id": 7549719201, "lat": 40.425374, "lon": -3.6879699}, {"type": "node", "id": 7559826100, "lat": 40.4274836, "lon": -3.695257}, {"type": "node", "id": 7569547511, "lat": 40.4276952, "lon": -3.6961392}, {"type": "node", "id": 7569547512, "lat": 40.4276634, "lon": -3.6961032}, {"type": "node", "id": 7569547513, "lat": 40.427686, "lon": -3.6962393}, {"type": "node", "id": 7569547514, "lat": 40.4278737, "lon": -3.6961513}, {"type": "node", "id": 7600612665, "lat": 40.4377109, "lon": -3.7235304}, {"type": "node", "id": 7619689678, "lat": 40.4243331, "lon": -3.7144272}, {"type": "node", "id": 7619689680, "lat": 40.4243195, "lon": -3.7144188}, {"type": "node", "id": 7619693969, "lat": 40.4470418, "lon": -3.689408}, {"type": "node", "id": 7619693970, "lat": 40.4468234, "lon": -3.68953}, {"type": "node", "id": 7756112662, "lat": 40.4414852, "lon": -3.6778704}, {"type": "node", "id": 7756112663, "lat": 40.4413444, "lon": -3.6761954}, {"type": "node", "id": 7815310158, "lat": 40.4503663, "lon": -3.7166152}, {"type": "node", "id": 7815310165, "lat": 40.4489011, "lon": -3.7165324}, {"type": "node", "id": 7815310166, "lat": 40.4489368, "lon": -3.7165319}, {"type": "node", "id": 7825645058, "lat": 40.4417469, "lon": -3.6903849}, {"type": "node", "id": 7859244870, "lat": 40.4338695, "lon": -3.7186924}, {"type": "node", "id": 7864693885, "lat": 40.4303314, "lon": -3.7134745}, {"type": "node", "id": 7864693886, "lat": 40.4304078, "lon": -3.7136561}, {"type": "node", "id": 7864693887, "lat": 40.4303531, "lon": -3.7134977}, {"type": "node", "id": 7864693888, "lat": 40.4303597, "lon": -3.7138363}, {"type": "node", "id": 7864693890, "lat": 40.4302848, "lon": -3.7133633}, {"type": "node", "id": 7881641304, "lat": 40.4288494, "lon": -3.6930365}, {"type": "node", "id": 7892603717, "lat": 40.4376986, "lon": -3.6946016}, {"type": "node", "id": 7892603727, "lat": 40.4374203, "lon": -3.6963572}, {"type": "node", "id": 7930651356, "lat": 40.4263748, "lon": -3.7131321}, {"type": "node", "id": 7930651357, "lat": 40.426399, "lon": -3.7131341}, {"type": "node", "id": 7930651358, "lat": 40.4264283, "lon": -3.7131294}, {"type": "node", "id": 7930651359, "lat": 40.4264425, "lon": -3.7131201}, {"type": "node", "id": 7930651360, "lat": 40.4264701, "lon": -3.7130734}, {"type": "node", "id": 7930651361, "lat": 40.4264887, "lon": -3.7130267}, {"type": "node", "id": 7930651362, "lat": 40.4265092, "lon": -3.712987}, {"type": "node", "id": 7930651363, "lat": 40.4265296, "lon": -3.7129613}, {"type": "node", "id": 7930651364, "lat": 40.4264264, "lon": -3.7131839}, {"type": "node", "id": 7930651365, "lat": 40.4265606, "lon": -3.7129191}, {"type": "node", "id": 7930651366, "lat": 40.4265616, "lon": -3.7129391}, {"type": "node", "id": 7930651367, "lat": 40.4265532, "lon": -3.7128921}, {"type": "node", "id": 7930651371, "lat": 40.4265584, "lon": -3.7129064}, {"type": "node", "id": 7930651372, "lat": 40.426546, "lon": -3.7129477}, {"type": "node", "id": 7934347505, "lat": 40.4268272, "lon": -3.7131674}, {"type": "node", "id": 7934347506, "lat": 40.4268542, "lon": -3.7132194}, {"type": "node", "id": 7934347507, "lat": 40.4268633, "lon": -3.7132578}, {"type": "node", "id": 7934347508, "lat": 40.4268643, "lon": -3.7132927}, {"type": "node", "id": 7934347509, "lat": 40.4268582, "lon": -3.7133423}, {"type": "node", "id": 7934347510, "lat": 40.4268357, "lon": -3.7134013}, {"type": "node", "id": 7934347511, "lat": 40.4268139, "lon": -3.7134521}, {"type": "node", "id": 7934347512, "lat": 40.4267918, "lon": -3.7134751}, {"type": "node", "id": 7934347513, "lat": 40.4267663, "lon": -3.7134845}, {"type": "node", "id": 7934347514, "lat": 40.4267326, "lon": -3.7134872}, {"type": "node", "id": 7934347515, "lat": 40.4266835, "lon": -3.7134807}, {"type": "node", "id": 7934347516, "lat": 40.4265993, "lon": -3.7129444}, {"type": "node", "id": 7934347517, "lat": 40.4266242, "lon": -3.7129585}, {"type": "node", "id": 7934347518, "lat": 40.4266471, "lon": -3.7129762}, {"type": "node", "id": 7934347519, "lat": 40.426666, "lon": -3.7129926}, {"type": "node", "id": 7934347520, "lat": 40.4252229, "lon": -3.7124407, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7934347521, "lat": 40.4252613, "lon": -3.712343, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7961931722, "lat": 40.4331367, "lon": -3.7265079}, {"type": "node", "id": 7965756604, "lat": 40.426845, "lon": -3.7133769, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7965756605, "lat": 40.4270798, "lon": -3.7137699}, {"type": "node", "id": 7997067405, "lat": 40.4463181, "lon": -3.6897558, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 7997067406, "lat": 40.4462765, "lon": -3.6897633, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8003058429, "lat": 40.4225242, "lon": -3.6881958, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 8004974955, "lat": 40.4317496, "lon": -3.6918254, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8004974956, "lat": 40.4307184, "lon": -3.6925676, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8007694242, "lat": 40.4262613, "lon": -3.7093336}, {"type": "node", "id": 8057391304, "lat": 40.4362848, "lon": -3.6842934, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8117579706, "lat": 40.4472629, "lon": -3.7068566, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8155107990, "lat": 40.4354113, "lon": -3.6997114}, {"type": "node", "id": 8155107991, "lat": 40.4353797, "lon": -3.6997232}, {"type": "node", "id": 8155107993, "lat": 40.4353443, "lon": -3.6997364}, {"type": "node", "id": 8194903531, "lat": 40.4328089, "lon": -3.7074767, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8194903532, "lat": 40.4327471, "lon": -3.7074888, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8194903533, "lat": 40.4327299, "lon": -3.707046}, {"type": "node", "id": 8194903534, "lat": 40.4327219, "lon": -3.7070841}, {"type": "node", "id": 8194903535, "lat": 40.4328276, "lon": -3.7070529}, {"type": "node", "id": 8213572608, "lat": 40.4459572, "lon": -3.6877536}, {"type": "node", "id": 8213572609, "lat": 40.4459756, "lon": -3.6878677}, {"type": "node", "id": 8213572610, "lat": 40.4460253, "lon": -3.6866937}, {"type": "node", "id": 8213572611, "lat": 40.4460161, "lon": -3.6865761}, {"type": "node", "id": 8213572612, "lat": 40.4459056, "lon": -3.6863886}, {"type": "node", "id": 8213572613, "lat": 40.4457727, "lon": -3.6861596}, {"type": "node", "id": 8213572614, "lat": 40.4458761, "lon": -3.6861767}, {"type": "node", "id": 8213572615, "lat": 40.4447965, "lon": -3.6863202}, {"type": "node", "id": 8213602118, "lat": 40.444834, "lon": -3.6860759}, {"type": "node", "id": 8213602119, "lat": 40.4449147, "lon": -3.6859921}, {"type": "node", "id": 8213602120, "lat": 40.4448054, "lon": -3.6860613}, {"type": "node", "id": 8213602121, "lat": 40.4448093, "lon": -3.6859492}, {"type": "node", "id": 8213602122, "lat": 40.4447841, "lon": -3.6858196}, {"type": "node", "id": 8213602123, "lat": 40.4447424, "lon": -3.6857521}, {"type": "node", "id": 8213602124, "lat": 40.4447446, "lon": -3.6856416}, {"type": "node", "id": 8213602125, "lat": 40.4448463, "lon": -3.6857421}, {"type": "node", "id": 8213602126, "lat": 40.4449351, "lon": -3.6857795}, {"type": "node", "id": 8213602127, "lat": 40.4450459, "lon": -3.6858317}, {"type": "node", "id": 8213602128, "lat": 40.4449841, "lon": -3.6857642}, {"type": "node", "id": 8213602129, "lat": 40.4451636, "lon": -3.6858636}, {"type": "node", "id": 8213602130, "lat": 40.4450409, "lon": -3.6858788}, {"type": "node", "id": 8213602131, "lat": 40.4448304, "lon": -3.685388}, {"type": "node", "id": 8213602132, "lat": 40.4447712, "lon": -3.685277}, {"type": "node", "id": 8213602143, "lat": 40.445463, "lon": -3.6855034}, {"type": "node", "id": 8213602144, "lat": 40.4454311, "lon": -3.6853429}, {"type": "node", "id": 8213602145, "lat": 40.4452981, "lon": -3.6851881}, {"type": "node", "id": 8213602149, "lat": 40.444922, "lon": -3.6854331}, {"type": "node", "id": 8213602150, "lat": 40.4449541, "lon": -3.685376}, {"type": "node", "id": 8213602151, "lat": 40.4450186, "lon": -3.6852643}, {"type": "node", "id": 8213602152, "lat": 40.4450507, "lon": -3.6852363}, {"type": "node", "id": 8213602156, "lat": 40.4453774, "lon": -3.6852318}, {"type": "node", "id": 8224947183, "lat": 40.445387, "lon": -3.6858805}, {"type": "node", "id": 8224947184, "lat": 40.4453472, "lon": -3.6858548}, {"type": "node", "id": 8224947185, "lat": 40.4453446, "lon": -3.6858125}, {"type": "node", "id": 8224947186, "lat": 40.4455417, "lon": -3.6856841}, {"type": "node", "id": 8279212876, "lat": 40.4402891, "lon": -3.691385}, {"type": "node", "id": 8294838433, "lat": 40.4241066, "lon": -3.6842157}, {"type": "node", "id": 8294970381, "lat": 40.4337599, "lon": -3.6809091, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8294970384, "lat": 40.43375, "lon": -3.6807113, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8307252472, "lat": 40.421281, "lon": -3.6887568, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "no", "traffic_signals": "crossing", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252475, "lat": 40.4278619, "lon": -3.6872257, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 8307252476, "lat": 40.4318283, "lon": -3.6867884, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252477, "lat": 40.4329006, "lon": -3.6865016, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252478, "lat": 40.4330238, "lon": -3.6864908, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252479, "lat": 40.4350883, "lon": -3.6863182, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8398199114, "lat": 40.4511304, "lon": -3.7094216, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199115, "lat": 40.4509463, "lon": -3.7094748, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199204, "lat": 40.4505101, "lon": -3.7072281, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8398199205, "lat": 40.4506259, "lon": -3.7074476}, {"type": "node", "id": 8398199206, "lat": 40.4507647, "lon": -3.7076651}, {"type": "node", "id": 8398199207, "lat": 40.4509205, "lon": -3.7079845, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199208, "lat": 40.4510897, "lon": -3.708319, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199209, "lat": 40.4510009, "lon": -3.7083554, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199211, "lat": 40.4524689, "lon": -3.7105361}, {"type": "node", "id": 8398453275, "lat": 40.4510494, "lon": -3.7095107}, {"type": "node", "id": 8398453276, "lat": 40.4513837, "lon": -3.7093816}, {"type": "node", "id": 8398453280, "lat": 40.450683, "lon": -3.7095205}, {"type": "node", "id": 8398453281, "lat": 40.4505825, "lon": -3.7095003, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8398453282, "lat": 40.4501923, "lon": -3.7094104}, {"type": "node", "id": 8398453283, "lat": 40.4501527, "lon": -3.7094015}, {"type": "node", "id": 8400874013, "lat": 40.4516641, "lon": -3.7080745, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8400874015, "lat": 40.4506819, "lon": -3.704828}, {"type": "node", "id": 8401920800, "lat": 40.4507883, "lon": -3.7095321}, {"type": "node", "id": 8402179356, "lat": 40.4476887, "lon": -3.7039956}, {"type": "node", "id": 8402179358, "lat": 40.4479577, "lon": -3.7039574}, {"type": "node", "id": 8402179392, "lat": 40.4479594, "lon": -3.7039963}, {"type": "node", "id": 8402489211, "lat": 40.4518244, "lon": -3.7099788, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8402493606, "lat": 40.4504905, "lon": -3.7070998}, {"type": "node", "id": 8402493613, "lat": 40.4504691, "lon": -3.7069633, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8405390280, "lat": 40.4525478, "lon": -3.7108918}, {"type": "node", "id": 8406210452, "lat": 40.4524243, "lon": -3.7102481}, {"type": "node", "id": 8409510071, "lat": 40.4493613, "lon": -3.7075608}, {"type": "node", "id": 8409510072, "lat": 40.4493809, "lon": -3.7076406}, {"type": "node", "id": 8409510073, "lat": 40.4500142, "lon": -3.706501}, {"type": "node", "id": 8409510074, "lat": 40.4499664, "lon": -3.7066723}, {"type": "node", "id": 8409510075, "lat": 40.4490931, "lon": -3.7054984}, {"type": "node", "id": 8409510076, "lat": 40.4511895, "lon": -3.7061299}, {"type": "node", "id": 8410125841, "lat": 40.4510643, "lon": -3.7084123, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8410136432, "lat": 40.4508462, "lon": -3.7084527, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8410136827, "lat": 40.4514794, "lon": -3.7093105, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8412813522, "lat": 40.4471943, "lon": -3.7093762}, {"type": "node", "id": 8412813543, "lat": 40.4525593, "lon": -3.7109593}, {"type": "node", "id": 8412903967, "lat": 40.4481521, "lon": -3.7080746}, {"type": "node", "id": 8412903968, "lat": 40.4493553, "lon": -3.7089971}, {"type": "node", "id": 8412903969, "lat": 40.4492582, "lon": -3.7086748}, {"type": "node", "id": 8412903970, "lat": 40.449271, "lon": -3.7090752}, {"type": "node", "id": 8412903971, "lat": 40.4496146, "lon": -3.7103304}, {"type": "node", "id": 8412903972, "lat": 40.4496599, "lon": -3.7103491}, {"type": "node", "id": 8412903973, "lat": 40.449741, "lon": -3.7102332}, {"type": "node", "id": 8412903974, "lat": 40.4497757, "lon": -3.7102262}, {"type": "node", "id": 8415878082, "lat": 40.4470616, "lon": -3.7090632}, {"type": "node", "id": 8415878084, "lat": 40.4469744, "lon": -3.7095618}, {"type": "node", "id": 8415878085, "lat": 40.4470026, "lon": -3.7094341}, {"type": "node", "id": 8415878086, "lat": 40.4470526, "lon": -3.7091736}, {"type": "node", "id": 8415878095, "lat": 40.4472161, "lon": -3.709068}, {"type": "node", "id": 8415878098, "lat": 40.44688, "lon": -3.710174}, {"type": "node", "id": 8415878099, "lat": 40.4469569, "lon": -3.7102311}, {"type": "node", "id": 8416381980, "lat": 40.4518451, "lon": -3.7093434}, {"type": "node", "id": 8416381981, "lat": 40.4519044, "lon": -3.709345}, {"type": "node", "id": 8416409740, "lat": 40.4505146, "lon": -3.7085845, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409741, "lat": 40.4506286, "lon": -3.7089006, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409742, "lat": 40.45027, "lon": -3.7086874, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409743, "lat": 40.4499341, "lon": -3.7087757, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409744, "lat": 40.4513089, "lon": -3.7094022}, {"type": "node", "id": 8416532988, "lat": 40.4480139, "lon": -3.7080606}, {"type": "node", "id": 8416532989, "lat": 40.4481079, "lon": -3.7080589}, {"type": "node", "id": 8416532990, "lat": 40.4482044, "lon": -3.7081004}, {"type": "node", "id": 8416532991, "lat": 40.448283, "lon": -3.7081464}, {"type": "node", "id": 8416532992, "lat": 40.4483552, "lon": -3.7081967}, {"type": "node", "id": 8416532993, "lat": 40.4494351, "lon": -3.7092239}, {"type": "node", "id": 8418938599, "lat": 40.4523565, "lon": -3.7077959}, {"type": "node", "id": 8419169736, "lat": 40.4510045, "lon": -3.7082802, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169738, "lat": 40.4509737, "lon": -3.7083661, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169766, "lat": 40.4517428, "lon": -3.7080417, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8419169769, "lat": 40.4528997, "lon": -3.7080185, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169775, "lat": 40.4524264, "lon": -3.7077948, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169776, "lat": 40.4523696, "lon": -3.7077917, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169784, "lat": 40.4527117, "lon": -3.7079292}, {"type": "node", "id": 8419169785, "lat": 40.4508958, "lon": -3.7080388, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169786, "lat": 40.4503436, "lon": -3.7082427, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169788, "lat": 40.4504537, "lon": -3.708569, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169789, "lat": 40.450484, "lon": -3.7085218, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169894, "lat": 40.4493741, "lon": -3.7091125, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8419397863, "lat": 40.4497803, "lon": -3.7084201, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419397864, "lat": 40.4496972, "lon": -3.7082254, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8419397865, "lat": 40.4493166, "lon": -3.7074641, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397867, "lat": 40.4493335, "lon": -3.7074985}, {"type": "node", "id": 8419397868, "lat": 40.4493678, "lon": -3.707523}, {"type": "node", "id": 8419397869, "lat": 40.4493869, "lon": -3.7074986, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419397870, "lat": 40.4494155, "lon": -3.7074843}, {"type": "node", "id": 8419397871, "lat": 40.4508585, "lon": -3.7085042, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397872, "lat": 40.450995, "lon": -3.7082587, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397873, "lat": 40.4514608, "lon": -3.7092667, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397874, "lat": 40.4517809, "lon": -3.7080259, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397875, "lat": 40.451629, "lon": -3.7077394, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397876, "lat": 40.4516321, "lon": -3.7074422, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397878, "lat": 40.4518334, "lon": -3.7062474, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397879, "lat": 40.4502554, "lon": -3.7082354}, {"type": "node", "id": 8419397880, "lat": 40.4499723, "lon": -3.7087608, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397881, "lat": 40.4501006, "lon": -3.709271, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397882, "lat": 40.4502478, "lon": -3.7095637, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397883, "lat": 40.4488119, "lon": -3.7074043, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397884, "lat": 40.4486053, "lon": -3.7073076, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397885, "lat": 40.4476479, "lon": -3.7068874, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419412241, "lat": 40.4505954, "lon": -3.7080592, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8419412243, "lat": 40.4503642, "lon": -3.7074362, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8419412244, "lat": 40.4499667, "lon": -3.7074792, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419412245, "lat": 40.4501654, "lon": -3.7079574, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419437221, "lat": 40.4502946, "lon": -3.7082201, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419437222, "lat": 40.4501222, "lon": -3.7079821, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419437223, "lat": 40.4493685, "lon": -3.7075818, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419479065, "lat": 40.4488886, "lon": -3.7074451, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484447, "lat": 40.4516599, "lon": -3.7077287, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419484448, "lat": 40.4516707, "lon": -3.7074323, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484451, "lat": 40.4508396, "lon": -3.7080137, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484452, "lat": 40.450748, "lon": -3.7076688, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484453, "lat": 40.4505964, "lon": -3.7073818, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 8419484454, "lat": 40.4503097, "lon": -3.7081746, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484455, "lat": 40.4508616, "lon": -3.7079671, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419499591, "lat": 40.4469044, "lon": -3.7059577}, {"type": "node", "id": 8419499592, "lat": 40.4469919, "lon": -3.7059244}, {"type": "node", "id": 8419499593, "lat": 40.4470163, "lon": -3.7059325}, {"type": "node", "id": 8419499596, "lat": 40.4470033, "lon": -3.7043967}, {"type": "node", "id": 8419499597, "lat": 40.4470071, "lon": -3.7042652}, {"type": "node", "id": 8419499609, "lat": 40.4472253, "lon": -3.7039984}, {"type": "node", "id": 8419499610, "lat": 40.4472842, "lon": -3.7039983}, {"type": "node", "id": 8419499611, "lat": 40.4473489, "lon": -3.7039568}, {"type": "node", "id": 8419499612, "lat": 40.4472542, "lon": -3.7037951}, {"type": "node", "id": 8420975568, "lat": 40.4517421, "lon": -3.7076992, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8420975570, "lat": 40.4523679, "lon": -3.7074714, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8421083584, "lat": 40.452361, "lon": -3.7069105, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421229163, "lat": 40.4516937, "lon": -3.7070205, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421229166, "lat": 40.4517659, "lon": -3.7070031, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421267761, "lat": 40.4494551, "lon": -3.7058653}, {"type": "node", "id": 8421307640, "lat": 40.4498619, "lon": -3.7072743}, {"type": "node", "id": 8421307641, "lat": 40.4498531, "lon": -3.7072523}, {"type": "node", "id": 8421307654, "lat": 40.4505027, "lon": -3.7073154, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421307663, "lat": 40.4510029, "lon": -3.7071379, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422530, "lat": 40.4498515, "lon": -3.7070016, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422531, "lat": 40.4499024, "lon": -3.7073522, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422532, "lat": 40.4498937, "lon": -3.7074211, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8422578415, "lat": 40.4296798, "lon": -3.7025941, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422578416, "lat": 40.4315184, "lon": -3.703396, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422629017, "lat": 40.4314737, "lon": -3.7033763, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 8422629018, "lat": 40.4313707, "lon": -3.7033317, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422641934, "lat": 40.4258887, "lon": -3.6920715, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422641939, "lat": 40.4238696, "lon": -3.6906203, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423842222, "lat": 40.4456718, "lon": -3.6950286}, {"type": "node", "id": 8423842223, "lat": 40.4461988, "lon": -3.694989}, {"type": "node", "id": 8423842224, "lat": 40.4451639, "lon": -3.6951521}, {"type": "node", "id": 8423842226, "lat": 40.447311, "lon": -3.6946559}, {"type": "node", "id": 8423842227, "lat": 40.4468795, "lon": -3.6948141}, {"type": "node", "id": 8423842228, "lat": 40.4466312, "lon": -3.6948819}, {"type": "node", "id": 8423842229, "lat": 40.4464138, "lon": -3.6949348}, {"type": "node", "id": 8423842230, "lat": 40.4464162, "lon": -3.6950173}, {"type": "node", "id": 8423842231, "lat": 40.4476336, "lon": -3.6945715}, {"type": "node", "id": 8423842232, "lat": 40.4480147, "lon": -3.6945112}, {"type": "node", "id": 8423842233, "lat": 40.4482879, "lon": -3.6945664}, {"type": "node", "id": 8423842234, "lat": 40.4449492, "lon": -3.6951533}, {"type": "node", "id": 8423842235, "lat": 40.4448818, "lon": -3.6951283}, {"type": "node", "id": 8423842236, "lat": 40.4449393, "lon": -3.6950706}, {"type": "node", "id": 8423842237, "lat": 40.4447128, "lon": -3.6951395, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8423842238, "lat": 40.442948, "lon": -3.6948079}, {"type": "node", "id": 8426942036, "lat": 40.4415024, "lon": -3.7126427, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942037, "lat": 40.4431652, "lon": -3.7125091, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942038, "lat": 40.4387147, "lon": -3.7129087, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942039, "lat": 40.43355, "lon": -3.7132736, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942040, "lat": 40.4308953, "lon": -3.7134836, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942041, "lat": 40.4356715, "lon": -3.7131193, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942042, "lat": 40.4360187, "lon": -3.7085118, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942043, "lat": 40.4352054, "lon": -3.7104162, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942044, "lat": 40.4339189, "lon": -3.7115214, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942045, "lat": 40.4277453, "lon": -3.7136686, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942046, "lat": 40.4304487, "lon": -3.7118417, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942047, "lat": 40.4424288, "lon": -3.7099231, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942048, "lat": 40.4404192, "lon": -3.7081315, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942049, "lat": 40.4421705, "lon": -3.7149612, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942050, "lat": 40.4458178, "lon": -3.7142254, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942051, "lat": 40.4437654, "lon": -3.7151182, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8426942052, "lat": 40.4435532, "lon": -3.7151374, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942053, "lat": 40.4412687, "lon": -3.7123812, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942054, "lat": 40.4379944, "lon": -3.708343, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025371, "lat": 40.4255331, "lon": -3.6886927, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025374, "lat": 40.4240207, "lon": -3.6908558, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025375, "lat": 40.4252349, "lon": -3.6851186, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025400, "lat": 40.4252025, "lon": -3.684453, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025401, "lat": 40.4253761, "lon": -3.6884062, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069633, "lat": 40.4471861, "lon": -3.6954943, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069634, "lat": 40.4414475, "lon": -3.6960349, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069635, "lat": 40.4497479, "lon": -3.6952375, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069637, "lat": 40.438579, "lon": -3.6962652, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069638, "lat": 40.4442322, "lon": -3.695784, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069642, "lat": 40.4387509, "lon": -3.6977686, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069643, "lat": 40.4442264, "lon": -3.6973065, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069644, "lat": 40.4414807, "lon": -3.6975396, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069645, "lat": 40.4489369, "lon": -3.696888, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069646, "lat": 40.4476773, "lon": -3.6970166, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069654, "lat": 40.4519787, "lon": -3.6965706, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069659, "lat": 40.4324634, "lon": -3.6867486, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069660, "lat": 40.4423549, "lon": -3.6858941, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069661, "lat": 40.435779, "lon": -3.6864788, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069662, "lat": 40.440468, "lon": -3.6860618, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069663, "lat": 40.4477973, "lon": -3.6838191, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069666, "lat": 40.4498877, "lon": -3.6825191, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069667, "lat": 40.4338469, "lon": -3.6866473, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069672, "lat": 40.4320687, "lon": -3.6835523, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069673, "lat": 40.4346361, "lon": -3.6833368, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427119577, "lat": 40.4489025, "lon": -3.7073954, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119578, "lat": 40.4488606, "lon": -3.7069958, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119579, "lat": 40.4491115, "lon": -3.7070168, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119580, "lat": 40.4492182, "lon": -3.70736, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8427119581, "lat": 40.4499101, "lon": -3.7069467, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119591, "lat": 40.4487946, "lon": -3.7059543, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8427141937, "lat": 40.4488604, "lon": -3.7073997, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427141938, "lat": 40.4487778, "lon": -3.706018, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8427141975, "lat": 40.4486083, "lon": -3.7073711, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427141978, "lat": 40.4485485, "lon": -3.7060832, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8428817433, "lat": 40.4271072, "lon": -3.7138555}, {"type": "node", "id": 8429132471, "lat": 40.4286196, "lon": -3.7096845, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132472, "lat": 40.4295426, "lon": -3.7126667, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132473, "lat": 40.4257609, "lon": -3.7094843, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132474, "lat": 40.4254647, "lon": -3.7041297, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132475, "lat": 40.4255874, "lon": -3.7075979, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132481, "lat": 40.428151, "lon": -3.7095516, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132482, "lat": 40.4302825, "lon": -3.7122976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132483, "lat": 40.4300768, "lon": -3.7101047, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132484, "lat": 40.4264327, "lon": -3.7093527, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132490, "lat": 40.4304797, "lon": -3.715215, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430090473, "lat": 40.4345114, "lon": -3.7189705, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430090474, "lat": 40.4282313, "lon": -3.7144575, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430090475, "lat": 40.4301719, "lon": -3.7158755, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430141309, "lat": 40.4482582, "lon": -3.7060644, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8430141310, "lat": 40.4476476, "lon": -3.7069377, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8430141312, "lat": 40.4482498, "lon": -3.7070958, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8430141313, "lat": 40.4482394, "lon": -3.7071436}, {"type": "node", "id": 8430141314, "lat": 40.4482433, "lon": -3.7072225}, {"type": "node", "id": 8430141315, "lat": 40.4482826, "lon": -3.7072723}, {"type": "node", "id": 8430162561, "lat": 40.4392344, "lon": -3.6834866, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430162611, "lat": 40.4463868, "lon": -3.7104513, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430162612, "lat": 40.4429965, "lon": -3.7120329, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180224, "lat": 40.4478092, "lon": -3.7082412, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180225, "lat": 40.447751, "lon": -3.708322, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180226, "lat": 40.4491632, "lon": -3.7089715, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180227, "lat": 40.4491464, "lon": -3.7089547, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180228, "lat": 40.4423045, "lon": -3.7130621, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180229, "lat": 40.4396905, "lon": -3.7169222, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180230, "lat": 40.4412617, "lon": -3.7146019, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180231, "lat": 40.4462506, "lon": -3.7104602, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180232, "lat": 40.4358036, "lon": -3.7182245, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180233, "lat": 40.4523549, "lon": -3.7099645, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098461, "lat": 40.4466262, "lon": -3.6913976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098464, "lat": 40.4227874, "lon": -3.6914459, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436311127, "lat": 40.4246166, "lon": -3.709417, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8436311128, "lat": 40.4246845, "lon": -3.7091456, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8439470082, "lat": 40.4488522, "lon": -3.7200018, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8440634344, "lat": 40.4467884, "lon": -3.6906854, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634346, "lat": 40.4488777, "lon": -3.6891376, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634369, "lat": 40.4354741, "lon": -3.6887301, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634370, "lat": 40.4329132, "lon": -3.692304, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634371, "lat": 40.4308015, "lon": -3.6997787, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634372, "lat": 40.4321032, "lon": -3.6982437, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634373, "lat": 40.4294111, "lon": -3.7055091, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634374, "lat": 40.4290454, "lon": -3.7027099, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634384, "lat": 40.4303361, "lon": -3.7003451, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634385, "lat": 40.4333603, "lon": -3.6912868, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634386, "lat": 40.4324705, "lon": -3.6970628, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634387, "lat": 40.4318018, "lon": -3.6986015, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634388, "lat": 40.4328231, "lon": -3.6948562}, {"type": "node", "id": 8440634389, "lat": 40.4328282, "lon": -3.6947292, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634390, "lat": 40.4328437, "lon": -3.6942921, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634391, "lat": 40.4382031, "lon": -3.6912894, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634392, "lat": 40.4354223, "lon": -3.6912564, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879523, "lat": 40.4264343, "lon": -3.7157611, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879524, "lat": 40.4294087, "lon": -3.7222007, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879525, "lat": 40.4259262, "lon": -3.7188231, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879527, "lat": 40.4323709, "lon": -3.7234994}, {"type": "node", "id": 8440879528, "lat": 40.4322857, "lon": -3.7237039, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879529, "lat": 40.4307949, "lon": -3.7218197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879530, "lat": 40.4289674, "lon": -3.7200364, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812493, "lat": 40.4261573, "lon": -3.6974383, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812494, "lat": 40.4287118, "lon": -3.6994772, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812495, "lat": 40.4289085, "lon": -3.6995292, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812496, "lat": 40.4233881, "lon": -3.6923282, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812499, "lat": 40.4239127, "lon": -3.6945766}, {"type": "node", "id": 8441812501, "lat": 40.4347159, "lon": -3.704329, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812502, "lat": 40.4282704, "lon": -3.6989541, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812503, "lat": 40.4252442, "lon": -3.6911494, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812508, "lat": 40.4273947, "lon": -3.6952907, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812509, "lat": 40.4363587, "lon": -3.7042786, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812510, "lat": 40.4416971, "lon": -3.7041188, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812511, "lat": 40.4381607, "lon": -3.7042328, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812640, "lat": 40.4379725, "lon": -3.7178397, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103714, "lat": 40.4310814, "lon": -3.7226125, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103715, "lat": 40.429575, "lon": -3.7197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103716, "lat": 40.430572, "lon": -3.71518, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121517, "lat": 40.429775, "lon": -3.7071141, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121518, "lat": 40.4274008, "lon": -3.6951218, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121533, "lat": 40.4298031, "lon": -3.7186351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121534, "lat": 40.4290246, "lon": -3.7210389, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121535, "lat": 40.4300654, "lon": -3.7110174, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121545, "lat": 40.4305193, "lon": -3.7155737, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121580, "lat": 40.4302233, "lon": -3.6999022, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121581, "lat": 40.4280523, "lon": -3.7020044, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8450352721, "lat": 40.4476825, "lon": -3.7060228, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8450352722, "lat": 40.4482579, "lon": -3.7061044, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8450352724, "lat": 40.4482864, "lon": -3.7060065, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450352726, "lat": 40.448575, "lon": -3.7059817, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450352727, "lat": 40.448748, "lon": -3.7059603, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8450352728, "lat": 40.4487704, "lon": -3.7058933}, {"type": "node", "id": 8450420426, "lat": 40.4476005, "lon": -3.7069816, "tags": {"crossing": "unmarked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450420427, "lat": 40.4483471, "lon": -3.7060015}, {"type": "node", "id": 8450420428, "lat": 40.4482762, "lon": -3.7047303}, {"type": "node", "id": 8450420429, "lat": 40.4480389, "lon": -3.7047509}, {"type": "node", "id": 8450420430, "lat": 40.4479647, "lon": -3.7047516}, {"type": "node", "id": 8450420431, "lat": 40.448325, "lon": -3.7056046}, {"type": "node", "id": 8450420432, "lat": 40.4480914, "lon": -3.7055254}, {"type": "node", "id": 8450420433, "lat": 40.4480867, "lon": -3.7047468}, {"type": "node", "id": 8450420434, "lat": 40.448344, "lon": -3.7059457}, {"type": "node", "id": 8450420435, "lat": 40.448345, "lon": -3.7059631}, {"type": "node", "id": 8451203579, "lat": 40.437908, "lon": -3.6870759, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451203580, "lat": 40.437789, "lon": -3.6873045, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215617, "lat": 40.4384182, "lon": -3.690374, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215618, "lat": 40.4417139, "lon": -3.6955786, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215619, "lat": 40.4404258, "lon": -3.6911259, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215620, "lat": 40.4419925, "lon": -3.7013744, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215621, "lat": 40.4468038, "lon": -3.7110351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215622, "lat": 40.4471868, "lon": -3.7079252, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215623, "lat": 40.4462184, "lon": -3.7126122, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215624, "lat": 40.446789, "lon": -3.7045676, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215625, "lat": 40.4469292, "lon": -3.7071735, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215626, "lat": 40.4465891, "lon": -3.7110951, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215627, "lat": 40.4431128, "lon": -3.7008299, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215628, "lat": 40.4432402, "lon": -3.703418, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215629, "lat": 40.4407306, "lon": -3.6921315, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215630, "lat": 40.442572, "lon": -3.6947916, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215631, "lat": 40.442959, "lon": -3.6975959, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404360, "lat": 40.4468982, "lon": -3.7029618, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404361, "lat": 40.4467976, "lon": -3.7006722, "tags": {"bus": "yes", "public_transport": "stop_position", "ref": "5449"}}, {"type": "node", "id": 8455404362, "lat": 40.4466417, "lon": -3.6982211, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404368, "lat": 40.4465292, "lon": -3.6989068, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404370, "lat": 40.4384444, "lon": -3.7026455}, {"type": "node", "id": 8455404371, "lat": 40.4382858, "lon": -3.7026572, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404372, "lat": 40.4346956, "lon": -3.7018791, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8458897489, "lat": 40.4523061, "lon": -3.7098197}, {"type": "node", "id": 8458897495, "lat": 40.4492464, "lon": -3.7090515, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8458948194, "lat": 40.451068, "lon": -3.7035529, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8458948195, "lat": 40.448656, "lon": -3.7038884, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8458948196, "lat": 40.4476882, "lon": -3.7040285, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8460972704, "lat": 40.4478968, "lon": -3.7171665}, {"type": "node", "id": 8461821938, "lat": 40.4335961, "lon": -3.7184562}, {"type": "node", "id": 8464920918, "lat": 40.4460464, "lon": -3.6901181, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920919, "lat": 40.4456208, "lon": -3.6861136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920923, "lat": 40.4324547, "lon": -3.6915544, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920924, "lat": 40.4304268, "lon": -3.6927561, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920925, "lat": 40.4323944, "lon": -3.6915907, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920926, "lat": 40.445954, "lon": -3.6861578}, {"type": "node", "id": 8464920927, "lat": 40.446248, "lon": -3.6900075, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920934, "lat": 40.4283187, "lon": -3.6949702, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8473661003, "lat": 40.4262514, "lon": -3.7174197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8474857999, "lat": 40.4476767, "lon": -3.7173114}, {"type": "node", "id": 8474858002, "lat": 40.4481178, "lon": -3.7170236}, {"type": "node", "id": 8479324937, "lat": 40.4276372, "lon": -3.6824535, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324954, "lat": 40.4327722, "lon": -3.6810194, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324955, "lat": 40.4326354, "lon": -3.6810358, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324957, "lat": 40.4314878, "lon": -3.6821272, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324958, "lat": 40.4314994, "lon": -3.6823659, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324960, "lat": 40.4290489, "lon": -3.6825678, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324967, "lat": 40.4261488, "lon": -3.6802422}, {"type": "node", "id": 8479324974, "lat": 40.4222596, "lon": -3.6829166, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324976, "lat": 40.4222716, "lon": -3.6831341, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8480842114, "lat": 40.4400741, "lon": -3.7177006, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480842115, "lat": 40.4452192, "lon": -3.7196124, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480842116, "lat": 40.4461719, "lon": -3.6923591, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879017, "lat": 40.4464041, "lon": -3.6962577, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879036, "lat": 40.4463674, "lon": -3.6921553, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879038, "lat": 40.4461556, "lon": -3.7187883, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879039, "lat": 40.4483019, "lon": -3.7169074, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879040, "lat": 40.4465414, "lon": -3.7138651, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879041, "lat": 40.4406999, "lon": -3.7180195, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879042, "lat": 40.4428334, "lon": -3.7190793, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 8480879043, "lat": 40.4429391, "lon": -3.7192275, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879044, "lat": 40.4430269, "lon": -3.7192771, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8481041832, "lat": 40.4467227, "lon": -3.700681}, {"type": "node", "id": 8481041833, "lat": 40.4466503, "lon": -3.7006915}, {"type": "node", "id": 8483713085, "lat": 40.4467079, "lon": -3.7081459}, {"type": "node", "id": 8483713086, "lat": 40.4467609, "lon": -3.7081242}, {"type": "node", "id": 8483713087, "lat": 40.4467994, "lon": -3.7080588}, {"type": "node", "id": 8483713088, "lat": 40.4467899, "lon": -3.7079606}, {"type": "node", "id": 8483713089, "lat": 40.4469376, "lon": -3.7078264}, {"type": "node", "id": 8483713090, "lat": 40.4468731, "lon": -3.7078548}, {"type": "node", "id": 8483713091, "lat": 40.4469502, "lon": -3.7078064}, {"type": "node", "id": 8483729855, "lat": 40.4482664, "lon": -3.7072598}, {"type": "node", "id": 8486897768, "lat": 40.4518263, "lon": -3.7043603, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8486897780, "lat": 40.4523577, "lon": -3.7061606, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8486897781, "lat": 40.4518042, "lon": -3.7062523, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8486897782, "lat": 40.4517339, "lon": -3.7062635, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8490180660, "lat": 40.4352297, "lon": -3.7208143, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8507918308, "lat": 40.4471661, "lon": -3.7075616}, {"type": "node", "id": 8513274925, "lat": 40.4524169, "lon": -3.7069041, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8513274926, "lat": 40.4531589, "lon": -3.7067904, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8513546150, "lat": 40.4476811, "lon": -3.70842, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8513546151, "lat": 40.4519968, "lon": -3.7093684}, {"type": "node", "id": 8513737405, "lat": 40.4479595, "lon": -3.724148, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737406, "lat": 40.4488665, "lon": -3.7213498, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737407, "lat": 40.4339251, "lon": -3.7178227, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737409, "lat": 40.4387425, "lon": -3.7185006, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737413, "lat": 40.4457795, "lon": -3.7218145, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737415, "lat": 40.4487331, "lon": -3.7207624, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737416, "lat": 40.4491724, "lon": -3.7172399, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513762619, "lat": 40.451062, "lon": -3.7194803, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340700, "lat": 40.4382613, "lon": -3.6958668, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340701, "lat": 40.4383639, "lon": -3.6981319, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340702, "lat": 40.4384863, "lon": -3.7006284, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340703, "lat": 40.4380714, "lon": -3.6918663, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340704, "lat": 40.4388164, "lon": -3.708778, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340705, "lat": 40.4389023, "lon": -3.712121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340709, "lat": 40.4420489, "lon": -3.7047619, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340710, "lat": 40.4405936, "lon": -3.7086703, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522723085, "lat": 40.4338913, "lon": -3.7069582, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8529770090, "lat": 40.4470181, "lon": -3.7043445}, {"type": "node", "id": 8531511254, "lat": 40.4400469, "lon": -3.7082348, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8537288335, "lat": 40.4418845, "lon": -3.6827816}, {"type": "node", "id": 8537288336, "lat": 40.4392078, "lon": -3.6830164}, {"type": "node", "id": 8537288337, "lat": 40.4391705, "lon": -3.6830228}, {"type": "node", "id": 8537288346, "lat": 40.4404833, "lon": -3.6828906, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 8537288347, "lat": 40.437718, "lon": -3.6831349}, {"type": "node", "id": 8538419416, "lat": 40.4509721, "lon": -3.7095287, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8551133927, "lat": 40.4524166, "lon": -3.7061531, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8555198058, "lat": 40.4384927, "lon": -3.6839182, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8563972585, "lat": 40.4510612, "lon": -3.7032149}, {"type": "node", "id": 8566199520, "lat": 40.4492119, "lon": -3.6894593}, {"type": "node", "id": 8577075124, "lat": 40.4274282, "lon": -3.7139039}, {"type": "node", "id": 8577075129, "lat": 40.4323739, "lon": -3.7174518}, {"type": "node", "id": 8577075130, "lat": 40.4340527, "lon": -3.7186467}, {"type": "node", "id": 8577075131, "lat": 40.4358803, "lon": -3.7207483}, {"type": "node", "id": 8577075132, "lat": 40.4358091, "lon": -3.7206082}, {"type": "node", "id": 8577075133, "lat": 40.435607, "lon": -3.7202155}, {"type": "node", "id": 8577075134, "lat": 40.4355408, "lon": -3.7200875}, {"type": "node", "id": 8577075135, "lat": 40.4352734, "lon": -3.7197347}, {"type": "node", "id": 8577075136, "lat": 40.4351955, "lon": -3.7196921}, {"type": "node", "id": 8580966592, "lat": 40.4374445, "lon": -3.6912136}, {"type": "node", "id": 8580966593, "lat": 40.4374875, "lon": -3.6911993}, {"type": "node", "id": 8580966594, "lat": 40.43755, "lon": -3.6911449}, {"type": "node", "id": 8583469097, "lat": 40.4340245, "lon": -3.6984354}, {"type": "node", "id": 8583469102, "lat": 40.4326166, "lon": -3.6977625}, {"type": "node", "id": 8583469103, "lat": 40.4325441, "lon": -3.6977735}, {"type": "node", "id": 8583469116, "lat": 40.4311909, "lon": -3.6971048}, {"type": "node", "id": 8583532392, "lat": 40.4466437, "lon": -3.7039745}, {"type": "node", "id": 8583791440, "lat": 40.4324487, "lon": -3.6977475, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 8583791441, "lat": 40.4324441, "lon": -3.6976967}, {"type": "node", "id": 8583791442, "lat": 40.4326576, "lon": -3.6965729}, {"type": "node", "id": 8583791443, "lat": 40.4323324, "lon": -3.6973169}, {"type": "node", "id": 8583791444, "lat": 40.4323685, "lon": -3.6977825}, {"type": "node", "id": 8583791445, "lat": 40.4323933, "lon": -3.6979067}, {"type": "node", "id": 8583791446, "lat": 40.4323639, "lon": -3.6978242}, {"type": "node", "id": 8583791447, "lat": 40.4324879, "lon": -3.6978007}, {"type": "node", "id": 8583791448, "lat": 40.4325179, "lon": -3.6977823}, {"type": "node", "id": 8583791449, "lat": 40.4324419, "lon": -3.6978207}, {"type": "node", "id": 8583791450, "lat": 40.4324474, "lon": -3.6977841}, {"type": "node", "id": 8583791488, "lat": 40.4323747, "lon": -3.6975839, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 8583869920, "lat": 40.4284392, "lon": -3.6958809}, {"type": "node", "id": 8583878999, "lat": 40.4335552, "lon": -3.7044828}, {"type": "node", "id": 8583879002, "lat": 40.431311, "lon": -3.7035096}, {"type": "node", "id": 8583879003, "lat": 40.431322, "lon": -3.7036298}, {"type": "node", "id": 8583901054, "lat": 40.4511534, "lon": -3.711018}, {"type": "node", "id": 8585687261, "lat": 40.4326566, "lon": -3.7015918}, {"type": "node", "id": 8587019123, "lat": 40.4525627, "lon": -3.711011}, {"type": "node", "id": 8587019126, "lat": 40.452024, "lon": -3.7093868}, {"type": "node", "id": 8587114724, "lat": 40.4501095, "lon": -3.7101121}, {"type": "node", "id": 8593662572, "lat": 40.4287739, "lon": -3.7021483, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8593662596, "lat": 40.428674, "lon": -3.7033548, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8593662597, "lat": 40.4290507, "lon": -3.7032814, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8608388010, "lat": 40.4425858, "lon": -3.6947905}, {"type": "node", "id": 8625818254, "lat": 40.4273366, "lon": -3.6922984}, {"type": "node", "id": 8633236083, "lat": 40.4475028, "lon": -3.6959253}, {"type": "node", "id": 8646829050, "lat": 40.4293644, "lon": -3.7166877, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8649272390, "lat": 40.4311442, "lon": -3.6935591}, {"type": "node", "id": 8703242763, "lat": 40.4466641, "lon": -3.7246492, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8707181996, "lat": 40.4496532, "lon": -3.7103875}, {"type": "node", "id": 8707181997, "lat": 40.4504367, "lon": -3.7110914}, {"type": "node", "id": 8707181998, "lat": 40.4504481, "lon": -3.7111104}, {"type": "node", "id": 8707181999, "lat": 40.4504742, "lon": -3.7112968}, {"type": "node", "id": 8707182000, "lat": 40.4504874, "lon": -3.711314}, {"type": "node", "id": 8707182001, "lat": 40.4507754, "lon": -3.7113968, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8707182010, "lat": 40.4493822, "lon": -3.7114917, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8707182020, "lat": 40.4494619, "lon": -3.7123149}, {"type": "node", "id": 8707182021, "lat": 40.4494906, "lon": -3.7119902}, {"type": "node", "id": 8707182062, "lat": 40.4498978, "lon": -3.7132932}, {"type": "node", "id": 8707182123, "lat": 40.4508141, "lon": -3.7118581}, {"type": "node", "id": 8707182124, "lat": 40.4507187, "lon": -3.7122658}, {"type": "node", "id": 8707182125, "lat": 40.450632, "lon": -3.7126942}, {"type": "node", "id": 8707182126, "lat": 40.4504778, "lon": -3.7140376}, {"type": "node", "id": 8714822217, "lat": 40.4482378, "lon": -3.6943761}, {"type": "node", "id": 8715771071, "lat": 40.4266051, "lon": -3.7154553, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8715771072, "lat": 40.4266288, "lon": -3.7154753, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8737409030, "lat": 40.436541, "lon": -3.691399, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8737409031, "lat": 40.4366037, "lon": -3.6929052, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8744168238, "lat": 40.4423496, "lon": -3.6897469}, {"type": "node", "id": 8787245617, "lat": 40.4339629, "lon": -3.685009}, {"type": "node", "id": 8787245619, "lat": 40.4339657, "lon": -3.6850667}, {"type": "node", "id": 8787245621, "lat": 40.4339601, "lon": -3.6849516}, {"type": "node", "id": 8787245622, "lat": 40.4329747, "lon": -3.6850275}, {"type": "node", "id": 8787245633, "lat": 40.4330905, "lon": -3.685586, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245642, "lat": 40.4339825, "lon": -3.6854113, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245643, "lat": 40.4339927, "lon": -3.6856209, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245644, "lat": 40.433911, "lon": -3.6855202, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245645, "lat": 40.4340728, "lon": -3.6855073, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8793094951, "lat": 40.4468106, "lon": -3.7009337}, {"type": "node", "id": 8793094958, "lat": 40.4475185, "lon": -3.7008892, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8793094959, "lat": 40.4474902, "lon": -3.7008835}, {"type": "node", "id": 8793094960, "lat": 40.4471668, "lon": -3.7008998}, {"type": "node", "id": 8793095016, "lat": 40.4473262, "lon": -3.7030056}, {"type": "node", "id": 8793095017, "lat": 40.4473824, "lon": -3.7025637}, {"type": "node", "id": 8793095018, "lat": 40.4473055, "lon": -3.7016919}, {"type": "node", "id": 8793095019, "lat": 40.4473081, "lon": -3.7016709}, {"type": "node", "id": 8793095020, "lat": 40.4474455, "lon": -3.7012795}, {"type": "node", "id": 8793095021, "lat": 40.447453, "lon": -3.7012434}, {"type": "node", "id": 8793113479, "lat": 40.4478583, "lon": -3.7036786, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8804961578, "lat": 40.4422032, "lon": -3.7048048}, {"type": "node", "id": 8804961579, "lat": 40.4422519, "lon": -3.7048908}, {"type": "node", "id": 8804961580, "lat": 40.4422831, "lon": -3.7049252}, {"type": "node", "id": 8804961581, "lat": 40.4423176, "lon": -3.7049499}, {"type": "node", "id": 8804961582, "lat": 40.4424094, "lon": -3.7049998}, {"type": "node", "id": 8804961583, "lat": 40.4444627, "lon": -3.7063368}, {"type": "node", "id": 8804961584, "lat": 40.4445117, "lon": -3.7063553}, {"type": "node", "id": 8804961585, "lat": 40.4445636, "lon": -3.7063721}, {"type": "node", "id": 8804961586, "lat": 40.4447466, "lon": -3.7064302}, {"type": "node", "id": 8804961587, "lat": 40.4432907, "lon": -3.7056475}, {"type": "node", "id": 8804961588, "lat": 40.4432962, "lon": -3.7055759}, {"type": "node", "id": 8804961589, "lat": 40.4434323, "lon": -3.7057608}, {"type": "node", "id": 8804961590, "lat": 40.4424135, "lon": -3.705078}, {"type": "node", "id": 8804961591, "lat": 40.4424484, "lon": -3.7050264}, {"type": "node", "id": 8804963716, "lat": 40.4416485, "lon": -3.7060255}, {"type": "node", "id": 8804963717, "lat": 40.4426773, "lon": -3.7050105}, {"type": "node", "id": 8804963718, "lat": 40.4426318, "lon": -3.7050505}, {"type": "node", "id": 8804963719, "lat": 40.4426117, "lon": -3.7050377}, {"type": "node", "id": 8804963727, "lat": 40.4421399, "lon": -3.7044899}, {"type": "node", "id": 8804963728, "lat": 40.4453277, "lon": -3.7066546}, {"type": "node", "id": 8804963729, "lat": 40.4454898, "lon": -3.7062164}, {"type": "node", "id": 8804963730, "lat": 40.4454973, "lon": -3.7062014}, {"type": "node", "id": 8804963857, "lat": 40.4453372, "lon": -3.7066283}, {"type": "node", "id": 8804963858, "lat": 40.445363, "lon": -3.7065588, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8804963863, "lat": 40.4381544, "lon": -3.7010752}, {"type": "node", "id": 8805121867, "lat": 40.4445593, "lon": -3.7064963, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8805121868, "lat": 40.4445949, "lon": -3.706381, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8807066124, "lat": 40.4463075, "lon": -3.6952127}, {"type": "node", "id": 8807066125, "lat": 40.4463369, "lon": -3.6952569}, {"type": "node", "id": 8807066126, "lat": 40.4463242, "lon": -3.6951284}, {"type": "node", "id": 8807066127, "lat": 40.4463442, "lon": -3.6953073}, {"type": "node", "id": 8807066128, "lat": 40.4463684, "lon": -3.6952368}, {"type": "node", "id": 8807066129, "lat": 40.4463685, "lon": -3.6950062}, {"type": "node", "id": 8807066130, "lat": 40.4462865, "lon": -3.6951952}, {"type": "node", "id": 8807066131, "lat": 40.4463222, "lon": -3.6952307}, {"type": "node", "id": 8807066132, "lat": 40.4461344, "lon": -3.6951567}, {"type": "node", "id": 8807066133, "lat": 40.44509, "lon": -3.6951962}, {"type": "node", "id": 8807066134, "lat": 40.4449914, "lon": -3.6950326}, {"type": "node", "id": 8807066141, "lat": 40.4465892, "lon": -3.6950128}, {"type": "node", "id": 8807066142, "lat": 40.4467138, "lon": -3.6950106}, {"type": "node", "id": 8807066143, "lat": 40.4465287, "lon": -3.6948137}, {"type": "node", "id": 8807066144, "lat": 40.4461163, "lon": -3.6949212}, {"type": "node", "id": 8807066145, "lat": 40.445046, "lon": -3.6950755}, {"type": "node", "id": 8807066146, "lat": 40.4450118, "lon": -3.695181}, {"type": "node", "id": 8807066147, "lat": 40.4450383, "lon": -3.6951591}, {"type": "node", "id": 8807066157, "lat": 40.4448238, "lon": -3.6956927}, {"type": "node", "id": 8807066158, "lat": 40.4440688, "lon": -3.6957749}, {"type": "node", "id": 8807066159, "lat": 40.4440624, "lon": -3.6957493}, {"type": "node", "id": 8807066160, "lat": 40.4439596, "lon": -3.6958681}, {"type": "node", "id": 8807066161, "lat": 40.4439614, "lon": -3.6958394}, {"type": "node", "id": 8807066162, "lat": 40.4434605, "lon": -3.6958554}, {"type": "node", "id": 8807066163, "lat": 40.4436397, "lon": -3.6951912}, {"type": "node", "id": 8807066164, "lat": 40.4435242, "lon": -3.6951471}, {"type": "node", "id": 8807066165, "lat": 40.4437515, "lon": -3.6952045}, {"type": "node", "id": 8807066166, "lat": 40.4430565, "lon": -3.694851}, {"type": "node", "id": 8807066167, "lat": 40.4428718, "lon": -3.6947882}, {"type": "node", "id": 8807066171, "lat": 40.443218, "lon": -3.6949737}, {"type": "node", "id": 8807066172, "lat": 40.4432519, "lon": -3.694949}, {"type": "node", "id": 8807066174, "lat": 40.4434226, "lon": -3.6950806}, {"type": "node", "id": 8807066198, "lat": 40.4432615, "lon": -3.6958512}, {"type": "node", "id": 8807066199, "lat": 40.4417649, "lon": -3.695999}, {"type": "node", "id": 8807066200, "lat": 40.4417023, "lon": -3.6951931}, {"type": "node", "id": 8807066201, "lat": 40.4416819, "lon": -3.6950212}, {"type": "node", "id": 8807066202, "lat": 40.441645, "lon": -3.6947715}, {"type": "node", "id": 8807066203, "lat": 40.4416879, "lon": -3.6948074}, {"type": "node", "id": 8807066204, "lat": 40.4417369, "lon": -3.6948338}, {"type": "node", "id": 8807066205, "lat": 40.4418013, "lon": -3.6948417}, {"type": "node", "id": 8807066206, "lat": 40.4417189, "lon": -3.6949001}, {"type": "node", "id": 8807066207, "lat": 40.4416148, "lon": -3.694919}, {"type": "node", "id": 8807066208, "lat": 40.4413273, "lon": -3.6945389}, {"type": "node", "id": 8807066209, "lat": 40.4414234, "lon": -3.6942857}, {"type": "node", "id": 8807066210, "lat": 40.4414453, "lon": -3.6942908}, {"type": "node", "id": 8807066211, "lat": 40.4412722, "lon": -3.6938108}, {"type": "node", "id": 8807066212, "lat": 40.4412622, "lon": -3.6936948}, {"type": "node", "id": 8807066213, "lat": 40.4412489, "lon": -3.693596}, {"type": "node", "id": 8807066214, "lat": 40.4412275, "lon": -3.693409}, {"type": "node", "id": 8807066215, "lat": 40.4412075, "lon": -3.6931311}, {"type": "node", "id": 8807066216, "lat": 40.4411829, "lon": -3.6927793}, {"type": "node", "id": 8807074817, "lat": 40.4411338, "lon": -3.692662}, {"type": "node", "id": 8807074818, "lat": 40.4411055, "lon": -3.6926433}, {"type": "node", "id": 8807074820, "lat": 40.4411755, "lon": -3.6927317}, {"type": "node", "id": 8807074821, "lat": 40.4413643, "lon": -3.6923685}, {"type": "node", "id": 8807074822, "lat": 40.4411981, "lon": -3.6925295}, {"type": "node", "id": 8807074823, "lat": 40.4408266, "lon": -3.6922817}, {"type": "node", "id": 8807074824, "lat": 40.4408995, "lon": -3.6924607}, {"type": "node", "id": 8807074825, "lat": 40.4409208, "lon": -3.6925135}, {"type": "node", "id": 8807074826, "lat": 40.4409665, "lon": -3.692593}, {"type": "node", "id": 8807074827, "lat": 40.440853, "lon": -3.6926186}, {"type": "node", "id": 8807074828, "lat": 40.4404116, "lon": -3.6928002}, {"type": "node", "id": 8807074829, "lat": 40.4404003, "lon": -3.6927319}, {"type": "node", "id": 8807074830, "lat": 40.4403848, "lon": -3.6927031}, {"type": "node", "id": 8807074831, "lat": 40.4409092, "lon": -3.6926085}, {"type": "node", "id": 8807074832, "lat": 40.4409418, "lon": -3.6926004}, {"type": "node", "id": 8807074833, "lat": 40.4409902, "lon": -3.6926059}, {"type": "node", "id": 8807074834, "lat": 40.4409316, "lon": -3.6925422}, {"type": "node", "id": 8807074835, "lat": 40.4408515, "lon": -3.6923366}, {"type": "node", "id": 8807074836, "lat": 40.4410111, "lon": -3.6926119}, {"type": "node", "id": 8807074837, "lat": 40.4410717, "lon": -3.6926277}, {"type": "node", "id": 8807074838, "lat": 40.4410751, "lon": -3.6926113}, {"type": "node", "id": 8807074839, "lat": 40.4411015, "lon": -3.6925944}, {"type": "node", "id": 8807074840, "lat": 40.4411505, "lon": -3.6926787}, {"type": "node", "id": 8807074841, "lat": 40.4411385, "lon": -3.6920703}, {"type": "node", "id": 8807074842, "lat": 40.4413209, "lon": -3.6910672}, {"type": "node", "id": 8807074843, "lat": 40.4413648, "lon": -3.6910626}, {"type": "node", "id": 8807074844, "lat": 40.4409168, "lon": -3.6921292}, {"type": "node", "id": 8807074846, "lat": 40.4411891, "lon": -3.6921743}, {"type": "node", "id": 8807074847, "lat": 40.4411952, "lon": -3.6921222}, {"type": "node", "id": 8807074848, "lat": 40.4412759, "lon": -3.6920846}, {"type": "node", "id": 8807074854, "lat": 40.440968, "lon": -3.6921209}, {"type": "node", "id": 8807074855, "lat": 40.4410477, "lon": -3.6921234}, {"type": "node", "id": 8807074859, "lat": 40.4413361, "lon": -3.6920364}, {"type": "node", "id": 8807074860, "lat": 40.4413923, "lon": -3.6919695}, {"type": "node", "id": 8807074861, "lat": 40.4416431, "lon": -3.6915825}, {"type": "node", "id": 8807074862, "lat": 40.4419384, "lon": -3.691869}, {"type": "node", "id": 8807074863, "lat": 40.4415001, "lon": -3.6920157}, {"type": "node", "id": 8807074864, "lat": 40.4420147, "lon": -3.6918407}, {"type": "node", "id": 8807074865, "lat": 40.4419258, "lon": -3.6913686}, {"type": "node", "id": 8807074867, "lat": 40.4410455, "lon": -3.6912816}, {"type": "node", "id": 8807074873, "lat": 40.4406144, "lon": -3.6911908}, {"type": "node", "id": 8807074874, "lat": 40.4407509, "lon": -3.691231}, {"type": "node", "id": 8807074875, "lat": 40.4410927, "lon": -3.6912312}, {"type": "node", "id": 8807074876, "lat": 40.4409555, "lon": -3.691275}, {"type": "node", "id": 8807074877, "lat": 40.4407872, "lon": -3.6912412}, {"type": "node", "id": 8807074878, "lat": 40.4409305, "lon": -3.6912713, "tags": {"crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 8807074880, "lat": 40.4399274, "lon": -3.691009}, {"type": "node", "id": 8807074884, "lat": 40.4399604, "lon": -3.690991}, {"type": "node", "id": 8807074885, "lat": 40.4406683, "lon": -3.6915581}, {"type": "node", "id": 8807074886, "lat": 40.4405789, "lon": -3.691503}, {"type": "node", "id": 8807074887, "lat": 40.4406897, "lon": -3.6914622}, {"type": "node", "id": 8807074888, "lat": 40.4402522, "lon": -3.6915488}, {"type": "node", "id": 8807074889, "lat": 40.440747, "lon": -3.6916113}, {"type": "node", "id": 8807074890, "lat": 40.4408055, "lon": -3.691658}, {"type": "node", "id": 8807074891, "lat": 40.4412074, "lon": -3.6909909}, {"type": "node", "id": 8807074892, "lat": 40.4411841, "lon": -3.6909094}, {"type": "node", "id": 8807074900, "lat": 40.4413567, "lon": -3.6926446}, {"type": "node", "id": 8807074901, "lat": 40.4465561, "lon": -3.695472}, {"type": "node", "id": 8807074902, "lat": 40.4465845, "lon": -3.6955093}, {"type": "node", "id": 8807074903, "lat": 40.4466165, "lon": -3.6955339}, {"type": "node", "id": 8807074904, "lat": 40.4465347, "lon": -3.6954274}, {"type": "node", "id": 8815557569, "lat": 40.444909, "lon": -3.6895453}, {"type": "node", "id": 8822145839, "lat": 40.4349601, "lon": -3.7197809}, {"type": "node", "id": 8822145840, "lat": 40.4349629, "lon": -3.7198015}, {"type": "node", "id": 8822145841, "lat": 40.4349602, "lon": -3.7197657}, {"type": "node", "id": 8822145842, "lat": 40.4349688, "lon": -3.7197188}, {"type": "node", "id": 8822145843, "lat": 40.4349952, "lon": -3.7196655}, {"type": "node", "id": 8822145844, "lat": 40.4349642, "lon": -3.7197346}, {"type": "node", "id": 8822146151, "lat": 40.4363909, "lon": -3.7215916}, {"type": "node", "id": 8824409711, "lat": 40.4490402, "lon": -3.7015361}, {"type": "node", "id": 8824409714, "lat": 40.4488242, "lon": -3.7020029}, {"type": "node", "id": 8824409715, "lat": 40.4488381, "lon": -3.7019736}, {"type": "node", "id": 8846574699, "lat": 40.4439044, "lon": -3.7141322}, {"type": "node", "id": 8846574704, "lat": 40.444403, "lon": -3.7140944}, {"type": "node", "id": 8851032220, "lat": 40.4479452, "lon": -3.7038221}, {"type": "node", "id": 8863732308, "lat": 40.4236887, "lon": -3.695595}, {"type": "node", "id": 8863732309, "lat": 40.4236673, "lon": -3.6954899}, {"type": "node", "id": 8863732310, "lat": 40.4236435, "lon": -3.6950921, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8866381039, "lat": 40.4291526, "lon": -3.7027834}, {"type": "node", "id": 8866381040, "lat": 40.4298355, "lon": -3.7059758}, {"type": "node", "id": 8866381041, "lat": 40.4299192, "lon": -3.7057883}, {"type": "node", "id": 8866381042, "lat": 40.4299599, "lon": -3.7034922}, {"type": "node", "id": 8866381043, "lat": 40.4300715, "lon": -3.703276}, {"type": "node", "id": 8911132530, "lat": 40.4293127, "lon": -3.6878483}, {"type": "node", "id": 8911132534, "lat": 40.4283669, "lon": -3.6873024}, {"type": "node", "id": 8919225431, "lat": 40.4505945, "lon": -3.7198377}, {"type": "node", "id": 8919225432, "lat": 40.4507131, "lon": -3.7197327}, {"type": "node", "id": 8919225435, "lat": 40.450819, "lon": -3.719645}, {"type": "node", "id": 8919225438, "lat": 40.4505875, "lon": -3.7198439}, {"type": "node", "id": 8931354149, "lat": 40.4251598, "lon": -3.6902254}, {"type": "node", "id": 8935124345, "lat": 40.4250204, "lon": -3.6940027}, {"type": "node", "id": 8936373768, "lat": 40.4419979, "lon": -3.7086145}, {"type": "node", "id": 8936373769, "lat": 40.4420895, "lon": -3.7087116}, {"type": "node", "id": 8953723327, "lat": 40.4306997, "lon": -3.6979311, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8953723330, "lat": 40.4307503, "lon": -3.6980463, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8963996218, "lat": 40.4376735, "lon": -3.6946027}, {"type": "node", "id": 9020774013, "lat": 40.4447997, "lon": -3.6864745, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 9047955459, "lat": 40.4239636, "lon": -3.7021772}, {"type": "node", "id": 9049533282, "lat": 40.4268261, "lon": -3.6938238}, {"type": "node", "id": 9051008009, "lat": 40.4249709, "lon": -3.7008257, "tags": {"crossing": "zebra", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 9053166226, "lat": 40.4401784, "lon": -3.6976497}, {"type": "node", "id": 9054512001, "lat": 40.4368183, "lon": -3.6863747}, {"type": "node", "id": 9054521326, "lat": 40.4371252, "lon": -3.6863434}, {"type": "node", "id": 9054521334, "lat": 40.4232629, "lon": -3.6882332}, {"type": "node", "id": 9115409895, "lat": 40.4480033, "lon": -3.7147154}, {"type": "node", "id": 9115409896, "lat": 40.4478988, "lon": -3.7144367}, {"type": "node", "id": 9116858052, "lat": 40.4485784, "lon": -3.7120583, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858055, "lat": 40.4485111, "lon": -3.7125809, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858056, "lat": 40.4485785, "lon": -3.7127348, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858062, "lat": 40.4484196, "lon": -3.7126641, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858065, "lat": 40.4473431, "lon": -3.7113953, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858066, "lat": 40.4473958, "lon": -3.7115492, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858067, "lat": 40.4472564, "lon": -3.7121386, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858075, "lat": 40.4471825, "lon": -3.7120393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858085, "lat": 40.4472642, "lon": -3.7176266, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858088, "lat": 40.4463335, "lon": -3.7154115, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858090, "lat": 40.449111, "lon": -3.7187101, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858093, "lat": 40.4468394, "lon": -3.7180485, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 9116858094, "lat": 40.4472675, "lon": -3.7174927, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858097, "lat": 40.4466241, "lon": -3.7139, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858098, "lat": 40.4468297, "lon": -3.7139867, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9116858099, "lat": 40.4467496, "lon": -3.7137865, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858100, "lat": 40.4469939, "lon": -3.7125228, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858101, "lat": 40.4470375, "lon": -3.7126244, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858106, "lat": 40.4484595, "lon": -3.7127961, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 9116858107, "lat": 40.4486458, "lon": -3.7166888, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9116858108, "lat": 40.4486943, "lon": -3.7164652, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9157684233, "lat": 40.4335192, "lon": -3.7004725}, {"type": "node", "id": 9157684234, "lat": 40.4335363, "lon": -3.700516}, {"type": "node", "id": 9157684252, "lat": 40.4343172, "lon": -3.700841, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9157684259, "lat": 40.434482, "lon": -3.7001751, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684312, "lat": 40.4335715, "lon": -3.7005306, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684315, "lat": 40.4337322, "lon": -3.69988, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684318, "lat": 40.4339009, "lon": -3.6991689, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684320, "lat": 40.4340083, "lon": -3.6985006, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684323, "lat": 40.4345486, "lon": -3.7003351, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684325, "lat": 40.4342652, "lon": -3.7014882, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684326, "lat": 40.4329411, "lon": -3.7003426, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 9157684327, "lat": 40.4329153, "lon": -3.7004666}, {"type": "node", "id": 9157684328, "lat": 40.4331542, "lon": -3.7007341}, {"type": "node", "id": 9157684329, "lat": 40.4330412, "lon": -3.7005991}, {"type": "node", "id": 9157684333, "lat": 40.4346566, "lon": -3.6994692, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484295, "lat": 40.4336498, "lon": -3.6999413, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484296, "lat": 40.4336605, "lon": -3.6998976, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9164484307, "lat": 40.4332053, "lon": -3.6996512, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484310, "lat": 40.433611, "lon": -3.6998276, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484321, "lat": 40.4338306, "lon": -3.6992147, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9164484324, "lat": 40.4337905, "lon": -3.699123, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484327, "lat": 40.4338649, "lon": -3.6990768, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9164484328, "lat": 40.4333621, "lon": -3.6989426, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 9164484343, "lat": 40.4335274, "lon": -3.7004393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484346, "lat": 40.4336969, "lon": -3.6997509, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484348, "lat": 40.4334691, "lon": -3.6982735, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 9165503376, "lat": 40.4324181, "lon": -3.700034}, {"type": "node", "id": 9165503377, "lat": 40.4324523, "lon": -3.700002}, {"type": "node", "id": 9165503378, "lat": 40.4324423, "lon": -3.7000279}, {"type": "node", "id": 9165505517, "lat": 40.4328313, "lon": -3.698723, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505519, "lat": 40.4332508, "lon": -3.6988969, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 9165505520, "lat": 40.4330573, "lon": -3.6995885, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505525, "lat": 40.4326571, "lon": -3.6994281, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505527, "lat": 40.4329447, "lon": -3.6980288, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505529, "lat": 40.4324366, "lon": -3.7000523, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9169688102, "lat": 40.4325878, "lon": -3.6994424, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688103, "lat": 40.4329535, "lon": -3.6979959, "tags": {"highway": "stop"}}, {"type": "node", "id": 9169688172, "lat": 40.431594, "lon": -3.6989925, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688175, "lat": 40.4312318, "lon": -3.6992741, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688176, "lat": 40.4312203, "lon": -3.6994911, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688184, "lat": 40.4313815, "lon": -3.7002824, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688185, "lat": 40.4313715, "lon": -3.7003186, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688187, "lat": 40.4315375, "lon": -3.6997106, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688190, "lat": 40.4325307, "lon": -3.6993769, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9172003699, "lat": 40.4330902, "lon": -3.701952}, {"type": "node", "id": 9172003700, "lat": 40.4331011, "lon": -3.7019937}, {"type": "node", "id": 9172003701, "lat": 40.4331041, "lon": -3.7020418}, {"type": "node", "id": 9172003702, "lat": 40.4326323, "lon": -3.701603}, {"type": "node", "id": 9172003703, "lat": 40.4329747, "lon": -3.7016113}, {"type": "node", "id": 9172003704, "lat": 40.4329596, "lon": -3.7015925}, {"type": "node", "id": 9172003705, "lat": 40.4327201, "lon": -3.7016077}, {"type": "node", "id": 9172003706, "lat": 40.4327793, "lon": -3.7016122}, {"type": "node", "id": 9172003707, "lat": 40.4328351, "lon": -3.7016043}, {"type": "node", "id": 9172003708, "lat": 40.4328839, "lon": -3.7015939}, {"type": "node", "id": 9172009163, "lat": 40.4320356, "lon": -3.7016248}, {"type": "node", "id": 9172009164, "lat": 40.43204, "lon": -3.7015979}, {"type": "node", "id": 9172009165, "lat": 40.4320262, "lon": -3.7015524}, {"type": "node", "id": 9175086695, "lat": 40.4330833, "lon": -3.7024692, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993695, "lat": 40.4395337, "lon": -3.6992423, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993696, "lat": 40.4395972, "lon": -3.699129, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993697, "lat": 40.4396692, "lon": -3.6992309, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993699, "lat": 40.4396007, "lon": -3.6992052, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281641942, "lat": 40.4321262, "lon": -3.7035685, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9281641973, "lat": 40.4329907, "lon": -3.7025422, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9281642021, "lat": 40.4324542, "lon": -3.7022686, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281668036, "lat": 40.4319452, "lon": -3.702173, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9281668038, "lat": 40.4318984, "lon": -3.7021294, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281668039, "lat": 40.4318839, "lon": -3.7021837, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9294124001, "lat": 40.4509816, "lon": -3.7111387, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9294124029, "lat": 40.4494848, "lon": -3.7115351, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 9354013613, "lat": 40.4464337, "lon": -3.6913549}, {"type": "node", "id": 9397668172, "lat": 40.4254387, "lon": -3.6938598, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9398011424, "lat": 40.4250072, "lon": -3.6940072}, {"type": "node", "id": 9439650457, "lat": 40.4327517, "lon": -3.7207533}, {"type": "node", "id": 9439650465, "lat": 40.4328272, "lon": -3.720807}, {"type": "node", "id": 9468406681, "lat": 40.4382417, "lon": -3.6978133, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468406683, "lat": 40.4366976, "lon": -3.6978644, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468406684, "lat": 40.4367287, "lon": -3.6979412, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468415552, "lat": 40.4373057, "lon": -3.6979634, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 9468418948, "lat": 40.4366369, "lon": -3.697949, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468418951, "lat": 40.4361339, "lon": -3.6980565, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468418953, "lat": 40.4361757, "lon": -3.697988, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421734, "lat": 40.4357219, "lon": -3.6979758, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421735, "lat": 40.4356765, "lon": -3.6980301, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421736, "lat": 40.4357658, "lon": -3.6980226, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421737, "lat": 40.4357278, "lon": -3.698096, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421738, "lat": 40.4350691, "lon": -3.6980806, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468442517, "lat": 40.4356095, "lon": -3.6965005, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 9468442518, "lat": 40.4350722, "lon": -3.696543, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468442519, "lat": 40.4356521, "lon": -3.6965419, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9483986399, "lat": 40.4255339, "lon": -3.7184023}, {"type": "node", "id": 9492744667, "lat": 40.437654, "lon": -3.7043554}, {"type": "node", "id": 9492744668, "lat": 40.4371606, "lon": -3.7041493}, {"type": "node", "id": 9517181761, "lat": 40.4491102, "lon": -3.6893229}, {"type": "node", "id": 9549391154, "lat": 40.4457118, "lon": -3.7244769}, {"type": "node", "id": 9549391155, "lat": 40.4461902, "lon": -3.7127223}, {"type": "node", "id": 9549391158, "lat": 40.4464817, "lon": -3.7167594}, {"type": "node", "id": 9549391159, "lat": 40.4464958, "lon": -3.7167943}, {"type": "node", "id": 9601998681, "lat": 40.4460868, "lon": -3.6971543}, {"type": "node", "id": 9601998714, "lat": 40.4455973, "lon": -3.695693}, {"type": "node", "id": 9602013219, "lat": 40.445737, "lon": -3.6971809}, {"type": "node", "id": 9672874689, "lat": 40.4346229, "lon": -3.6985884, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 9672874690, "lat": 40.43502, "lon": -3.6966266, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874691, "lat": 40.4350606, "lon": -3.6949611, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874692, "lat": 40.4351064, "lon": -3.6932646, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874693, "lat": 40.4348814, "lon": -3.6820989, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 9677652704, "lat": 40.4283313, "lon": -3.7080737}, {"type": "node", "id": 9684664017, "lat": 40.420466, "lon": -3.6899987}, {"type": "node", "id": 9684850520, "lat": 40.4213684, "lon": -3.6897208}, {"type": "node", "id": 9699225795, "lat": 40.4426375, "lon": -3.7154276, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 9699225796, "lat": 40.4426111, "lon": -3.7154897}, {"type": "node", "id": 9699225797, "lat": 40.4426826, "lon": -3.7155715}, {"type": "node", "id": 9699225798, "lat": 40.4427245, "lon": -3.7156244}, {"type": "node", "id": 9699225799, "lat": 40.4426886, "lon": -3.7153918}, {"type": "node", "id": 9699225800, "lat": 40.4426352, "lon": -3.7155165, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 9699225801, "lat": 40.4426601, "lon": -3.7154206}, {"type": "node", "id": 9699225802, "lat": 40.4426942, "lon": -3.715347, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 9699225803, "lat": 40.4427072, "lon": -3.7156015, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 9712059178, "lat": 40.4243176, "lon": -3.7073918, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403066, "lat": 40.430623, "lon": -3.693635, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403067, "lat": 40.4305441, "lon": -3.6935195, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403068, "lat": 40.4312894, "lon": -3.6950236, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403069, "lat": 40.4312872, "lon": -3.6952095, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403070, "lat": 40.4312237, "lon": -3.6951395, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403071, "lat": 40.4318337, "lon": -3.6950938, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403072, "lat": 40.4317012, "lon": -3.6952254, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403073, "lat": 40.4318246, "lon": -3.693415, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403074, "lat": 40.4317475, "lon": -3.6933283, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403075, "lat": 40.4317426, "lon": -3.6935144, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403079, "lat": 40.4327361, "lon": -3.6958416}, {"type": "node", "id": 9999997218, "lat": 40.4359894, "lon": -3.7033781}, {"type": "node", "id": 10000729227, "lat": 40.418895, "lon": -3.6955436}, {"type": "node", "id": 10011023603, "lat": 40.4230399, "lon": -3.6930296}, {"type": "node", "id": 10011023604, "lat": 40.4230273, "lon": -3.6932001}, {"type": "node", "id": 10011023605, "lat": 40.4230594, "lon": -3.6930158}, {"type": "node", "id": 10011023606, "lat": 40.4230306, "lon": -3.6930535}, {"type": "node", "id": 10011023607, "lat": 40.4230276, "lon": -3.693086}, {"type": "node", "id": 10140011252, "lat": 40.4431632, "lon": -3.6839753}, {"type": "node", "id": 10147017766, "lat": 40.4223472, "lon": -3.6915252}, {"type": "node", "id": 10197766006, "lat": 40.4451034, "lon": -3.6949993}, {"type": "node", "id": 10197766007, "lat": 40.4447987, "lon": -3.6951354}, {"type": "node", "id": 10244148852, "lat": 40.4298113, "lon": -3.6933819}, {"type": "node", "id": 10262250915, "lat": 40.4464905, "lon": -3.724874}, {"type": "node", "id": 10266331336, "lat": 40.4229872, "lon": -3.6903626}, {"type": "node", "id": 10286446604, "lat": 40.4431982, "lon": -3.6837666, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 10286446605, "lat": 40.4432146, "lon": -3.6836694}, {"type": "node", "id": 10550528448, "lat": 40.4279203, "lon": -3.6884046}, {"type": "node", "id": 10550528506, "lat": 40.4451915, "lon": -3.7169832}, {"type": "node", "id": 10653138763, "lat": 40.4235466, "lon": -3.6930231}, {"type": "node", "id": 10745001722, "lat": 40.4466351, "lon": -3.7050634}, {"type": "node", "id": 10745001723, "lat": 40.4431761, "lon": -3.7050653}, {"type": "node", "id": 10745001728, "lat": 40.4437356, "lon": -3.7058922}, {"type": "node", "id": 10814462213, "lat": 40.4370386, "lon": -3.699487}, {"type": "node", "id": 10920210171, "lat": 40.4264901, "lon": -3.687505}, {"type": "node", "id": 10927499983, "lat": 40.4525308, "lon": -3.6993633}, {"type": "node", "id": 10927499985, "lat": 40.4524458, "lon": -3.6980823}, {"type": "node", "id": 10927525534, "lat": 40.4463526, "lon": -3.6915169}, {"type": "node", "id": 10927525542, "lat": 40.4499223, "lon": -3.6911774, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 10927537026, "lat": 40.4490875, "lon": -3.6904378}, {"type": "node", "id": 10927537028, "lat": 40.4489318, "lon": -3.6904544}, {"type": "node", "id": 11056722065, "lat": 40.4329483, "lon": -3.6916948}, {"type": "node", "id": 11056722072, "lat": 40.432669, "lon": -3.6914551, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11056722073, "lat": 40.4329337, "lon": -3.6916935, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11097973983, "lat": 40.4381548, "lon": -3.6846758}, {"type": "node", "id": 11097973985, "lat": 40.4381836, "lon": -3.6847217}, {"type": "node", "id": 11097973987, "lat": 40.4382806, "lon": -3.6845746}, {"type": "node", "id": 11097973988, "lat": 40.4383815, "lon": -3.6844517}, {"type": "node", "id": 11097973989, "lat": 40.4388045, "lon": -3.6837217}, {"type": "node", "id": 11097973990, "lat": 40.4388987, "lon": -3.6835368}, {"type": "node", "id": 11097973991, "lat": 40.4391751, "lon": -3.6829079}, {"type": "node", "id": 11097973992, "lat": 40.4392299, "lon": -3.6827937}, {"type": "node", "id": 11097973993, "lat": 40.4379479, "lon": -3.6850801}, {"type": "node", "id": 11097973994, "lat": 40.4378824, "lon": -3.685196}, {"type": "node", "id": 11097973995, "lat": 40.4378544, "lon": -3.6852458}, {"type": "node", "id": 11097973996, "lat": 40.4378011, "lon": -3.6853922}, {"type": "node", "id": 11097973997, "lat": 40.437777, "lon": -3.6855037}, {"type": "node", "id": 11141805128, "lat": 40.4244467, "lon": -3.6991843}, {"type": "node", "id": 11145627654, "lat": 40.428372, "lon": -3.709856}, {"type": "node", "id": 11145627655, "lat": 40.428935, "lon": -3.7101251}, {"type": "node", "id": 11149514151, "lat": 40.4479096, "lon": -3.724607, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514152, "lat": 40.4478428, "lon": -3.7245789, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514153, "lat": 40.4478755, "lon": -3.7247942, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514154, "lat": 40.4455042, "lon": -3.7209933, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 11149514155, "lat": 40.4485524, "lon": -3.7215425, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11149514156, "lat": 40.4459168, "lon": -3.7273283, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11157455813, "lat": 40.4383308, "lon": -3.7177797, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 11167102459, "lat": 40.4494691, "lon": -3.7057639}, {"type": "node", "id": 11167102460, "lat": 40.4494375, "lon": -3.7058898}, {"type": "node", "id": 11167102461, "lat": 40.4494171, "lon": -3.7059044}, {"type": "node", "id": 11167102462, "lat": 40.4493891, "lon": -3.705911}, {"type": "node", "id": 11172580730, "lat": 40.4307468, "lon": -3.705388}, {"type": "node", "id": 11172580731, "lat": 40.4308549, "lon": -3.7059061}, {"type": "node", "id": 11172580732, "lat": 40.4306752, "lon": -3.7059747}, {"type": "node", "id": 11172580733, "lat": 40.4307483, "lon": -3.7063342}, {"type": "node", "id": 11172580734, "lat": 40.4308416, "lon": -3.7058363}, {"type": "node", "id": 11172580735, "lat": 40.4307776, "lon": -3.705555}, {"type": "node", "id": 11200863916, "lat": 40.4454728, "lon": -3.7244545}, {"type": "node", "id": 11200863917, "lat": 40.4454165, "lon": -3.7245118}, {"type": "node", "id": 11200863918, "lat": 40.4453747, "lon": -3.7244409}, {"type": "node", "id": 11200863919, "lat": 40.4454686, "lon": -3.7244746}, {"type": "node", "id": 11200863920, "lat": 40.4454598, "lon": -3.7244919}, {"type": "node", "id": 11200863921, "lat": 40.4454473, "lon": -3.7245046}, {"type": "node", "id": 11200863922, "lat": 40.4454323, "lon": -3.7245115}, {"type": "node", "id": 11200863923, "lat": 40.4454022, "lon": -3.7245059}, {"type": "node", "id": 11200863924, "lat": 40.4453898, "lon": -3.7244947}, {"type": "node", "id": 11200863925, "lat": 40.4453806, "lon": -3.7244791}, {"type": "node", "id": 11200863926, "lat": 40.4453754, "lon": -3.7244606}, {"type": "node", "id": 11200863927, "lat": 40.4453788, "lon": -3.7244212}, {"type": "node", "id": 11200863928, "lat": 40.4453872, "lon": -3.7244042}, {"type": "node", "id": 11200863929, "lat": 40.4453993, "lon": -3.7243914}, {"type": "node", "id": 11200863930, "lat": 40.4454138, "lon": -3.7243842}, {"type": "node", "id": 11200863931, "lat": 40.4454441, "lon": -3.7243887}, {"type": "node", "id": 11200863932, "lat": 40.4454569, "lon": -3.7243998}, {"type": "node", "id": 11200863933, "lat": 40.4454665, "lon": -3.7244155}, {"type": "node", "id": 11200863934, "lat": 40.445472, "lon": -3.7244344}, {"type": "node", "id": 11201893843, "lat": 40.4442433, "lon": -3.7040385}, {"type": "node", "id": 11201940673, "lat": 40.4442174, "lon": -3.7061954}, {"type": "node", "id": 11201940677, "lat": 40.4433424, "lon": -3.7055261}, {"type": "node", "id": 11201940678, "lat": 40.443336, "lon": -3.7054638}, {"type": "node", "id": 11201940679, "lat": 40.4436847, "lon": -3.7058541}, {"type": "node", "id": 11201940680, "lat": 40.4436401, "lon": -3.7058109}, {"type": "node", "id": 11201940681, "lat": 40.4435344, "lon": -3.705706}, {"type": "node", "id": 11201940682, "lat": 40.4434741, "lon": -3.7056576}, {"type": "node", "id": 11201940683, "lat": 40.4434132, "lon": -3.7056135}, {"type": "node", "id": 11201940684, "lat": 40.4426725, "lon": -3.7050753}, {"type": "node", "id": 11201940685, "lat": 40.4425413, "lon": -3.7050167}, {"type": "node", "id": 11201940686, "lat": 40.4426021, "lon": -3.7050174}, {"type": "node", "id": 11201940687, "lat": 40.4426456, "lon": -3.7050131}, {"type": "node", "id": 11201940688, "lat": 40.44272, "lon": -3.7050122}, {"type": "node", "id": 11201940689, "lat": 40.4424372, "lon": -3.7050077}, {"type": "node", "id": 11201940690, "lat": 40.4424967, "lon": -3.7050154}, {"type": "node", "id": 11201940691, "lat": 40.4423791, "lon": -3.7049847}, {"type": "node", "id": 11201940692, "lat": 40.4424167, "lon": -3.7050658}, {"type": "node", "id": 11201940693, "lat": 40.4424125, "lon": -3.7051035}, {"type": "node", "id": 11201940694, "lat": 40.4424362, "lon": -3.7050361}, {"type": "node", "id": 11203180090, "lat": 40.444154, "lon": -3.6869995}, {"type": "node", "id": 11218044129, "lat": 40.4216355, "lon": -3.6844686}, {"type": "node", "id": 11218044130, "lat": 40.4230669, "lon": -3.6843651}, {"type": "node", "id": 11218044131, "lat": 40.4231207, "lon": -3.6855656}, {"type": "node", "id": 11218044132, "lat": 40.4355467, "lon": -3.6865427}, {"type": "node", "id": 11218056240, "lat": 40.4377362, "lon": -3.685132}, {"type": "node", "id": 11218056243, "lat": 40.4376025, "lon": -3.684195}, {"type": "node", "id": 11218056244, "lat": 40.4376317, "lon": -3.6842023}, {"type": "node", "id": 11218056245, "lat": 40.4376171, "lon": -3.6841951}, {"type": "node", "id": 11218056246, "lat": 40.4376249, "lon": -3.6837785}, {"type": "node", "id": 11218056247, "lat": 40.4376166, "lon": -3.6835085}, {"type": "node", "id": 11218056251, "lat": 40.4377974, "lon": -3.6855471}, {"type": "node", "id": 11218056252, "lat": 40.4377953, "lon": -3.6861823}, {"type": "node", "id": 11218056253, "lat": 40.4377084, "lon": -3.6854082}, {"type": "node", "id": 11218056254, "lat": 40.4377709, "lon": -3.6852009}, {"type": "node", "id": 11218056255, "lat": 40.4377546, "lon": -3.6852375}, {"type": "node", "id": 11218056256, "lat": 40.4377576, "lon": -3.6864955}, {"type": "node", "id": 11218056257, "lat": 40.4377508, "lon": -3.6863908}, {"type": "node", "id": 11218056258, "lat": 40.4378083, "lon": -3.6883219}, {"type": "node", "id": 11218056259, "lat": 40.4378157, "lon": -3.688155}, {"type": "node", "id": 11218056260, "lat": 40.437818, "lon": -3.6881042}, {"type": "node", "id": 11218056261, "lat": 40.4377991, "lon": -3.6880398}, {"type": "node", "id": 11218056262, "lat": 40.437929, "lon": -3.6896223}, {"type": "node", "id": 11218056263, "lat": 40.4379288, "lon": -3.6892767}, {"type": "node", "id": 11218056264, "lat": 40.4379315, "lon": -3.6893667}, {"type": "node", "id": 11218056265, "lat": 40.4379545, "lon": -3.6881881}, {"type": "node", "id": 11218056266, "lat": 40.4379693, "lon": -3.6879244}, {"type": "node", "id": 11218056267, "lat": 40.4379568, "lon": -3.687935}, {"type": "node", "id": 11218056268, "lat": 40.4378829, "lon": -3.6865294}, {"type": "node", "id": 11218056269, "lat": 40.437983, "lon": -3.6897397}, {"type": "node", "id": 11218056270, "lat": 40.4379916, "lon": -3.6895424}, {"type": "node", "id": 11218056271, "lat": 40.4379967, "lon": -3.68933}, {"type": "node", "id": 11218056272, "lat": 40.4379862, "lon": -3.6898868}, {"type": "node", "id": 11218056273, "lat": 40.4379273, "lon": -3.6899138}, {"type": "node", "id": 11218056274, "lat": 40.4379287, "lon": -3.6897743}, {"type": "node", "id": 11218056275, "lat": 40.4378795, "lon": -3.6898901}, {"type": "node", "id": 11218056288, "lat": 40.4378035, "lon": -3.6854948}, {"type": "node", "id": 11218056294, "lat": 40.4418791, "lon": -3.6827581}, {"type": "node", "id": 11220658527, "lat": 40.4257108, "lon": -3.7116964, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing"}}, {"type": "node", "id": 11220735883, "lat": 40.4273446, "lon": -3.7081384, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220735884, "lat": 40.4274444, "lon": -3.7081183, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220754135, "lat": 40.4266496, "lon": -3.7071176, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220757838, "lat": 40.4266918, "lon": -3.7071614, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220757842, "lat": 40.4266151, "lon": -3.7067906, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11220779542, "lat": 40.4260797, "lon": -3.7069722, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779544, "lat": 40.4260932, "lon": -3.7071047, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779549, "lat": 40.4266041, "lon": -3.7066948, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779550, "lat": 40.4257207, "lon": -3.7071855, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779557, "lat": 40.4250854, "lon": -3.7073585, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11223357755, "lat": 40.4378296, "lon": -3.6853069}, {"type": "node", "id": 11223357756, "lat": 40.4388265, "lon": -3.6833424}, {"type": "node", "id": 11223357757, "lat": 40.4388594, "lon": -3.6833782}, {"type": "node", "id": 11225233751, "lat": 40.4274723, "lon": -3.7064744, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11225754979, "lat": 40.4347894, "lon": -3.7131351}, {"type": "node", "id": 11225755001, "lat": 40.4341519, "lon": -3.7116011}, {"type": "node", "id": 11225755003, "lat": 40.4340498, "lon": -3.7115116}, {"type": "node", "id": 11225755058, "lat": 40.4336039, "lon": -3.7101775}, {"type": "node", "id": 11225755069, "lat": 40.4329594, "lon": -3.7115071}, {"type": "node", "id": 11225755088, "lat": 40.4325052, "lon": -3.7132678}, {"type": "node", "id": 11225755124, "lat": 40.4318008, "lon": -3.7117125}, {"type": "node", "id": 11228709907, "lat": 40.4257199, "lon": -3.7116351, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228713079, "lat": 40.4265497, "lon": -3.7128878, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11228713086, "lat": 40.4262838, "lon": -3.7125635, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228737727, "lat": 40.4256736, "lon": -3.7116067, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766801, "lat": 40.4274229, "lon": -3.7075765, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766814, "lat": 40.4274266, "lon": -3.7074877, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766815, "lat": 40.4274775, "lon": -3.7075233, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766816, "lat": 40.4273781, "lon": -3.7075397, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766832, "lat": 40.4274557, "lon": -3.7068454, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766833, "lat": 40.4274136, "lon": -3.7067938, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230730612, "lat": 40.4290819, "lon": -3.7036836, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771818, "lat": 40.4278994, "lon": -3.705031, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771831, "lat": 40.4278391, "lon": -3.7049765, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771832, "lat": 40.4277971, "lon": -3.7050512, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771833, "lat": 40.4278605, "lon": -3.7050926, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230772039, "lat": 40.4271667, "lon": -3.7064025, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777622, "lat": 40.4275772, "lon": -3.7036395, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777623, "lat": 40.4275124, "lon": -3.7035787, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777624, "lat": 40.4275537, "lon": -3.7035142, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777625, "lat": 40.4276197, "lon": -3.7035605, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799213, "lat": 40.4286285, "lon": -3.7034202, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799215, "lat": 40.4287082, "lon": -3.7037488, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799229, "lat": 40.4288393, "lon": -3.7048348, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799230, "lat": 40.4287781, "lon": -3.7047866, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799231, "lat": 40.4287415, "lon": -3.7048549, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799232, "lat": 40.4287915, "lon": -3.7049122, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083977, "lat": 40.4276517, "lon": -3.7040035, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083978, "lat": 40.427676, "lon": -3.7039417, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083979, "lat": 40.4276313, "lon": -3.703901, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083989, "lat": 40.4286635, "lon": -3.7036967, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083990, "lat": 40.4286774, "lon": -3.7038179, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083991, "lat": 40.4286253, "lon": -3.7037634, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234142746, "lat": 40.4285525, "lon": -3.7033774, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11237949945, "lat": 40.4284653, "lon": -3.7159383, "tags": {"crossing": "traffic_signals", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248474979, "lat": 40.425628, "lon": -3.7093952, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing"}}, {"type": "node", "id": 11248474987, "lat": 40.4259427, "lon": -3.7099958, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486981, "lat": 40.4262245, "lon": -3.7106207, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486982, "lat": 40.426184, "lon": -3.7107153, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486983, "lat": 40.426093, "lon": -3.7106943, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11250448278, "lat": 40.4219727, "lon": -3.6941744, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11250448289, "lat": 40.4219258, "lon": -3.6949173, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11269072934, "lat": 40.451767, "lon": -3.7062584}, {"type": "node", "id": 11279337787, "lat": 40.4324268, "lon": -3.7194175}, {"type": "node", "id": 11279337788, "lat": 40.4332127, "lon": -3.7235846}, {"type": "node", "id": 11279337789, "lat": 40.4328077, "lon": -3.7207931}, {"type": "node", "id": 11279585502, "lat": 40.4300274, "lon": -3.7106787}, {"type": "node", "id": 11343888028, "lat": 40.4455034, "lon": -3.7244564, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11343888029, "lat": 40.4454121, "lon": -3.724553, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11359780700, "lat": 40.4504766, "lon": -3.7032991}, {"type": "node", "id": 11381176993, "lat": 40.4392307, "lon": -3.7203041}, {"type": "node", "id": 11381176997, "lat": 40.4395218, "lon": -3.7190008}, {"type": "node", "id": 11408056412, "lat": 40.4241268, "lon": -3.6943125}, {"type": "node", "id": 11486687684, "lat": 40.4304439, "lon": -3.6866591}, {"type": "node", "id": 11525423807, "lat": 40.4494428, "lon": -3.7037405, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423814, "lat": 40.4444537, "lon": -3.7040315, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423852, "lat": 40.4307712, "lon": -3.7055203, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11525423855, "lat": 40.4280531, "lon": -3.7063912, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423860, "lat": 40.4255752, "lon": -3.7074253, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11533572578, "lat": 40.4272621, "lon": -3.7105869, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572585, "lat": 40.4280047, "lon": -3.710099, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572595, "lat": 40.4288385, "lon": -3.7097225, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572596, "lat": 40.4287771, "lon": -3.7095391, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572597, "lat": 40.4287231, "lon": -3.7095502, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572598, "lat": 40.4285645, "lon": -3.7096672}, {"type": "node", "id": 11533572599, "lat": 40.4288079, "lon": -3.7094002, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572600, "lat": 40.4290339, "lon": -3.7093449}, {"type": "node", "id": 11533572604, "lat": 40.4290693, "lon": -3.7106314, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11533572609, "lat": 40.4294284, "lon": -3.7124687, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 11533572614, "lat": 40.4295145, "lon": -3.7125182, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 11533572627, "lat": 40.4264305, "lon": -3.7111304, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572632, "lat": 40.4263285, "lon": -3.7112001, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572637, "lat": 40.4264062, "lon": -3.7112513, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572647, "lat": 40.4261725, "lon": -3.7106435, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11533572648, "lat": 40.4263861, "lon": -3.7112046, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11563811456, "lat": 40.4302306, "lon": -3.6908414}, {"type": "node", "id": 11563811460, "lat": 40.4295332, "lon": -3.6910306, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11563811461, "lat": 40.4294678, "lon": -3.6911625, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11563811462, "lat": 40.4294014, "lon": -3.6910522, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11612987880, "lat": 40.4352872, "lon": -3.719496}, {"type": "node", "id": 11645339830, "lat": 40.439661, "lon": -3.7175723, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339831, "lat": 40.4397523, "lon": -3.7176465, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339835, "lat": 40.4440189, "lon": -3.7209411, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11645339861, "lat": 40.4453978, "lon": -3.7210753, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645339863, "lat": 40.4453015, "lon": -3.7210621}, {"type": "node", "id": 11645339864, "lat": 40.4453554, "lon": -3.7210762}, {"type": "node", "id": 11645339867, "lat": 40.446845, "lon": -3.719091, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11645339870, "lat": 40.4468736, "lon": -3.7191669, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645339871, "lat": 40.4468842, "lon": -3.719195}, {"type": "node", "id": 11645339872, "lat": 40.4469284, "lon": -3.7192709}, {"type": "node", "id": 11645339873, "lat": 40.4461674, "lon": -3.7199044, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339877, "lat": 40.4467541, "lon": -3.7183509, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 11645339885, "lat": 40.4465688, "lon": -3.7183364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 11645339890, "lat": 40.4465856, "lon": -3.7183145, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 11645339891, "lat": 40.4467575, "lon": -3.7183765, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339892, "lat": 40.4467018, "lon": -3.71798, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11655970547, "lat": 40.4261605, "lon": -3.6804844}, {"type": "node", "id": 11690678657, "lat": 40.4422005, "lon": -3.7150499, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717879, "lat": 40.4435459, "lon": -3.7160913, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717925, "lat": 40.444346, "lon": -3.7197916, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717930, "lat": 40.4436654, "lon": -3.718508, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717957, "lat": 40.4412263, "lon": -3.7164425, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690755762, "lat": 40.4411915, "lon": -3.7163968, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690755764, "lat": 40.4413146, "lon": -3.7166808, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690755767, "lat": 40.442148, "lon": -3.7151257, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767175, "lat": 40.4427439, "lon": -3.7157003, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767177, "lat": 40.4428121, "lon": -3.7151916, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767179, "lat": 40.4427074, "lon": -3.7150893, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767182, "lat": 40.4436872, "lon": -3.7151201, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767183, "lat": 40.4437142, "lon": -3.7153968, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767185, "lat": 40.443804, "lon": -3.7151983}, {"type": "node", "id": 11690767187, "lat": 40.443792, "lon": -3.7149956, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767189, "lat": 40.443823, "lon": -3.7151388}, {"type": "node", "id": 11690767190, "lat": 40.4437918, "lon": -3.7151647}, {"type": "node", "id": 11690767191, "lat": 40.4438642, "lon": -3.7151929}, {"type": "node", "id": 11690767193, "lat": 40.4437563, "lon": -3.7142558, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767196, "lat": 40.4438403, "lon": -3.7141371, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767199, "lat": 40.4435846, "lon": -3.7160895, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767202, "lat": 40.443588, "lon": -3.7172525, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767204, "lat": 40.4436799, "lon": -3.7185092, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767206, "lat": 40.4427844, "lon": -3.71423, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767209, "lat": 40.4426759, "lon": -3.7141181, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11704126372, "lat": 40.4504622, "lon": -3.7140968}, {"type": "node", "id": 11782580369, "lat": 40.4224513, "lon": -3.6922597, "tags": {"crossing": "marked", "crossing:island": "no", "flashing_lights": "sensor", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11782580385, "lat": 40.4224761, "lon": -3.693218, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes", "traffic_calming": "table"}}, {"type": "node", "id": 11796117916, "lat": 40.4454037, "lon": -3.7246394, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 11796117917, "lat": 40.4426528, "lon": -3.7250063, "tags": {"barrier": "lift_gate"}}, {"type": "way", "id": 4099789, "nodes": [21990706, 1855037742], "tags": {"highway": "residential", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101279, "nodes": [21990719, 1591329818, 21990718, 7159758687, 21990717, 22031313, 4260707791, 21990700], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101280, "nodes": [630734756, 1501227833], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101281, "nodes": [26067302, 4823975333, 26067267, 26067277, 26067275, 11220754135, 11220757842, 22023377], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de la Palma", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 4101282, "nodes": [21990741, 22031310], "tags": {"alt_name": "Calle del 2 de Mayo", "highway": "residential", "lit": "yes", "name": "Calle del Dos de Mayo", "name:etymology:wikidata": "Q181146", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101283, "nodes": [21990717, 21990745, 21990746, 22031310, 21990747, 1474148377, 11220779542, 26066553], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Vicente Ferrer", "name:etymology:wikidata": "Q317131", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101285, "nodes": [21990722, 1591329881, 11230777624, 21990731, 11230777622, 11234083979, 21990734, 11234083977, 11230771831, 22016261, 11230771833, 2973015551, 1666720773], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle del Divino Pastor", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101286, "nodes": [22023240, 11230799232, 22022173, 11230799230, 11234083990, 22018603, 11234083989, 11230799213, 22018580, 22016262], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Manuela Malasa\u00f1a", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones:30"}}, {"type": "way", "id": 4101287, "nodes": [22022132, 11230730612, 11230799215, 22018603, 11234083991, 22022095, 11234083978, 21990734], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Ruiz", "oneway": "yes", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101288, "nodes": [22016264, 11230771832, 22016261, 11230771818, 22022079, 11230799231, 22022173, 11230799229, 6314750367, 22022163], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Montele\u00f3n", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101289, "nodes": [22022079, 22022095], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de la Galer\u00eda de Robles", "oneway": "yes", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101291, "nodes": [21990720, 21990743], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Velarde", "name:etymology:wikidata": "Q718282", "oneway": "no", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101292, "nodes": [4062386148, 4062386149, 9047955459, 4062425598, 4062425600, 4062425597], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Plaza de San Ildefonso", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4110790, "nodes": [21990724, 1591329839, 1591329871, 21990723, 1591329885, 1591330000, 22022319], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Churruca", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4261173, "nodes": [25552447, 25552448, 1253137011, 7549719199, 8427025371, 25552449], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 4261174, "nodes": [345537803, 7549719182, 7549719183, 3323948849], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4290639, "nodes": [1011869670, 1760085716], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4290676, "nodes": [25902900, 359308509], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 4291302, "nodes": [25906116, 8441812508, 25906135, 1316546929, 25906132, 1316546497, 25906136, 25906138, 1316546802, 25906139, 3946882543, 370503465, 581287799, 25901940, 8441812503, 6515115932, 25901935], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4291303, "nodes": [25901936, 7549719186, 25901937, 1278839092, 25901938, 8422641934, 25906141, 3946882542, 4202134078, 1316547022, 25906137], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4307812, "nodes": [1591329870, 3144095506, 3418222082, 21990725, 7159758672, 7159758665, 21990724, 3428307530], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Barcel\u00f3", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307813, "nodes": [4134046213, 1591329888, 21990726, 1591329873, 21990723, 1591329872, 21990722], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Apodaca", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307814, "nodes": [22022337, 1591329977, 1591329890, 21990726, 1591329853, 21990725], "tags": {"highway": "residential", "name": "Calle de Larra", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307816, "nodes": [22022361, 22022371], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307817, "nodes": [25906098, 1591329944, 25906102, 25906108, 25906107, 1591329844, 370503620, 25906111], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Serrano Anguita", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307818, "nodes": [25906103, 1591329935, 1591329900, 25906102], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Antonio Flores", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307819, "nodes": [25906107, 1591329916, 25906105], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos \u00c1lvarez Quintero", "name:etymology:wikidata": "Q2879473", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307821, "nodes": [22022227, 1501227829, 22022319, 22022337, 1591329962, 22022361], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307822, "nodes": [25906121, 1591329929, 4808864933], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4308076, "nodes": [26066564, 26066562, 26066559, 26066552], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Minas", "note": "street signs have both names 'Calle de Minas', and 'Calle de las Minas'.", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 4308597, "nodes": [26578960, 913080870, 5006352946], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4314414, "nodes": [26025893, 11225754979, 1596698151, 26153007], "tags": {"highway": "residential", "name": "Calle de Abd\u00f3n Terradas", "name:etymology:wikidata": "Q3753351", "postal_code": "28015"}}, {"type": "way", "id": 4314417, "nodes": [26025893, 1596698152, 1596698153, 26025895], "tags": {"highway": "residential", "lit": "yes", "name": "Traves\u00eda de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4314418, "nodes": [27514668, 6238487901, 1447402323], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4314420, "nodes": [26211532, 1669118077, 1669118071, 4490265351, 26025847, 1669118067, 1669118045, 26025848, 1669118042, 1669118040, 2525814071, 26025849, 1669118037, 1669118033, 4536011538, 1669118030, 26025850, 1669118019, 4536011541, 26025851, 4536011540, 4548451517, 26025852, 4485511527, 4536011533, 4536011535, 26025853], "tags": {"bicycle": "yes", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Mar\u00eda L\u00f3pez", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4314421, "nodes": [27523108, 2972941418, 1669117879, 27523422, 4637799990, 1669117886, 26025861, 1669117908, 26025860, 1669117911, 1669117915, 26025859, 4637125721, 1669117919, 26025858, 4633502260, 1669117951, 26025857, 1669117957, 1669117961, 1669117964, 26025856, 1669117965, 1669117973, 26025855, 1669118003, 1669118005, 26025854, 1669118007, 4208916614, 1669118013, 26211530], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Donoso Cort\u00e9s", "name:etymology:wikidata": "Q723141", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4314423, "nodes": [141857474, 3096525872, 4637824964, 141857476, 4637824965, 4416570440, 4416570441, 5966607251, 5754419281, 26025879, 2661689880, 4416845742, 26025878, 4416845743, 5966607250, 1596698138, 26025877, 1596698139, 1596698141, 26025876, 11225755001, 5966607249, 1596698145, 26025875, 1596698146, 1596698147, 26025873, 1669117741, 26025872, 1669117747, 26025871, 5321904954], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4318941, "nodes": [25935517, 6441681710, 1596698098, 4470285254, 26025890], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4318942, "nodes": [27517499, 11690717957, 11690755762, 27517522, 2466305332, 26211577], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 4319191, "nodes": [26025904, 1669118119, 1500124545, 26025903], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 4319192, "nodes": [25935532, 1669117690, 26025892], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Hilari\u00f3n Eslava", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4319193, "nodes": [26211541, 4519701716, 26211543], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 4319194, "nodes": [26211528, 1669117828, 1537917871], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk:both": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4319324, "nodes": [27517937, 4637304252, 26212612, 4311812552, 26212608], "tags": {"destination": "Plaza Espa\u00f1a; Paseo Castellana", "highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4319325, "nodes": [26212608, 4548435342, 1924384860, 4548435343, 26212609, 26212610, 1669118112, 26212611, 4548454348, 4548454347, 4548454346], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4321662, "nodes": [26578966, 4428052239, 1505081018, 1505081009, 26578967, 26025880, 1669117718, 1669117715, 26025881, 1669117711, 1596698125, 2525814117, 26025882], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321663, "nodes": [8583879003, 298151334, 141868929, 1596698087, 60672523], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Jer\u00f3nimo de la Quintana", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4321664, "nodes": [25935142, 1596698085, 1596698084, 25935138], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Francisco Ricci", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321665, "nodes": [25935073, 674477950, 674477932, 25935075], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Emilio Carrere", "name:etymology:wikidata": "Q266059", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321666, "nodes": [26025845, 4536011531, 4548451520, 4536011536, 26025852, 4548451521, 5204319847, 1669117922, 26025859, 1669117795, 26025867, 4437576917, 4921021997, 1596698143, 26025877, 4637125719, 26025896], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321667, "nodes": [25935058, 25935060], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Glorieta del Gran Capit\u00e1n", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321669, "nodes": [26242736, 2661689879, 26242734], "tags": {"highway": "residential", "name": "Calle de Casarrubuelos", "name:etymology:wikidata": "Q1772185", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4321670, "nodes": [26025853, 4536011534, 26242738], "tags": {"highway": "residential", "name": "Calle de Joaqu\u00edn Mar\u00eda L\u00f3pez", "noexit": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4321671, "nodes": [26025907, 1596698103, 26025885, 1596698116, 26025906], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Calvo Asensio", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321672, "nodes": [26025886, 11225755088, 1596698108, 26025885], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Antonio Palomino", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321673, "nodes": [26025897, 4416845740, 11225755058, 26025896], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Fernando Garrido", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4334159, "nodes": [25906116, 2685986777, 25906117], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4334163, "nodes": [25901936, 7549719187, 3418035844, 554166725, 7549719188, 1915012257, 554166728, 3418035841, 25901935], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 4339396, "nodes": [26413139, 616211590, 3802946120, 26413156, 3802946112], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:psv": "2", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4339400, "nodes": [26413513, 1613048641, 8451215628, 1613048618, 5214866724, 26413522], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Crist\u00f3bal Bordi\u00fa", "name:etymology:wikidata": "Q22962489", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4339401, "nodes": [98945971, 8807066161, 8807066160, 1613048661, 1613048666, 98945970, 1613048667, 1016578444, 1613048683, 98945969, 1613048686, 1654250184, 98945967, 1654250185, 1654250187, 26413367, 5214866723, 1654250188, 1654250189, 26413368], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Mar\u00eda de Guzm\u00e1n", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4352977, "nodes": [25906117, 1591329927, 25934317], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4352978, "nodes": [63530500, 1760085707, 11056722072, 1760085706], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4353019, "nodes": [942080448, 4576234370, 1555729985, 4576234823, 26513047, 4576234824, 4576234828, 4576234827, 26513097], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Columela", "name:etymology:wikidata": "Q318317", "oneway": "yes", "postal_code": "28001", "source:name": "survey", "wikidata": "Q28806217", "wikipedia": "es:Calle de Columela"}}, {"type": "way", "id": 4353020, "nodes": [1900998827, 1900998825, 4576234358, 26513061, 26513105, 11218044129, 26513145], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de Aranda", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4353021, "nodes": [255289006, 1950481098, 8479324974, 255289007, 8479324976, 942080459, 26513137, 1950481100, 5235745135, 26513111, 26513067, 8003058429, 1555729951, 942080445, 25901921, 10266331336, 3418035827, 25901925], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Villanueva", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4360874, "nodes": [3594864826, 2478280862, 2478280868, 2478280871, 2478280851, 2478280869, 2478280870, 26579032], "tags": {"highway": "trunk", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 4360876, "nodes": [26579032, 26579033], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no"}}, {"type": "way", "id": 4360877, "nodes": [26579027, 26579028], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 4389647, "nodes": [4827673941, 55311600, 8436311127, 26808564, 26067260, 26067259, 26067258, 26067286, 11228737727, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Bernardino", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4389650, "nodes": [26067261, 4827701839, 11248474979, 26067259], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Ponciano", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4389651, "nodes": [26067258, 26067285], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Juan de Dios", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4389653, "nodes": [26067308, 27505288, 26067309, 27505287, 11248486981, 11533572647, 26067287, 11248486983, 26067286], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle del Lim\u00f3n", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "wikidata": "Q29608725", "wikipedia": "es:Calle del Lim\u00f3n"}}, {"type": "way", "id": 4389654, "nodes": [26808566, 26808565], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Manuel", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487124, "nodes": [26067300, 26067308, 2584038761, 26067269, 26067283, 11525423855, 1666720773], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Montserrat", "oneway": "yes", "postal_code": "28015", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4487126, "nodes": [26067292, 26808566, 11533572637, 11533572648, 26067289], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Traves\u00eda del Conde Duque", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487156, "nodes": [1666720773, 674492245, 26067273], "tags": {"highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487521, "nodes": [25901888, 11250448278, 25901889, 25901890, 3426800337, 27506521], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de Xiquena", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487670, "nodes": [25906196, 2910133816, 3424801047, 25906266, 25906265, 25906269, 4309826954, 25906270, 4309826943, 2239998650, 25906367, 4309826936, 929294330, 1900998783, 4309747785, 1522690059, 25906378, 10000729227], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Barquillo", "name:etymology:wikidata": "Q5740983", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487678, "nodes": [1855027673, 25906125, 25906124, 1316546411, 25906132], "tags": {"highway": "residential", "name": "Calle de Campoamor", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4487679, "nodes": [26341673, 6109456225, 3429367546, 3429367549, 6109456233, 25906420, 25906421, 5970506954, 25906429, 59633359, 25906288, 25906289, 25906276, 5970506953, 25906277, 25906300, 25906301, 3927597018, 25906221, 25906112], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Hortaleza", "oneway": "yes", "postal_code": "28004", "surface": "asphalt", "wikidata": "Q5740911"}}, {"type": "way", "id": 4487808, "nodes": [25906216, 3927597019, 3927597020, 25906221, 1474148376, 21990705], "tags": {"highway": "residential", "maxspeed": "20", "name": "Traves\u00eda de San Mateo", "name:en": "Traves\u00eda de San Mateo", "name:es": "Traves\u00eda de San Mateo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 4487809, "nodes": [25906212, 25906209, 25906204, 25906225, 3424801049, 25906196], "tags": {"highway": "residential", "name": "Calle de Bel\u00e9n", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 4487810, "nodes": [25906273, 25906272, 6301052256, 6301052259, 370503552, 25906209], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de San Gregorio", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 4487839, "nodes": [25935514, 6981674379, 858587228, 614036239], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4487840, "nodes": [8577075124, 7537445994, 26067887, 8426942045, 26067888], "tags": {"highway": "tertiary", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487841, "nodes": [25935146, 7864693886, 858587179], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4487843, "nodes": [26211545, 27508159, 11645339830, 27508048, 27508162], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487844, "nodes": [27508162, 11645339831, 27508161, 27508160, 26211563], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487845, "nodes": [27508174, 27508175, 27508176, 1212072884, 1212072795, 27508177], "tags": {"highway": "residential", "lanes": "1", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4487846, "nodes": [27508177, 27508178, 27508182, 27508183, 27508184, 6327649413, 27508185, 27508186, 11690767183, 27508196], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4487847, "nodes": [27508177, 3575366967, 1212072724, 27508179, 27508180], "tags": {"highway": "residential", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4487848, "nodes": [27508182, 11690767202, 27508542, 6327649426, 27508543, 27508544, 27508545, 27508546], "tags": {"highway": "residential", "name": "Calle de la Brisa", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4489142, "nodes": [581287837, 1505081155, 27514627, 8426942050, 27514667, 6380794348, 6380794341, 9549391155, 8451215623, 6238487900, 27514668], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 4489150, "nodes": [27508211, 11690767206, 27508204, 11690767196, 8846574699, 8846574704, 27508201], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Maestro \u00c1ngel Llorca", "old_name": "Calle del General Rodrigo", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489151, "nodes": [32602930, 1801212182, 2160260312, 32602934], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4489182, "nodes": [27508213, 2466312903, 2466312890, 11690767209, 27508211, 6314640616, 11690767179, 27516322], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Juli\u00e1n Romea", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489368, "nodes": [27514717, 4288632349, 2466312899, 27514733], "tags": {"highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "postal_code": "28003"}}, {"type": "way", "id": 4489369, "nodes": [27516635, 27516655, 26211543], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through;right|through"}}, {"type": "way", "id": 4489420, "nodes": [27517507, 1770052218, 27517506], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Dom\u00e9nico Scarlatti", "oneway": "yes", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 4489421, "nodes": [1770052226, 1770056846, 3663308742, 27516696], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489422, "nodes": [27516630, 1770052227, 8426942049, 27517498, 1770052234], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489423, "nodes": [27508196, 11690767185, 11690767190, 27508195, 11690767187, 11690767193, 3663308765, 27508204, 3663308764, 27508208], "tags": {"highway": "residential", "name": "Calle de Max Aub", "old_name": "Calle del General D\u00e1vila", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489424, "nodes": [27516322, 11690767177, 8426942052, 11690767182, 8426942051, 27508195, 11690767189, 6314640612, 11690767191], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489451, "nodes": [27508205, 3663308768, 3663308769, 27508201], "tags": {"highway": "residential", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489455, "nodes": [27517855, 6238487907, 2493633629, 8430162611, 8430180231, 2493633628, 27517857, 6238487906, 2466312892, 27514692], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle del General Ib\u00e1\u00f1ez de Ibero", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489456, "nodes": [27517857, 6238487905, 6238487904, 27517888], "tags": {"highway": "residential", "name": "Calle de Sotomayor", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489457, "nodes": [27516704, 6314640622, 6314640618, 3663308743, 27516700], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Melqu\u00edades \u00c1lvarez", "old_name": "Calle de Juan Vig\u00f3n", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489515, "nodes": [26211580, 6314640613, 27517891, 6314640621, 27517898, 1669118122, 26212613], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de la Aviaci\u00f3n Espa\u00f1ola", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489516, "nodes": [27517940, 4431660207, 27517939, 4431660202, 4431660200, 27517938, 4431660197, 4311812602, 4311812567, 27517937], "tags": {"highway": "residential", "name": "Calle de Jes\u00fas Maestro", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489517, "nodes": [27518078, 27518046, 27518032, 27518022, 27518009, 27518000, 27517991, 8936373768, 8936373769, 5784870820, 27517956], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "maxspeed:lanes": "50|30", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489518, "nodes": [27517956, 5784870821, 5784870819, 8426942047, 27517940, 4431660208, 27517955, 27517954, 8426942053, 5469164208, 27516704], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Melqu\u00edades \u00c1lvarez", "old_name": "Calle de Juan Vig\u00f3n", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489519, "nodes": [4311812596, 4311812587, 4311812580, 4311812576, 4311812574, 7062214672, 8531511254, 27520557, 7062214670, 27522330, 27522332, 27520738], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lucio del Valle", "name:etymology:wikidata": "Q5982356", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4489541, "nodes": [27520539, 27521709], "tags": {"highway": "residential", "lit": "no", "name": "Calle de Eustaquio Rodr\u00edguez", "postal_code": "28003", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 4489718, "nodes": [27522357, 7062214669, 444644587, 5987136571, 27520738, 2972891893, 1924384878], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Boix y Morer", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4491031, "nodes": [27518078, 7062214675, 8522340710, 4311812596, 27521668], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through;left|through|through|through"}}, {"type": "way", "id": 4491032, "nodes": [26211537, 1500124531, 1500124536, 4548425705, 26025840, 1500124528, 1500124504, 26025841], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4491033, "nodes": [26212618, 4548435344, 26212610], "tags": {"highway": "residential", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes"}}, {"type": "way", "id": 4497474, "nodes": [25935139, 1596698083, 8426942046, 25935138, 1596698093, 25935136, 11225755124, 1596698115, 26025884, 1596698123, 1596698132, 8426942044, 1596698135, 11225755003, 26025876, 1596698144, 4921022002, 26025894, 1596698154, 26025866], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4526344, "nodes": [25902055, 25902056, 4225207889, 21627165, 1555729980, 10920210171, 1981925782, 28096713], "tags": {"highway": "residential", "name": "Calle de Hermosilla", "name:etymology:wikidata": "Q6292949", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4638449, "nodes": [25903282, 1760085703, 25902196], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4680727, "nodes": [1377881546, 8213602126, 8213602125, 29739480, 1377881506, 1377881496, 29739481, 29739482, 29739483, 5191925504, 29739484, 8427069660, 5162768442, 29739485, 2466689592, 29739486, 142302070, 8427069662, 1759501679, 29739489], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4946755, "nodes": [26413584, 11201940691, 8804961582, 11201940689, 33131379, 11201940690, 11201940685, 33131380, 8804963719, 8804963718, 11201940684, 2972892276, 5784462286, 33131381, 33131393, 11201940683, 11201940682, 11201940681, 33131382, 11201940680, 11201940679, 10745001728, 11201940673, 33131383, 8804961583, 8804961584, 8804961585, 8805121868, 3357109504, 8804961586, 3357109510, 32604465], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4946756, "nodes": [32604454, 8483713088, 32604456, 8483713087, 32604458, 8483713086, 1203847183, 8483713085, 32604459, 1203847153, 1140217791, 32604391], "tags": {"highway": "residential", "lanes": "1", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 4946757, "nodes": [32604397, 32604398, 32604399, 32604401, 32604410, 32604414, 32604418, 737215754, 1203847112, 1203847140, 32604423, 338728203, 32604425, 338728219, 1203847227, 27514692], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4946758, "nodes": [27514717, 338728451, 27519868], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4949538, "nodes": [27508205, 3213799228], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 4949539, "nodes": [27517856, 1203847181], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4949540, "nodes": [32630168, 2436859061, 32630163, 2436859060, 9116858065, 32630167], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "name": "Calle de Juan Montalvo", "oneway": "yes", "surface": "asphalt", "width": "9"}}, {"type": "way", "id": 4949541, "nodes": [32630167, 9116858066, 9116858052, 32630166], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de la Explanada", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4949542, "nodes": [27519777, 1203847173, 3663308767, 27519852, 27519868], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4949543, "nodes": [27519777, 3663308763, 27519838, 27514733], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "turn:lanes": "left|left"}}, {"type": "way", "id": 4950641, "nodes": [630734756, 365886562, 22022227], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4950642, "nodes": [141870722, 1357992434, 8866381039, 5970484997, 22022469, 22022484, 5970484996, 1211171045, 25934861], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Carranza", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4950643, "nodes": [25934856, 25934875, 22022163, 22022132, 22022145, 8440634374, 1357992429, 630734756], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Carranza", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4950751, "nodes": [25935062, 11533572600, 1651583802, 25935058], "tags": {"bicycle": "yes", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle del Conde Duque", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950752, "nodes": [25934855, 2973015554, 26067284, 26067270, 9677652704, 26067306], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Hermenegildo", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950753, "nodes": [26067273, 11225233751, 26067276, 11228766832, 11228766814, 26067281, 11228766801, 26067268], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Qui\u00f1ones", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 4950754, "nodes": [26067276, 11228766833, 26067272, 11220757838, 26067275, 26067274, 26067271], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle del Norte", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 4950756, "nodes": [26067262, 4827701838, 26067265, 26067271, 8429132475, 11525423860, 26066554], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Noviciado", "name:etymology:wikidata": "Q25212055", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4950758, "nodes": [26067298, 11248474987, 26067307], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Bernardo L\u00f3pez Garc\u00eda", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950759, "nodes": [26067277, 26067282, 11228766816, 26067281, 11228766815, 26067283, 26067284], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de San Dimas", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4950791, "nodes": [25935524, 25935522], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 4950793, "nodes": [26067291, 26067292], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de las Negras", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4950794, "nodes": [25935071, 25935069], "tags": {"highway": "residential", "name": "Calle de Baltasar Graci\u00e1n", "name:etymology:wikidata": "Q360512", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 5989259, "nodes": [26579083, 8577075136, 3253320375], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 5989317, "nodes": [26578974, 8440879527, 8440879528, 1364771904, 4456608447, 26578971], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lisboa", "name:etymology:wikidata": "Q597", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 5990070, "nodes": [26578968, 1364771695, 55161178, 3927556763, 26578951, 3927556770, 26578950, 3927556774, 55161174, 4757946972, 55138197], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Benito Guti\u00e9rrez", "name:etymology:wikidata": "Q21872966", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 5990071, "nodes": [25935531, 1378696878, 3927556767, 55161170, 3927556760, 25935534, 3927556757, 3927556256, 25935554, 55161181, 1364771581, 25935576], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Altamirano", "name:etymology": "Antonio Torres Altamirano. Fraile trinitario (Madrid, 8-XII-1616 - Salamanca, 4-XI-1685). General en dos ocasiones de los Trinitarios Descalzos. Entre sus obras destacan unos \"Comentarios morales y anal\u00f3gicos sobre el Apocalipsis\".", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 5990532, "nodes": [26578970, 1364771873, 26578975], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de \u00c9cija", "name:etymology:wikidata": "Q273413", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 5990536, "nodes": [26578957, 3927556765, 3927556764, 26578951, 3927556758, 25935554, 3927556254, 3471276060, 55161154], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 6601764, "nodes": [25902154, 1950481197, 8911132530, 4840111217, 25902329], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Marqu\u00e9s de Villamagna", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 6601773, "nodes": [26513132, 11218044130, 1950481101, 1973690383, 11218044131, 26513124], "tags": {"highway": "residential", "name": "Calle Gurtubay", "oneway": "yes", "postal_code": "28001"}}, {"type": "way", "id": 7593889, "nodes": [26080663, 293293726, 55138143, 26080658, 4234171259, 55161030, 8440879523, 55161034, 55161051], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Evaristo San Miguel", "name:etymology:wikidata": "Q3816067", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7593896, "nodes": [26080778, 3644754710, 55161055, 4307340621, 55161059], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rey Francisco", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7593899, "nodes": [25935515, 25935516], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7593903, "nodes": [26080762, 1364771096, 1358036202, 55161108], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Buen Suceso", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7593908, "nodes": [25935523, 622204580, 5273361954, 5273358099, 3471276061, 55161145, 55161154, 8447103715, 3471365921, 55161167], "tags": {"access:lanes": "yes|no", "bicycle:lanes": "yes|no", "bus:lanes": "yes|designated", "cycleway:lanes": "shared_lane|none", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|designated"}}, {"type": "way", "id": 7604153, "nodes": [26080658, 8473661003, 55161067, 1358036196, 55161074], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7604156, "nodes": [55161026, 55161023], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Francisco Lozano", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7604160, "nodes": [55161040, 4757946968, 3927556775, 4324546709, 55161174, 3927556773, 3927556769, 3927556768, 55161170, 3927556766, 3927556255, 5273358099], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7642766, "nodes": [26579180, 1537917857, 1669117758, 26579181, 26578965], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 7642768, "nodes": [26578966, 1505081022, 5001253641], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:psv": "1", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|left;through|through|right|"}}, {"type": "way", "id": 7642851, "nodes": [27522358, 2972941183, 5963987028, 98957378], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7642912, "nodes": [32602928, 33131388, 8804963730, 8804963729, 8804963858, 8804963857, 8804963728, 32604465, 33131390, 32604467], "tags": {"highway": "residential", "name": "Calle del Marqu\u00e9s de Lema", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 7642917, "nodes": [26579027, 1486142513, 6318921548, 26579176, 6318921549, 6318921550, 1486142530, 6318921551, 26579177, 6318921552, 26579178], "tags": {"cycleway": "shared_lane", "foot": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Plaza de la Moncloa", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "surface": "asphalt", "wikidata": "Q6080211", "wikipedia": "es:Plaza de la Moncloa"}}, {"type": "way", "id": 7642944, "nodes": [33131381, 8804961588, 33131386, 8804961587, 33131387, 33131373], "tags": {"cycleway:both": "no", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642945, "nodes": [33131374, 33131384, 11201940693, 8804961590, 11201940692, 33131385, 11201940694, 8804961591, 33131379], "tags": {"cycleway:both": "no", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642950, "nodes": [26212614, 433406824, 4583284263, 433406826, 433406832, 1500124591, 433406834, 1500124542, 433406835, 26579110], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 7642951, "nodes": [25906277, 930662415, 25906294, 3163832986, 1754199355, 1754199353], "tags": {"highway": "living_street", "lanes": "1", "name": "Calle de la Farmacia", "name:en": "Pharmacy Street", "name:es": "Calle de la Farmacia", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7642964, "nodes": [22023361, 11230772039, 22016264], "tags": {"highway": "residential", "name": "Calle de Dao\u00edz", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7642971, "nodes": [27508548, 27508546, 27508547], "tags": {"highway": "residential", "name": "Calle de los Olivos", "name:etymology:wikidata": "Q37083", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642986, "nodes": [21990704, 408757686, 3927597017, 3927597016, 3927597015, 25906301], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de San Lorenzo", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7642988, "nodes": [22031313, 25906302, 25906304, 7159758625, 7159758686, 25906306, 7159758684, 25906307], "tags": {"highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7642992, "nodes": [25906141, 25906145, 25906144, 25934324, 141923543, 141923239, 5232402843, 141921783, 141920921], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Monteesquinza", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7642995, "nodes": [25906143, 8625818254, 25906144], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Orfila", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7643003, "nodes": [25906200, 25906204], "tags": {"highway": "residential", "name": "Calle de Regueros", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7643014, "nodes": [22016262, 1501227823, 8593662572, 1501227827], "tags": {"highway": "residential", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7643019, "nodes": [26067885, 1789638284, 8428817433, 1789638283, 26080781, 55161044, 4242179816, 55138174, 55138166, 55138155, 26080688], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle Luisa Fernanda", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "slight_left|slight_left;slight_right"}}, {"type": "way", "id": 7643027, "nodes": [26579109, 433406808, 1500124514, 433406813, 1500124558, 433406814, 433406816, 26212621], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 7643031, "nodes": [26067288, 11220658527, 26067290, 3267220581, 26808565], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Plaza de Cristino Martos", "name:etymology:wikidata": "Q45900966", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7643040, "nodes": [25906108, 1591329866, 25906109], "tags": {"highway": "residential", "name": "Traves\u00eda de la Florida", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7649042, "nodes": [26242740, 26025861, 1669117791, 26025870, 4637824948, 26242734, 5754419282, 8522723085, 26025879], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Escosura", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7649061, "nodes": [4417379979, 26579182, 26578946], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7649062, "nodes": [26579181, 26579184], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7649065, "nodes": [26579178, 1486142531, 1486142534, 26579179, 7510718614, 1869415375], "tags": {"bus:lanes": "no|yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7649066, "nodes": [26579178, 1364773043, 26211528], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7712485, "nodes": [33131393, 11201940677, 11201940678, 5784462289, 33131391, 1613048646, 26413513], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Ramiro II", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7712487, "nodes": [33131380, 11201940686, 11201940687, 8804963717, 11201940688, 5784462288, 10745001723, 33131391], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Esquilache", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7712497, "nodes": [25906118, 3418127830, 25934453], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7712498, "nodes": [25906296, 25906297, 25906298, 25906299, 11141805128], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Br\u00edgida", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7712499, "nodes": [21990702, 25906297], "tags": {"highway": "residential", "name": "Calle de Santa \u00c1gueda", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 7726313, "nodes": [25902056, 4456617454, 4456617457, 4456617460, 7549719197, 7549719198, 25552449], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle Marqu\u00e9s de Zurgena", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732079, "nodes": [25896215, 11149514153, 1339493668, 1339493625], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732084, "nodes": [26579105, 7549593999, 1500160587, 1500160589, 1486142652, 26579108, 26579109], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "overtaking": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732112, "nodes": [339636199, 1752467616], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "taxi:lanes": "designated"}}, {"type": "way", "id": 7732113, "nodes": [25902885, 1752467538, 8440634344, 25902943], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through;slight_right|slight_right"}}, {"type": "way", "id": 7732115, "nodes": [25902885, 25902886], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732116, "nodes": [25902894, 355172281], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes"}}, {"type": "way", "id": 7732117, "nodes": [25902884, 25902885], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732118, "nodes": [339636378, 1752467533, 10927525534, 25902890], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732120, "nodes": [25902892, 1505081159, 25902894], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 7732121, "nodes": [536185687, 8807066127, 8807066125, 8807066126, 989205005, 989205097, 8480842116, 263839181, 1505081160, 1752467530, 25902892], "tags": {"highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732124, "nodes": [142279256, 8224947186, 142281585, 1377881565, 142227128, 8464920926, 142227130, 1311052161, 142227132, 3274917092, 2506590867, 2506590865], "tags": {"highway": "tertiary_link", "lanes": "2", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732125, "nodes": [25902884, 1752467529, 8464920918, 2533399084, 3457902047, 2466689611], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732127, "nodes": [25902862, 25902866, 1754817170], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 7732132, "nodes": [25902692, 1759501693, 1759501735, 8451215619, 8807074873, 8807074874, 8807074877, 25902782, 8807074878, 8807074876, 8807074867], "tags": {"bus:lanes": "yes|no|no", "cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "|through|through;right"}}, {"type": "way", "id": 7732134, "nodes": [25903360, 8807074886, 8807074885, 8807074889, 8807074890, 1613048503, 25902775, 25902801], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732136, "nodes": [25902794, 25902795, 1754816986, 8807074843, 25902796], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732138, "nodes": [25902806, 8807074864, 8807074862, 1754817007, 1754816996, 8807074863, 1754816990, 25902821], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7732148, "nodes": [8807074867, 1754816976, 8807074875, 1754816978, 25902783], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732155, "nodes": [25902794, 7825645058], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732157, "nodes": [25902796, 1754816985, 1754816987], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732159, "nodes": [25902783, 8807074891, 8807074892, 25902784, 25902785, 1759501825, 25902786, 142294070, 1759501751, 142294113, 25902787, 25902788, 25902789, 588635983, 4604349217, 25902790, 1759501677, 3675302630], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Calle de Jos\u00e9 Guti\u00e9rrez Abascal", "name:etymology:wikidata": "Q17148207", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732161, "nodes": [25902758, 8807074836, 8807074833, 8807074826, 1754816974, 8807074834, 8807074825, 8807074824, 25902760, 8807074835, 8807074823, 1759501798, 8451215629, 25902759], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "1", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "noname": "yes", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732162, "nodes": [60017474, 8807066207, 1613048543, 1613048540, 101180201, 1613048522, 8807066208, 1613048520, 60018312, 1613048518, 8807066211, 8807066212, 8807066213, 8807066214, 8807066215, 1754816980, 8807066216, 8807074820, 25902778, 8807074840, 8807074817, 8807074818, 8807074837, 25902758], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732165, "nodes": [25902690, 25902757, 60030408, 60030407, 3258766761, 3258766762, 60030398, 3258766763, 60030402, 9266993696, 9266993699, 60030397, 2283361238, 60017591], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Bret\u00f3n de los Herreros", "name:etymology:wikidata": "Q3774440", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971503, "nodes": [25902890, 1752467534, 1505081179, 8480879036, 263839681, 25902910, 340228784, 4547724398, 340228748, 4547724402, 142194318], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971505, "nodes": [25902077, 2053142650, 25902123, 25934324, 1973690395, 25934323, 2688334675], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fernando El Santo", "name:etymology:wikidata": "Q243122", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7971506, "nodes": [25906145, 25902060], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alcal\u00e1 Galiano", "name:etymology:wikidata": "Q1626617", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971509, "nodes": [25902123, 4190852714, 25902060], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Amador de los R\u00edos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7971510, "nodes": [25902207, 25902210, 141920921, 8004974955, 139977749], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Jenner", "name:etymology:wikidata": "Q40852", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971514, "nodes": [25902717, 8580966592, 8580966593, 1719813640, 8580966594, 25902719, 25902720], "tags": {"cycleway:right": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971515, "nodes": [25902675, 25902718, 25902717], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971516, "nodes": [25902468, 25902467, 2679640387, 5966607277, 3268713844, 25902584], "tags": {"cycleway:right": "no", "highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971518, "nodes": [25902485, 2679640397, 2679640394], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del General Or\u00e1a", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 7971519, "nodes": [25902482, 25902485], "tags": {"created_by": "Potlatch 0.9c", "highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971521, "nodes": [25902717, 25902656, 8440634392, 4416531502, 25902655], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971522, "nodes": [25902491, 4576291395, 25902656, 8737409030, 8737409031, 60030727, 6000178811, 60030280, 4547336052, 4547336043, 60030260, 9468406683, 60030277, 269361124, 3426732170, 5802031873, 5214866732, 3426732171, 3883232009, 98957147, 4422722031, 98957145], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Garc\u00eda de Paredes", "oneway": "yes", "postal_code": "28010", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971523, "nodes": [141865273, 5966607252, 674477982, 98960521], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971531, "nodes": [3675302630, 4604349219, 25902698, 4393276535, 4393276534, 2321219900, 25902699, 3051148235, 3051152634, 142295943, 2846389424, 142295945], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Pedro de Valdivia", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 7971535, "nodes": [25902469, 5966607279, 5966607278, 25902461, 25902471], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle General Or\u00e1a", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971569, "nodes": [21990747, 26066549, 26066560], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Santa Luc\u00eda", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971573, "nodes": [26058812, 2331169575, 2331169567, 2331169552, 325172800, 2331169534, 26066561, 26066560, 26066559, 26066558], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Tesoro", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 7971575, "nodes": [26066557, 11220779557, 26066556], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Traves\u00eda de las Pozas", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7971576, "nodes": [26066551, 26066557, 26066558, 26066573], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Pozas", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 7971577, "nodes": [325172790, 325172794, 26066563, 1474148374, 26066566], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Santa Ana", "name:etymology:wikidata": "Q19458190", "oneway": "yes", "postal_code": "28004", "sidewalk": "no", "surface": "paving_stones"}}, {"type": "way", "id": 7971579, "nodes": [26058802, 26058803, 4062386147, 4062386151, 4062386148], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Don Felipe", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971581, "nodes": [21990700, 9051008009, 26058790], "tags": {"highway": "residential", "name": "Calle de San Joaqu\u00edn", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971584, "nodes": [26066574, 26058807, 6314674726, 26058808], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de Jes\u00fas del Valle", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971585, "nodes": [26066577, 26066578, 26058804, 1276028458, 26058803], "tags": {"highway": "residential", "incline": "up", "lit": "yes", "name": "Calle del Molino de Viento", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971628, "nodes": [26579110, 26579111, 26579042], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971630, "nodes": [26211543, 1500124573, 26211553], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 7971631, "nodes": [26579034, 26579050], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971917, "nodes": [26413152, 8583532392, 1505081193, 338727906, 2972168636, 26413358], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971918, "nodes": [26413579, 1203847117, 26413581], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "4", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "left|left|left;right|through"}}, {"type": "way", "id": 7971919, "nodes": [26413586, 2972892248, 2972891887, 1924384878], "tags": {"highway": "tertiary", "lanes": "3", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "left", "turn:lanes": "merge_to_right||"}}, {"type": "way", "id": 7971920, "nodes": [26413586, 1203847232, 1203847216, 1203847120, 1203847161, 26413595], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971945, "nodes": [26413032, 6934437085, 34408606, 8400874015, 34408611], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Alvarado", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971948, "nodes": [98727885, 8398199115, 359412218, 8416409740, 98727886, 8419169789, 8419169786, 34408665, 8419484454, 34408837, 8419412244, 34408841, 8421422531, 8421307640, 8421307641, 34408846, 8421422530, 34408848], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Abel", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 7971949, "nodes": [32602932, 8117579706, 8450420426, 34407848, 34407996, 8430141314, 1801212350, 8483729855, 8430141315, 34408133, 8419397883, 8427141937, 34408179, 8427119577, 8427119580, 34408866], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Castillo Pi\u00f1eiro", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971950, "nodes": [34407996, 8430141313, 8430141312, 8450352722, 8430141309, 34408321], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Adela Balboa", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 7971951, "nodes": [26413061, 11525423807, 34408449, 34408462], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Carnicer", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971952, "nodes": [34408502, 34408565, 6934437086, 26413048], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Juan Pantoja", "name:etymology:wikidata": "Q1380081", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971953, "nodes": [34407779, 8419397885, 8430141310, 34407848], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle del Doctor Santero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971954, "nodes": [34408303, 8427141978, 8419397884, 8427141975, 34408133], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Carlos Latorre", "name:etymology:wikidata": "Q5750704", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971955, "nodes": [34408851, 8427119581, 8409510074, 8409510073, 34408479], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Carlos Rubio", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971956, "nodes": [34408844, 98725376, 8419412243, 8419412241, 34408661], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Rafael Herrero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971957, "nodes": [34408287, 8427119591, 11167102462, 11167102461, 11167102460, 8421267761, 11167102459, 4461268759], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Garellano", "noexit": "yes", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971958, "nodes": [34408267, 8427119578, 34408855, 34408848, 34408851, 8402493613, 34408615], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Pedro Barreda", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971959, "nodes": [34408380, 34408449, 34408565, 34408606, 98726079, 8486897768, 98725373], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Topete", "name:etymology:wikidata": "Q1621912", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971960, "nodes": [34408632, 8421307654, 34408844, 34408841, 8421422532, 8419397870, 8419397869, 8419397868, 8409510071], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Olite", "name:etymology:wikidata": "Q837062", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971961, "nodes": [34408668, 8419397863, 8419397879, 8419437221, 34408665, 34408661, 8419484451, 34408658, 8398199207, 8419397875, 8419484447, 98725380, 8420975568, 3484491402, 8420975570, 98724875], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Beire", "name:etymology:wikidata": "Q814864", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971964, "nodes": [34408825, 8419397864, 8419437222, 8419412245, 34408837], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Santa Matilde", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 7972177, "nodes": [25901935, 1915012238, 389139055, 345538472, 1278839121, 25901922, 3418035829, 1278838973, 25901885, 25901886], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7972359, "nodes": [25903334, 1278839114, 3424964317, 25901886], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Prim", "name:etymology:wikidata": "Q379787", "oneway": "yes", "postal_code": "28004", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 7972364, "nodes": [25906137, 25906136, 25906129, 25906130, 25906196], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Argensola", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972367, "nodes": [25906131, 3424801055, 25906129, 25906128, 25906124], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Orellana", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972368, "nodes": [25906128, 25906127], "tags": {"highway": "residential", "name": "Calle de Justiniano", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7972370, "nodes": [25901890, 10011023604, 25901891], "tags": {"highway": "residential", "name": "Calle del Marqu\u00e9s de Monasterio", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7972372, "nodes": [25906276, 25906275, 25906273, 25906281, 3161163797, 1718376821, 25906269], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Gravina", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7972443, "nodes": [141886626, 4642427967, 1591330196, 1591330146, 141886625, 8953723327, 1591330083, 25934520, 1591330027, 25934506, 1591330002, 25934465, 1591329945, 4808864933], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "30", "name": "Calle de Covarrubias", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972444, "nodes": [25934470, 1591329980, 1591329988, 25934465, 1591330004, 5214866746, 25934447], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Manuel Gonz\u00e1lez Longoria", "name:etymology:wikidata": "Q107178446", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972445, "nodes": [25934556, 1501227850, 25934572], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972446, "nodes": [25934541, 1591330031, 1591330034, 25934540], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Nicasio Gallego", "name:etymology:wikidata": "Q720492", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972447, "nodes": [298148410, 5063896010, 1591330029, 1591330026, 25934506, 1591330015, 25934524], "tags": {"highway": "residential", "name": "Calle de Jos\u00e9 Mara\u00f1\u00f3n", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972449, "nodes": [25934545, 1651583803, 1591330056, 25934541, 1591330008, 4819134930], "tags": {"foot": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Eguilaz", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972452, "nodes": [141880346, 674492251, 8440634371, 141885510, 9169688175, 98958749], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972761, "nodes": [2615463410, 26485808, 4140937593, 26485809, 9684664017, 25901898, 25901851, 25901838], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Salustiano Ol\u00f3zaga", "name:etymology:wikidata": "Q959518", "oneway": "yes", "postal_code": "28001", "sidewalk": "both"}}, {"type": "way", "id": 7972765, "nodes": [25901898, 9684850520, 25901897], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Villalar", "name:etymology:wikidata": "Q2890338", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972768, "nodes": [25901853, 25901851], "tags": {"highway": "residential", "name": "Calle de Pedro Mu\u00f1oz Seca", "name:etymology:wikidata": "Q3322907", "oneway": "yes"}}, {"type": "way", "id": 7972776, "nodes": [25901948, 7549719166, 7549719167], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972777, "nodes": [25901919, 25901917], "tags": {"highway": "residential", "name": "Calle de Gil de Santiva\u00f1es", "oneway": "yes", "postal_code": "28001", "sidewalk": "both"}}, {"type": "way", "id": 8029712, "nodes": [25902807, 267271033], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "local knowledge", "surface": "asphalt"}}, {"type": "way", "id": 8029715, "nodes": [60030404, 3258766778, 3258766777, 60030405, 3258766776, 60030406, 60030410, 8807074828, 8807074829, 8807074830, 60017632], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Espronceda", "name:etymology:wikidata": "Q209077", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 8029884, "nodes": [60030257, 4412200931, 269361176, 2283361226, 5802031871, 10814462213, 4412200930], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Ponzano", "name:etymology:wikidata": "Q1588564", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 8029903, "nodes": [98951272, 1505081174, 9601998714, 1016578272, 1654250201, 98944895, 98951271], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Modesto Lafuente", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 8029920, "nodes": [141915390, 141918536, 9879403070, 141918063, 139977761, 9879403071, 139951329, 60018311, 60030729, 60018337, 60030280, 8963996218, 7892603717, 3675303746, 60030301], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Fern\u00e1ndez de la Hoz", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 8029934, "nodes": [60018334, 98958622, 3883232008, 3426732145, 5214866733, 289005947, 3426732143, 9468421737, 5802031897, 60030278, 9468421734, 5802031895, 9468442519, 60030279, 60018337], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Viriato", "name:etymology:wikidata": "Q331889", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 8031768, "nodes": [141858985, 5754419279, 60030239], "tags": {"highway": "residential", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "postal_code": "28015", "sidewalk": "both"}}, {"type": "way", "id": 8098304, "nodes": [25934823, 2972995640, 60672316], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 8098307, "nodes": [60672316, 2972995638, 8866381041, 25934825], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 8098313, "nodes": [60672316, 2972995643, 60672339, 11172580730, 2915247995, 1596698086, 60672523], "tags": {"highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle de San Bernardo", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 8098342, "nodes": [60672590, 60030242], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 8098344, "nodes": [60672590, 2972995642], "tags": {"highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 8098348, "nodes": [60030252, 60672590], "tags": {"destination": "A-6 A Coru\u00f1a;Glorieta de Ruiz Jim\u00e9nez", "highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 8098363, "nodes": [60672339, 4627368189, 25934580, 25934579], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Sandoval", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 8572145, "nodes": [60030399, 5069264831, 60030402], "tags": {"highway": "residential", "name": "Calle de Vargas", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 8572147, "nodes": [60030409, 25902756], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de M\u00e1laga", "name:etymology:wikidata": "Q8851", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 9933911, "nodes": [142194318, 98951272], "tags": {"highway": "tertiary", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 9939448, "nodes": [81580405, 81580404, 81580403, 81580401, 6764785321, 81580400, 81580399, 81580397, 3971975776, 3971975778, 81582480, 3971975780, 3971975782, 3971975784, 81580395, 2533387846, 10927499983, 81473204], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Dulcinea", "oneway": "yes", "sidewalk:left": "yes", "sidewalk:right": "separate", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9939505, "nodes": [989204999, 2466689585, 6684049129, 989205020, 5941381328, 98746809, 4439143643, 5941381327, 6684049122, 1474148398, 81581404], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9939547, "nodes": [339391878, 6934412482, 1474148455, 1474148448, 1474148446, 3971975775, 81580397], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Teruel", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9941126, "nodes": [81604776, 3971975769, 81604775, 81580401, 81604773, 81604772, 11359780700, 26413033], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de Ja\u00e9n", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt", "wikidata": "Q54564835"}}, {"type": "way", "id": 9941151, "nodes": [26413142, 1505081230, 81605088, 8793095016, 81605091, 8793095017, 344875504, 81605092, 8793095018, 8793095019, 81605093, 8793095020, 81605094, 8793095021, 81605096, 81605097, 81605098], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de los Artistas", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 9941191, "nodes": [338727758, 8793113479, 81605725], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Guip\u00fazcoa", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 10044037, "nodes": [26413048, 2887253640, 1474148425, 1522690105, 82499627, 1474148418, 82499051, 81580403, 82499430, 4499335102, 82499052], "tags": {"alt_name": "C/ Palencia", "bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Palencia", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 10044045, "nodes": [82499216, 82499628, 338734223, 8824409714, 8824409715, 1522690091, 338734205], "tags": {"highway": "residential", "name": "Plaza de la Condesa de Gavia", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044099, "nodes": [82499429, 81604775, 82499430, 4499335104, 82499431, 81581405], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Don Quijote", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044120, "nodes": [81604772, 1474148441, 82499627], "tags": {"highway": "residential", "name": "Calle de San Antonio", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 10044164, "nodes": [82499051, 82500114, 81581407], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de La Orden", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044170, "nodes": [82500132, 82500158], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Cuenca", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 11070084, "nodes": [98726081, 8409510076, 98726080, 98726079, 8458948194, 6934422584, 26412916], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Las Carolinas", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 11070196, "nodes": [98724825, 8513274926, 98726865, 8513274925, 98725054, 8421083584, 544435179, 8421229166, 98725377, 8421229163, 98726082, 34408632], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Olite", "name:etymology:wikidata": "Q837062", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070219, "nodes": [34408653, 8419484452, 8398199206, 8419397876, 8419484448, 98725379], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Marianela", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070298, "nodes": [34408855, 8427119579, 34408866, 8419397865, 8419397867, 8409510071, 8419437223, 8409510072, 34408825, 34408668, 98728184], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070344, "nodes": [98727994, 8398199114, 98727995, 8419397871, 8410136432, 98727996], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle Acueducto", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070357, "nodes": [98724826, 8419169769, 8419169784, 8419169775, 98725053, 8419169776, 8418938599, 8419397874, 8419169766, 98725381, 8400874013, 8398199208, 98727958, 8398199209, 8419169738, 98727996, 98727886, 8419169788, 98728183, 8419397880, 8416409743, 98728184], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Zamora", "name:etymology:wikidata": "Q15696", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070759, "nodes": [98722465, 8402489211, 98731452, 98731608, 98727626], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle San Rogelio", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11072515, "nodes": [28096050, 4990990038, 28096049], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11072569, "nodes": [98746807, 1654250238, 8427069646, 98746809, 4439143647, 82499214, 8427069645, 28096049, 98746810, 28096047, 28096046, 98746811, 8427069654, 2533387853], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Edgar Neville", "old_name": "Calle del General Moscard\u00f3", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11074170, "nodes": [28096047, 3221366173, 28096048], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes"}}, {"type": "way", "id": 11074195, "nodes": [28096046, 4990990039, 98746257], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 11074205, "nodes": [98746810, 81466846], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11074248, "nodes": [81466847, 2466689601, 339391803], "tags": {"highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de la Reina Mercedes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11099922, "nodes": [98944239, 1654250234, 1654250213, 98944240], "tags": {"highway": "residential", "name": "Calle de Trevi\u00f1o", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 11099985, "nodes": [26413356, 1654250214, 1654250212, 5214866722, 26413364, 1654250211, 98944240, 1654250209, 98944891, 1654250207, 1654250203, 98944892, 1654250202, 1654250200, 98944893, 1654250198, 1654250196, 98944895], "tags": {"foot": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle Maudes", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11100593, "nodes": [26413522, 1613048617, 8451215627, 1613048616, 98949531, 1613048615, 1613048606, 98946910, 8451215631, 1613048600, 98948612, 1613048592, 98949532, 1613048590, 1613048588, 98949534], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Crist\u00f3bal Bordi\u00fa", "name:etymology:wikidata": "Q22962489", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11100665, "nodes": [98949981, 1613048580, 1613048602, 98949531, 1613048621, 1654250182, 98945967, 1654250186, 1016578355, 1016578216, 1654250205, 98944891, 1654250210, 1654250226, 616263063, 1654250233, 338727830], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Alenza", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11101038, "nodes": [98953225, 8804963716, 1924384875, 27522353], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "right"}}, {"type": "way", "id": 11101348, "nodes": [98956113, 2972941184, 9492744668, 27522994], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Garc\u00eda de Paredes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both"}}, {"type": "way", "id": 11101396, "nodes": [98956600, 5963987027, 4211592127, 60018334], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101490, "nodes": [98957378, 8455404370, 8455404371, 2687649524, 98957377], "tags": {"highway": "residential", "lanes": "4", "name": "Calle General \u00c1lvarez de Castro", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101678, "nodes": [98958321, 5195760372, 8804963863, 2060837659, 98957147, 98958622, 291274690, 2060837658, 98958620], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de la Sant\u00edsima Trinidad", "oneway": "yes", "postal_code": "28010", "surface": "asphalt", "width": "5"}}, {"type": "way", "id": 11101717, "nodes": [98959044, 9165505517, 9165505519, 98959043, 9164484328, 9164484324, 98959041, 9157684318, 9157684333, 98958915], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Castillo", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101763, "nodes": [141884430, 9165505529, 98959391], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de Raimundo Lulio", "name:etymology:wikidata": "Q193660", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 11101830, "nodes": [298153229, 9157684328, 98960186, 98960185], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de Murillo", "name:etymology:wikidata": "Q192062", "oneway": "yes", "postal_code": "28010", "surface": "paving_stones"}}, {"type": "way", "id": 11101836, "nodes": [98960185, 9157684234, 9157684312, 9157684252, 98960226], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Quesada", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101896, "nodes": [98955810, 4412200929, 98960871], "tags": {"highway": "residential", "lanes": "1", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both"}}, {"type": "way", "id": 11340425, "nodes": [100881577, 989278228], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 11340452, "nodes": [100881577, 989278265], "tags": {"highway": "residential", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes"}}, {"type": "way", "id": 11340476, "nodes": [100881334, 4452608798, 989278010], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11340502, "nodes": [25902943, 1752467628], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11341864, "nodes": [25902673, 1759501519, 11218056275, 1359796756, 11218056258, 5068655474, 11218056259, 11218056260, 100890239, 8451203580, 11218056256, 11218056257, 100890241], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 11342060, "nodes": [256525374, 1759501517, 25902673], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 11342111, "nodes": [581870023, 11218056240, 2688019420], "tags": {"admin_level": "9", "boundary": "administrative", "foot": "yes", "highway": "primary", "lanes": "2", "layer": "-1", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 11342168, "nodes": [100891869, 4595952174], "tags": {"admin_level": "9", "boundary": "administrative", "cycleway:right": "no", "foot": "no", "goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 11378355, "nodes": [1613048571, 8807066206, 60017474], "tags": {"highway": "tertiary", "lanes": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through|through;right|right"}}, {"type": "way", "id": 11379461, "nodes": [100881715, 1314938250, 4659927123, 989278226], "tags": {"bicycle": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11379498, "nodes": [101190120, 8566199520, 101190048], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Plaza de Quito", "name:etymology:wikidata": "Q2900", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11379654, "nodes": [101190048, 101190286, 3636842772, 98989151], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Marceliano Santa Mar\u00eda", "name:etymology:wikidata": "Q5995562", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11477083, "nodes": [102193004, 102193006, 102193007, 102195393], "tags": {"highway": "residential", "name": "Calle Armando Palacio Vald\u00e9s", "name:etymology:wikidata": "Q645141", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11477415, "nodes": [102196725, 102196726, 616264726, 102196728], "tags": {"highway": "residential", "name": "Calle Daniel Urrabieta", "name:etymology:wikidata": "Q627132", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 11477565, "nodes": [102197892, 102192630, 102196725, 102197891, 102197890, 4733163155, 4733163167, 102197888], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Guadalquivir", "oneway": "yes", "postal_code": "28002", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14369404, "nodes": [1760085712, 11056722073, 1760085711, 63530519], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 14369724, "nodes": [98959492, 1591330252, 3426732099, 4633369993, 60018311, 4633369992, 3293613522, 60018352, 344795413, 1011869678, 63530461, 25902430, 1223809841, 25902431], "tags": {"cycleway:both": "no", "destination": "Museo Sorolla;Glorieta de Emilio Castelar", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Rafael Calvo", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14459174, "nodes": [298158014, 298158022, 298158502, 2972941408, 9492744667, 141855405], "tags": {"highway": "residential", "name": "Calle del Lozoya", "name:etymology:wikidata": "Q16511", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 14459252, "nodes": [60672670, 141856893, 60672557], "tags": {"highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes"}}, {"type": "way", "id": 14459386, "nodes": [141858985, 1736112478, 141859167], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459399, "nodes": [141859168, 26025888], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 14459424, "nodes": [141859168, 8194903532, 3708287453], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459472, "nodes": [141859608, 1736112465, 141860142, 2493553219, 1736112463, 2493553208, 1736112460, 2915209118, 1736112458, 141860144], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle de Suchil", "name:etymology:wikidata": "Q27244013", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459504, "nodes": [141860372, 1736112455, 2915209115, 2915209117, 1736112461, 1736112462, 2493553221, 141860374, 1736112464, 1736112466], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle de Suchil", "name:etymology:wikidata": "Q27244013", "oneway": "yes", "postal_code": "28015", "source:name": "local knowledge"}}, {"type": "way", "id": 14459600, "nodes": [141860662, 6314750363, 616226070, 2915208795, 141861309, 616225689, 141861311, 616226051, 5777193962, 616226050, 2915209114], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle Suchil", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459753, "nodes": [141862748, 1596698128, 60030251], "tags": {"highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459845, "nodes": [60030242, 141862748], "tags": {"destination": "Glorieta de Bilbao", "highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459910, "nodes": [141865273, 3096525871, 60030244], "tags": {"highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459939, "nodes": [60030243, 3096525856, 141865273], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14460132, "nodes": [22022484, 4627367186, 4627367188, 25934580, 141868929], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Montele\u00f3n", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 14460169, "nodes": [25934579, 22022469], "tags": {"highway": "residential", "name": "Calle de Ruiz", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 14460235, "nodes": [25934572, 141870722], "tags": {"bicycle": "yes", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14460372, "nodes": [25934577, 25934578, 141874455], "tags": {"highway": "residential", "name": "Calle de Hartzenbusch", "name:etymology:wikidata": "Q1377747", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460397, "nodes": [141885351, 9169688187, 4643041889, 9169688184, 9169688185, 141875018], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Alburquerque", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460645, "nodes": [25934545, 1651583804, 141874455, 1591330165, 141875017, 1591330178, 1591330199, 9172009165, 141880907], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Palafox", "name:etymology:wikidata": "Q332481", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460667, "nodes": [141881347, 1591330231, 9281641973, 98960811, 1596698124, 141881346, 9172003701, 9172003700, 9172003699], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Jord\u00e1n", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460689, "nodes": [1596698110, 1591330220, 9281642021, 98960767, 1591330218, 9281641942, 141881448], "tags": {"alt_name": "Calle Gonzalo de C\u00f3rdoba", "bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Gonzalo de C\u00f3rdoba", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460716, "nodes": [141881777, 1591330186, 9281668039, 98960768], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Olid", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460750, "nodes": [141882864, 298152271], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460929, "nodes": [141885510, 9169688176, 141885351], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Garcilaso", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14461022, "nodes": [141886881, 5214866745, 1591330158, 1591330144, 141886625, 8953723330, 1591330139, 141886675], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Manuel Cortina", "name:etymology:wikidata": "Q5992686", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 14461138, "nodes": [141887738, 3418127838, 1366142630, 141888359], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14461155, "nodes": [141888359, 8583791441, 8583791440, 8583791450, 8583791449, 6634926258], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14461169, "nodes": [141880344, 3418127836, 3418127837, 8583791446], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14463022, "nodes": [141917742, 1591330170, 9879403069, 141918063, 9879403068, 8649272390, 141918065], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle del Espa\u00f1oleto", "name:etymology:wikidata": "Q297838", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463039, "nodes": [63530546, 141920074, 9879403066, 141918536, 1591330161, 141886881], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Caracas", "name:etymology:wikidata": "Q1533", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 14463070, "nodes": [141886481, 3418127832, 141915390, 141919137], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Zurbar\u00e1n", "name:etymology:wikidata": "Q209615", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463217, "nodes": [25902196, 1760085704, 6417677196, 25902195, 141921783, 63530546], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Riscal", "name:etymology:wikidata": "Q5742129", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463274, "nodes": [25902152, 1760085694, 25903287, 4016402391, 25903288], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14463315, "nodes": [141923543, 7881641304, 141923652], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Blanca de Navarra", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14480888, "nodes": [142191968, 102197888, 706689923, 706689917, 142191967, 7997067405, 7997067406, 142191440], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Balvina Valverde", "name:etymology:wikidata": "Q5717120", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14481058, "nodes": [142195759, 359308510], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14481258, "nodes": [25902901, 1505081189, 4547724401, 142194318], "tags": {"highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 14481295, "nodes": [32602929, 142201929], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxheight": "4.5", "maxspeed": "50", "name": "T\u00fanel de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 14481464, "nodes": [142201929, 8481041833, 142248303], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14481788, "nodes": [60030258, 5069264834, 8427069642, 3258762560, 60030398, 3258766765, 9053166226, 3258766775, 60030405, 3258766779, 8427069644, 1613048555, 1613048569, 3258766782, 1613048589, 98948612, 3258766783, 1016578357, 1613048659, 98945970, 8427069643, 1654250191, 569034140, 1016578361, 1654250197, 98944893, 1654250220, 9602013219, 9601998681, 616263147, 1654250231, 98948614], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Calle de Alonso Cano", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 14482098, "nodes": [26413145, 338728145], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14482135, "nodes": [142246030, 8455404361, 8793094951, 338728036], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14482330, "nodes": [142195761, 2466689611], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 14482361, "nodes": [142223394, 142223395, 8213572614, 142223397, 1311052172, 142223399, 8213572611, 8213572610, 2506590865], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 14482703, "nodes": [142230853, 142223394], "tags": {"highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "4.25", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "tunnel": "yes"}}, {"type": "way", "id": 14482717, "nodes": [142222551, 142231379], "tags": {"highway": "primary", "lanes": "2", "layer": "-1", "level": "2", "maxspeed": "40", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "tunnel": "yes"}}, {"type": "way", "id": 14483223, "nodes": [142198196, 32602930], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxheight": "4.5", "maxspeed": "50", "name": "T\u00fanel de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 14483931, "nodes": [142279247, 8213602131, 4825301732, 8213602132, 1377881511, 1377881508], "tags": {"highway": "tertiary_link", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 14484711, "nodes": [706689902, 1311052137, 8213602129, 142279261, 8213602127, 1377881546], "tags": {"cycleway:right": "no", "highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "surface": "asphalt", "wikidata": "Q29200152"}}, {"type": "way", "id": 14484847, "nodes": [139982488, 8213572615, 9020774013, 1377881524, 706689897, 142284543, 8815557569, 3247246420, 1754817140], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Carbonero y Sol", "postal_code": "28006", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14484862, "nodes": [1754817102, 4208190799, 6101370504, 142284535, 3078426887, 139982483], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Jorge Manrique", "surface": "asphalt"}}, {"type": "way", "id": 14484891, "nodes": [29739484, 3567480241, 10140011252, 2466689617, 10286446604, 10286446605, 142260103], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "name": "Calle Juan de la Cierva", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14484913, "nodes": [3247246414, 142284539, 3247246413, 3247246412, 139982486], "tags": {"highway": "residential", "name": "Calle de Grijalba", "oneway": "yes"}}, {"type": "way", "id": 14484972, "nodes": [25902793, 8744168238, 142284527, 3078426882, 3078426883, 142284529, 3078426884, 142284530, 3078426885, 142284532, 142284533, 142284535, 142284537, 6101370502, 142284538, 6101370503, 142284539, 6101370501, 142284541, 6101370500, 142284543], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle del Maestro Ripoll", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14485480, "nodes": [142295945, 142296564, 1759501690, 142296562, 142296560, 29739489], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Pedro de Valdivia", "oneway": "yes"}}, {"type": "way", "id": 14485666, "nodes": [142301513, 8537288336, 3437173853, 8430162561, 353290961, 142301512, 142301511, 142301510, 142303405, 142301509, 142301508, 29739489], "tags": {"highway": "residential", "name": "Calle de Pedro de Valdivia", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14485680, "nodes": [142302070, 142302069, 6861422001, 6861422000, 142302067, 4316800079, 8537288346, 29739623], "tags": {"highway": "residential", "name": "Calle de Oquendo", "oneway": "yes"}}, {"type": "way", "id": 14485731, "nodes": [29739646, 2466689613, 142302069, 142303401, 6420985242, 142303403, 4316800038, 4316800036, 142303405], "tags": {"highway": "residential", "name": "Calle Castell\u00f3n de la Plana", "postal_code": "28006"}}, {"type": "way", "id": 14486405, "nodes": [100890242, 11218056253, 4575762334, 11218056255, 11218056254, 100891149], "tags": {"highway": "tertiary", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 14486476, "nodes": [142321412, 4270791877, 4627327426, 11218056261, 100890239], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Pinar", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14567301, "nodes": [100890244, 11218056244, 11218056245, 11218056243, 8057391304, 4933407204, 143500434, 4933405777, 3268713841, 143497066, 3268713829, 143508729, 1377881485, 327492865, 1377881475, 28096881, 28097221], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14567386, "nodes": [2005647280, 7549719138, 2005647267, 7549719136, 7549719146, 2005647264, 4576234821, 26513047, 4576234822, 4576234359, 26513061, 26513067, 1973690387, 26513085, 1973690393, 1950481121, 25552446], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28001", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14567503, "nodes": [25902485, 4172945199, 4172945200, 29739493, 1555729943, 4172945201, 4172945202, 143500432, 4172945203, 4172945204, 143500434, 4172945205, 3268713846, 2351032617, 4172945206, 3205998419, 143500436, 3627507753, 3627507752, 143500437, 4172945207, 1505106068, 143500439], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del General Or\u00e1a", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14567697, "nodes": [25902584, 3268713839, 1689543057], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14567951, "nodes": [4109163310, 3268713826, 143508729, 8787245621, 8787245617, 8787245619, 8787245642, 143508728, 8787245643, 1689543052, 143505038], "tags": {"highway": "residential", "name": "Calle de Maldonado", "name:etymology:wikidata": "Q2742352", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 14771608, "nodes": [60030248, 1016578203], "tags": {"cycleway": "shared_lane", "destination:forward": "Museo Sorolla;Plaza de Emilio Castelar", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 15230904, "nodes": [150760281, 9116858094, 150760286, 150760632], "tags": {"highway": "residential", "name": "Calle de Santiago Rusi\u00f1ol", "name:etymology:wikidata": "Q366930", "surface": "asphalt"}}, {"type": "way", "id": 15230905, "nodes": [32630165, 4277498385, 32630166, 9116858055, 150760309, 9116858106, 150760313, 9115409895], "tags": {"highway": "residential", "name": "Calle Justo Dorado Dellmans", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230907, "nodes": [150760333, 4260545532, 9116858056, 150760309, 9116858062, 9116858067, 6238484473, 150760306], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle Aravaca", "name:etymology:wikidata": "Q26203094", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230908, "nodes": [1140217830, 8412903971, 7058240047, 7058240043, 2493613389, 98723336], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes"}}, {"type": "way", "id": 15230910, "nodes": [1135863691, 3578397067, 4414966126, 3578397072, 150760405], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230911, "nodes": [150760421, 4131272784, 4131272780, 8439470082, 4131272779, 4131272778, 6366504393, 1140217778, 11645339872, 11645339871, 11645339870, 11645339867, 150760271], "tags": {"highway": "residential", "name": "Calle de Ram\u00f3n Men\u00e9ndez Pidal", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230913, "nodes": [365614755, 4131272774, 1339493673, 11149514155, 150760425], "tags": {"highway": "residential", "maxspeed": "40", "name": "Camino de Las Moreras", "oneway": "yes", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 15230915, "nodes": [150760278, 11645339892, 150760526, 616212459, 1140217818, 6380794196, 150760533, 9549391159, 9549391158, 150760537, 150760653, 6380794280, 6380794283, 27514646, 581287837], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de la Moncloa", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230918, "nodes": [150760463, 150760490, 150760466], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230919, "nodes": [150760480, 150760483, 1212072906, 1212072752, 3524215759, 150760630, 27508181, 1212072813, 27508180, 1212072858], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230921, "nodes": [27508200, 6380793478, 150760543, 150760511, 150760517, 6348133638, 150760521, 1212072791, 4558946122], "tags": {"highway": "residential", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 15230922, "nodes": [150760543, 6348133635, 150760546, 6348133642, 6380794264, 150760537], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de la Loma", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 15230924, "nodes": [150760533, 6348133632, 150760555, 6380794185, 1212072857, 150760551, 150760548, 10550528506, 6348133639, 6348133637, 150760517], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de la Granja", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230925, "nodes": [150760577, 150760572, 1212072820, 150760567, 1212072739, 150760562, 150760560, 6380793483, 6348133640, 150760548], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Vicente Aleixandre", "name:etymology:wikidata": "Q134644", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230928, "nodes": [4558946123, 1212072844, 4558946128, 27508548], "tags": {"highway": "residential", "name": "Calle Sierra", "oneway": "yes"}}, {"type": "way", "id": 15230929, "nodes": [27508548, 11690717925, 150760630], "tags": {"highway": "residential", "name": "Calle de los Olivos", "name:etymology:wikidata": "Q37083", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230931, "nodes": [27508548, 11690767204, 11690717930, 27508178], "tags": {"highway": "residential", "name": "Calle de la Vi\u00f1a", "oneway": "yes"}}, {"type": "way", "id": 15230932, "nodes": [150760511, 6348133636, 27508547, 11690767199, 11690717879, 27508185], "tags": {"highway": "residential", "name": "Calle Amapola", "name:etymology:wikidata": "Q146391", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 15230933, "nodes": [150760632, 9116858088, 150760640, 150760645, 6348133633, 150760653], "tags": {"highway": "residential", "lanes": "1", "name": "Calle del Conde de la Cimera", "name:etymology:wikidata": "Q30045782", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230934, "nodes": [150760292, 1505081158, 150760658, 581287837], "tags": {"highway": "residential", "name": "Calle Doctor Te\u00f3filo Hernando Ortega", "oneway": "yes"}}, {"type": "way", "id": 15230935, "nodes": [150760298, 9116858100, 6238484470, 150760661], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle Estudiantes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230938, "nodes": [150760350, 7058240050, 150760689, 150760671, 8707181997, 8707181998, 150760678, 8707181999, 8707182000, 3321767697, 8707182001, 150760682, 150760685], "tags": {"highway": "residential", "name": "Traves\u00eda de Almansa", "oneway": "yes"}}, {"type": "way", "id": 15230939, "nodes": [150760689, 7058240037, 7058240038, 2277540734], "tags": {"highway": "residential", "name": "Calle de la Olimp\u00edada", "oneway": "yes"}}, {"type": "way", "id": 15230941, "nodes": [150760714, 11645339835, 2900420510, 150760718, 150760721, 338956169, 150760723], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Calle del Doctor Juan Pedro Moreno Gonz\u00e1lez", "parking:both": "lane", "parking:both:orientation": "parallel", "surface": "asphalt"}}, {"type": "way", "id": 15230942, "nodes": [26211547, 433406848, 1500124638, 2462922533, 150760727, 4769243625, 150760730, 2462922518, 11381176997, 150760732, 3633377344, 345213334, 3575378538, 4153842594, 150760739, 11381176993, 1320787649, 2454261067, 2453487277], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Jim\u00e9nez D\u00edaz", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 15230943, "nodes": [32630164, 2436859019, 7058272481, 339410670], "tags": {"highway": "residential", "name": "Calle del Vivero", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230945, "nodes": [150760322, 9116858107, 8480879039, 8474858002, 4920630095, 8460972704, 8474857999, 1212072772, 150760281, 9116858085, 1212072836, 9116858093, 150760278], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230946, "nodes": [150760278, 11645339890, 11645339885, 1212072762, 150760456, 8480879038, 150760577, 150760463], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230948, "nodes": [150760294, 6238487898, 150760292, 150760632], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de la Cimera", "name:etymology:wikidata": "Q30045782", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230949, "nodes": [32630167, 9116858075, 150760306, 150760298, 9116858101, 9116858099, 150760294], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Juan Montalvo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230950, "nodes": [27514670, 5783034260, 8480879040, 9116858097, 150760294, 9116858098, 9115409896, 9115409895, 150760316, 9116858108, 150760322], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle Beatriz de Bobadilla", "name:etymology:wikidata": "Q20100559", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230964, "nodes": [150760567, 150760587, 1212072788, 150760580, 1212072712, 150760521], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Atajo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230966, "nodes": [150760521, 150760590, 150760596, 150760601, 150760604, 1212072810, 27508548], "tags": {"highway": "residential", "name": "Calle Pastor", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230980, "nodes": [150760925, 4161783641, 330271161, 3601013261, 150760926, 1339493698, 3232907774, 3232907775, 338945022, 3232907776, 150760933, 3232907777, 4161784431, 1339493411, 150760935, 4161784448, 3232907779, 2277540507, 3232907781, 150760937, 3232907782, 2001290872, 3232907784, 150760941, 2277540555, 3575370945, 150760723, 2004157540, 150760946, 750475950, 750475949, 1339493495, 25896218], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle del Doctor Severo Ochoa", "name:etymology:wikidata": "Q233957", "oneway": "yes", "parking:both": "lane", "parking:both:orientation": "parallel", "sidewalk:both": "separate", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 15230981, "nodes": [150760946, 2004157581, 750475948, 1339493606, 150760950], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle Doctor Severo Ochoa", "oneway": "no", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15230984, "nodes": [25896216, 1339493531, 10262250915, 3233009662], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230985, "nodes": [150760935, 1339493660, 3232907778, 338945030, 1339493417, 3232907780, 11796117917, 150760978, 3232907783, 1339493540, 1339493632, 2004157610, 150760984, 338956205, 2004157573, 2004177617, 338956158, 2004177693, 2004157595, 338956163, 150760987, 3223006054, 2004157616, 2004157614, 150760992, 2004157588, 150760955], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Plaza de Ram\u00f3n y Cajal", "name:etymology:wikidata": "Q150526", "oneway": "no", "parking:both": "lane", "parking:left:orientation": "perpendicular", "parking:right:orientation": "parallel", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15232226, "nodes": [11200863916, 11343888028, 9549391154, 150760966], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "parking:left": "no", "parking:right": "lane", "parking:right:orientation": "parallel", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15232228, "nodes": [150760966, 150760970], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 16183492, "nodes": [98956601, 674492259, 141882864], "tags": {"highway": "residential", "layer": "-1", "lit": "yes", "maxheight": "3", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 17504354, "nodes": [907465887, 3964436615, 1350673784], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 23407030, "nodes": [25901886, 2053099678, 25901887, 25901888, 11250448289, 149169016, 4309826952, 25906270], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Prim", "name:etymology:wikidata": "Q379787", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 23524648, "nodes": [25901885, 1278839040, 25903324], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Almirante", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 23524688, "nodes": [25906269, 25901889, 25901892, 11782580385, 3426608081, 11782580369, 25901885], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Almirante", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 23573546, "nodes": [26513072, 1555729967, 1973690392, 1973690391, 26513085, 1973690390, 996183822, 996184088, 1973690389, 26513117, 1973690388, 1973690386, 26513155], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jorge Juan", "name:etymology:wikidata": "Q2085725", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 23621852, "nodes": [139977763, 1591330195, 9879403072, 139977761, 5232409902, 9879403075, 139977758, 9879403074, 139977749], "tags": {"highway": "residential", "name": "Calle del General Arrando", "name:etymology:wikidata": "Q9013676", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 23689617, "nodes": [25902680, 7300259083, 25902700, 25902699], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de \u00c1lvarez de Baena", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 23689618, "nodes": [142295945, 2846389423, 142296568, 142296570, 142296571, 7300259079, 11218056266, 11218056267, 100891152], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Pinar", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 23689697, "nodes": [25902674, 256525425, 256525381], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 24222352, "nodes": [98956258, 4229127178, 298152518], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24222380, "nodes": [98958620, 9157684259, 9157684315, 98958746, 9164484310, 9164484307, 98958747, 9165505520, 9165505525, 98958748, 9169688190, 1591330194, 9169688172, 98958749], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Juan de Austria", "name:etymology:wikidata": "Q157107", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24225793, "nodes": [26212622, 4548454346, 4536011530, 26025845, 3096525900, 8522340704, 3096525897, 26025846, 444644585, 3096525895, 27522357, 3096525894, 3096525891, 2972941375, 27522358], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 24233621, "nodes": [26579105, 1320787628, 26579106, 3136812045, 26579107, 26211555], "tags": {"highway": "primary_link", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24233636, "nodes": [26579042, 1486142650, 26579043], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24233750, "nodes": [581870023, 11097973997, 11097973996, 11223357755, 11097973995, 11097973994, 11097973993, 2688019416], "tags": {"goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 24234140, "nodes": [27517937, 4637304253, 26212613, 4637304251, 26212606, 26212619], "tags": {"destination": "Plaza Espa\u00f1a; Plaza Cristo Rey", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 24253745, "nodes": [256525381, 25902679, 1759501620, 394684649, 1759501705], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 24253753, "nodes": [25902678, 25902666, 1759501466, 1759501461], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 24275863, "nodes": [1613048577, 1203847164, 1203847135, 98949981, 563326692], "tags": {"destination": "Calle Santa Engracia; Glorieta Cuatro Caminos", "highway": "tertiary", "lanes": "2", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 24448116, "nodes": [1474148445, 8563972585, 26412916], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Tiziano", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24507449, "nodes": [25934453, 3418127829, 3418127828, 25934459], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 24535747, "nodes": [141880346, 674492253, 8447121580, 25934540, 8441812495, 8441812494, 1591329985, 4808864935, 22022371], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "name": "Calle de Francisco de Rojas", "name:etymology:wikidata": "Q1442310", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24536095, "nodes": [25903290, 25903289, 1760085669, 25902077], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 24536104, "nodes": [25902434, 4416531499, 25902430, 4650310634, 3627050626, 341829485], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Fortuny", "name:etymology:wikidata": "Q380052", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24585667, "nodes": [25902676, 3675303745, 60030727, 60030728, 60018352, 139951327, 9879403073, 139977758, 141918065, 4255551361, 141920074, 9879403067, 4833611535, 141919137, 1973690396, 141923652, 25934323, 25906143, 1316546238, 9049533282, 25906137], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "width": "4"}}, {"type": "way", "id": 24619376, "nodes": [60672523, 1596698088, 2972995644, 141861285, 2915209114, 5777193961, 141860372, 616225755, 141860144], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 24791395, "nodes": [269361123, 5069264830, 5802031858, 5802031854, 289004847, 4467080343, 5802031881, 269361124], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de las Virtudes", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24791406, "nodes": [269361176, 3428476987, 5802031859, 289004847, 4467080337, 9468415552, 269361177], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Morej\u00f3n", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24791417, "nodes": [269361216, 3426732162, 9468418951, 269361215], "tags": {"highway": "residential", "name": "Calle Ponce de Le\u00f3n", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24812300, "nodes": [25934453, 5970506951, 5970484999, 8583869920], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 24812302, "nodes": [139951332, 8583791488, 141888359], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "turn:lanes": "left;through|through|through"}}, {"type": "way", "id": 24829803, "nodes": [139982483, 5162768434, 306546522, 5162768431, 29739484], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Jorge Manrique", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24829805, "nodes": [142279261, 8213602130, 1377881542, 8213602119, 8213602118, 139982488], "tags": {"highway": "residential", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 26037328, "nodes": [4417379976, 344601408], "tags": {"highway": "residential", "lit": "24/7", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 26568013, "nodes": [291274690, 291274700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 26630160, "nodes": [25934828, 1211171047, 8447121517, 616225704, 25935035, 6441681748, 2283339300, 936505954, 25935060], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 27173245, "nodes": [141880907, 9172009164, 9172009163, 1591330198, 9281668038, 98960768], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Olid", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 27173247, "nodes": [141881345, 9172003708, 9172003707, 9172003706, 9172003705, 8585687261, 9172003702, 141881729], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Plaza de Olavide", "name:etymology:wikidata": "Q27947826", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 27173565, "nodes": [98959492, 5214866739, 9164484348, 98959043, 98958747], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Feliciana", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 27173716, "nodes": [60030239, 2493553179, 298156293, 298156457, 2972993211, 1924384857, 60672668], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "no", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 27173918, "nodes": [298158521, 7068076319, 7068076320, 298158739], "tags": {"highway": "residential", "name": "Calle de Cercedilla", "oneway": "yes", "postal_code": "28015", "source:name": "survey"}}, {"type": "way", "id": 27196162, "nodes": [298448863, 7537445998, 7537445997, 1378696858, 2551347562, 26067888], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Seminario de Nobles", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 27464019, "nodes": [60030239, 3096525841, 141857474], "tags": {"highway": "residential", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 27827412, "nodes": [25901890, 25906267, 4311995394, 4311995395, 25906265], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Piamonte", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 27827415, "nodes": [25901891, 10011023607, 10011023606, 10011023603, 10011023605, 3424801041, 2959128481], "tags": {"highway": "residential", "name": "Calle de Tamayo y Baus", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 27827429, "nodes": [25906175, 3424799422, 3424801046, 11408056412, 326195947, 380747013, 9398011424, 8935124345, 9397668172, 3424801054, 25906131, 25906138, 4202134078], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle del General Casta\u00f1os", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 27926842, "nodes": [60030240, 2972993222, 3096525843, 5754419280, 60030239], "tags": {"destination": "c. Fernando el Cat\u00f3lico", "highway": "residential", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 29499410, "nodes": [26058811, 21990746, 21990742, 21990736, 6841096842, 21990735, 4629861377, 6841096839, 21990732, 11230777623, 21990731, 11230777625, 930662432, 11234142746, 22018580, 8593662596, 1591330025, 8593662597, 22022145], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Calle de San Andr\u00e9s", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 29499412, "nodes": [26066550, 11220779550, 26066551, 26066552, 26066549, 26058812, 2331169580, 8429132474, 26058811, 2331169562, 325172790, 26058808, 26058809], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle del Esp\u00edritu Santo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 29591216, "nodes": [26058809, 26058802], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Madera", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 29620789, "nodes": [3161163797, 25906286, 3161269011, 25906271], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle Luis de G\u00f3ngora", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 29620794, "nodes": [25906271, 1474148375, 25906225], "tags": {"highway": "residential", "name": "Traves\u00eda de Bel\u00e9n", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 30625550, "nodes": [32602925, 3802946095, 1474148396, 8451215625, 338727945, 32602928], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "turn:lanes": "left;through;right|"}}, {"type": "way", "id": 30625555, "nodes": [338727741, 3663324554, 10745001722, 338727751], "tags": {"highway": "residential", "name": "Calle de Esquilache", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 30625558, "nodes": [26413138, 8529770090, 8419499596, 1505081227, 338727925], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 30625559, "nodes": [32602928, 338727954, 8419499591, 338727964, 338727974, 8419499592, 8419499593, 338727985, 338727935], "tags": {"highway": "unclassified", "lanes": "2", "maxspeed": "50", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30642792, "nodes": [305776147, 7549586455, 7510718616, 7510718620, 338896753, 338896746], "tags": {"cycleway:right": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 30642794, "nodes": [26579043, 7549593998, 1486142632, 338896756, 1486142626, 338896757, 7549586479, 1486142623, 7549586478, 338896759, 7549586480, 1486142624, 7549586481, 338896760, 4924651863, 4924651864, 338896761, 1486142655, 7549586484, 7549593989, 26579050], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 30691098, "nodes": [8793094960, 81605096], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Cicer\u00f3n", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30691099, "nodes": [81605098, 81581405], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Don Quijote", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30691101, "nodes": [98746811, 4299253661, 3971975772, 98746256, 82499429, 3971975773, 81580399], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de la Reina Mercedes", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 30709960, "nodes": [339636170, 1752467619, 340225883, 1752467617, 339636165, 1752467592, 25902921], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30709962, "nodes": [339636199, 4666869637, 339636192, 339636170], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 30725725, "nodes": [150760447, 339824055, 3425361827, 339824056, 339824057, 339824059, 100993084], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "name": "Calle de Leonardo Prieto Castro", "oneway": "no", "source": "catastro"}}, {"type": "way", "id": 30725729, "nodes": [100993085, 2759786002, 339824066, 8513762619, 150760447], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "30", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro"}}, {"type": "way", "id": 30764361, "nodes": [81605098, 340226353], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de los Artistas", "oneway": "no", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30764683, "nodes": [340228671, 989205016, 4547724405, 340228711, 8807066142, 4547724404, 8807066141, 340228729, 4547724403, 340228748], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 30764684, "nodes": [340228784, 8807066143, 340228781, 340228769, 340228759], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 30812599, "nodes": [25902235, 4307191016, 341829485, 341829531, 3627050624, 341829519, 1760085716], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 30812600, "nodes": [1011869673, 4626597056, 1760085710, 341829497, 341829506, 25902233], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 30812601, "nodes": [341829506, 25902210, 25902195, 11563811456, 11563811460, 25902151, 11563811462, 25902123], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Fortuny", "name:etymology:wikidata": "Q380052", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 30993038, "nodes": [344601408, 26578965], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;right|right"}}, {"type": "way", "id": 30993040, "nodes": [26579184, 4417379979], "tags": {"highway": "residential", "lit": "24/7", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 30993406, "nodes": [25902783, 25902797, 344604078, 8807074842, 25902796], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "noname": "yes", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 31009248, "nodes": [344795459, 344795413], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alfonso X", "name:etymology:wikidata": "Q47595", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31015709, "nodes": [338734205, 82500114, 8824409711, 81580404, 82499431, 82499215], "tags": {"highway": "residential", "name": "Calle de Oviedo", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 31015714, "nodes": [82499627, 1474148402, 82499216], "tags": {"highway": "residential", "name": "Calle del Zarzalejo", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 31015803, "nodes": [344875504, 81605725, 81581408], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Ist\u00fariz", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 31020957, "nodes": [3684260031, 7549586465, 7549586466, 7549586464, 7549586462, 851530281, 1486142572, 26579100, 1486142569, 26579101, 1486142595, 1486142598, 26579102], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 31021254, "nodes": [26211528, 1669117865, 5966610990, 1669117834, 26025862, 1669117831, 1669117825, 26025863, 1669117821, 1669117800, 26025864, 2525814073, 5966610989, 1596698156, 26025865, 4437576923, 1596698155, 26025866], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 31048279, "nodes": [55161167, 3471365928, 55161181, 55161178, 8440879529, 55161188], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31048280, "nodes": [55138181, 55404964, 1095709757, 25935574], "tags": {"highway": "primary", "lanes": "6", "lanes:forward": "2", "lit": "yes", "maxspeed": "40", "name": "Calle de Francisco y Jacinto Alc\u00e1ntara", "oneway": "no", "postal_code": "28008", "surface": "asphalt", "turn:lanes:backward": "through|through|through;right|right"}}, {"type": "way", "id": 31048292, "nodes": [3684260031, 7549586463, 2480627226, 1486142567, 3946934257], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|right"}}, {"type": "way", "id": 31054963, "nodes": [27517507, 1770052216, 8480879041, 3633377349, 8480842114, 1320787110], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "no", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 31055892, "nodes": [26413581, 8804963727, 1203847179, 1203847148, 8522340709, 26413586], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "4", "lit": "no", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through|through|through"}}, {"type": "way", "id": 31093152, "nodes": [25901922, 1278839048, 25903307], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Do\u00f1a B\u00e1rbara de Braganza", "surface": "asphalt"}}, {"type": "way", "id": 31262308, "nodes": [26578973, 11279337788, 4197170916, 3253942905, 26578963], "tags": {"cycleway": "lane", "highway": "secondary", "lanes": "5", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through"}}, {"type": "way", "id": 31739018, "nodes": [355174895, 1754817172], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 31768975, "nodes": [55161051, 55161055, 11237949945, 55161088, 4437657599, 55161091, 8646829050, 4203412903, 55161135], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31769101, "nodes": [55161124, 55161100, 55161078, 55161064], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31784354, "nodes": [25902949, 1752467648, 1336935950, 1752467639, 1152699045, 2671594370, 2641385221], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 32025119, "nodes": [102197178, 102192627, 3390533481, 102196413, 102196728], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "20", "name": "Calle del Guadiana", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 32025180, "nodes": [359308510, 142195761], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 32025181, "nodes": [359308509, 25902901], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32025210, "nodes": [98951272, 536185687], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 32025214, "nodes": [142194318, 1505081192, 1654250236, 98746807, 3274917101], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 32025281, "nodes": [32602934, 3802946119, 3802946121, 32602935], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 32025282, "nodes": [32602935, 32602937, 8415878095, 338728428, 8412813522, 32602938, 359392869], "tags": {"change:lanes": "yes|yes|not_right|no", "cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|yes|designated", "surface": "asphalt", "turn:lanes": "left|through;left|through;right|"}}, {"type": "way", "id": 32025283, "nodes": [32602935, 3802946116, 32602924], "tags": {"highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 32025284, "nodes": [32602924, 1203847168, 32604391, 32604397], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 32028463, "nodes": [32602924, 32602925], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 32028466, "nodes": [32602925, 32602934], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028467, "nodes": [32602934, 3802946125], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028503, "nodes": [150760661, 4014645041, 27514668], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028504, "nodes": [27517856, 6348197395, 8451215621, 5091750318], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 32028505, "nodes": [27517856, 6235643930, 2493627463, 2436859052, 32630163, 2436859026, 32630164, 32630165, 8707182010, 9294124029, 150760666], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028506, "nodes": [359392862, 359392864, 8415878098, 6238487908, 359392867, 8415878099, 359392869], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028842, "nodes": [27514692, 1203847158, 27514702, 1203847233, 27514717], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle del General Ib\u00e1\u00f1ez de Ibero", "postal_code": "28003"}}, {"type": "way", "id": 32028843, "nodes": [27519777, 27519834, 27514717], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through"}}, {"type": "way", "id": 32029079, "nodes": [4558946114, 4558946124, 150760463], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32029080, "nodes": [150760477, 150760480], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32029109, "nodes": [339410670, 98723334], "tags": {"highway": "residential", "name": "Calle del Vivero", "oneway": "yes"}}, {"type": "way", "id": 32029325, "nodes": [359412218, 8416409741, 1016578214, 8416409742, 98728183], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Enrique I", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 32029326, "nodes": [26413032, 26413033], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32029327, "nodes": [26413033, 2283386633, 26413048], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32517413, "nodes": [365614645, 1339493488, 365614754, 4131272777, 365614755], "tags": {"highway": "residential", "name": "Camino de Las Moreras", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 32517648, "nodes": [365614755, 8513737406, 150760431], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed:backward": "40", "maxspeed:forward": "50", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro", "surface": "paving_stones"}}, {"type": "way", "id": 32606716, "nodes": [141880346, 674492252, 8440634384, 25934545, 25934548], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32606916, "nodes": [22022361, 1591329948, 25906098], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Mej\u00eda Lequerica", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32606920, "nodes": [22022361, 1591329955, 8441812502, 25906103], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32649170, "nodes": [141875018, 1591330180, 141875017, 141875015, 1591330168, 98960769, 1357992476, 141862745], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "name": "Calle de Alburquerque", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32649171, "nodes": [141875018, 674492250, 141880346], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32666310, "nodes": [25906103, 25906105, 4928918414, 7569547513, 370503626, 27508026], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32825184, "nodes": [369846113, 3268713847, 2351032620], "tags": {"highway": "motorway_link", "maxspeed": "50", "oneway": "yes"}}, {"type": "way", "id": 32840922, "nodes": [25902479, 142321412, 25902482, 29739491], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32840924, "nodes": [100890242, 100890243], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 32840925, "nodes": [100890243, 3216764230, 100890244, 11218056246, 11218056247, 3437178878, 4264320243], "tags": {"foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 32865960, "nodes": [25906295, 26058790], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Calle de Santa B\u00e1rbara", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 32897810, "nodes": [370503465, 3428425015, 25906150, 370503507, 390582262, 3424801043, 25901923], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Marqu\u00e9s de la Ensenada", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32897811, "nodes": [1855027673, 1855027664], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Pelayo", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 32897812, "nodes": [25906150, 370503469], "tags": {"created_by": "Potlatch 0.10e", "highway": "residential", "name": "Calle de Orellana", "oneway": "yes"}}, {"type": "way", "id": 32897832, "nodes": [25906272, 370503551, 25906271, 8863732308, 25906266, 8863732309, 8863732310, 25906268], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de San Lucas", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 32897836, "nodes": [25906111, 904853734, 370503621, 25906125, 25906127, 25906130], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Teresa", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 33580888, "nodes": [25934828, 25934829], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33580890, "nodes": [25934829, 2025638801, 25934830, 5970485003, 2025638795, 25934832], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 33580891, "nodes": [25934856, 25934861], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33580892, "nodes": [25934861, 2025638803, 25934863, 25934823], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 33581056, "nodes": [25934861, 1211192956, 25934828], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 33581058, "nodes": [25934829, 365886561, 1211192961, 25934856], "tags": {"cycleway:right": "lane", "destination": "Glorieta de Bilbao", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33720962, "nodes": [385569660, 1179021802, 385569772], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 33760307, "nodes": [8429132490, 1179022178, 6441681753, 858587232], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 33760308, "nodes": [25935522, 25935521], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 33760309, "nodes": [25935523, 25935524], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 33760310, "nodes": [26578944, 1505081028, 937660054, 1505081040], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 33760311, "nodes": [26578965, 5385241360, 2479576398], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 34083900, "nodes": [4134046209, 4134046212, 4134046215, 4134046217, 21990727], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 34378919, "nodes": [394684528, 2053142696, 394684646], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 38448424, "nodes": [22022371, 1591329982, 4819134930, 1501227838, 25934553], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "postal_code": "28004", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 39144874, "nodes": [26067888, 1357992445, 11533572609, 25935174], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 40652745, "nodes": [34407779, 8458948196, 8402179356, 1801212265], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle del Doctor Santero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 43405567, "nodes": [1447395580, 1500124428], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 43405568, "nodes": [26578954, 1505080997, 55161040, 3253942876, 11279337787, 4249550724, 26578956, 6981674370, 26578957, 55161188], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Romero Robledo", "name:etymology:wikidata": "Q2370852", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43405569, "nodes": [26578954, 26578958, 55138197], "tags": {"bicycle:lanes": "no|designated|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 43405582, "nodes": [25902327, 1963430779, 5385241331, 1963430778, 25902329, 8911132534, 1963430777, 1963430775, 1963430773, 21627165, 5385241330, 1278839146, 25552447], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28001", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43405583, "nodes": [28097222, 5218975655, 29739616, 8427069672, 4184539396, 29739617], "tags": {"highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43405584, "nodes": [25902327, 1689543018, 1963430780, 11486687684, 5385241332, 28097220], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43405585, "nodes": [28097222, 5218975639, 5218975633, 28096621], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43407379, "nodes": [25935516, 1179022533, 26080778, 2973127101, 913080866, 5385241357, 1378696856, 26080779], "tags": {"bicycle:lanes": "no|designated|no", "cycleway": "shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43407380, "nodes": [25935516, 1179022300, 55161088, 55161082, 1358036200, 55161078, 1358036198, 55161074], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43407381, "nodes": [8577075124, 1378696853, 913080871, 298448863, 1378696860, 8430090474, 5385241321], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43407382, "nodes": [27514668, 6238487902, 8451215626, 6348197393, 27517855], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 43407384, "nodes": [11690767191, 27508197, 27508198, 27508199, 6348133634, 27508200, 27514605, 5350055330], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 43407386, "nodes": [27516322, 9699225798, 11690767175, 4630240464, 1770052237, 8480879042, 27508173], "tags": {"highway": "residential", "name": "Calle de Juli\u00e1n Romea", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407387, "nodes": [27516630, 1770052226], "tags": {"highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 43407388, "nodes": [27516626, 27516628, 27516630], "tags": {"bicycle": "yes", "highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "postal_code": "28003", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 43407389, "nodes": [27516696, 3663308741, 1770052221, 1770052222, 1770052223, 1770052224, 27516700], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407390, "nodes": [27516700, 1770056848, 27516626], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407391, "nodes": [27517956, 6277264493, 27519777], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 43407392, "nodes": [26025869, 4637824952, 8426942042, 1669117882, 26025860, 4536011532, 26025853, 8426942054, 3096525888, 26025846], "tags": {"bicycle": "yes", "highway": "tertiary", "name": "Calle de Vallehermoso", "name:etymology:wikidata": "Q6122685", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43407393, "nodes": [26025869, 4637824951, 1669117788, 26025870, 1669117783, 27523292, 1669117781, 5966610987, 2972941176, 27523275], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015", "sidewalk": "both"}}, {"type": "way", "id": 43407394, "nodes": [26025866, 4437576920, 8426942043, 4437576919, 26025867, 4437576918, 5966610988, 4637824949, 26025869], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43407395, "nodes": [26025866, 4437576922, 1669117913, 26025858], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43410314, "nodes": [25906111, 1591329840, 904853746, 1591329902, 27508026], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Plaza de Santa B\u00e1rbara", "name:etymology:wikidata": "Q24481510", "surface": "asphalt"}}, {"type": "way", "id": 43410315, "nodes": [25906118, 2685986913, 25934459], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410316, "nodes": [25906121, 7569547514, 2685986828, 25906122, 7569547511, 7569547512, 27508026], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410318, "nodes": [27508026, 2685986776, 25906116], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410319, "nodes": [22022227, 1501227841, 25934553], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410321, "nodes": [25934553, 4819134933, 768765505, 25934556], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410322, "nodes": [25934556, 1357992435, 141870722], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410324, "nodes": [25934832, 2973015547, 25934833], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 43410334, "nodes": [27522358, 2972941385, 8441812511, 6424299725, 141855405, 298157773, 27522994, 8441812509, 2972941337, 27523108, 298158521, 2972941381, 27523275], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43410335, "nodes": [98957378, 98958321, 8522340702, 2283361212, 5214866731, 60030256], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43410336, "nodes": [98956600, 306092383, 4422722024, 98958254, 306092384, 6187709127, 98957145, 306092389, 2687649522, 4422722048, 98958255, 98957377], "tags": {"highway": "residential", "junction": "roundabout", "lanes": "2", "name": "Glorieta del General \u00c1lvarez de Castro", "postal_code": "28010"}}, {"type": "way", "id": 43410337, "nodes": [26413152, 3802947044, 3802947046, 3802947048, 5063895996], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759863, "nodes": [25903287, 1760085691, 1760085675, 25903289, 1760085663, 1278839071, 25903291, 389139048], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43759864, "nodes": [365886564, 7549719194], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43759903, "nodes": [25902450, 1223809808, 554167206], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759950, "nodes": [25902471, 1223809828, 25902560], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759953, "nodes": [25902450, 25902449, 1223809785, 1969162855, 25902433, 25902432], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759960, "nodes": [60030302, 5966607283, 5966607254, 9672874691, 60030729], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43759962, "nodes": [60030303, 5966607253, 9672874690, 60030302], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43798337, "nodes": [98999832, 8427069666, 102199240, 102198274, 102200180, 102198273, 616264641, 3275193116, 8427069663, 4206082204, 102197178, 102195402, 102197892, 102198270, 142279256], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28002", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 43798341, "nodes": [142279256, 142279257, 1377881558, 8224947185, 706689902], "tags": {"cycleway:right": "no", "highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 43798342, "nodes": [355172281, 1311052151, 1752467527, 355174895], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 43798344, "nodes": [355174895, 1754817142, 1754817134, 1754817108, 25902845, 1754817091, 25902846, 1754817060, 1754817043], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43798345, "nodes": [25902673, 25902674], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 43798346, "nodes": [25902673, 1759501542, 11218056273, 11218056274, 11218056262, 563326693], "tags": {"cycleway:right": "no", "foot": "yes", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798347, "nodes": [25902675, 1759501505], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798348, "nodes": [25902655, 4416531498, 63530461], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798349, "nodes": [25902655, 4416531501, 5966607280, 5966607255, 25902434, 1223809798, 25902450], "tags": {"cycleway": "shared_lane", "cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798350, "nodes": [25934317, 25934320, 25906118], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "source:name": "survey", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 43838445, "nodes": [33131391, 5784462290, 33131392], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Esquilache", "noexit": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43838446, "nodes": [34408287, 8450352727, 8450352726, 34408303, 8450420427, 8450352724, 34408321, 8450352721, 34407779], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Garellano", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 44167871, "nodes": [29739489, 29739490, 100891151], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44167914, "nodes": [142301513, 8537288337, 3437173844, 3216764228, 100891150], "tags": {"highway": "tertiary", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 44335063, "nodes": [26211539, 26211541], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 44335064, "nodes": [27508209, 27508213], "tags": {"highway": "primary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "sidewalk": "separate", "surface": "asphalt", "turn:lanes:forward": "through|through;right"}}, {"type": "way", "id": 44335065, "nodes": [27508209, 2466312906, 8426942036, 5469164207, 27516704, 6314640624, 6314640596, 27517891, 26212617, 26025904, 26025843], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 44335066, "nodes": [26025843, 4548425735, 4548425734, 1669118081, 8426942038, 1669118063, 26025850, 1669117970, 26025857, 8426942041, 1596698157, 26025865, 4437576921, 26025893, 1596698148, 26025875, 1596698140, 8426942039, 1596698127, 26025883, 26025886, 1596698106, 25935144], "tags": {"bicycle:lanes": "designated|no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "30|50", "name": "Calle de Guzm\u00e1n el Bueno", "name:etymology:wikidata": "Q4734497", "oneway": "yes", "postal_code": "28015", "psv:lanes": "yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 44335067, "nodes": [26025843, 26212618, 1669118084, 8522340705, 26025844, 4548454345, 26212622], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335068, "nodes": [26413581, 26413583, 8804961578, 1203847134, 1203847177, 8804961579, 8804961580, 8804961581, 26413584], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44335069, "nodes": [25902783, 1754816984, 25902794], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335071, "nodes": [25902674, 1311052133, 8451215617, 1759501646, 25902693, 1759501673], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335072, "nodes": [25902678, 256525373, 256525374], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left|through|through|through|through"}}, {"type": "way", "id": 44335079, "nodes": [563326691, 563326690, 1203847193, 98953225], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "4.4", "maxspeed": "50", "name": "T\u00fanel de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 44335668, "nodes": [25902943, 25902945, 1753722767, 10927537028, 989278143, 10927537026, 25902931, 25902946, 1752467652, 25902961], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336472, "nodes": [141857474, 3096525874, 141856303, 1669117780, 27523292, 4431658905, 298158739, 27523422, 1669117906, 298157533], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 44336473, "nodes": [27523275, 2972941369, 98960871], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv:forward": "1", "maxspeed": "30", "name": "Calle de Feijoo", "name:etymology:wikidata": "Q379753", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336474, "nodes": [98960871, 674477979, 5966610986, 674477977, 98960521], "tags": {"highway": "residential", "lanes": "2", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336475, "nodes": [98960521, 2283361221, 9175086695, 98960811, 1596698118, 1591330222, 98960767, 1591330215, 9281668036, 98960768, 1591330197, 1591330173, 98960769, 25934578, 1501230372, 25934548], "tags": {"alt_name": "Calle Cardenal Cisneros", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336478, "nodes": [25902584, 3268713832, 143505038, 8427069667, 3627050628, 25902243, 3567546252, 3627050622, 8427069659, 8307252476, 28097324, 2351032610, 1963430782, 25902327], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44336479, "nodes": [1377881546, 8213602128, 1377881539, 142279247], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 44336480, "nodes": [142279252, 8213602145, 1377881557, 8213602156, 142279254, 8213602144, 1377881560, 8213602143, 142279256], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "surface": "asphalt", "wikidata": "Q29200152"}}, {"type": "way", "id": 44508926, "nodes": [55161188, 55161192, 55161023, 26578975, 26578974], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44508927, "nodes": [55161188, 8447103714, 1364771799, 26578969], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Romero Robledo", "name:etymology:wikidata": "Q2370852", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44508928, "nodes": [5350038446, 25935576, 8440879524, 1095709752, 55138181], "tags": {"cycleway:right": "lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo del Pintor Rosales", "name:etymology:wikidata": "Q615701", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 44508929, "nodes": [55138181, 1095709756, 318919466, 1364771094, 26080762, 1364770957, 26080763, 7140036350, 8440879525, 1179022390, 26080757, 26080756, 9483986399, 1364770889, 26080755], "tags": {"cycleway:lanes": "none|shared_lane|none", "cycleway:right": "lane", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del Pintor Rosales", "name:etymology:wikidata": "Q615701", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 44508930, "nodes": [55138181, 1095709754, 1095709761, 8447121534, 1095709758, 55161119], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 44508931, "nodes": [1095709764, 1095709762, 1095709759, 55138181], "tags": {"access:lanes": "yes|yes|yes", "bicycle:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|30", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 44508932, "nodes": [25901935, 1278839084, 365886564], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508934, "nodes": [25901950, 25901959, 7549719185, 7549719184, 1278838994], "tags": {"destination": "A-6 A Coru\u00f1a;Plaza de Alonso Mart\u00ednez", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508935, "nodes": [25901950, 25903296], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508936, "nodes": [25901951, 389139048, 25901936], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44536989, "nodes": [2641385221, 25902895], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44571137, "nodes": [25902886, 339636384, 339636378], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 44676258, "nodes": [26212611, 1669118116, 4273925936, 1669118140, 26212612], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Blasco de Garay", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44737268, "nodes": [25901925, 1278838932, 8422641939, 345538475, 1278839131, 7549719175], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 44737269, "nodes": [25903307, 3418035826, 8436098464, 25903324], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 44737270, "nodes": [25903309, 25903307], "tags": {"foot": "no", "highway": "tertiary_link", "lit": "yes", "maxspeed": "50", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44737271, "nodes": [98960966, 8455404372, 5963987026, 674477995, 98956258], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010"}}, {"type": "way", "id": 44737273, "nodes": [27523275, 8441812501, 2283361217, 2972995652, 60030246], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44737274, "nodes": [60030256, 2283361222, 4422726767, 5069264832, 60030257], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 44737275, "nodes": [60030256, 2283361233, 2095964625, 5970506946, 2283361231, 60017591, 2283361229, 255099811, 3426834960, 2283361250, 3426834961, 255099047, 5970506945, 302786451, 26413587], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44737276, "nodes": [5342774136, 2972892240, 1654250195, 11525423814, 26413368, 11201893843, 4955056567, 5963987029, 1613048648, 26413513], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44737277, "nodes": [26413361, 338727916, 1505081195, 26413145], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Santa Engracia", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44883920, "nodes": [569034140, 1654250193, 1654250192, 98951270], "tags": {"highway": "living_street", "name": "Calle de Mar\u00eda Pan\u00e9s", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 44884571, "nodes": [3144095503, 25906109, 1591329868, 21990728], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44884572, "nodes": [139951332, 3418127835, 1366142631, 8583791443, 141887738], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk:left": "separate", "sidewalk:right": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45656944, "nodes": [563326693, 11218056264, 11218056263, 100891869], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes"}}, {"type": "way", "id": 45757395, "nodes": [32604462, 1140217832, 8513546150, 8430180225, 8430180224, 98728989, 98728990, 1801212330, 8416532988, 98728991, 8416532989, 8412903967, 8416532990, 8416532991, 8416532992, 98728992, 8430180227, 8430180226, 8458897495, 8412903970, 98727478, 8416532993, 7058240058, 8398453283, 8398453282, 8398453281, 8398453280, 8401920800, 2436859054, 98727885, 8538419416, 8398453275, 98727994, 98728833, 8416409744, 8398453276, 98727957, 98725384, 8416381980, 8416381981, 98728832, 8513546151, 8587019126, 98722464, 3951455564, 98732051, 98732052, 8458897489, 8430180233, 98732053, 8406210452, 8398199211, 98732054, 8405390280, 8412813543, 8587019123, 98732055, 5776878427, 98732056, 98723345], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "30", "name": "Avenida del Doctor Federico Rubio y Gal\u00ed", "name:etymology:wikidata": "Q5857841", "oneway": "no", "postal_code": "28039", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 45757396, "nodes": [32604462, 2277540701], "tags": {"cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45757397, "nodes": [26211558, 4519701713, 26211534, 4519701712, 26211561, 4519701711, 26211537], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45757398, "nodes": [26211543, 26211545], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45757399, "nodes": [27517855, 359392862, 32602923, 8415878084, 8415878085, 338727723, 8415878086, 8415878082, 338728444], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45757400, "nodes": [32630168, 2436859063], "tags": {"cycleway:lanes": "none|none|shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45764843, "nodes": [25902759, 1759501676, 25902690, 1759501675], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764844, "nodes": [26413579, 1203847225, 26413595, 8441812510, 2095964621, 2972891919, 2972941350, 27522358], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764846, "nodes": [98949534, 8807066167, 8423842238, 3077638487, 8807066166, 1613048626, 8807066172, 8807066174, 101182466, 8807066164, 1613048650, 8807066163, 1613048658, 8807066165, 989204859, 8423842237, 10197766007], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 45764847, "nodes": [26413587, 5214866725, 1203847202, 1203847229, 26413579], "tags": {"highway": "tertiary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "left|through;left|through|through"}}, {"type": "way", "id": 45764848, "nodes": [26413587, 1203847114, 1613048604, 26413522, 5321927326, 1654250183, 26413367], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 45764849, "nodes": [26413138, 8419499597, 3802946098, 1505081226, 3802947078], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764850, "nodes": [338727732, 3802947050, 26413152], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 46098091, "nodes": [26578946, 8430090473, 913080864, 26578947], "tags": {"bicycle": "designated", "bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 46098092, "nodes": [26579034, 7549593996, 916938490], "tags": {"highway": "trunk", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 46098107, "nodes": [587643323, 4080737331, 2480629206], "tags": {"bicycle:lanes": "no|designated", "cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 46098108, "nodes": [8577075130, 26579183, 4417379976], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 48334260, "nodes": [858587194, 858587240, 614036231], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 48503836, "nodes": [616264645, 616264715], "tags": {"highway": "residential", "name": "Calle de Francisco Alc\u00e1ntara", "oneway": "yes"}}, {"type": "way", "id": 48503839, "nodes": [616264715, 616264741, 616264739, 616264722], "tags": {"highway": "residential", "name": "Plaza de Mar\u00eda Guerrero", "oneway": "yes"}}, {"type": "way", "id": 48503864, "nodes": [616264722, 616264726, 3275193117, 706689939], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Francisco Alc\u00e1ntara", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 49600302, "nodes": [25934572, 8422578415, 768765511, 5321927323, 1591330088, 25934577, 5321927324, 1357992475, 141862745, 8422629018, 8422629017, 8422578416, 141881777, 298151462, 141881448], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 49600408, "nodes": [22016262, 1501227816, 930662446, 8447121581, 1591329895, 1591329883, 3424964318, 21990722, 21990721, 21990720, 1591329824, 21990719], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 53321067, "nodes": [554167206, 25902561, 25902441, 25903269, 1223809816, 25903271], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321070, "nodes": [25902452, 1223809838, 1760085724, 554167206], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321072, "nodes": [554167210, 25902453, 1760085725, 25902560], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321073, "nodes": [554167210, 1223809787, 25902471], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321074, "nodes": [554167206, 1223809814, 554167331, 554167210], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321075, "nodes": [25902560, 1223809800, 345255555, 25902452], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321077, "nodes": [25902560, 8440634369, 1439705328, 25902455, 1311052157, 1223809854, 1447529412], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321083, "nodes": [25902452, 674449753, 25902450], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53323771, "nodes": [6231141665, 674477948, 26025891, 1596698091, 674477942, 25935134, 1596698094, 1596698095, 25935136, 1596698096, 26025907, 1596698099, 25935144, 1596698100, 1596698101, 26025890, 1596698102, 1596698104, 4470285255, 26025889, 1596698105, 4386417609, 26025892], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 56323516, "nodes": [706689900, 1377881551, 706689902], "tags": {"highway": "residential", "name": "Calle Puente del Duero", "postal_code": "28006"}}, {"type": "way", "id": 56323517, "nodes": [706689901, 2466689631, 706689900, 706689897], "tags": {"highway": "residential", "name": "Calle de Felipe P\u00e9rez y Gonz\u00e1lez"}}, {"type": "way", "id": 56323519, "nodes": [706689931, 102196730, 102196415], "tags": {"highway": "residential", "name": "Calle Fray Juan Gil", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 56323520, "nodes": [142191968, 616264645, 102195398, 102195399, 102195400, 102196726, 102192628, 102195402], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle del Tambre", "oneway": "yes", "postal_code": "28002", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 56323521, "nodes": [706689929, 706689933], "tags": {"highway": "residential", "name": "Calle de Mar\u00eda Malibr\u00e1n"}}, {"type": "way", "id": 56323522, "nodes": [706689906, 706689919, 102197890], "tags": {"highway": "residential", "name": "Calle Santiago Artigas", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 56323523, "nodes": [142191967, 706689906], "tags": {"highway": "residential", "name": "Calle Eduardo Palacios", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 56323524, "nodes": [706689923, 7619693969, 706689925, 706689927, 706689907, 7619693970, 706689917], "tags": {"highway": "residential", "name": "Plaza del Poeta Manuel del Palacio"}}, {"type": "way", "id": 56323525, "nodes": [102195668, 706689931, 102193007, 102193009, 989277971, 100881578], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Francisco de As\u00eds M\u00e9ndez Casariego", "name:etymology:wikidata": "Q20819131", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 56323530, "nodes": [102192627, 4269623495, 706689939, 102192628, 102192630], "tags": {"highway": "residential", "name": "Calle del Eresma", "postal_code": "28002"}}, {"type": "way", "id": 58531295, "nodes": [26067301, 8429132471, 2283339299, 1660892627, 11145627654, 26067310, 11533572585, 26067300, 11533572578, 340219557, 11533572627, 26067289], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 58531297, "nodes": [26067284, 32638870], "tags": {"highway": "residential", "name": "Calle de San Dimas", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 61678014, "nodes": [4827673941, 55311603, 26067263, 8436311128, 26067262, 4827701837, 8007694242, 26067303, 8429132484, 26067302, 4827701836, 26067313, 26067304, 2584038764, 2584038761, 8429132481, 26067306, 2283339292, 11533572597, 26067301], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Amaniel", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 65167032, "nodes": [26578960, 1486142511], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 65167037, "nodes": [1486142532, 7510718612, 3470996670, 3470996671, 7510718613, 1869415375], "tags": {"highway": "residential", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "postal_code": "28040", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 65279237, "nodes": [55161130, 55161135], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 65279238, "nodes": [55161130, 55161145, 4311985760, 3927556759, 25935534, 3927556761, 3927556771, 26578950, 3927556772, 6981674371, 26578956], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "cycleway": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 71019433, "nodes": [26413144, 1505081228, 3802946109], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 71019462, "nodes": [26413142, 3802946117, 26413141], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71054747, "nodes": [536185687, 8807066128, 8807066129, 4825301731, 1505081178, 142195759], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 71054752, "nodes": [142248303, 8455404368, 1654250235, 98946911, 3457902049], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 71055114, "nodes": [26211545, 4519701718, 1500124631, 4519701717, 26211563], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71055206, "nodes": [150760480, 8480842115, 359404815, 4558946113], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71055297, "nodes": [26413145, 3802947055, 26413323, 3802947062, 3802947071, 616211953, 3802947082, 26413144], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 71078008, "nodes": [4909695835, 27514644, 1505081157, 581287837], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71078154, "nodes": [150760322, 1350673783], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|left|right|right"}}, {"type": "way", "id": 71078364, "nodes": [150760477, 1212072740, 1212072896, 4558946111, 4558946112, 4558946118, 4558946127, 4558946113], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 71078641, "nodes": [26211563, 4519701719, 26211547, 4519701722, 26211549, 4519701721, 26211551, 4519701720, 26211553], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71079781, "nodes": [142279252, 142279251, 142279249, 8213602152, 8213602151, 142279248, 8213602150, 8213602149, 142279247], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 71079791, "nodes": [142246030, 8481041832, 142198196], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71270643, "nodes": [26578974, 1364772083, 26578973], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "turn:lanes": "left|left;right|right"}}, {"type": "way", "id": 71270645, "nodes": [5385241323, 904868125, 7934347521, 904868123, 1067565836, 5385241322, 913080865, 893869107, 7930651364, 7934347511], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 71270648, "nodes": [927751052, 26067885], "tags": {"bicycle:lanes": "no|designated|yes", "cycleway": "shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through;right|right"}}, {"type": "way", "id": 71554236, "nodes": [26579043, 26579044, 26579045, 1486142603, 26579046, 1486142596, 26579047, 1486142597, 1486142599, 26579048], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes"}}, {"type": "way", "id": 71554244, "nodes": [26211553, 26579040, 3136812043, 8513737409, 433406868, 26579041, 26579042], "tags": {"highway": "primary_link", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 71554252, "nodes": [26211555, 1500124471], "tags": {"foot": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71554260, "nodes": [26211553, 4519701715, 1500124510, 4519701714, 26211555], "tags": {"foot": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through;left|through|through"}}, {"type": "way", "id": 71591677, "nodes": [2480629206, 7859244870, 937660056, 8461821938, 1067565849], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right", "vehicle": "yes"}}, {"type": "way", "id": 71609573, "nodes": [913080867, 26578961, 26578960], "tags": {"highway": "secondary_link", "lanes": "3", "lit": "yes", "maxspeed": "50", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 71609575, "nodes": [26579080, 7549586477, 1486142559, 2480627227, 26579081, 8577075131, 8577075132, 4929425966, 8577075133, 8577075134, 26579082], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 72187025, "nodes": [26211555, 1500124607, 26211541], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 72247159, "nodes": [614036231, 6981674375, 4110020825, 614036232, 4110020824, 858587190, 614036233, 6981674381, 614036235, 614036236, 858587196, 6592972601, 6592972603, 6592972602, 614036238, 6130961139], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Subterr\u00e1neo de Princesa a Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 72247167, "nodes": [25935146, 1179022535, 25935517, 8447103716, 6441681744, 25935519, 622204585, 25935521], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 72247172, "nodes": [858587220, 1179022558], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|merge_to_left"}}, {"type": "way", "id": 72247177, "nodes": [385569776, 858587216], "tags": {"bicycle:lanes": "designated|no|designated", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "30|50|30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through;left|through|through;right"}}, {"type": "way", "id": 72247187, "nodes": [385569660, 8429132482, 6441681745, 1179022304, 25935146], "tags": {"access:lanes": "yes|no", "bicycle:lanes": "yes|no", "bus:lanes": "yes|designated", "cycleway:lanes": "shared_lane|none", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|designated"}}, {"type": "way", "id": 72247192, "nodes": [25935515, 1179022561, 858587220], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 72247197, "nodes": [385569772, 858587187, 385569773, 7864693888, 385569774, 385569775], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "maxheight": "3", "maxspeed": "30", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 72247205, "nodes": [858587179, 913080874], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247209, "nodes": [385569775, 385569776], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247216, "nodes": [858587216, 858587173, 913206910, 4500945119, 858587220], "tags": {"bicycle": "designated", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "width": "8"}}, {"type": "way", "id": 72247218, "nodes": [25935149, 913080868, 6981674380, 25935514], "tags": {"bicycle": "designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247225, "nodes": [25935146, 7864693887, 7864693885, 858587224], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247241, "nodes": [614036239, 8429132472, 1357992452, 11533572614, 25935174], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 74010278, "nodes": [875774460, 3452544028, 875774476], "tags": {"highway": "residential", "name": "Calle de Don Quijote", "source": "survey"}}, {"type": "way", "id": 76560500, "nodes": [26025892, 1669117694, 26578942], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 76560505, "nodes": [26025892, 4386417611, 1669117707, 26025880, 1669117723, 1669117737, 26025871, 1669117762, 1669117805, 26025862, 1669117862, 3136816605, 1669117967, 3136816577, 26025854, 3136816570, 4536011543, 26025847, 1500124475, 26025840], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Hilari\u00f3n Eslava", "name:etymology:wikidata": "Q3818102", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 76809470, "nodes": [25906112, 5970506952, 370503553, 25906111], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "3", "lanes:backward": "1", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Hortaleza", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt", "wikidata": "Q5740911"}}, {"type": "way", "id": 76809473, "nodes": [25906196, 3424801050, 25906200, 1855027673], "tags": {"highway": "residential", "name": "Calle de Fernando VI", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 76817092, "nodes": [25903290, 1760085673, 1760085689, 25903288], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 76817096, "nodes": [25935033, 1651583801, 1651583797, 25935043], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 77065964, "nodes": [338727925, 4237239314, 338728013], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77065972, "nodes": [907465934, 3472111968, 907465899, 4414962275, 907465904, 3472111971, 907465913, 3472111972, 4414962276, 907465925, 907465929, 907465886, 907465902, 907465936, 4414962277, 907465887, 3472111970, 907465912, 3472111969, 907465934], "tags": {"foot": "no", "highway": "residential", "junction": "roundabout", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de El\u00edas Ah\u00faja y Andr\u00eda", "surface": "asphalt"}}, {"type": "way", "id": 77065975, "nodes": [338728013, 4237239311, 338727935, 32602932, 8507918308, 8451215622, 3802946118, 32602934], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77065977, "nodes": [907465925, 4414962255, 3578396516, 150760756, 4131272804, 150760759, 150760762, 2277540736, 11704126372, 8707182126, 4548286975, 150760339, 8707182125, 5776878411, 8707182124, 8707182123, 5776878415, 150760685, 9294124001, 1140217797], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 77065984, "nodes": [907465940, 4548286973, 4548286974, 907465948], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77339507, "nodes": [55161046, 7537446006, 7537446007, 7537446005, 55138174], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 77603043, "nodes": [913080874, 1179021796, 858587192, 6981674377, 385569776], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 77603044, "nodes": [26578963, 5006352965], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 77603045, "nodes": [26080779, 7537445999, 7537445996, 913080871], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Evaristo San Miguel", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 77616842, "nodes": [98958749, 8440634387, 141886626, 8440634372, 141880344], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 80240817, "nodes": [26578942, 1378696879], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 80240819, "nodes": [21990747, 21990756], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Luc\u00eda", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 80240820, "nodes": [22023377, 11220779549, 1474148379, 21990756, 21990741, 21990742, 21990744, 21990718], "tags": {"bicycle": "yes", "foot": "yes", "highway": "living_street", "horse": "no", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Palma", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "local_knowledge", "surface": "sett"}}, {"type": "way", "id": 80240821, "nodes": [26066553, 11220779544, 26067274, 26067266, 26067303], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Vicente Ferrer", "name:etymology:wikidata": "Q317131", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 83668208, "nodes": [63530461, 8440634385, 1760085722], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668209, "nodes": [139951327, 8440634390, 8440634389, 8440634388, 139951329], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668210, "nodes": [139977749, 8004974956, 63530546], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 83668211, "nodes": [344795459, 8440634370, 139951327], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668212, "nodes": [60030728, 5966607282, 5966607281, 1011869675, 4416531500, 25902655], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "psv:lanes:backward": "yes|yes|designated", "psv:lanes:forward": "yes|yes|designated", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 83668213, "nodes": [141887738, 8440634386, 3418127840, 8583791442, 139951330, 9879403079, 139951329], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes:backward": "through|through;right|right"}}, {"type": "way", "id": 83668214, "nodes": [63530546, 8464920924, 1152699024, 10244148852, 141919137], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Almagro", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 83668215, "nodes": [60030729, 9672874692, 60030728], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 85328239, "nodes": [8807066125, 8807066131, 8807066124, 8807066130, 1505081164, 1505081161, 8807066132, 340228785, 1016578176, 989205158, 8807066133, 8807066146, 8423842234], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 85328244, "nodes": [989205020, 5941381329, 8633236083, 989205114, 989204862], "tags": {"highway": "residential", "name": "Calle de Orense", "oneway": "yes", "source": "PNOA"}}, {"type": "way", "id": 85328247, "nodes": [10197766007, 1654250194, 8807066157, 98951271], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Maudes", "oneway": "yes", "source": "PNOA", "surface": "asphalt"}}, {"type": "way", "id": 85328249, "nodes": [989205076, 8807066158, 8807066159, 1613048680, 1613048678, 989204859], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mar\u00eda de Guzm\u00e1n", "oneway": "yes", "sidewalk": "both", "source": "PNOA", "surface": "asphalt"}}, {"type": "way", "id": 85333152, "nodes": [989278010, 3077638494, 1752467632, 989278143], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 85333165, "nodes": [100881715, 9517181761, 101190120, 1752467635, 3135960742, 25902931], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 85333169, "nodes": [989278228, 3078183623, 102195393], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 86974742, "nodes": [1011869674, 1011869673, 4626597057, 1011869670], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 86974743, "nodes": [25902677, 1311052179, 394684648, 394684649], "tags": {"cycleway:right": "no", "highway": "primary_link", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "left", "sidewalk:left:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 87425123, "nodes": [1016578357, 1613048623, 1016578237, 1016578444, 1016578196], "tags": {"highway": "living_street", "name": "Calle Robledillo", "postal_code": "28003"}}, {"type": "way", "id": 87425124, "nodes": [34408611, 34408615, 8402493606, 34408621, 8398199204, 34408632], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Avelino Montero R\u00edos", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 87425126, "nodes": [34408632, 8419484453, 8398199205, 34408653, 8419484455, 34408658, 8419169785, 8419397872, 8419169736, 98727958, 8410125841, 8419397873, 8410136827, 98727957], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de San Valeriano", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 90965270, "nodes": [25896216, 3233009673, 3233009670, 1339493442], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 90965271, "nodes": [150760970, 150760961, 3426732241, 11149514156, 330271089, 3108256672, 177587168], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 93601149, "nodes": [1085874133, 1223809820, 1223809786, 2351032610], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Villamejor", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 98184848, "nodes": [1135863691, 3578397071, 3578397073, 1135863748, 1135863592], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 98184858, "nodes": [150760384, 3578397058, 3578397061, 3578397065, 1135863691], "tags": {"highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 98561764, "nodes": [2277540701, 1140217843, 98723334, 1140217792, 98723336, 2493613399], "tags": {"cycleway:lanes": "none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 98561765, "nodes": [1140217830, 150760350, 7058272483, 150760666, 7058286485, 8707182021, 8707182020, 5553995268, 150760333, 6238484475, 4131272794, 150760355, 2277540728, 4959669363, 907465904], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "surface": "asphalt"}}, {"type": "way", "id": 98561773, "nodes": [2277540734, 3321767702, 1140217797], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299"}}, {"type": "way", "id": 98561777, "nodes": [2493613399, 2493613389, 51424234, 1140217822, 339410670, 1140217820, 32630168], "tags": {"cycleway:lanes": "none|shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 98561779, "nodes": [2493613399, 7058240046, 3999479563, 1140217847], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "surface": "asphalt"}}, {"type": "way", "id": 98561790, "nodes": [1140217847, 8412903974, 8412903973, 1140217801, 7058240040, 1140217808, 8412903972, 8707181996, 1140217830], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes"}}, {"type": "way", "id": 98561793, "nodes": [2277540701, 32630168], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Juan Montalvo", "oneway": "yes"}}, {"type": "way", "id": 102494324, "nodes": [100890241, 29739491, 9054521326, 9054512001, 29739493, 8427069661, 2679640385], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 104340951, "nodes": [563326692, 8451215620, 1203847126, 26413587], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 104340955, "nodes": [32604397, 32604444], "tags": {"foot": "no", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340957, "nodes": [32604444, 338728189], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "foot": "no", "highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340960, "nodes": [1613048577, 563326691], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "destination": "A-6 Villalba; Ciudad Universitaria", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340968, "nodes": [32604444, 32604466, 32604467, 8805121867, 32604468, 1203847146], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 104340973, "nodes": [32604465, 1203847159, 32604452], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340974, "nodes": [27514733, 27514734], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340975, "nodes": [1203847146, 8804961589, 1203847119, 1203847215, 33131393], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 104340979, "nodes": [1613048577, 1203847122, 7062214667, 563326692], "tags": {"destination": "Avenida Pablo Iglesias; Glorieta Quevedo", "highway": "tertiary", "lanes": "2", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 105181513, "nodes": [1212072858, 1212072741, 1212072795], "tags": {"highway": "residential", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 105181515, "nodes": [27508174, 150760701, 3575366957, 150760705, 150760710], "tags": {"highway": "residential", "maxspeed": "50", "name": "Paseo Eugenio Mar\u00eda de Hostos", "name:etymology:wikidata": "Q3543841", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 105181516, "nodes": [1212072858, 1212072897, 1212072856, 27508174], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 106343217, "nodes": [1223809804, 1223809832, 1223809817, 1689543055, 1223809843], "tags": {"cycleway:right": "no", "highway": "primary_link", "lane_markings": "no", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 106343219, "nodes": [5006946998, 1223809824, 25903272, 1223809793, 1223809804, 25903270, 1223809815, 25902439, 554167210], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxheight": "default", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 107078360, "nodes": [25935144, 1596698097, 25935142, 8426942040, 1179022148, 25935146], "tags": {"highway": "tertiary", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "name:etymology:wikidata": "Q4734497", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107078361, "nodes": [26025890, 1596698107, 6440431086, 26025882, 4470285286, 2525814068, 2525814094, 26025873, 1596698149, 26025895, 2525814070, 2525814141, 26025864, 1669117836, 1669117925, 2525814138, 26025856, 2525814085, 2525814124, 1669118016, 26025849, 1669118047, 1669118101, 26025842], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 107078365, "nodes": [27519868, 3663324548, 1203847118, 32604431, 2466312893, 1203847127, 32630173, 32630174, 32630175, 32630176], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 107078373, "nodes": [98960871, 4412200928, 674477994, 98960966], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Feijoo", "name:etymology:wikidata": "Q379753", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107081344, "nodes": [26025858, 4536011539, 26025851, 4536011542, 1669118079, 4548454349, 26025844], "tags": {"highway": "residential", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 107083786, "nodes": [141886675, 1591330163, 141885510], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Manuel Silvela", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107083789, "nodes": [141885351, 9165503376, 98959391], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Garcilaso", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 107088310, "nodes": [28096859, 28096858, 996183497, 28096857, 5602141869, 5602141868, 29741516, 5458872059, 6074452277, 28096615, 6074452275, 1505106008, 1505106009, 28096494, 7098087928, 1505106010, 7098087916, 28096493, 7098087918, 8479324957, 28096622, 8479324958, 4244157681, 29739616, 28096881, 28096922, 1689543023, 28097324], "tags": {"bicycle": "yes", "cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Padilla", "name:etymology:wikidata": "Q1339628", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 107090823, "nodes": [25934540, 1591330058, 1591330059, 25934522, 1591330060, 1591330061, 25934520, 1591330063, 1591330085, 5063895997, 141886481], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Nicasio Gallego", "name:etymology:wikidata": "Q720492", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107090824, "nodes": [141881448, 1591330212, 141881347, 5321927325, 1591330245, 141862748], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 109462894, "nodes": [25552447, 1555729961, 1278839005, 25552446], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "6", "lanes:backward": "4", "lanes:forward": "2", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed:lanes:backward": "50|30|50|50", "maxspeed:lanes:forward": "50|30", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 109462896, "nodes": [25552425, 1981925767, 26513117, 1973690384, 26513124, 5235745134, 26513111, 26513105, 4576234825, 26513097, 4576234826, 942080478, 7549719106, 1209332387], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 109462899, "nodes": [25552425, 1950481123, 8427025375, 8427025400, 1950481116, 25552423], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 112538796, "nodes": [3323813668, 3068279548, 25892074, 25903338, 3428425005, 25903336, 1278839022, 10147017766, 25903333], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 112538800, "nodes": [25552447, 2377018002, 1278838937, 26513072], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 112538811, "nodes": [25903298, 7549719169], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 112538817, "nodes": [365886564, 25903297, 1915012228, 8427025374, 1278839019, 3428425011, 25903307], "tags": {"highway": "primary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 112660678, "nodes": [1314919703, 1314916909, 1280098498, 1314926656, 1314919705, 8423842230, 989204966], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693031, "nodes": [1314919703, 340228671], "tags": {"highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "noname": "yes", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693037, "nodes": [1314916898, 4666869634, 4659927122, 4666869647, 8714822217, 1314916927], "tags": {"highway": "residential", "lanes": "3", "layer": "-2", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693044, "nodes": [1314916897, 4666869648, 4666869636, 1314916907, 4666869661, 339636199], "tags": {"highway": "residential", "lanes": "2", "layer": "-1", "lit": "24/7", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693048, "nodes": [1314916927, 1314916897], "tags": {"highway": "residential", "lanes": "4", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693050, "nodes": [1314916903, 1314938271, 4659927121, 1314938283, 4659927120, 1314938257, 1314938266], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "tunnel": "yes"}}, {"type": "way", "id": 116693055, "nodes": [98766581, 1314916917, 1314916920, 1314916899, 1314916925, 1314916904, 1314916905, 1314916915], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Calle Vaguada", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116693057, "nodes": [8423842232, 4666869660, 4666869657, 1314916927], "tags": {"highway": "residential", "layer": "-1", "lit": "24/7", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693062, "nodes": [1314916897, 4666869635, 4666869646, 1314916903, 4666869640, 1314916924, 1314916910, 4659927134, 4659927139, 4659927117, 1314916900, 3463244187], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693069, "nodes": [1314916915, 1314916918, 1314916898], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "4", "layer": "-1", "lit": "24/7", "name": "Calle Vaguada", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693072, "nodes": [28096048, 1314926740], "tags": {"highway": "residential", "layer": "-1", "maxheight": "2.95", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116693510, "nodes": [1314919706, 4659927140, 1314919701, 98801269], "tags": {"highway": "residential", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Plaza Carlos Tr\u00edas Bertr\u00e1n", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116695651, "nodes": [1314938252, 1314938277, 1314938254, 4659927127, 1314926631], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116931094, "nodes": [298152271, 141875018], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 116931097, "nodes": [298152518, 98956601], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 118934453, "nodes": [1314938273, 1752467622, 565714233, 8436098461, 25902895], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 118934454, "nodes": [1336935950, 1336935943, 10927525542, 1336935947], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 118934455, "nodes": [351923288, 2528643105, 25902884], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 118934456, "nodes": [339636384, 1752467545, 1752467638, 1752467647, 2623662123], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 118934457, "nodes": [351923288, 1336935931], "tags": {"highway": "primary", "lanes": "5", "layer": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 118934458, "nodes": [25902894, 1311052151], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 118934459, "nodes": [1314938273, 25902921, 339636249, 25902890], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "4", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 118934460, "nodes": [1336935931, 25902886], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 118988837, "nodes": [25902890, 1447181174], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046"}}, {"type": "way", "id": 119143405, "nodes": [1339493643, 4131272686, 11149514151, 1339493689, 4131272700, 3224866049, 25896215], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 119143443, "nodes": [1339493643, 1339493701, 11149514152, 1339493413, 1339493529, 3578422054, 1339493625], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460609, "nodes": [1350673783, 4920630096, 3964436603, 907465934], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460610, "nodes": [1350673784, 907465948, 3964436614, 8513737416, 907465943, 9116858090, 365604154, 365604231, 150760421, 4131272785, 4131272781, 8513737415, 365614645], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460614, "nodes": [150760425, 1636560299, 2001290867, 25896220, 339824100, 3426732246], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460620, "nodes": [1350673783, 7815310165, 7815310166, 1350673787, 4920630097, 1350673785, 1350673784], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|through;left"}}, {"type": "way", "id": 120460623, "nodes": [365614645, 150760425], "tags": {"highway": "residential", "name": "Calle de Ramiro de Maeztu", "oneway": "yes"}}, {"type": "way", "id": 120460625, "nodes": [907465940, 3162003417, 150760374, 3578396564, 1135863642, 3578397014, 907465908, 150760379, 3578397044, 907465906, 150760384, 7815310158, 4548286972, 1135863597, 3578397062, 150760405, 1135863783, 1135863628, 1135863592, 1135863683, 150760393, 1135863744, 4548286962, 4548286971, 4548286970, 4548286961, 150760397, 1135863682], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 121261292, "nodes": [1357992470, 8866381043, 1357992456, 8866381042, 25934579], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Sandoval", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 121477437, "nodes": [1359796755, 1359796756], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle Salas", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 121797007, "nodes": [4575801321, 1362534264, 3450371632, 4575801327], "tags": {"bridge": "yes", "cycleway:both": "no", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "shoulder": "no", "surface": "asphalt", "wikidata": "Q22304054", "wikipedia": "es:Puente Enrique de la Mata Gorostizaga"}}, {"type": "way", "id": 122191131, "nodes": [6634926258, 8583791445, 1366142634, 141880344], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 123625796, "nodes": [25902243, 1689543025, 8307252477, 1377881478, 4575801336, 28096905], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 123625797, "nodes": [142279247, 1377881522, 8213602124, 1377881496], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge"}}, {"type": "way", "id": 123625798, "nodes": [139982488, 1377881495, 11203180090, 139982486, 139982483], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "postal_code": "28006", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 123625802, "nodes": [139982488, 8213602120, 1377881525, 8213602121, 1377881528, 8213602122, 1377881523, 8213602123, 1377881506], "tags": {"highway": "residential", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 131431667, "nodes": [8583791446, 8583791444, 141889410, 139951332], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 131431668, "nodes": [616220786, 98959052, 1591330247, 98959492], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 131443344, "nodes": [25934823, 25934824, 25934825], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 131443345, "nodes": [25934825, 8866381040, 25934826, 1211171050, 25934828], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 131443346, "nodes": [25934835, 25934837, 8440634373, 1211171056, 25934856], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 131447320, "nodes": [1446632660, 26578945, 8577075130], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 131450463, "nodes": [858587179, 25935149], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 131450464, "nodes": [858587216, 1179022387, 25935515], "tags": {"bicycle:lanes": "designated|no|no", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "30|50|50", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through;left|through|through"}}, {"type": "way", "id": 131450468, "nodes": [141870722, 1357992432, 630734756], "tags": {"bicycle": "yes", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131450470, "nodes": [1278838994, 25901951], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through|through|through|through|right"}}, {"type": "way", "id": 131451859, "nodes": [25901958, 7549719195, 7549719174, 7549719170, 345537803], "tags": {"cycleway:right": "shared_lane", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|left;through|right"}}, {"type": "way", "id": 131451860, "nodes": [63530476, 139975676], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 131492911, "nodes": [1339493625, 3426732245, 4108431408, 3426732244, 3578422051, 25896216], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131492913, "nodes": [338728134, 1505081224, 1505081225, 26413144], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131492914, "nodes": [338728098, 8455404360, 844466098, 338728134], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131493286, "nodes": [338728145, 1505081204, 338728155], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131493287, "nodes": [338728155, 338728050], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131497898, "nodes": [150760661, 6238487903, 4909695836], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 131497921, "nodes": [256525374, 674449754, 256525381], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 131504896, "nodes": [1447181174, 25902892], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 131542527, "nodes": [1447395580, 26211558], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131543165, "nodes": [1447402323, 27517888, 27508205, 3213799206, 27508208, 8426942037, 2493633627, 27508209], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 131553923, "nodes": [25935141, 8447121535, 6441681752, 11279585502, 1378696865, 25935069], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 131553930, "nodes": [25935141, 25935139], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 131553934, "nodes": [1359796755, 1759501511, 25902673], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 131553936, "nodes": [1447529412, 1759501507, 25902664, 256525374], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 133150561, "nodes": [25902329, 1689543016, 28096821, 1950481193, 28096822, 29739615, 8479324960, 28096620, 1950481190, 1950481187, 28096491], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "name": "Calle de Don Ram\u00f3n de la Cruz", "name:etymology:wikidata": "Q920042", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 133979685, "nodes": [1474148381, 4575762333, 4575762320, 1474148380], "tags": {"highway": "residential", "name": "Calle de Lagasca", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 133979687, "nodes": [1474148455, 7414071643, 1474148445], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Antonio", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 133979694, "nodes": [1474148379, 1474148377], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Costanilla de San Vicente", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 133979729, "nodes": [2160260298, 1474148394, 2160260301, 8483713090, 2160260303, 2160260308, 8483713089, 8483713091, 1474148396], "tags": {"highway": "tertiary", "lanes": "2", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 135311398, "nodes": [26579033, 7549593990, 7549586482, 26579034], "tags": {"destination:lanes": "A Coru\u00f1a|Cardenal Cisneros", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "slight_left|slight_right"}}, {"type": "way", "id": 136124305, "nodes": [25902447, 25902471], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136124308, "nodes": [1223809796, 25902235, 1223809847, 25902233, 25902231], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 136124311, "nodes": [25902231, 25902207, 1223809845, 25902196, 1760085698, 25902152], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 136124312, "nodes": [3418035846, 1493669240, 3428425018, 1760085655, 1493669241, 1493669242], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 136730697, "nodes": [1500124471, 1447395580], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136730698, "nodes": [5425359850, 2673302089], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 136730699, "nodes": [1500124471, 4519701707, 1500124447, 26211558], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136732950, "nodes": [26579048, 1486142647, 26579049, 7600612665], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136736902, "nodes": [26025841, 1669118105, 1669118075, 4536011537, 26025848, 1669118035, 1669118010, 26025855, 1669117838, 4280384800, 26025863, 3212178930, 1669117752, 26025872, 1669117734, 1669117721, 26025881, 1669117696, 26025889, 3257568695, 1378696873, 25935519], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "name:etymology:wikidata": "Q3177239", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136736903, "nodes": [26025840, 4490265809, 4490265810, 26025901], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Hilari\u00f3n Eslava", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136736904, "nodes": [25935074, 25935075, 674477947, 26025891, 674477952, 26025888, 26025897, 4416845741, 26025878, 5754419278, 26242736, 4637824950, 26025869], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Vallehermoso", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 136841239, "nodes": [25934548, 1501227845, 25934553], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 136977417, "nodes": [8490180660, 1364772956, 26578987, 1364772922, 1364772880, 26578988, 1364772709, 26578989, 1364772468, 26578990, 7961931722], "tags": {"highway": "unclassified", "lane_markings": "no", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137200184, "nodes": [26413137, 8419499611, 8419499610], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 137200185, "nodes": [26413141, 8419499612, 1505081244, 26413137], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137200186, "nodes": [26413141, 1505081231, 3802946122, 1505081242, 8419499609, 26413139], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137519638, "nodes": [28096483, 8479324937, 28096716, 1950481161, 28096717, 1950481162, 1950481166, 28096718, 1950481168, 28096719, 8307252475, 1963430774, 1963430775], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Ayala", "name:etymology:wikidata": "Q354137", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 148197008, "nodes": [1613048626, 8807066171, 1613048637, 1613048639, 8807066198, 1613048644], "tags": {"highway": "residential", "name": "Pasaje de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 150772472, "nodes": [25896216, 3233005269, 1636560244, 3233005268, 1636560235, 3233009672, 1636560225, 25896218, 1056095515, 8513737413, 1245495108, 1056095522, 1636560197, 1636560194, 150760245, 1636560190, 4892388512, 1636560215, 1636560218, 1636560221, 11645339873, 1212072818, 3224859919, 1636560228, 1636560232, 1636560239, 1636560241, 150760271, 1636560243, 11645339891, 11645339877, 150760278], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de Gregorio del Amo", "oneway": "yes"}}, {"type": "way", "id": 161638119, "nodes": [1736112466, 8194903533, 2493553189, 3708287454, 1736112471, 2493553247, 141859830, 2493553217, 8194903535, 141859167, 1736112476, 3708287455, 2493553212, 141859832, 2493553209, 1736112467, 2493553251, 3708287453, 141859608, 8194903534, 1736112466], "tags": {"highway": "residential", "junction": "circular", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 161793151, "nodes": [3708287454, 141858985], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 161793152, "nodes": [3708287455, 1736112474, 8194903531, 141859168], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 163577083, "nodes": [25902923, 3135450431, 1314938273], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163577117, "nodes": [1752467616, 1752467567, 25902909, 25902910], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "no", "taxi:lanes": "designated|yes", "turn:lanes": "|right"}}, {"type": "way", "id": 163743121, "nodes": [21990729, 25906107], "tags": {"highway": "residential", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 163805455, "nodes": [1754817038, 1754817071], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 163805456, "nodes": [1613048524, 8807074860, 8807074859, 8807074848, 1754816983, 8807074847, 356264959], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805457, "nodes": [356264959, 8807074855, 8807074854, 8807074844], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805458, "nodes": [1754817011, 1754817035, 8807074865, 1754817040, 1754817042, 1754817055], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163805459, "nodes": [8807074867, 1754816982, 1754816987], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk:both": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805461, "nodes": [1754817071, 1754817093, 1754817102, 1754817115, 1754817140, 1754817170, 1754817193, 25902884], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 164298252, "nodes": [1759501705, 1759501721, 8807074880, 8807074884, 1759501735], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164298253, "nodes": [1759501461, 1759501457, 1759501456, 25902491], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164369260, "nodes": [1760085706, 8464920923, 8464920925, 139977749], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 164369261, "nodes": [1760085706, 4626597062, 1760085708, 63530492], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 164369262, "nodes": [1760085722, 1760085720, 63530471], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369263, "nodes": [139975676, 1760085719, 1760085721, 1760085722], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369264, "nodes": [1760085712, 344795459], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 164369265, "nodes": [63530535, 1760085714, 11056722065, 1760085712], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 164369266, "nodes": [389139048, 1365197179, 3323948848, 1915012255, 3323948847, 1278838975, 7549719190, 7549719165, 7549719189, 365886564], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369267, "nodes": [1760085679, 3418222088, 1760085674, 25902077, 1760085665, 1760085662, 25902059, 1760085659], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 164369268, "nodes": [1760085663, 1760085662], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 164369269, "nodes": [1760085659, 1760085654, 25901936], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369270, "nodes": [25902152, 1760085686, 1760085679], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369271, "nodes": [1760085677, 1760085680, 1760085688, 25902154], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 164369273, "nodes": [1760085734, 25902479, 1759501464, 1359796755], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164369276, "nodes": [1493669252, 1760085717, 1760085718, 1760085723, 1493669255], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369277, "nodes": [25902154, 4349802667, 4349725681, 5242554914, 25902199], "tags": {"bicycle": "yes", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt", "turn:lanes": "|left;through|through;right"}}, {"type": "way", "id": 164369278, "nodes": [1493669255, 1223809843, 25902444, 1223809827, 25902448, 25902445, 25902447], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369279, "nodes": [25902471, 1760085726, 1760085727, 1760085728, 1760085729, 1760085730, 1760085731, 1760085733, 1760085734], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 165468281, "nodes": [26211577, 2466305329, 26211576], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 165468282, "nodes": [27508174, 8480879044, 8480879043, 27508173], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "surface": "asphalt"}}, {"type": "way", "id": 165468283, "nodes": [26211577, 1500124657, 5425359850], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 165468884, "nodes": [1770052226, 1770056847, 8430180230, 26211577], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 172382356, "nodes": [1486142511, 26578947], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 172382359, "nodes": [26578947, 1537917872, 11612987880, 26579027], "tags": {"cycleway": "shared_lane", "foot": "yes", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 174851637, "nodes": [1855027673, 25906112], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Fernando VI", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 174851639, "nodes": [1855027664, 25906216, 25906212, 25906274, 326196041, 25906275, 4951747255, 25906287, 25906431], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Pelayo", "name:etymology:wikidata": "Q14655", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 174852230, "nodes": [1855037742, 21990705, 1855037740], "tags": {"highway": "residential", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 174852232, "nodes": [1855037740, 21990704, 7159758624, 21990703, 21990702, 4260707794, 21990700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 181982237, "nodes": [394684528, 2053142667, 25902675], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 182096890, "nodes": [27520754, 1924384869], "tags": {"highway": "residential", "name": "Galer\u00eda de Vallehermoso", "surface": "asphalt"}}, {"type": "way", "id": 184882186, "nodes": [60030240, 8583878999, 5422404799, 60030252], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 187020465, "nodes": [291274693, 8155107993, 8155107991, 8155107990, 291274695], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Felipe el Hermoso", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 187020466, "nodes": [291274698, 291274700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 187020467, "nodes": [291274695, 291274698], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Marqu\u00e9s de la Romana", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 187020468, "nodes": [291274700, 291274693], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 188757652, "nodes": [150760339, 6238548037, 8707182062, 1993796499], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Aravaca", "name:etymology:wikidata": "Q26203094"}}, {"type": "way", "id": 195168701, "nodes": [55138174, 4242179828, 8715771071, 8715771072, 55161034, 4307340622, 4307340623, 55161059], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 195664261, "nodes": [98960226, 9157684323, 98958620, 5966610985, 5966607284, 98958915], "tags": {"cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 195664262, "nodes": [98958915, 1016578253], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 195664263, "nodes": [98959391, 9165503378, 9165503377, 1591330227, 9169688102, 98958748, 98959044, 9165505527, 9169688103, 5214866740, 98959052], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Lulio", "name:etymology:wikidata": "Q193660", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 198644581, "nodes": [25552446, 1950481125, 25552425], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "6", "lanes:backward": "4", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 202214468, "nodes": [26067268, 2584038766], "tags": {"access": "no", "highway": "living_street", "name": "Calle de Qui\u00f1ones", "oneway": "no", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 206020945, "nodes": [2160260298, 32604454, 1203847226, 32602925], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 206020946, "nodes": [32602925, 3802946104, 1801212180, 32602929], "tags": {"destination": "Paseo de la Castellana;Raimundo Fern\u00e1ndez Villaverde", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 219134989, "nodes": [2283339292, 2283339298, 11533572598, 2283339299], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 219137730, "nodes": [98956258, 9157684325, 98960226], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219141072, "nodes": [339391878, 2972134285, 5970506942, 5963987032, 26412916], "tags": {"alt_name": "Bravo Murillo", "cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219141073, "nodes": [26413061, 5970506943, 2283386640, 5963987031, 26413086], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219141079, "nodes": [26413048, 26413061], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 235613024, "nodes": [2436859063, 582754412, 1140217842, 32602935], "tags": {"cycleway:lanes": "none|none|none|shared_lane", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "maxspeed:lanes": "50|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|left;through|through;right|right"}}, {"type": "way", "id": 235613027, "nodes": [98727626, 8419397882, 2436859064, 8398453282], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes"}}, {"type": "way", "id": 238830805, "nodes": [26211541, 27516658, 27516635], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 238830806, "nodes": [26211532, 1320787444], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 238830807, "nodes": [26211537, 4519701710, 1500124568, 4519701709, 1500124589, 4519701708, 26211539], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 238831468, "nodes": [2466312898, 8430180228, 27516626], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 238831469, "nodes": [32630176, 1203847174, 2466312902, 32604444], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|right"}}, {"type": "way", "id": 238831471, "nodes": [2160260298, 2466312901, 2466312895, 2466312897, 2466312905], "tags": {"highway": "residential", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "postal_code": "28003"}}, {"type": "way", "id": 238831473, "nodes": [338728189, 32604445, 32604452], "tags": {"foot": "no", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 238831474, "nodes": [2466312898, 2466312896, 2466312889, 2466312904, 2466312906], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003", "sidewalk:left": "no", "sidewalk:right": "separate", "surface": "asphalt"}}, {"type": "way", "id": 238871447, "nodes": [2466689596, 8213572609, 8213572608, 706689901], "tags": {"highway": "tertiary_link", "lanes": "2", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 238871451, "nodes": [29739636, 11218056294, 8537288335, 1505081139, 29739646, 2466689592], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Pablo Aranda", "oneway": "yes", "postal_code": "28006", "source": "Bing", "source:name": "Catastro", "source:oneway": "PNOA"}}, {"type": "way", "id": 238871452, "nodes": [2466689596, 3457902046, 142222546], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 238871453, "nodes": [2466689611, 2466689596], "tags": {"destination:lanes": "Joaqu\u00edn Costa|Joaqu\u00edn Costa|Plaza de la Rep\u00fablica Argentina|Plaza de la Rep\u00fablica Argentina", "highway": "primary", "lanes": "4", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "turn:lanes": "through|through|slight_right|slight_right"}}, {"type": "way", "id": 238871456, "nodes": [142222546, 3457902044, 1311052162, 8213572612, 142222548, 142222549, 8213572613, 142222551], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "maxspeed": "40", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 238871457, "nodes": [339391803, 98746811], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Reina Mercedes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 238871458, "nodes": [81473206, 10927499985, 3971975785, 3971975783, 3971975781, 3971975779, 3971975777, 3971975774, 98746256, 3971975771, 3971975770, 81604776, 98746257, 4251839614, 82499052, 28096050, 82499215, 4884569835, 81581404, 81605099, 1654250240, 98746258], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle del Aviador Zorita", "old_name": "Calle del Comandante Zorita", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 238871459, "nodes": [989204862, 8427069633, 1505081196], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense"}}, {"type": "way", "id": 240204356, "nodes": [2479576398, 8513737407, 937660052, 1505081023, 26578966], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "maxspeed:type": "sign", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 241758964, "nodes": [26579082, 3946934259, 3946934258, 3253320376, 8577075135, 26579083], "tags": {"highway": "trunk", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through|through|right"}}, {"type": "way", "id": 241760427, "nodes": [2493553221, 2493553207, 2493553219], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 241772693, "nodes": [27508173, 1770052220, 27517507], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 241772694, "nodes": [27517506, 4630240427, 27517505, 11690755764, 27517499, 1770052225, 11690755767, 11690678657, 27517498], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Dom\u00e9nico Scarlatti", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 241810251, "nodes": [2493963716, 3632136772, 2493963671, 2493963663], "tags": {"highway": "residential", "name": "Calle Marceliano Santa Mar\u00eda", "name:etymology:wikidata": "Q5995562", "oneway": "yes"}}, {"type": "way", "id": 242546585, "nodes": [26578944, 26578954], "tags": {"foot": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28008", "smoothness": "excellent", "surface": "asphalt", "width": "12"}}, {"type": "way", "id": 243497102, "nodes": [141919137, 141923239, 11563811461, 25902151, 1760085695, 25902152], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Zurbar\u00e1n", "name:etymology:wikidata": "Q209615", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 245372820, "nodes": [1502697018, 3426732173], "tags": {"cycleway:both": "no", "highway": "secondary_link", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de S\u00e9neca", "oneway": "no", "sidewalk": "right", "source": "gps tracks", "surface": "asphalt"}}, {"type": "way", "id": 245372822, "nodes": [26025882, 4470285278, 1596698122, 26025883, 1596698121, 26025906, 1596698119, 26025884, 11225755069, 1596698117, 26025887], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 245723747, "nodes": [1501227833, 1501227820, 22016262], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 245723748, "nodes": [1759501673, 25902692], "tags": {"bus:lanes": "yes|no|no", "cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 245723750, "nodes": [63530471, 63530544, 63530535], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 245723751, "nodes": [1759501675, 25902703, 1719813695, 1759501593, 8440634391, 1759501564, 394684646], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 245723753, "nodes": [1501227827, 22022227], "tags": {"highway": "residential", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 245725048, "nodes": [1752467528, 25902884], "tags": {"access": "no", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 246282528, "nodes": [1505081196, 142194318], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 246282530, "nodes": [81466844, 340225432, 989204862], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense"}}, {"type": "way", "id": 246284023, "nodes": [706689901, 142227645, 1311052154, 142227647, 8464920919, 1377881561, 142227648, 8224947183, 8224947184, 706689902], "tags": {"highway": "tertiary_link", "lanes": "2", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 248343750, "nodes": [25935058, 2283339296, 292093353, 292093358, 25935033, 1660871699, 6441681749, 1211171046, 25934829], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 248905968, "nodes": [141885133, 298154188, 9157684329, 298154271, 298153229], "tags": {"highway": "living_street", "name": "Plaza de Olavide", "name:etymology:wikidata": "Q27947826", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 249767952, "nodes": [60018334, 98955810, 9999997218, 2972941210, 27523108], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Viriato", "name:etymology:wikidata": "Q331889", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 251956454, "nodes": [2480629206, 2480629208, 8577075130], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 251971166, "nodes": [858587194, 25935540], "tags": {"cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 251971168, "nodes": [25935540, 1179022182, 25935516], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 252386898, "nodes": [100891151, 11218056268, 8451203579, 100891152, 11218056265, 25902680, 11218056271, 11218056270, 11218056269, 11218056272, 674449756], "tags": {"cycleway:right": "no", "foot": "yes", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 252386899, "nodes": [100891151, 100890241], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 252387150, "nodes": [1759501461, 2053142625, 25902456, 25902452], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk:left": "no", "sidewalk:right": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 252387151, "nodes": [25902491, 1223809811, 25902490, 25902450], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv:lanes:forward": "designated|yes|yes", "surface": "asphalt"}}, {"type": "way", "id": 252387372, "nodes": [25902432, 1223809819, 25902431, 1223809796], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 252387427, "nodes": [1493669242, 25902055, 25902058, 300751449, 25902124], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 252387586, "nodes": [2584446944, 25901826, 25901838, 3418035816, 3587032531, 3418035823, 25901895, 3418035825, 25901925], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 255327642, "nodes": [98946911, 616263143, 1654250223, 1654250206, 98944892, 1654250199, 1613048689, 98945969, 1613048676, 98946910, 1613048599, 1613048583, 6020619574, 1613048577, 1613048554, 1613048558, 60030404, 9266993697, 60030397, 9266993695, 4307136109, 60030257], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Ponzano", "name:etymology:wikidata": "Q1588564", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 255825106, "nodes": [60017474, 8807066201, 3167086912, 8807066200, 8451215618, 6020619572, 2615210656], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|through;left|through|through|through"}}, {"type": "way", "id": 255825107, "nodes": [1613048569, 5345796054, 6020619573, 1613048577], "tags": {"highway": "primary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;left|through|through|through"}}, {"type": "way", "id": 258516122, "nodes": [25934832, 2973015552, 25934841], "tags": {"destination": "Gran V\u00eda", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 258516123, "nodes": [25934841, 2973015555, 25934833], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 258516124, "nodes": [1666720773, 25934855, 25934849, 25934841], "tags": {"highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 258823040, "nodes": [989278226, 1314938264], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 258823041, "nodes": [1314938264, 4659927138, 4659927119, 1314916924], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 258823042, "nodes": [1314938266, 2641385220, 1314938275], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 258823043, "nodes": [1314938275, 2671594369, 2641385221], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046"}}, {"type": "way", "id": 261560485, "nodes": [25902798, 1613048525, 25902804, 8807074861, 1754820534, 1754817055, 1754817062, 1754817069, 1754817117, 1754817132, 25902862, 25902883, 351923288], "tags": {"highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261560486, "nodes": [25902895, 9354013613, 339636378], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 261560487, "nodes": [25902806, 2053142652, 1613048541, 1613048524], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261560488, "nodes": [25902720, 1759501491, 1759501488, 25902722, 1759501463, 1759501459, 25902491], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 261560490, "nodes": [25902800, 25902801], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261734165, "nodes": [2673302088, 1500124593, 5425359853, 26025901, 1500124610, 26211539], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right|right"}}, {"type": "way", "id": 261734168, "nodes": [2673302089, 8430180229, 27516635], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 262302248, "nodes": [2679640393, 25902485], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 262302249, "nodes": [2679640383, 2679640389, 2679640393, 2679640395, 2679640396, 2679640394], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 262302254, "nodes": [25902468, 2679640392, 25902469], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "surface": "asphalt"}}, {"type": "way", "id": 262951803, "nodes": [25906117, 2685986817], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 263173480, "nodes": [2688019420, 2688019417, 2688019418, 2688019419, 100892261], "tags": {"admin_level": "9", "boundary": "administrative", "foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 263173483, "nodes": [2688019416, 11097973983, 2688019425, 2688019426], "tags": {"goods": "no", "hgv": "no", "highway": "primary_link", "layer": "-1", "maxheight": "3.5", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 263173484, "nodes": [2688019426, 2688019427, 11223357757, 2688019428], "tags": {"highway": "primary_link", "lanes": "2", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 266731687, "nodes": [674449756, 25902674], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 277930859, "nodes": [2823682506, 3594864826], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 277930860, "nodes": [26579028, 7510718610, 1486142532], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 281267231, "nodes": [4062386147, 26058801, 6314674724, 21990745], "tags": {"highway": "residential", "maxspeed": "20", "name": "Corredera Alta de San Pablo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 281267232, "nodes": [21990745, 21990744, 21990743], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Corredera Alta de San Pablo", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 282231731, "nodes": [26067269, 26067270, 25935043], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 282231734, "nodes": [26067269, 11220735884, 26067268, 11220735883, 26067267, 26067266, 26067265], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 284306464, "nodes": [338728036, 338728098], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 284307767, "nodes": [338728050, 98944239, 338727849, 338727830, 142248303], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 285024847, "nodes": [81581406, 82500132, 8793094958, 8793094959, 81605096], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Cicer\u00f3n", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 285654888, "nodes": [25935521, 25935523], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 285654891, "nodes": [25935524, 622204582, 5385241358, 858587194], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 285654896, "nodes": [25935521, 622204586, 3033655161, 25935532], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 287962829, "nodes": [2915209118, 2915209116, 2915209117], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 293707529, "nodes": [60672559, 2972993213, 2972995634, 2972993226, 60672668], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 293707530, "nodes": [2972995642, 2972993217], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "sidewalk": "both"}}, {"type": "way", "id": 293707532, "nodes": [2972993217, 3523936294, 2972993231, 2972995634], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "right", "source:name": "survey"}}, {"type": "way", "id": 293707533, "nodes": [60672668, 2972995656], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 293707535, "nodes": [2972993232, 60672523], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "surface": "asphalt"}}, {"type": "way", "id": 293707536, "nodes": [2972993232, 1596698092, 60672557, 60672559, 2972995636, 3536931755, 2972993217], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "left"}}, {"type": "way", "id": 293707537, "nodes": [2972995634, 2972995656], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "no", "source:name": "survey"}}, {"type": "way", "id": 293707538, "nodes": [2972995656, 60672670, 2972993229, 2972993232], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 293712004, "nodes": [26067273, 5963987036, 22023361, 674492248, 22023377], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "horse": "no", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 297732474, "nodes": [26067884, 8577075124], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 299381859, "nodes": [1179022558, 5385239920, 8430090475, 622204583, 25935522], "tags": {"cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 302578729, "nodes": [2685986817, 25906118], "tags": {"destination": "Plaza de Chamberi", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 302578730, "nodes": [25906134, 7559826100, 25906117], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 302578731, "nodes": [2685986817, 2685986907, 2685986909, 2685986911, 25906121], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 302578732, "nodes": [25934447, 298148410, 1591330081, 141886481, 5970506950, 4169858409, 141886881, 141917742, 8583469116, 139977763, 3426732097, 5970485000, 3418127834, 4169858412, 139951332], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "6", "lanes:backward": "2", "lanes:forward": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "turn:lanes:forward": "left;through|through|through|through"}}, {"type": "way", "id": 302644186, "nodes": [98960185, 9157684233, 9164484343, 9164484295, 9164484296, 98958746, 9164484346, 9164484321, 98959041, 9164484327, 9157684320, 8583469097, 98959947], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Sagunto", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 303407842, "nodes": [1203847146, 33131373, 5784462287, 2972892243, 33131374, 613053062, 26413586], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303407846, "nodes": [101190047, 2493963663, 101190048], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "surface": "asphalt"}}, {"type": "way", "id": 303407847, "nodes": [34408287, 8450352728, 34408339, 34408380, 8458948195, 6934437088, 26413086], "tags": {"bicycle": "yes", "highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones", "width": "3"}}, {"type": "way", "id": 303407849, "nodes": [98728184, 8419397881, 2436859012, 8398453283], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 303407852, "nodes": [98945971, 8807066162, 1613048644, 1613048594, 98949532, 1613048587, 1613048570, 8807066199, 2615210656, 6020619571, 8427069634, 7062256620, 60030406, 7062256619, 7062256618, 60030407, 7062256617, 8427069637, 5069264837, 60030259], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Modesto Lafuente", "name:etymology:wikidata": "Q627987", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 303407853, "nodes": [98951271, 98951270, 1654250190, 8427069638, 989205076, 1613048663, 98945971], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Modesto Lafuente", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303410254, "nodes": [81581404, 4884569836, 81581405, 81580405, 81581406, 81581407], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 303410255, "nodes": [81466846, 3347872584, 3347872569, 2466689651, 989204999, 81466844], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 303459882, "nodes": [102196728, 102195668], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Daniel Urrabieta", "name:etymology:wikidata": "Q627132", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 303459883, "nodes": [102195393, 102196857, 102195394, 142191968], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Balvina Valverde", "name:etymology:wikidata": "Q5717120", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303459884, "nodes": [102196728, 706689929, 102196857], "tags": {"highway": "residential", "name": "Calle de Luis Muriel", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 303487047, "nodes": [25903360, 8807074887, 1613048504, 25902798], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left;through|through|through|through"}}, {"type": "way", "id": 304929237, "nodes": [26808565, 11228713086, 26067291], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Duque de Liria", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 304929240, "nodes": [26067294, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Plaza de Cristino Martos", "name:etymology:wikidata": "Q45900966", "postal_code": "28015", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 305412101, "nodes": [26067881, 7537446001, 7537446002, 7537446000, 1789638280, 55138206, 4285281349, 55161046], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Ventura Rodr\u00edguez", "name:etymology:wikidata": "Q2565889", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 308253953, "nodes": [142191440, 8464920927, 1752467531, 25902885], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|right"}}, {"type": "way", "id": 308253954, "nodes": [3135450430, 25902900], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 308253956, "nodes": [3135450430, 3135450432, 142191440], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "psv:lanes": "yes|designated", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 308253957, "nodes": [1752467628, 100881334], "tags": {"highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 308253958, "nodes": [2506590865, 3135450430], "tags": {"highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 309097671, "nodes": [25906307, 3144095498, 3144095503], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 310136161, "nodes": [25934459, 5214866747, 25906121], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 310741633, "nodes": [3068189415, 25902947, 1336935947, 25902929, 340228147, 25902923], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 311144366, "nodes": [1613048550, 8807066202, 8807066203, 8807066204, 8807066205, 1613048571], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 311144367, "nodes": [1613048571, 8451215630, 8608388010, 1613048586, 98949534], "tags": {"highway": "tertiary", "lanes": "6", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt", "turn:lanes:backward": "through|through|through;right|right"}}, {"type": "way", "id": 311144369, "nodes": [1754817043, 25902806], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 311144370, "nodes": [1759501705, 8279212876], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 311144372, "nodes": [1613048550, 60017474], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "source:name": "local knowledge", "turn:lanes": "through;left|through|through|through|through;right"}}, {"type": "way", "id": 311144373, "nodes": [101181988, 1613048550], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "6", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "source:name": "local knowledge", "turn:lanes": "through;left|through|through|through|through;right|right"}}, {"type": "way", "id": 311144374, "nodes": [267271033, 8807074900, 60017473, 1613048526, 101181988], "tags": {"highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "source:name": "local knowledge", "surface": "asphalt"}}, {"type": "way", "id": 315271003, "nodes": [3213799206, 3213799205], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 315271004, "nodes": [3213799225, 27514692], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 315551674, "nodes": [100891149, 3216764227, 4575762343, 1474148381, 8555198058, 3437173834, 11223357756, 2688019428], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 315551675, "nodes": [100891150, 3419296693, 100891151], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 316018400, "nodes": [98746258, 98946911], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 316018401, "nodes": [3221366174, 3221366175, 28096046], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes"}}, {"type": "way", "id": 317079784, "nodes": [1339493442, 150760966], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 317079785, "nodes": [1339493442, 3233009665, 3233009668, 3233009672], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317079786, "nodes": [1339493442, 3233009666, 3233009669, 3233009670, 3233009671, 8703242763, 3233009667, 3233009664, 3233009663, 3233009662], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317279847, "nodes": [1537917871, 26579180], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 318323387, "nodes": [3247246420, 3247246418, 3247246414], "tags": {"highway": "residential", "name": "Calle de Belalc\u00e1zar", "oneway": "yes"}}, {"type": "way", "id": 318930685, "nodes": [26579083, 26578960], "tags": {"highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes"}}, {"type": "way", "id": 318930686, "nodes": [3253320373, 3769069723, 913080867], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 318987311, "nodes": [3253320373, 8822145843, 3253320372, 8822145842, 8822145844, 3253320370, 8822145841, 8822145839, 8822145840, 3253320371, 1364772877, 26578962, 1364772947], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 320362511, "nodes": [1377881483, 3268713820, 3268713822, 4109163310, 8427069673, 3268713828, 29739619, 3268713840, 3268713845, 2351032617, 369846113, 3437178877, 100890246], "tags": {"highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 320362512, "nodes": [29739617, 1377881483], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 320844403, "nodes": [3274917101, 8455404362, 98746258, 1654250237, 875774476, 81580408, 142246030], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 325530888, "nodes": [1140217797, 8583901054, 3321767704], "tags": {"cycleway:lanes": "none|shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "50|30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through|right"}}, {"type": "way", "id": 334731364, "nodes": [25552449, 3428425014, 25552450, 25903296, 1278838994], "tags": {"cycleway": "shared_lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt", "turn:lanes": "through|through|through|right"}}, {"type": "way", "id": 334731365, "nodes": [25903309, 1278838976, 25903299, 1915012227, 25903302, 25903298], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 334731366, "nodes": [345537803, 7549719181, 25901950], "tags": {"cycleway:right": "shared_lane", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|through|through"}}, {"type": "way", "id": 334741193, "nodes": [1016578427, 3426732139, 289005947, 269361216, 5970506947, 3426732167, 5802031873, 4412200930, 2283361235, 2283361249, 60030256], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741194, "nodes": [98959492, 98959947], "tags": {"cycleway:right": "shared_lane", "destination": "Glorieta de Cuatro Caminos", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741195, "nodes": [141888359, 5970506949, 616220786], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741197, "nodes": [6634926258, 8583791447, 8583791448, 8583469103, 3418127839, 8583469102, 616220786], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 335366384, "nodes": [3424799420, 8441812499, 3424799427, 3424799429], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366385, "nodes": [3424799436, 3424799432, 3424799429, 3424799423, 3424799419, 25906175], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366386, "nodes": [25906175, 3424801044, 27506521, 3424799415, 10653138763, 25901923, 2959128481, 3424801042, 8441812496, 2053099698, 25901922], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Do\u00f1a B\u00e1rbara de Braganza", "postal_code": "28004", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 335366387, "nodes": [25906175, 3424799420, 3424799424, 3424799430, 3424799433, 3424799435, 3424799436], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366388, "nodes": [3424799436, 25906196], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Fernando VI", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 335366389, "nodes": [3424799429, 3424801045, 25906268, 25906267], "tags": {"highway": "residential", "name": "Calle de Santo Tom\u00e9", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 335426308, "nodes": [150760441, 8919225438, 8919225431, 8919225432, 296097815], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Camino de Las Moreras", "oneway": "no", "smoothness": "excellent", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 335426309, "nodes": [296097815, 8919225435, 150760447], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Camino de Las Moreras", "oneway": "no", "smoothness": "excellent", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 335426310, "nodes": [150760431, 296097816, 150760436, 3425361815, 150760441], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro", "surface": "paving_stones"}}, {"type": "way", "id": 335563211, "nodes": [25901886, 1278839077, 25901825, 25892156, 25892152, 1278838929], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335575241, "nodes": [3233009662, 3233009661, 339825209, 150760970], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 335575242, "nodes": [3426732246, 8513737405, 1339493643], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 335587484, "nodes": [26413364, 5970506944, 26413361], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Santa Engracia", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 335587485, "nodes": [26413367, 1654250208, 26413364], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 335720383, "nodes": [98948614, 98746807], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 335720384, "nodes": [3428307530, 21990719], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Barcel\u00f3", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 335720386, "nodes": [98948614, 1654250232, 8480879017, 1505081180, 98951272], "tags": {"highway": "primary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through;right|through;right"}}, {"type": "way", "id": 335720387, "nodes": [98957377, 306092388, 2687649523, 98957846, 98956113, 98958253, 306092387, 2687649521, 98956600], "tags": {"highway": "residential", "junction": "roundabout", "lanes": "2", "name": "Glorieta del General \u00c1lvarez de Castro", "postal_code": "28010"}}, {"type": "way", "id": 335735810, "nodes": [3323948849, 3428425012, 1278839042, 7549719200], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 338163456, "nodes": [3452275287, 2277540734], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through;right"}}, {"type": "way", "id": 338163457, "nodes": [1140217847, 3452275287], "tags": {"cycleway:lanes": "none|shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed:lanes": "50|30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through|right"}}, {"type": "way", "id": 338670820, "nodes": [3457902049, 98948614], "tags": {"highway": "primary", "lanes": "5", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "turn:lanes": "left|left;through|through|through|through"}}, {"type": "way", "id": 339135497, "nodes": [3463244190, 3463244186, 3463244182, 3463244179, 3463244177, 3463244178, 3463244180, 3463244184, 3463244187, 3463244195, 3463244201, 3463244205, 3463244207, 3463244206, 3463244202, 3463244196, 3463244190], "tags": {"foot": "no", "highway": "residential", "junction": "roundabout", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 339135498, "nodes": [3463244190, 1314919706, 1314916913, 4659927126, 1314916904], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 339892787, "nodes": [1486142532, 7510718611, 26579030], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 339929104, "nodes": [1869415375, 7510718615, 797297579, 797297574, 797297575, 797297571, 4549589307, 1486142593, 4549589308, 1486142601, 26579102], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "postal_code": "28040", "surface": "asphalt"}}, {"type": "way", "id": 339929105, "nodes": [3471276063, 1364772380, 26578963], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "bicycle:lanes": "no|designated", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 339929108, "nodes": [26578956, 3471276062, 55161197, 55161026, 9439650457, 11279337789, 9439650465, 4157306544, 3471276063], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "bicycle:lanes": "no|designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:lanes": "50|30", "maxspeed:type": "sign", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 339929109, "nodes": [55138197, 5385241359, 929294336, 1378696879, 25935531, 1378696877, 622204587, 25935523], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 340202210, "nodes": [141880907, 141882080], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Palafox", "name:etymology:wikidata": "Q332481", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 352064972, "nodes": [3578397062, 3578397063, 3578397060, 3578397061], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 352064973, "nodes": [1135863691, 150760410, 3578397070, 1135863649, 150760414, 150760418], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "surface": "asphalt"}}, {"type": "way", "id": 357467634, "nodes": [1760085716, 63530476], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 358413809, "nodes": [2453487277, 3575378546, 2448104589, 2448104609, 150760743, 3567320806, 338944951, 3575378560, 3567320805, 3567320802, 3567320804, 3567320803, 150760747, 2448104605, 2448104588, 2448104602, 2448104592, 150760749, 338944965, 150760753, 150760710, 150760714, 2900420502, 6947820725, 1245495098, 11645339863, 11645339864, 11645339861, 4108431405, 1212072849, 11149514154, 150760245], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle Manuel Bartolom\u00e9 Coss\u00edo", "name:etymology:wikidata": "Q5678776", "oneway": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 361926105, "nodes": [26025841, 1500124500, 1500124478, 26025842], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through"}}, {"type": "way", "id": 361926106, "nodes": [26025842, 1500124468, 1669118109, 26025843], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 361926107, "nodes": [27508213, 2466312898], "tags": {"highway": "primary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 361926108, "nodes": [27514734, 8430162612, 2466312888, 27508209], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "turn:lanes:forward": "left|through|through"}}, {"type": "way", "id": 361929711, "nodes": [338727741, 8451215624, 1505081210, 338727732], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through;right|"}}, {"type": "way", "id": 361929712, "nodes": [32602928, 1801212173, 338727741], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;right|"}}, {"type": "way", "id": 363358048, "nodes": [3675302630, 25902692], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Jos\u00e9 Guti\u00e9rrez Abascal", "name:etymology:wikidata": "Q17148207", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 363359195, "nodes": [25902676, 8522340703, 394684528], "tags": {"cycleway:right": "no", "destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|through|through|through|through;right"}}, {"type": "way", "id": 363359196, "nodes": [60030301, 3675303747, 25902676], "tags": {"cycleway:right": "no", "destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 364390432, "nodes": [26579077, 3684260031], "tags": {"foot": "no", "highway": "trunk", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref": "A-6", "ref:colour": "blue", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364390433, "nodes": [3684260046, 3684260040, 26579077], "tags": {"foot": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364390434, "nodes": [26579076, 7549586470, 7549586474, 26579077], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref": "A-6", "ref:colour": "blue", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364588705, "nodes": [3684260033, 7549586459, 7549586460, 338896749], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 364588706, "nodes": [338896749, 7510718618, 7510718617, 338896754, 7510718619, 1486142645, 7549586457, 3426732176], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de S\u00e9neca", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364588707, "nodes": [338896746, 338896752, 338896745, 2480627228, 1486142563, 2480627225, 8822146151], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364591318, "nodes": [3684260046, 7549586473, 3684260033], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref:colour": "blue", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 365825213, "nodes": [25902821, 25902807], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "20", "maxspeed:type": "sign", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 365825214, "nodes": [1613048525, 25902799, 1613048524], "tags": {"highway": "residential", "lanes": "5", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 367214521, "nodes": [143598548, 1505106033, 7098087923, 28096888, 8479324954, 5232421894, 1377881477, 1377881483, 4575801319, 1377881485, 4575801317, 8787245622, 4575801337, 1377881488, 4575801329, 2351032614, 8307252478, 1689543046, 25902243], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 371491052, "nodes": [25902674, 3750569725, 3750568824, 25902679], "tags": {"bicycle": "yes", "cycleway:both": "no", "foot": "no", "highway": "primary_link", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 371495229, "nodes": [256525381, 3750600822, 5068655472, 3750603026, 1311052148], "tags": {"bicycle": "yes", "cycleway": "no", "foot": "no", "highway": "primary_link", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|left|left|left"}}, {"type": "way", "id": 371495230, "nodes": [1759501507, 3750603028, 3750600821, 1759501517], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 371496026, "nodes": [1311052148, 25902678], "tags": {"access": "yes", "bicycle": "yes", "cycleway": "no", "foot": "no", "highway": "primary_link", "horse": "designated", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|through|through|through"}}, {"type": "way", "id": 372673584, "nodes": [25902677, 1311052148], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 376918309, "nodes": [3802946125, 32604461, 32604462], "tags": {"cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 376918310, "nodes": [3802946121, 3802946125], "tags": {"access": "no", "bus": "designated", "highway": "tertiary", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 376918311, "nodes": [338728444, 3802946106, 32602924], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 376918312, "nodes": [338728444, 3802946115, 3802946114, 3802946116, 3802946121], "tags": {"access": "no", "bus": "designated", "highway": "tertiary", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 384969638, "nodes": [3883232008, 4591425746, 4591425747, 3883232009], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Medell\u00edn", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 388915734, "nodes": [26067301, 11533572596, 25935062], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 390868364, "nodes": [21990706, 21990729, 3144095503], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 391479389, "nodes": [3253320375, 3946934260, 3946934261, 3253320374, 3253320373], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "40", "oneway": "yes"}}, {"type": "way", "id": 391882370, "nodes": [3999479563, 3951439723, 3951439724, 3951439725, 8587114724, 3951439717], "tags": {"highway": "residential", "noname": "yes", "surface": "asphalt"}}, {"type": "way", "id": 392502703, "nodes": [1016578253, 5214866736], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 392502704, "nodes": [98959947, 5970506948, 9672874689, 1016578323], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 392502705, "nodes": [1016578323, 60030248, 1016578427], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 392502706, "nodes": [1016578203, 60030303], "tags": {"cycleway": "shared_lane", "destination:forward": "Museo Sorolla;Plaza de Emilio Castelar", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 393229512, "nodes": [1350673784, 150760365, 907465940], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 398715610, "nodes": [25902124, 1760085670, 1760085677], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 398717875, "nodes": [1203847181, 27517855], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes"}}, {"type": "way", "id": 403949269, "nodes": [21990743, 3050556981, 21990735], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Velarde", "name:etymology:wikidata": "Q718282", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 405940983, "nodes": [55138197, 8577075129], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Benito Guti\u00e9rrez", "name:etymology:wikidata": "Q21872966", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 407979311, "nodes": [32604452, 2160260298], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 407979312, "nodes": [2688019416, 11097973985, 11097973987, 11097973988, 2688019415, 11097973989, 11097973990, 914974940, 11097973991, 11097973992, 369845645, 914974919, 3918709945, 914974943, 7756112662, 914974933, 914974938, 7756112663, 914974937, 914974934, 914974941, 914974922, 914974930, 914974927, 150371212], "tags": {"goods": "no", "hgv": "no", "highway": "motorway_link", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "3.5", "maxspeed": "50", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 408043268, "nodes": [26579102, 26579103, 26579104, 26579105], "tags": {"highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;slight_left|none|none"}}, {"type": "way", "id": 409021271, "nodes": [4109163310, 3268713825, 3268713824, 143508731, 3268713823, 8294970381, 143508732, 8294970384, 1505106044, 29802998], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Maldonado", "name:etymology:wikidata": "Q2742352", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 411799511, "nodes": [21990728, 1591329870], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 411799512, "nodes": [1591329870, 4134046207, 4134046209], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 411799513, "nodes": [21990727, 4134046216, 4134046213, 4134046210, 4134046208, 1591329870], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 414212315, "nodes": [26578942, 3033655162, 5385239919, 26578943, 8577075129, 1505080991, 26578944], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 416551693, "nodes": [26211530, 5385239918, 8430180232, 5385241361, 3594139290, 1669117870, 26211528], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 416551694, "nodes": [1320787444, 1669118015, 26211530], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 416551695, "nodes": [1320787110, 27508163, 27508162], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 417038678, "nodes": [25903296, 3418035846], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 417988254, "nodes": [28096905, 327492878], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 417988255, "nodes": [327492878, 1377881488, 8787245633, 8787245644, 143508728, 8787245645, 3268713830, 143497929, 3268713843, 143500432, 100890243], "tags": {"highway": "residential", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 417988256, "nodes": [29739619, 3268713831, 9672874693, 143504242], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lanes:psv:backward": "1", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "postal_code": "28006", "psv:lanes:backward": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 418834902, "nodes": [25902060, 2053142713, 25902059], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alcal\u00e1 Galiano", "name:etymology:wikidata": "Q1626617", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 420655419, "nodes": [1689543057, 4206086994], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "noname": "yes", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 420655420, "nodes": [1689543057, 8307252479, 5966607256, 3268713838, 143497929, 3268713837, 3268713836, 143497066, 3268713834, 5966607275, 5966607276, 3268713833, 29739619], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lanes:psv:backward": "1", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "postal_code": "28006", "psv:lanes:backward": "yes|yes|designated"}}, {"type": "way", "id": 420655422, "nodes": [4206086994, 2679640383], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "noname": "yes", "oneway": "yes", "sidewalk": "left", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 420655423, "nodes": [4206086994, 25902584], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 421396691, "nodes": [60018334, 674477996, 98960966], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 421898220, "nodes": [340225846, 2466689608, 81466847], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 422995980, "nodes": [25935149, 858587224, 7864693890, 6441681754, 1357992473, 25935141], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 422997712, "nodes": [25935060, 2283339295, 8429132483, 6441681747, 1378696867, 25935071], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 422997718, "nodes": [25935060, 6441681725, 25935074], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Glorieta del Gran Capit\u00e1n", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 422999226, "nodes": [25935062, 11533572599, 1651583794, 1651583792, 25935043, 25935044, 1666721129, 25935046, 25935048, 1660871696, 25935049, 25935051, 1651583798, 25934849, 22023240], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999622, "nodes": [26067289, 4827701833, 11248486982, 26067287, 26067298, 26067285, 8429132473, 26067261, 26067262], "tags": {"highway": "residential", "lit": "yes", "name": "Traves\u00eda del Conde Duque", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999623, "nodes": [26067289, 11533572632, 11228709907, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999624, "nodes": [26066554, 26066555, 5963987037, 26066556, 5970484995, 26066572, 9712059178, 674492240, 26066571], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 422999625, "nodes": [26066550, 26066554], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999626, "nodes": [26058809, 6314674725, 26058801], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle del Esp\u00edritu Santo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 422999929, "nodes": [26058802, 3842361694, 3842361695, 26058806, 26066576], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Madera", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 422999930, "nodes": [26058790, 4062386148], "tags": {"highway": "residential", "lit": "yes", "name": "Plaza de San Ildefonso", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 423876763, "nodes": [55161108, 8440879530, 1179021961, 55161119], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "psv": "taxi", "psv_1": "bus", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 423876764, "nodes": [55161108, 1358036203, 55161100, 55161094, 4437657600, 55161091, 1179022518, 25935540], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle del Buen Suceso", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 424278505, "nodes": [4808864933, 25906104], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 424278507, "nodes": [25906104, 1591329959, 25934470, 1591330012, 25934524, 1591330037, 25934522, 1591330108, 141886675], "tags": {"highway": "residential", "name": "Calle de Manuel Silvela", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 424278508, "nodes": [25906104, 5970484998, 1591329976, 22022371], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 424844827, "nodes": [101190048, 100881578], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "surface": "asphalt"}}, {"type": "way", "id": 425082671, "nodes": [98960521, 2283361223, 98956258], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 428829150, "nodes": [25903333, 25903309], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 428829151, "nodes": [25903333, 25901895], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 428829834, "nodes": [26067881, 1789638279, 5385241356, 298609370, 7934347520, 26068006, 1501200385, 5282009925], "tags": {"bicycle:lanes": "designated|no", "cycleway:lanes": "shared_lane|no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:lanes": "30|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 428949464, "nodes": [81466847, 8427069635, 3347875437, 81466846], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 429691796, "nodes": [355172281, 351923288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 429691806, "nodes": [1336935931, 339636384], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 429691811, "nodes": [339636378, 355172281], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 429692900, "nodes": [28096905, 4184539389, 4184539390, 1377881475, 4184539391, 4184539393, 29739617, 4184539400, 1377881473, 5232421896, 8479324955, 28096889, 7098087922, 1505106022, 29802991], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 429696851, "nodes": [1613048524, 25902800], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 429696856, "nodes": [1613048524, 25902821], "tags": {"highway": "residential", "lanes": "5", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 431525591, "nodes": [55161059, 55161082, 55161094, 4245283126, 55161130], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 431525592, "nodes": [55161064, 55161030, 55138166, 7619689678, 7619689680, 55161049], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 431525593, "nodes": [55161064, 4346484128, 55161067, 1364770912, 26080757], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Rey Francisco", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 436761532, "nodes": [25902124, 1760085668, 25903290], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 436761533, "nodes": [25901951, 3428425020, 25903292, 1760085666, 25903290], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 436766213, "nodes": [25903288, 1760085699, 5006946998], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 436766214, "nodes": [25903288, 1760085693, 25902154], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Villamagna", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157168, "nodes": [5006946998, 25903282], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157170, "nodes": [25902199, 1760085702, 5006946998], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157171, "nodes": [25902327, 4349802687, 5242554915, 25902199], "tags": {"bicycle": "yes", "cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "postal_code": "28006", "sidewalk": "right", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 437157172, "nodes": [25902199, 4349802678, 4349802673, 4349802672, 25902327], "tags": {"bicycle": "yes", "cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "postal_code": "28006", "sidewalk:left": "no", "sidewalk:right": "separate", "surface": "asphalt"}}, {"type": "way", "id": 437157173, "nodes": [25903282, 1760085696, 25903287], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 437157174, "nodes": [25903271, 1223809830, 25903282], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 437157175, "nodes": [25902199, 1223809784, 1085874133, 1493669252], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 458778826, "nodes": [25903324, 1278839062, 25903334, 25903337, 2508927633], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 458778827, "nodes": [25903324, 25903333], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Almirante", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458917506, "nodes": [26025903, 1500124561, 1500124571, 26025902], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through"}}, {"type": "way", "id": 458917507, "nodes": [26025902, 1500124587, 2673302088], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 458918473, "nodes": [4548454344, 26212622], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 462173077, "nodes": [100890241, 1555729975, 5068655473, 100890242], "tags": {"foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 462173102, "nodes": [100891150, 11218056288, 11218056251, 4575762336, 4575762337, 4575762338, 11218056252, 4575762335, 100890241], "tags": {"highway": "primary_link", "lanes": "2", "oneway": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462173103, "nodes": [4575762339, 4575762340, 4575762341, 4575762342, 4575762343], "tags": {"highway": "primary_link", "lanes": "1", "oneway": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175851, "nodes": [1011869670, 4575801321], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 462175857, "nodes": [4575801327, 3627050623, 25902243], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 464496886, "nodes": [4595952174, 581870023], "tags": {"admin_level": "9", "boundary": "administrative", "cycleway:right": "no", "foot": "no", "goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "shoulder": "no", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes", "turn:lanes": "left|through"}}, {"type": "way", "id": 465459555, "nodes": [1754816987, 1754816991, 1754817005, 1754817038], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 465459557, "nodes": [1754816987, 845455932, 1613048525], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 465477737, "nodes": [4604349217, 5255281513, 4604349218, 4604349219], "tags": {"highway": "residential", "noname": "yes", "oneway": "yes"}}, {"type": "way", "id": 469403429, "nodes": [26212608, 26212619], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through"}}, {"type": "way", "id": 469403430, "nodes": [26212619, 26025904], "tags": {"highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through|through|through|"}}, {"type": "way", "id": 469403431, "nodes": [27517937, 26212616, 26212614], "tags": {"destination": "A-6 Villalba; Ciudad Universitaria", "hazmat": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 469451505, "nodes": [298157533, 4637799992, 4637799991, 4637799990], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey", "surface": "asphalt", "turn:lanes": "right"}}, {"type": "way", "id": 475457681, "nodes": [25906137, 25906133, 8447121518, 25906134], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 491841445, "nodes": [22023377, 674492244, 26066553, 26066550], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 499731331, "nodes": [27514670, 4909695835], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 499731332, "nodes": [4909695836, 27514670], "tags": {"change:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 500275624, "nodes": [26025896, 4637125717, 26025887], "tags": {"bicycle": "yes", "highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 500275625, "nodes": [26025887, 4637125716, 674477954, 26025888], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 500275626, "nodes": [26025887, 1596698113, 674477945, 25935134, 25935073, 1378696871, 25935071], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 511223669, "nodes": [5001253641, 1505081002, 26578944], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:psv": "1", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "turn:lanes": "left|left|left;through|through|right|"}}, {"type": "way", "id": 511224732, "nodes": [1500124428, 11157455813, 6320489341, 8441812640], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 511252893, "nodes": [3802946112, 616211591, 26413138], "tags": {"highway": "secondary", "lanes": "6", "lanes:psv": "2", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 511262701, "nodes": [150760466, 150760472, 4558946120, 150760477], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511262702, "nodes": [4558946114, 4558946115, 4558946116, 4558946117, 4558946119, 4558946125, 4558946126, 150760466], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511262703, "nodes": [4558946113, 4558946123, 4558946121, 4558946122, 4558946114], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511777785, "nodes": [5005343788, 913080867], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511777786, "nodes": [5005343789, 5005343788], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511777787, "nodes": [5005343790, 5005343789], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511895882, "nodes": [5006352946, 587643323], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 512095737, "nodes": [139975676, 4626597070, 306092390, 63530471], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 512095738, "nodes": [63530492, 63530481, 1011869674, 4626597055, 139971858, 1760085715, 63530476], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 512095739, "nodes": [5007730069, 25934317], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Almagro", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 512124522, "nodes": [63530500, 306092392, 63530492], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 519917146, "nodes": [1759501505, 25902720], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv:lanes:forward": "designated|yes|yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 519998161, "nodes": [60030258, 5069264838, 60030259], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 519998162, "nodes": [60030259, 8522340700, 3675303748, 60030301], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 519998878, "nodes": [269361123, 8522340701, 5069264835, 60030258], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 519998879, "nodes": [60030257, 60030399, 269361123], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through;right"}}, {"type": "way", "id": 520069216, "nodes": [26067885, 7965756605, 1789638281, 7934347515], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 520069217, "nodes": [26080779, 927751052], "tags": {"bicycle:lanes": "no|designated", "cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 522895328, "nodes": [5091750318, 6348197385, 150760661], "tags": {"change:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 522895329, "nodes": [359392869, 27517856], "tags": {"change:lanes": "yes|yes|yes|yes", "cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|yes|designated", "surface": "asphalt", "turn:lanes": "left|through;left|through;right|through;right"}}, {"type": "way", "id": 545143016, "nodes": [26212621, 4548454344], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 549913120, "nodes": [25901925, 25903309], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Villanueva", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 551048958, "nodes": [5321904954, 1669117724, 26578965], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 551048959, "nodes": [2679640394, 25902469], "tags": {"highway": "residential", "name": "Calle del General Or\u00e1a", "oneway": "yes"}}, {"type": "way", "id": 551048960, "nodes": [2679640385, 11218044132, 2679640384, 2679640383], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 551051372, "nodes": [63530535, 1760085713, 63530519], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551051374, "nodes": [63530519, 63530500], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551051375, "nodes": [25934833, 25934835], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551063047, "nodes": [2679640385, 4206086994], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "left", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 551600609, "nodes": [21990728, 4134046209], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 553509829, "nodes": [26413358, 5963987030, 26413356, 5342774136], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 554230302, "nodes": [100891149, 100891150], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 554230310, "nodes": [25903298, 7537616087, 7537616086, 25901948], "tags": {"foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 554230311, "nodes": [26513155, 8294838433, 5385241348, 4470512290, 25552423, 1950481126, 28096482, 4576234312, 5385241347, 1950481160, 28096717, 1950481189, 29739615, 5385241346, 28097222], "tags": {"highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 554230313, "nodes": [25901948, 7549719172, 25901958], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 554505585, "nodes": [5350055330, 581287837], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 555163966, "nodes": [141919137, 8464920934, 2688334675, 5007730069], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 556293553, "nodes": [25935514, 6981674376, 385569776], "tags": {"bicycle": "designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 556293554, "nodes": [913080874, 25935149], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 562870982, "nodes": [5425359850, 5425359851, 5425359852, 5425359853], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Gabriel", "oneway": "yes", "smoothness": "intermediate", "surface": "asphalt"}}, {"type": "way", "id": 562895834, "nodes": [60030246, 2972995650, 2972995635, 60030240], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895835, "nodes": [60030242, 3096525842, 5422404801, 60030251], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895836, "nodes": [60030251, 3096525845, 60030243], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895837, "nodes": [60030243, 2972993228, 5422404797, 60030244], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895838, "nodes": [60030244, 3096525873, 2972993223, 3096525875, 2972993230, 60030246], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 593887057, "nodes": [26067307, 7540286795, 26067304], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Amaniel", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 604682695, "nodes": [55161124, 8447121533, 55161130], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 604682696, "nodes": [55161135, 5273358099], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 604682697, "nodes": [55161135, 5273361955, 622204581, 25935524], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "separate", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 634419728, "nodes": [26067291, 11228713079, 7930651367, 7930651371, 7930651365, 7930651366], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Duque de Liria", "oneway": "no", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 654274091, "nodes": [6130961139, 614036239], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 654274092, "nodes": [25935174, 1357992454, 25935141], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 654274093, "nodes": [25935174, 25935066, 11145627655, 1660892630, 1660892624, 11533572595, 1651583795, 25935062], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 656511222, "nodes": [28096713, 28096714, 4603975784, 1981925778, 28096482, 1963430772, 1950481157, 28096715, 1950481156, 1950481154, 28096711, 6211774594, 11655970547, 1505184339, 5300692986, 8479324967, 28096486], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Hermosilla", "name:etymology:wikidata": "Q28052826", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 656511223, "nodes": [25552446, 1950481127, 1981925780, 28096713, 1981925787, 28096719, 1950481191, 28096821, 1950481195, 28097220], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28001", "source:maxspeed": "ES:zone30", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 657562133, "nodes": [28097220, 28097221], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 657562135, "nodes": [28097220, 28096922, 28096905], "tags": {"highway": "residential", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "source:name": "survey"}}, {"type": "way", "id": 657562138, "nodes": [28097221, 1950481194, 28096822, 1981925789, 1950481170, 28096718, 4269562177, 1981925784, 28096714, 1981925776, 1981925770, 25552425], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28001", "source:maxspeed": "ES:zone30", "surface": "asphalt"}}, {"type": "way", "id": 657562143, "nodes": [28097221, 28097222], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 664411472, "nodes": [942080469, 1278839025, 7549719160, 7549719161, 26513072], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt", "turn": "left|left;through|through;right|right"}}, {"type": "way", "id": 665691541, "nodes": [6231141666, 6231141665], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 665691542, "nodes": [141860144, 4108443945, 141860662, 6231141666], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 673879098, "nodes": [3247246414, 142283820], "tags": {"highway": "residential", "name": "Calle de Grijalba"}}, {"type": "way", "id": 673879100, "nodes": [3247246414, 3247246409, 6101370504], "tags": {"highway": "residential", "name": "Calle de Belalc\u00e1zar", "oneway": "yes"}}, {"type": "way", "id": 675677509, "nodes": [6327649413, 6327649412, 6327649411], "tags": {"highway": "residential"}}, {"type": "way", "id": 685983425, "nodes": [21990700, 25906296, 25906295, 25906293, 1754199353, 25906292, 25906290], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 687241632, "nodes": [55161167, 1095709764], "tags": {"access:lanes": "yes|yes", "bicycle:lanes": "yes|yes", "cycleway:lanes": "shared_lane|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 687246663, "nodes": [25935139, 1357992474, 385569660], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 687246664, "nodes": [858587232, 913080874], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 687861983, "nodes": [5385241321, 1179022127, 25935515], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 704190178, "nodes": [3426732173, 1364773344, 305776147], "tags": {"highway": "secondary_link", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de S\u00e9neca", "oneway": "no", "source": "gps tracks", "surface": "asphalt"}}, {"type": "way", "id": 704190179, "nodes": [3426732176, 305776147], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de S\u00e9neca", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 746008107, "nodes": [55161119, 55161167], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "psv": "taxi", "psv_1": "bus", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 746008110, "nodes": [25935532, 6981674372, 26578942], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 756122281, "nodes": [26413513, 26413576, 1203847162, 26413579], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through|through|through;right|right"}}, {"type": "way", "id": 756122282, "nodes": [2615210656, 3258766781, 1613048569], "tags": {"highway": "primary", "lanes": "5", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 756122283, "nodes": [1924384878, 27522353], "tags": {"highway": "tertiary", "lanes": "2", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "left"}}, {"type": "way", "id": 756122284, "nodes": [27522353, 7062214673, 27518078], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 756122285, "nodes": [27521668, 4311812558, 27517937], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through|through"}}, {"type": "way", "id": 767647774, "nodes": [5063895996, 26413145], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 767647776, "nodes": [5214866736, 60030248], "tags": {"cycleway:left": "track", "cycleway:left:oneway": "no", "cycleway:right": "no", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 772241088, "nodes": [21990706, 8441812493, 25906112], "tags": {"highway": "residential", "lanes": "3", "lanes:backward": "2", "lanes:forward": "1", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 776797452, "nodes": [25906098, 21990727], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "30", "name": "Calle de Mej\u00eda Lequerica", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 801685736, "nodes": [3221366172, 3221366174], "tags": {"highway": "residential", "layer": "-1", "maxheight": "2.95", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 807334401, "nodes": [7549719194, 7549719193, 7549719192, 7549719191, 7549719169], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807334402, "nodes": [7549719175, 7549719176, 7549719178, 7549719177, 7549719167], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807334403, "nodes": [26513072, 9054521334, 5385241329, 3323813669, 942080445, 25901919, 1900998827, 4576234377, 942080448, 3235382373, 2506473199], "tags": {"cycleway:both": "separate", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 807334404, "nodes": [7549719200, 8427025401, 2827804125, 7549719201, 25552447], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 809156091, "nodes": [7549719194, 25903298], "tags": {"foot": "no", "highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 813689625, "nodes": [7600612665, 7549586483, 7549593988, 916938490], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 813689626, "nodes": [26579030, 266374396, 2823682506], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 821334653, "nodes": [616264715, 616264718, 616264721, 616264722], "tags": {"highway": "residential", "name": "Plaza de Mar\u00eda Guerrero", "oneway": "yes"}}, {"type": "way", "id": 850049293, "nodes": [893869107, 7930651356, 7930651357, 7930651358, 7930651359, 4110093642, 7930651360, 7930651361, 7930651362, 7930651363, 7930651372, 7930651366, 893869106, 7934347516, 7934347517, 7934347518, 7934347519, 7934347505], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Duque de Liria", "oneway": "yes", "postal_code": "28015", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 850469758, "nodes": [7934347505, 7934347506, 7934347507, 7934347508, 7934347509, 7965756604, 7934347510, 7934347511], "tags": {"highway": "primary", "lit": "yes", "name": "Duque de Liria", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 858885642, "nodes": [55161074, 1358036199, 1358036201, 55161108], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 858885643, "nodes": [55161074, 1358036197, 1364770953, 26080763], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 868615036, "nodes": [26211576, 1500124613, 26025902, 26025841], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 868615037, "nodes": [26025842, 3663308736, 26025903, 1500124594, 26211580, 3663308739, 3663308740, 27516696], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 868615038, "nodes": [26025846, 27520754, 7062214671, 27520557, 8426942048, 27520539, 7062214674, 27518078], "tags": {"bicycle": "yes", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lanes": "3", "name": "Calle de Vallehermoso", "name:etymology:wikidata": "Q6122685", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615039, "nodes": [27521668, 4637277827, 3096525913, 4536011529, 26025845], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Galileo", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615043, "nodes": [8807074826, 8807074832, 8807074831, 8807074827, 60017632, 4808839534, 25902757, 25902756, 3675303749, 25902676], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 868615044, "nodes": [60030301, 3675303750, 60030409, 60030408, 60030410, 1613048507, 1613048510, 60018312, 8807066209, 8807066210, 101181988], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Fern\u00e1ndez de la Hoz", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 868615045, "nodes": [60030259, 5069264836, 7892603727, 4547336041, 60030260, 5863695677, 60030279, 9468442517, 9468442518, 60030302], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Modesto Lafuente", "name:etymology:wikidata": "Q627987", "oneway": "yes", "postal_code": "28010", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615046, "nodes": [60030303, 9468421738, 9468421735, 60030278, 9468421736, 5802031896, 269361215, 9468418953, 9468418948, 60030277, 9468406684, 269361177, 5069264833, 9468406681, 60030258], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Calle de Alonso Cano", "name:etymology:wikidata": "Q378783", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 873314041, "nodes": [7934347511, 1789638282, 26067884], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 873314042, "nodes": [7934347511, 7934347512, 7934347513, 7934347514, 7934347515], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 873314043, "nodes": [7934347515, 26067881], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 890797389, "nodes": [7825645058, 25902793, 3078426886, 139982483], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "surface": "asphalt"}}, {"type": "way", "id": 890797390, "nodes": [25902801, 25902773, 25903359, 8807074888, 25903358, 25903357, 1759501614, 25902677], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 890797391, "nodes": [25902801, 8807074841, 356264959], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 890797392, "nodes": [356264959, 8807074846, 25902777, 1754819488, 25902808], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through|through"}}, {"type": "way", "id": 890797393, "nodes": [25902807, 8807074821, 1754819503, 25902808], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 890797394, "nodes": [25902808, 267271033], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 890797395, "nodes": [8279212876, 25903360], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left|left;through|through|through"}}, {"type": "way", "id": 907168960, "nodes": [989204966, 989204869, 8423842224, 8807066147, 8423842234], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 907168962, "nodes": [8423842223, 8423842229, 8423842228, 8423842227, 8423842226, 8423842231], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168963, "nodes": [340228759, 8423842231], "tags": {"highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168964, "nodes": [8423842231, 8423842232], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168965, "nodes": [1314916898, 8423842233, 1314916911], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-2", "lit": "24/7", "name": "Calle Vaguada", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168966, "nodes": [1314916911, 1314919703], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168967, "nodes": [1752467616, 1752467620, 339636176, 339636170], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 907723000, "nodes": [98723336, 7058240062, 98727478, 8419169894, 8412903968, 8412903969, 98727479, 98727480, 98727481, 8419479065, 34408179, 34408267], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 907723001, "nodes": [34408267, 8427141938, 34408287], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 907759981, "nodes": [25935522, 622204584, 8447121545, 8429132490], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 907819847, "nodes": [98724253, 1016578249, 98726299, 8551133927, 98725055, 8486897780, 544435182, 8419397878, 8486897781, 11269072934, 8486897782, 544426537, 98726081], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 907819848, "nodes": [98726082, 8421307663, 98726081], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Las Carolinas", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 908546755, "nodes": [1505081040, 1446632660], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 909190205, "nodes": [8441812640, 26211532], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 909983459, "nodes": [34408462, 4461268759, 8409510075, 4461268763, 34408339], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 909983461, "nodes": [34408479, 34408502], "tags": {"highway": "living_street", "lanes": "1", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 910118729, "nodes": [8450420427, 8450420435, 8450420434, 8450420431, 8450420428, 8450420433, 8450420429, 8450420430], "tags": {"highway": "living_street", "name": "Bravo Murillo", "postal_code": "28039"}}, {"type": "way", "id": 910118730, "nodes": [8851032220, 8402179358, 8402179392, 8450420430], "tags": {"highway": "living_street"}}, {"type": "way", "id": 910118731, "nodes": [8450420431, 8450420432, 8450420433], "tags": {"highway": "living_street", "postal_code": "28039"}}, {"type": "way", "id": 911311587, "nodes": [1067565849, 937660057, 1505081012, 26578954], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right", "vehicle": "yes"}}, {"type": "way", "id": 913980560, "nodes": [1364772947, 26578986, 8490180660], "tags": {"highway": "unclassified", "lane_markings": "no", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 918015709, "nodes": [3802946109, 26413142], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 918422319, "nodes": [3802947078, 26413324, 1505081213, 3802947057, 338727732], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 918422321, "nodes": [8419499610, 26413139], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 924897290, "nodes": [141862745, 298151333, 8583879002, 8583879003], "tags": {"bicycle": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de Jer\u00f3nimo de la Quintana", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 940803290, "nodes": [5006352965, 5005343790], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 944557396, "nodes": [8423842234, 8423842235], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 949843141, "nodes": [81581407, 82500158, 81605092], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de La Orden", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 949843142, "nodes": [81581407, 81581408, 4280822366, 339391870], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 949849804, "nodes": [81605097, 81580405], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle Dulcinea", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 951483214, "nodes": [25902808, 8807074822, 1754816979, 8807074839, 8807074838, 25902758], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 951483216, "nodes": [4547724402, 8807074904, 8807074901, 8807074902, 8807074903, 1505081196], "tags": {"highway": "tertiary", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 951683409, "nodes": [8807074844, 1719813895, 25902759], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 953138341, "nodes": [8822146151, 26579080], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 953138342, "nodes": [3946934257, 1486142561, 26579080], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "turn:lanes": "through|right"}}, {"type": "way", "id": 957933863, "nodes": [25906265, 25906286], "tags": {"highway": "living_street", "maxspeed": "50", "name": "Calle de Piamonte", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 961618047, "nodes": [25935071, 5777200233, 6441681746, 25935139], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 961618048, "nodes": [25935069, 1378696861, 1651583800, 11533572604, 25935066], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Baltasar Graci\u00e1n", "name:etymology:wikidata": "Q360512", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 961618049, "nodes": [25935069, 6441681751, 365886560, 25935058], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 990430645, "nodes": [8537288347, 3437178880, 1474148380, 4575762339, 3216764229, 100891149], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 991139332, "nodes": [9157684326, 98959776, 9157684327, 141885133], "tags": {"highway": "living_street", "name": "Calle de Santa Feliciana", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 992729383, "nodes": [141881729, 1596698110], "tags": {"alt_name": "Calle Gonzalo de C\u00f3rdoba", "bicycle": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de Gonzalo de C\u00f3rdoba", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 993035587, "nodes": [9172003699, 9172003703, 9172003704, 141881345], "tags": {"highway": "living_street", "name": "Calle de Jord\u00e1n", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 1007584648, "nodes": [11200863917, 11343888029, 11796117916, 2004157542, 150760955], "tags": {"bicycle": "destination", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "motor_vehicle": "destination", "name": "Calle Doctor Severo Ochoa", "oneway": "no", "parking:left": "no", "parking:right": "on_kerb", "parking:right:orientation": "perpendicular", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474061, "nodes": [26412916, 26413032], "tags": {"alt_name": "Bravo Murillo", "cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474062, "nodes": [26413086, 3659320548, 339391870], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474063, "nodes": [339391870, 8851032220], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474064, "nodes": [8851032220, 338727758], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474065, "nodes": [1801212265, 26413137], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474066, "nodes": [338727758, 1801212265], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1032962168, "nodes": [100881578, 101190157, 100881579], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 1032962169, "nodes": [989278228, 100881578], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 1032962170, "nodes": [100881334, 8440634346, 989278057, 100881577], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1032962171, "nodes": [989278010, 100881715], "tags": {"highway": "residential", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1032962172, "nodes": [989278265, 100881715], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1055545955, "nodes": [1770052234, 9699225796, 9699225800, 9699225797, 9699225803, 9699225798], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 1055545957, "nodes": [1770052234, 9699225795, 9699225801, 9699225799, 9699225802, 27516322], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 1081529198, "nodes": [27508201, 4498622034, 4498622026, 4498622025, 27508200], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 1081529199, "nodes": [27508201, 4498622037, 3663308770, 27514667], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Maestro \u00c1ngel Llorca", "old_name": "Calle del General Rodrigo", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1107709922, "nodes": [25901897, 8307252472, 942080448], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Recoletos", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1107709923, "nodes": [25901917, 25901921], "tags": {"highway": "residential", "name": "Calle del Cid", "name:etymology:wikidata": "Q43958", "oneway": "yes", "postal_code": "28001", "wikidata": "Q52665136", "wikipedia": "es:Calle del Cid"}}, {"type": "way", "id": 1110166117, "nodes": [60030252, 3096525844, 5422404800, 60030242], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1114990827, "nodes": [8423842235, 8423842236], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 1114990829, "nodes": [8423842236, 8807066145, 8423842222, 8423842223], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 1114990830, "nodes": [8423842236, 8807066134, 10197766006, 989205027, 989204960, 8807066144, 4825301730, 989205057, 989205097], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 1114990831, "nodes": [10197766007, 8423842235], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1117798460, "nodes": [7549719175, 7549719171, 25901948], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117798461, "nodes": [7549719167, 1915012230, 3418035839, 942080477, 942080469], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1117798462, "nodes": [7549719169, 3323948845, 8931354149, 3323948846, 1915012248, 1278839038, 1915012263, 7549719179, 25901951], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117798463, "nodes": [7549719169, 7537616088, 1278838956, 7549719173, 25901958], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117831239, "nodes": [55161051, 1378696850, 26080779], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Evaristo San Miguel", "name:etymology:wikidata": "Q3816067", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 1117831240, "nodes": [55138206, 7537446003, 7537446004, 4285281350, 55161044, 927751050, 55161051], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1119740183, "nodes": [8583869920, 25934447], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 1137690631, "nodes": [55161119, 3471365915, 55161124], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 1186014734, "nodes": [25902675, 1759501555], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014735, "nodes": [394684646, 25902675], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014736, "nodes": [394684646, 1759501559], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014738, "nodes": [1759501559, 1311052159, 25902677], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014739, "nodes": [1759501555, 1759501551, 25902678], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1201728769, "nodes": [11141805128, 3927597013, 3927597014, 25906300], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Br\u00edgida", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 1205576792, "nodes": [11172580734, 11172580731, 11172580732, 11172580733], "tags": {"highway": "living_street", "layer": "-1"}}, {"type": "way", "id": 1205576793, "nodes": [11172580730, 11525423852, 11172580735], "tags": {"highway": "living_street", "layer": "-1"}}, {"type": "way", "id": 1205576794, "nodes": [11172580735, 11172580734], "tags": {"highway": "living_street", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1208895839, "nodes": [11200863931, 11200863932, 11200863933, 11200863934, 11200863916, 11200863919, 11200863920, 11200863921, 11200863922, 11200863917, 11200863923, 11200863924, 11200863925, 11200863926, 11200863918, 11200863927, 11200863928, 11200863929, 11200863930, 150760950, 11200863931], "tags": {"highway": "residential", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 1217444756, "nodes": [8577075130, 26578946], "tags": {"bicycle": "designated", "bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 1257446720, "nodes": [27508196, 11690767191], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1262859591, "nodes": [1963430775, 1963430776, 10550528448, 1760085667, 25902124], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Ayala", "name:etymology:wikidata": "Q354137", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}]} \ No newline at end of file diff --git a/examples/markov_chains/cache/b83091b27a005b409e64054a3cad9807ecce636c.json b/examples/markov_chains/cache/b83091b27a005b409e64054a3cad9807ecce636c.json new file mode 100644 index 0000000..b5cf66e --- /dev/null +++ b/examples/markov_chains/cache/b83091b27a005b409e64054a3cad9807ecce636c.json @@ -0,0 +1 @@ +{"version": 0.6, "generator": "Overpass API 0.7.62.1 084b4234", "osm3s": {"timestamp_osm_base": "2024-04-03T13:17:15Z", "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."}, "elements": [{"type": "node", "id": 21627165, "lat": 40.4264961, "lon": -3.6876472}, {"type": "node", "id": 21990700, "lat": 40.4249378, "lon": -3.7007553, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 21990702, "lat": 40.425216, "lon": -3.7000537, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990703, "lat": 40.4252353, "lon": -3.7000117, "tags": {"crossing": "zebra", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 21990704, "lat": 40.4253651, "lon": -3.699723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990705, "lat": 40.4258324, "lon": -3.698691, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990706, "lat": 40.4263178, "lon": -3.6976693, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990717, "lat": 40.4254672, "lon": -3.7009441, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990718, "lat": 40.4260519, "lon": -3.7011811, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 21990719, "lat": 40.4262576, "lon": -3.7012578, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 21990720, "lat": 40.4266623, "lon": -3.7014198}, {"type": "node", "id": 21990721, "lat": 40.4269858, "lon": -3.7015579}, {"type": "node", "id": 21990722, "lat": 40.4272493, "lon": -3.7016691}, {"type": "node", "id": 21990723, "lat": 40.4272902, "lon": -3.7008402}, {"type": "node", "id": 21990724, "lat": 40.4265045, "lon": -3.700532, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990725, "lat": 40.4267552, "lon": -3.6998407, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990726, "lat": 40.4273481, "lon": -3.7000637, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990727, "lat": 40.4277645, "lon": -3.6992917, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990728, "lat": 40.4271013, "lon": -3.6987379, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990729, "lat": 40.4267068, "lon": -3.6981718, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990731, "lat": 40.4275633, "lon": -3.7035723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990732, "lat": 40.4272247, "lon": -3.703615, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990733, "lat": 40.4272713, "lon": -3.7040131, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990734, "lat": 40.4276412, "lon": -3.7039488, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990735, "lat": 40.4268812, "lon": -3.703658, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990736, "lat": 40.426616, "lon": -3.703707, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990737, "lat": 40.4266592, "lon": -3.7041149, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990738, "lat": 40.4267032, "lon": -3.7045657}, {"type": "node", "id": 21990739, "lat": 40.4269822, "lon": -3.7045191, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990740, "lat": 40.4273213, "lon": -3.7044643}, {"type": "node", "id": 21990741, "lat": 40.4263485, "lon": -3.7041633, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990742, "lat": 40.4263067, "lon": -3.7037609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990743, "lat": 40.4266838, "lon": -3.7016638}, {"type": "node", "id": 21990744, "lat": 40.426105, "lon": -3.7017698, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990745, "lat": 40.4255595, "lon": -3.7018795, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990746, "lat": 40.4257608, "lon": -3.7038591, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990747, "lat": 40.4258806, "lon": -3.7050195, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21990756, "lat": 40.426427, "lon": -3.704943, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22016261, "lat": 40.4278514, "lon": -3.7050403, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 22016262, "lat": 40.428621, "lon": -3.7022173}, {"type": "node", "id": 22016264, "lat": 40.4270407, "lon": -3.7052031, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 22018580, "lat": 40.4286215, "lon": -3.703365, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22018603, "lat": 40.4286709, "lon": -3.7037553, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022079, "lat": 40.4282205, "lon": -3.7049688, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022095, "lat": 40.4280794, "lon": -3.7038599, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022132, "lat": 40.429191, "lon": -3.7036646, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022145, "lat": 40.4291362, "lon": -3.7032648, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022163, "lat": 40.4293795, "lon": -3.7047289, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022173, "lat": 40.4287842, "lon": -3.7048456, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022227, "lat": 40.4289026, "lon": -3.7019855, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022319, "lat": 40.4287858, "lon": -3.7014061, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022337, "lat": 40.4285972, "lon": -3.7005018, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022361, "lat": 40.4283594, "lon": -3.699407, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 22022371, "lat": 40.4284926, "lon": -3.6994245, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 22022469, "lat": 40.4292998, "lon": -3.7036635, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22022484, "lat": 40.4294766, "lon": -3.7047082, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22023240, "lat": 40.428903, "lon": -3.7059277, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 22023361, "lat": 40.4271719, "lon": -3.706452, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22023377, "lat": 40.426608, "lon": -3.7067321, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22031310, "lat": 40.4258068, "lon": -3.7042726, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 22031313, "lat": 40.4253669, "lon": -3.7009006, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25552423, "lat": 40.4251855, "lon": -3.6841207}, {"type": "node", "id": 25552425, "lat": 40.4252491, "lon": -3.6853692}, {"type": "node", "id": 25552446, "lat": 40.425311, "lon": -3.6865765}, {"type": "node", "id": 25552447, "lat": 40.4253904, "lon": -3.6878644}, {"type": "node", "id": 25552448, "lat": 40.4254613, "lon": -3.688085, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 25552449, "lat": 40.4255705, "lon": -3.6892344, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25552450, "lat": 40.4256049, "lon": -3.6897955, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 25892074, "lat": 40.4198575, "lon": -3.6926419, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 25892152, "lat": 40.4198586, "lon": -3.6933435, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25892156, "lat": 40.420238, "lon": -3.6931651, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25896215, "lat": 40.448114, "lon": -3.7248206}, {"type": "node", "id": 25896216, "lat": 40.4469365, "lon": -3.7246325}, {"type": "node", "id": 25896218, "lat": 40.4462523, "lon": -3.7231557}, {"type": "node", "id": 25896220, "lat": 40.4482292, "lon": -3.7228294}, {"type": "node", "id": 25901825, "lat": 40.4209884, "lon": -3.6928208, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901826, "lat": 40.420482, "lon": -3.6921135, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901838, "lat": 40.4211753, "lon": -3.6918252, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901851, "lat": 40.4206847, "lon": -3.6905634, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901853, "lat": 40.4203042, "lon": -3.6907558, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901885, "lat": 40.4224479, "lon": -3.6921443, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901886, "lat": 40.4218908, "lon": -3.6924031, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901887, "lat": 40.4219137, "lon": -3.6940429, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901888, "lat": 40.4219155, "lon": -3.6941767, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901889, "lat": 40.4224988, "lon": -3.694153, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901890, "lat": 40.4230425, "lon": -3.6941324, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901891, "lat": 40.4230277, "lon": -3.6931408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901892, "lat": 40.422477, "lon": -3.6932557, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901895, "lat": 40.4223687, "lon": -3.691274, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25901897, "lat": 40.4216347, "lon": -3.6895683, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901898, "lat": 40.4205419, "lon": -3.6901942, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901914, "lat": 40.4218156, "lon": -3.6899763, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901917, "lat": 40.4224921, "lon": -3.689776, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901919, "lat": 40.4221885, "lon": -3.6884002, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901921, "lat": 40.4228351, "lon": -3.6896838, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901922, "lat": 40.42326, "lon": -3.691767, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901923, "lat": 40.4235221, "lon": -3.6929155, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901925, "lat": 40.4231088, "lon": -3.6909534, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25901935, "lat": 40.4251315, "lon": -3.6909553, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901936, "lat": 40.4255185, "lon": -3.6907592, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901937, "lat": 40.4254968, "lon": -3.6910753, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901938, "lat": 40.4255499, "lon": -3.691402, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901940, "lat": 40.4252722, "lon": -3.691194, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25901948, "lat": 40.4245827, "lon": -3.6903143, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901950, "lat": 40.4254485, "lon": -3.6899764, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 25901951, "lat": 40.4255644, "lon": -3.6902789, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901958, "lat": 40.4248462, "lon": -3.6902252, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25901959, "lat": 40.4255022, "lon": -3.6900045, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902054, "lat": 40.4258618, "lon": -3.6899592, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902055, "lat": 40.4265926, "lon": -3.6896823, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902056, "lat": 40.4265564, "lon": -3.6889248, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902057, "lat": 40.4270782, "lon": -3.6890441, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902058, "lat": 40.4270918, "lon": -3.6895565, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902059, "lat": 40.4265699, "lon": -3.6904737, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902060, "lat": 40.426723, "lon": -3.6914005, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902077, "lat": 40.4279911, "lon": -3.6901007, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902123, "lat": 40.4280447, "lon": -3.6911057, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902124, "lat": 40.4279673, "lon": -3.6893291, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902151, "lat": 40.4294624, "lon": -3.6910498, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902152, "lat": 40.4294102, "lon": -3.6897311, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902154, "lat": 40.4293618, "lon": -3.6889566}, {"type": "node", "id": 25902195, "lat": 40.4305842, "lon": -3.6907454, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902196, "lat": 40.4306044, "lon": -3.6894148}, {"type": "node", "id": 25902199, "lat": 40.430551, "lon": -3.6886425, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902207, "lat": 40.4318026, "lon": -3.6890971, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902210, "lat": 40.4317765, "lon": -3.6904411, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902231, "lat": 40.4325645, "lon": -3.6889003, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902233, "lat": 40.4329162, "lon": -3.6888347, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902235, "lat": 40.4331273, "lon": -3.6888241, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902243, "lat": 40.4329784, "lon": -3.6867203}, {"type": "node", "id": 25902244, "lat": 40.4331647, "lon": -3.6881107, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902327, "lat": 40.4304617, "lon": -3.6868965}, {"type": "node", "id": 25902329, "lat": 40.429274, "lon": -3.6871389}, {"type": "node", "id": 25902430, "lat": 40.4340892, "lon": -3.6901349}, {"type": "node", "id": 25902431, "lat": 40.4341177, "lon": -3.6889925}, {"type": "node", "id": 25902432, "lat": 40.434687, "lon": -3.6891218, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902433, "lat": 40.4348093, "lon": -3.6892642, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902434, "lat": 40.4351848, "lon": -3.6901531, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902439, "lat": 40.4349114, "lon": -3.6886092, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902441, "lat": 40.4348678, "lon": -3.6888226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902444, "lat": 40.4346768, "lon": -3.6882849, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902445, "lat": 40.4351079, "lon": -3.6881439, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902447, "lat": 40.4352603, "lon": -3.6881459, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902448, "lat": 40.434907, "lon": -3.6882042, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902449, "lat": 40.4350807, "lon": -3.6894231, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902450, "lat": 40.4352026, "lon": -3.6894239, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902452, "lat": 40.4353552, "lon": -3.6890343, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902453, "lat": 40.4352583, "lon": -3.688585, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902455, "lat": 40.4355994, "lon": -3.6888933, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902456, "lat": 40.4354674, "lon": -3.6890707, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902461, "lat": 40.4356018, "lon": -3.6880378, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902467, "lat": 40.4360047, "lon": -3.6873475, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902468, "lat": 40.4361036, "lon": -3.6874467, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902469, "lat": 40.4360624, "lon": -3.6876583, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902471, "lat": 40.4354547, "lon": -3.6882146, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902473, "lat": 40.4356289, "lon": -3.6884096, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902474, "lat": 40.4357117, "lon": -3.6885382, "tags": {"bus": "yes", "public_transport": "stop_position", "source": "yahoo_maps"}}, {"type": "node", "id": 25902479, "lat": 40.4362228, "lon": -3.6890374, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902482, "lat": 40.4367322, "lon": -3.6878795, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902485, "lat": 40.4363419, "lon": -3.6875266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902490, "lat": 40.4353665, "lon": -3.6894244, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902491, "lat": 40.4364704, "lon": -3.6901008, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902560, "lat": 40.4354326, "lon": -3.6886888, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902561, "lat": 40.4349689, "lon": -3.6888881, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902584, "lat": 40.4351185, "lon": -3.6865462}, {"type": "node", "id": 25902655, "lat": 40.4351577, "lon": -3.6912629}, {"type": "node", "id": 25902656, "lat": 40.4365344, "lon": -3.6912406, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25902664, "lat": 40.4377732, "lon": -3.6904158, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902666, "lat": 40.4376553, "lon": -3.6906044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902673, "lat": 40.4378971, "lon": -3.6901468, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902674, "lat": 40.4380197, "lon": -3.6902089}, {"type": "node", "id": 25902675, "lat": 40.4379694, "lon": -3.6912759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902676, "lat": 40.4381135, "lon": -3.6928882, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902677, "lat": 40.4382099, "lon": -3.6909261}, {"type": "node", "id": 25902678, "lat": 40.4378795, "lon": -3.6908026}, {"type": "node", "id": 25902679, "lat": 40.4382908, "lon": -3.6906818, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902680, "lat": 40.4379888, "lon": -3.6890238, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902690, "lat": 40.4392308, "lon": -3.6915257, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902692, "lat": 40.4393086, "lon": -3.6907348, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902693, "lat": 40.438562, "lon": -3.6904506, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902694, "lat": 40.4387437, "lon": -3.6899192, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902695, "lat": 40.4384509, "lon": -3.6897268, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902696, "lat": 40.438497, "lon": -3.6896058, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902697, "lat": 40.4388046, "lon": -3.6898233, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902698, "lat": 40.4392599, "lon": -3.6897751, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902699, "lat": 40.4390634, "lon": -3.6890248, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25902700, "lat": 40.4385972, "lon": -3.6889796, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902703, "lat": 40.4386489, "lon": -3.691327, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902717, "lat": 40.4373694, "lon": -3.6912512, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 25902718, "lat": 40.4376282, "lon": -3.6912565, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902719, "lat": 40.4375664, "lon": -3.6910926, "tags": {"highway": "give_way", "source": "yahoo_maps"}}, {"type": "node", "id": 25902720, "lat": 40.4375652, "lon": -3.6910055, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902722, "lat": 40.4374237, "lon": -3.6907632, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902756, "lat": 40.4387879, "lon": -3.6928228, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902757, "lat": 40.439294, "lon": -3.6927814, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902758, "lat": 40.4410563, "lon": -3.6926225, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902759, "lat": 40.4406508, "lon": -3.6920393, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902760, "lat": 40.4408741, "lon": -3.6923927, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902773, "lat": 40.4408364, "lon": -3.6918671, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902774, "lat": 40.4410503, "lon": -3.6921719, "tags": {"bus": "yes", "public_transport": "stop_position", "source": "yahoo_maps"}}, {"type": "node", "id": 25902775, "lat": 40.4409775, "lon": -3.6918363, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902777, "lat": 40.4412273, "lon": -3.6922643, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902778, "lat": 40.4411662, "lon": -3.6927028, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902782, "lat": 40.4408757, "lon": -3.6912631, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902783, "lat": 40.4412136, "lon": -3.6910263, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902784, "lat": 40.4411314, "lon": -3.6907663, "tags": {"barrier": "gate", "bicycle": "yes", "foot": "yes", "motorcar": "yes", "motorcycle": "yes", "source": "yahoo_maps"}}, {"type": "node", "id": 25902785, "lat": 40.4410467, "lon": -3.6906262, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902786, "lat": 40.440875, "lon": -3.6904709, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902787, "lat": 40.4399372, "lon": -3.690131, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902788, "lat": 40.4398, "lon": -3.6901467, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902789, "lat": 40.4396871, "lon": -3.6901953, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902790, "lat": 40.4394872, "lon": -3.6903546, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902793, "lat": 40.442278, "lon": -3.6896314, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902794, "lat": 40.4415795, "lon": -3.6906224, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902795, "lat": 40.4413898, "lon": -3.6909487, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902796, "lat": 40.4413626, "lon": -3.6911234, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902797, "lat": 40.44125, "lon": -3.691023, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902798, "lat": 40.4412833, "lon": -3.6915059, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902799, "lat": 40.4414085, "lon": -3.6917773, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902800, "lat": 40.4411712, "lon": -3.6919648, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902801, "lat": 40.441064, "lon": -3.691946}, {"type": "node", "id": 25902804, "lat": 40.441522, "lon": -3.6915663, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 25902805, "lat": 40.4415042, "lon": -3.6913629, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 25902806, "lat": 40.4421461, "lon": -3.6917646, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902807, "lat": 40.4413852, "lon": -3.6923344}, {"type": "node", "id": 25902808, "lat": 40.4412995, "lon": -3.6924408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902821, "lat": 40.4414315, "lon": -3.6921376, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902824, "lat": 40.4412497, "lon": -3.6921662, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902826, "lat": 40.442092, "lon": -3.6919555, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25902845, "lat": 40.4436309, "lon": -3.6916357, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902846, "lat": 40.4432166, "lon": -3.6916772, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902847, "lat": 40.4433727, "lon": -3.6918419, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902848, "lat": 40.4435377, "lon": -3.691821, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902855, "lat": 40.4434832, "lon": -3.693081, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902856, "lat": 40.4436902, "lon": -3.6911783, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 25902862, "lat": 40.4450332, "lon": -3.6912503, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902866, "lat": 40.4453368, "lon": -3.690998, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902874, "lat": 40.4455084, "lon": -3.6916348, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25902883, "lat": 40.4458372, "lon": -3.691165, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902884, "lat": 40.4460498, "lon": -3.6908355, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902885, "lat": 40.4463077, "lon": -3.6908068, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25902886, "lat": 40.4463656, "lon": -3.6910318, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902890, "lat": 40.4463504, "lon": -3.6916562, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902892, "lat": 40.4461371, "lon": -3.691609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902894, "lat": 40.4461065, "lon": -3.6914894, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902895, "lat": 40.4464894, "lon": -3.6913474, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902900, "lat": 40.4461443, "lon": -3.6894025}, {"type": "node", "id": 25902901, "lat": 40.4463575, "lon": -3.6933399}, {"type": "node", "id": 25902909, "lat": 40.446534, "lon": -3.6930975, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 25902910, "lat": 40.4464156, "lon": -3.6931159, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902921, "lat": 40.4470325, "lon": -3.6915869, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902923, "lat": 40.4487513, "lon": -3.6914322, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902929, "lat": 40.4491842, "lon": -3.6914199, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 25902931, "lat": 40.4492011, "lon": -3.6904251}, {"type": "node", "id": 25902943, "lat": 40.447223, "lon": -3.6906008, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902945, "lat": 40.4475987, "lon": -3.6905724, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902946, "lat": 40.4510544, "lon": -3.6902444}, {"type": "node", "id": 25902947, "lat": 40.4515696, "lon": -3.6911692, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25902949, "lat": 40.451657, "lon": -3.6908029, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25902961, "lat": 40.4518187, "lon": -3.690207, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903269, "lat": 40.4346597, "lon": -3.6887525, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903270, "lat": 40.434558, "lon": -3.6886088, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903271, "lat": 40.4329807, "lon": -3.6884833, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903272, "lat": 40.4329988, "lon": -3.6883531, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903282, "lat": 40.4305821, "lon": -3.6890968}, {"type": "node", "id": 25903287, "lat": 40.4293864, "lon": -3.6894134, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903288, "lat": 40.4293782, "lon": -3.6892956, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903289, "lat": 40.4279813, "lon": -3.6897847, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903290, "lat": 40.4279775, "lon": -3.6896608, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903291, "lat": 40.4256842, "lon": -3.6903917, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903292, "lat": 40.4258978, "lon": -3.6902051, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25903296, "lat": 40.4255978, "lon": -3.6899339, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903297, "lat": 40.4246423, "lon": -3.6906456, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903298, "lat": 40.4246891, "lon": -3.6904361, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903299, "lat": 40.423998, "lon": -3.6907533, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903302, "lat": 40.4245306, "lon": -3.6905111, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903307, "lat": 40.4231574, "lon": -3.6912723, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903309, "lat": 40.4231354, "lon": -3.6911416, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903324, "lat": 40.422425, "lon": -3.6916197, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 25903333, "lat": 40.4224122, "lon": -3.6914949, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25903334, "lat": 40.4218837, "lon": -3.6918609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903336, "lat": 40.4218734, "lon": -3.6917415, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903337, "lat": 40.4203006, "lon": -3.6925731, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903338, "lat": 40.4201623, "lon": -3.6925073, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903357, "lat": 40.4385625, "lon": -3.6909677, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903358, "lat": 40.4397573, "lon": -3.6913711, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25903359, "lat": 40.4404709, "lon": -3.6916461, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25903360, "lat": 40.4404173, "lon": -3.6914232, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906098, "lat": 40.4281261, "lon": -3.6993664, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906102, "lat": 40.4274853, "lon": -3.6982352, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906103, "lat": 40.4280749, "lon": -3.6980502, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906104, "lat": 40.4282023, "lon": -3.6980599, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906105, "lat": 40.427886, "lon": -3.6971498, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906107, "lat": 40.4271084, "lon": -3.6976019, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906108, "lat": 40.4273042, "lon": -3.6979548, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906109, "lat": 40.4269178, "lon": -3.6984819, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906111, "lat": 40.4265715, "lon": -3.6968128, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906112, "lat": 40.4259731, "lon": -3.6971958, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906113, "lat": 40.4269353, "lon": -3.6960447, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906116, "lat": 40.4275732, "lon": -3.6956967, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906117, "lat": 40.4277374, "lon": -3.6955312, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906118, "lat": 40.4279632, "lon": -3.6956377, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906121, "lat": 40.4279256, "lon": -3.6961224, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 25906122, "lat": 40.4277594, "lon": -3.6961642, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906124, "lat": 40.4265916, "lon": -3.695292, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906125, "lat": 40.4258923, "lon": -3.6959231, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906127, "lat": 40.4255346, "lon": -3.6954711, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906128, "lat": 40.4263548, "lon": -3.6947913, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906129, "lat": 40.4261113, "lon": -3.6942911, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906130, "lat": 40.4251755, "lon": -3.694989, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906131, "lat": 40.4258454, "lon": -3.6937164, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906132, "lat": 40.4271361, "lon": -3.694768}, {"type": "node", "id": 25906133, "lat": 40.4272055, "lon": -3.6946875, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 25906134, "lat": 40.4274398, "lon": -3.6952097, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 25906135, "lat": 40.4273831, "lon": -3.6952637, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 25906136, "lat": 40.4266661, "lon": -3.6938711}, {"type": "node", "id": 25906137, "lat": 40.4267604, "lon": -3.6938292}, {"type": "node", "id": 25906138, "lat": 40.4264961, "lon": -3.693507, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906139, "lat": 40.4261147, "lon": -3.6927492}, {"type": "node", "id": 25906140, "lat": 40.4256672, "lon": -3.6929399, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906141, "lat": 40.4260585, "lon": -3.6923994}, {"type": "node", "id": 25906143, "lat": 40.4274035, "lon": -3.6937766, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906144, "lat": 40.4273322, "lon": -3.6922023, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906145, "lat": 40.4268527, "lon": -3.6922673, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906150, "lat": 40.4254922, "lon": -3.6921521, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906153, "lat": 40.424841, "lon": -3.693255, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906175, "lat": 40.4238631, "lon": -3.6944102, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906196, "lat": 40.4245556, "lon": -3.6954502, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906200, "lat": 40.4250011, "lon": -3.6959572, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906204, "lat": 40.4243036, "lon": -3.6968781, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906209, "lat": 40.4243366, "lon": -3.69699, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906212, "lat": 40.424433, "lon": -3.6972609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906216, "lat": 40.4246876, "lon": -3.6970308, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906221, "lat": 40.4250492, "lon": -3.6977867, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906225, "lat": 40.4241632, "lon": -3.6964095, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906265, "lat": 40.4230961, "lon": -3.6955759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906266, "lat": 40.4236766, "lon": -3.695544, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906267, "lat": 40.4230941, "lon": -3.6952276, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906268, "lat": 40.4236412, "lon": -3.6950547, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906269, "lat": 40.4225342, "lon": -3.6956075, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906270, "lat": 40.4219361, "lon": -3.6956524, "tags": {"highway": "traffic_signals", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 25906271, "lat": 40.423743, "lon": -3.6965046, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906272, "lat": 40.4237875, "lon": -3.6972172, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906273, "lat": 40.4230007, "lon": -3.6975802, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906274, "lat": 40.4239442, "lon": -3.6976776, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906275, "lat": 40.4232162, "lon": -3.6981721, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906276, "lat": 40.4234533, "lon": -3.6987951, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906277, "lat": 40.4237089, "lon": -3.6986266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906281, "lat": 40.4229339, "lon": -3.6973759, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906286, "lat": 40.4231553, "lon": -3.6966562, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906287, "lat": 40.4224938, "lon": -3.6986906, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906288, "lat": 40.4227186, "lon": -3.6993179, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906289, "lat": 40.4232299, "lon": -3.6989408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906290, "lat": 40.4236109, "lon": -3.7006635}, {"type": "node", "id": 25906292, "lat": 40.4237939, "lon": -3.7006505}, {"type": "node", "id": 25906293, "lat": 40.4239858, "lon": -3.7006522, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25906294, "lat": 40.4239198, "lon": -3.6995051, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906295, "lat": 40.4242584, "lon": -3.7006617}, {"type": "node", "id": 25906296, "lat": 40.4243542, "lon": -3.700669}, {"type": "node", "id": 25906297, "lat": 40.4245153, "lon": -3.6998664}, {"type": "node", "id": 25906298, "lat": 40.4245486, "lon": -3.6996944, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906299, "lat": 40.4244217, "lon": -3.699391, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906300, "lat": 40.4245788, "lon": -3.6980909, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906301, "lat": 40.4247336, "lon": -3.6979921, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906302, "lat": 40.4254007, "lon": -3.7008258, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 25906304, "lat": 40.4256607, "lon": -3.7002501}, {"type": "node", "id": 25906306, "lat": 40.4257818, "lon": -3.6999818}, {"type": "node", "id": 25906307, "lat": 40.4259737, "lon": -3.6995567, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906367, "lat": 40.4211236, "lon": -3.6956591, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906378, "lat": 40.4190271, "lon": -3.6955619, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 25906420, "lat": 40.4205457, "lon": -3.7008834, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906421, "lat": 40.420994, "lon": -3.7006147, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906429, "lat": 40.4218928, "lon": -3.6999293, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906431, "lat": 40.4216722, "lon": -3.6992596, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25934317, "lat": 40.4279981, "lon": -3.6953247, "tags": {"highway": "crossing"}}, {"type": "node", "id": 25934320, "lat": 40.4279563, "lon": -3.6954449}, {"type": "node", "id": 25934323, "lat": 40.4282007, "lon": -3.6937183, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 25934324, "lat": 40.4281198, "lon": -3.6920997}, {"type": "node", "id": 25934447, "lat": 40.428812, "lon": -3.6960444}, {"type": "node", "id": 25934453, "lat": 40.4282104, "lon": -3.6958072}, {"type": "node", "id": 25934459, "lat": 40.4280527, "lon": -3.6959013, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25934465, "lat": 40.4286458, "lon": -3.6972694}, {"type": "node", "id": 25934470, "lat": 40.4285253, "lon": -3.6982115}, {"type": "node", "id": 25934506, "lat": 40.4291147, "lon": -3.6973894}, {"type": "node", "id": 25934520, "lat": 40.4296283, "lon": -3.6975379}, {"type": "node", "id": 25934522, "lat": 40.4295226, "lon": -3.6987132}, {"type": "node", "id": 25934524, "lat": 40.4289699, "lon": -3.6984296}, {"type": "node", "id": 25934540, "lat": 40.4294362, "lon": -3.6996746}, {"type": "node", "id": 25934541, "lat": 40.4293559, "lon": -3.7005957}, {"type": "node", "id": 25934545, "lat": 40.4300031, "lon": -3.7007394, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25934548, "lat": 40.4294422, "lon": -3.7013993}, {"type": "node", "id": 25934553, "lat": 40.4290461, "lon": -3.7018175}, {"type": "node", "id": 25934556, "lat": 40.4291792, "lon": -3.7022467}, {"type": "node", "id": 25934572, "lat": 40.4293825, "lon": -3.7024674, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25934577, "lat": 40.4301767, "lon": -3.7028151}, {"type": "node", "id": 25934578, "lat": 40.4304175, "lon": -3.7017533}, {"type": "node", "id": 25934579, "lat": 40.4299221, "lon": -3.7035436}, {"type": "node", "id": 25934580, "lat": 40.4301209, "lon": -3.7045927}, {"type": "node", "id": 25934823, "lat": 40.4298328, "lon": -3.7056016}, {"type": "node", "id": 25934824, "lat": 40.4298723, "lon": -3.7057738, "tags": {"highway": "give_way"}}, {"type": "node", "id": 25934825, "lat": 40.4298638, "lon": -3.7058827}, {"type": "node", "id": 25934826, "lat": 40.4297966, "lon": -3.7060457}, {"type": "node", "id": 25934828, "lat": 40.429686, "lon": -3.7061387}, {"type": "node", "id": 25934829, "lat": 40.4295867, "lon": -3.7061601}, {"type": "node", "id": 25934830, "lat": 40.4294304, "lon": -3.7060933}, {"type": "node", "id": 25934832, "lat": 40.4293517, "lon": -3.7059832}, {"type": "node", "id": 25934833, "lat": 40.4293116, "lon": -3.7058211}, {"type": "node", "id": 25934835, "lat": 40.4293127, "lon": -3.7057469}, {"type": "node", "id": 25934837, "lat": 40.4293441, "lon": -3.7056164}, {"type": "node", "id": 25934841, "lat": 40.4291227, "lon": -3.7059619, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 25934849, "lat": 40.4289125, "lon": -3.7060167, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25934855, "lat": 40.4283555, "lon": -3.7061785}, {"type": "node", "id": 25934856, "lat": 40.4295011, "lon": -3.7054416}, {"type": "node", "id": 25934861, "lat": 40.4295988, "lon": -3.7054227}, {"type": "node", "id": 25934863, "lat": 40.4297497, "lon": -3.7054859}, {"type": "node", "id": 25934875, "lat": 40.4294752, "lon": -3.7052718, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935033, "lat": 40.4297293, "lon": -3.7077323}, {"type": "node", "id": 25935035, "lat": 40.4298219, "lon": -3.7076347}, {"type": "node", "id": 25935043, "lat": 40.4286979, "lon": -3.7078915}, {"type": "node", "id": 25935044, "lat": 40.428749, "lon": -3.7076366, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 25935046, "lat": 40.4288531, "lon": -3.7073711}, {"type": "node", "id": 25935048, "lat": 40.4289144, "lon": -3.7071056}, {"type": "node", "id": 25935049, "lat": 40.4289511, "lon": -3.7068106}, {"type": "node", "id": 25935051, "lat": 40.4289491, "lon": -3.7064967}, {"type": "node", "id": 25935058, "lat": 40.4298441, "lon": -3.7088944, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935060, "lat": 40.4299492, "lon": -3.7089785, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935062, "lat": 40.4288181, "lon": -3.7095138, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 25935066, "lat": 40.4290392, "lon": -3.7106322}, {"type": "node", "id": 25935069, "lat": 40.4300097, "lon": -3.710511}, {"type": "node", "id": 25935071, "lat": 40.4301213, "lon": -3.7105268, "tags": {"highway": "crossing"}}, {"type": "node", "id": 25935073, "lat": 40.4311227, "lon": -3.7104643}, {"type": "node", "id": 25935074, "lat": 40.4301395, "lon": -3.7089994}, {"type": "node", "id": 25935075, "lat": 40.431067, "lon": -3.7089242}, {"type": "node", "id": 25935134, "lat": 40.4316847, "lon": -3.7104303}, {"type": "node", "id": 25935136, "lat": 40.4317362, "lon": -3.7117185}, {"type": "node", "id": 25935138, "lat": 40.4311025, "lon": -3.7117837}, {"type": "node", "id": 25935139, "lat": 40.4302384, "lon": -3.7118605}, {"type": "node", "id": 25935141, "lat": 40.4301627, "lon": -3.7119214}, {"type": "node", "id": 25935142, "lat": 40.4312218, "lon": -3.7134567}, {"type": "node", "id": 25935144, "lat": 40.4318003, "lon": -3.713409}, {"type": "node", "id": 25935146, "lat": 40.4304137, "lon": -3.713524}, {"type": "node", "id": 25935149, "lat": 40.4303333, "lon": -3.7138466}, {"type": "node", "id": 25935174, "lat": 40.4294838, "lon": -3.7124171}, {"type": "node", "id": 25935514, "lat": 40.4299564, "lon": -3.7141601}, {"type": "node", "id": 25935515, "lat": 40.4289237, "lon": -3.7149592}, {"type": "node", "id": 25935516, "lat": 40.4288591, "lon": -3.7150989}, {"type": "node", "id": 25935517, "lat": 40.4305221, "lon": -3.7146551}, {"type": "node", "id": 25935519, "lat": 40.4306314, "lon": -3.7157961}, {"type": "node", "id": 25935521, "lat": 40.430667, "lon": -3.7162136}, {"type": "node", "id": 25935522, "lat": 40.4305604, "lon": -3.7161447}, {"type": "node", "id": 25935523, "lat": 40.4306489, "lon": -3.7163298}, {"type": "node", "id": 25935524, "lat": 40.4305519, "lon": -3.7162708}, {"type": "node", "id": 25935531, "lat": 40.4316681, "lon": -3.717063}, {"type": "node", "id": 25935532, "lat": 40.4316461, "lon": -3.7169074}, {"type": "node", "id": 25935534, "lat": 40.4307846, "lon": -3.7191171}, {"type": "node", "id": 25935540, "lat": 40.4297103, "lon": -3.7157125}, {"type": "node", "id": 25935554, "lat": 40.4303837, "lon": -3.7200824}, {"type": "node", "id": 25935574, "lat": 40.428856, "lon": -3.7222236}, {"type": "node", "id": 25935576, "lat": 40.4294773, "lon": -3.7222651}, {"type": "node", "id": 26025840, "lat": 40.4391067, "lon": -3.716382, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025841, "lat": 40.4390662, "lon": -3.7152176}, {"type": "node", "id": 26025842, "lat": 40.4390149, "lon": -3.7141033}, {"type": "node", "id": 26025843, "lat": 40.4389609, "lon": -3.7128532}, {"type": "node", "id": 26025844, "lat": 40.4388631, "lon": -3.7111176}, {"type": "node", "id": 26025845, "lat": 40.4388661, "lon": -3.7099342}, {"type": "node", "id": 26025846, "lat": 40.4387991, "lon": -3.708276}, {"type": "node", "id": 26025847, "lat": 40.4378076, "lon": -3.7164675}, {"type": "node", "id": 26025848, "lat": 40.4377547, "lon": -3.7153128}, {"type": "node", "id": 26025849, "lat": 40.4377034, "lon": -3.7141866}, {"type": "node", "id": 26025850, "lat": 40.4376485, "lon": -3.712973}, {"type": "node", "id": 26025851, "lat": 40.4375696, "lon": -3.7112259}, {"type": "node", "id": 26025852, "lat": 40.4375211, "lon": -3.7100371}, {"type": "node", "id": 26025853, "lat": 40.4374404, "lon": -3.7083919}, {"type": "node", "id": 26025854, "lat": 40.4365646, "lon": -3.7165517}, {"type": "node", "id": 26025855, "lat": 40.4365123, "lon": -3.7154042}, {"type": "node", "id": 26025856, "lat": 40.4364487, "lon": -3.7142674}, {"type": "node", "id": 26025857, "lat": 40.4363963, "lon": -3.7130525, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025858, "lat": 40.4363092, "lon": -3.7113317, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025859, "lat": 40.4362474, "lon": -3.7101179}, {"type": "node", "id": 26025860, "lat": 40.4361752, "lon": -3.7084993, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025861, "lat": 40.4360997, "lon": -3.7067718}, {"type": "node", "id": 26025862, "lat": 40.4354674, "lon": -3.7166262, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26025863, "lat": 40.4354183, "lon": -3.715468}, {"type": "node", "id": 26025864, "lat": 40.4353703, "lon": -3.7143358}, {"type": "node", "id": 26025865, "lat": 40.43532, "lon": -3.7131488, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025866, "lat": 40.4352468, "lon": -3.7114209}, {"type": "node", "id": 26025867, "lat": 40.4351966, "lon": -3.7102002}, {"type": "node", "id": 26025869, "lat": 40.4351101, "lon": -3.7085897, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025870, "lat": 40.4350194, "lon": -3.7068517}, {"type": "node", "id": 26025871, "lat": 40.4344753, "lon": -3.7166938, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025872, "lat": 40.4344021, "lon": -3.7155502}, {"type": "node", "id": 26025873, "lat": 40.4343299, "lon": -3.7144047}, {"type": "node", "id": 26025875, "lat": 40.4342546, "lon": -3.7132186}, {"type": "node", "id": 26025876, "lat": 40.4341459, "lon": -3.7115067}, {"type": "node", "id": 26025877, "lat": 40.4340681, "lon": -3.7102813}, {"type": "node", "id": 26025878, "lat": 40.4339648, "lon": -3.7086841, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025879, "lat": 40.4338572, "lon": -3.7069611}, {"type": "node", "id": 26025880, "lat": 40.4331162, "lon": -3.7167863}, {"type": "node", "id": 26025881, "lat": 40.4330872, "lon": -3.7156202}, {"type": "node", "id": 26025882, "lat": 40.4330529, "lon": -3.7144872}, {"type": "node", "id": 26025883, "lat": 40.4330161, "lon": -3.7133155}, {"type": "node", "id": 26025884, "lat": 40.4329623, "lon": -3.7116007}, {"type": "node", "id": 26025885, "lat": 40.432161, "lon": -3.7124657}, {"type": "node", "id": 26025886, "lat": 40.4325412, "lon": -3.7133514}, {"type": "node", "id": 26025887, "lat": 40.432923, "lon": -3.7103471}, {"type": "node", "id": 26025888, "lat": 40.4328585, "lon": -3.7087753}, {"type": "node", "id": 26025889, "lat": 40.4318876, "lon": -3.7157104}, {"type": "node", "id": 26025890, "lat": 40.431844, "lon": -3.7145595, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26025891, "lat": 40.4316031, "lon": -3.7088787}, {"type": "node", "id": 26025892, "lat": 40.4319316, "lon": -3.7168691, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 26025893, "lat": 40.4347823, "lon": -3.7131785}, {"type": "node", "id": 26025894, "lat": 40.4347333, "lon": -3.7114642, "tags": {"highway": "crossing"}}, {"type": "node", "id": 26025895, "lat": 40.4348317, "lon": -3.7143723}, {"type": "node", "id": 26025896, "lat": 40.4336158, "lon": -3.7103124}, {"type": "node", "id": 26025897, "lat": 40.4334742, "lon": -3.7087246}, {"type": "node", "id": 26025901, "lat": 40.4392593, "lon": -3.716566}, {"type": "node", "id": 26025902, "lat": 40.4391965, "lon": -3.7152088}, {"type": "node", "id": 26025903, "lat": 40.4391499, "lon": -3.7140934}, {"type": "node", "id": 26025904, "lat": 40.4390999, "lon": -3.7128416}, {"type": "node", "id": 26025906, "lat": 40.4329702, "lon": -3.7118524}, {"type": "node", "id": 26025907, "lat": 40.4317767, "lon": -3.7127869}, {"type": "node", "id": 26058790, "lat": 40.424296, "lon": -3.7018755}, {"type": "node", "id": 26058801, "lat": 40.4249468, "lon": -3.7019986}, {"type": "node", "id": 26058802, "lat": 40.4246714, "lon": -3.7032496}, {"type": "node", "id": 26058803, "lat": 40.4244763, "lon": -3.7025097}, {"type": "node", "id": 26058804, "lat": 40.4238382, "lon": -3.7030487}, {"type": "node", "id": 26058806, "lat": 40.4241223, "lon": -3.7037749}, {"type": "node", "id": 26058807, "lat": 40.4243588, "lon": -3.7043792}, {"type": "node", "id": 26058808, "lat": 40.4252236, "lon": -3.7031147}, {"type": "node", "id": 26058809, "lat": 40.4251449, "lon": -3.7027971}, {"type": "node", "id": 26058811, "lat": 40.4254399, "lon": -3.7039151}, {"type": "node", "id": 26058812, "lat": 40.4254786, "lon": -3.704241}, {"type": "node", "id": 26066549, "lat": 40.4255728, "lon": -3.705039}, {"type": "node", "id": 26066550, "lat": 40.4257246, "lon": -3.7072358}, {"type": "node", "id": 26066551, "lat": 40.4256802, "lon": -3.7066568}, {"type": "node", "id": 26066552, "lat": 40.4256317, "lon": -3.7060004}, {"type": "node", "id": 26066553, "lat": 40.4260868, "lon": -3.7070379}, {"type": "node", "id": 26066554, "lat": 40.4255659, "lon": -3.7073156}, {"type": "node", "id": 26066555, "lat": 40.4253396, "lon": -3.7073834}, {"type": "node", "id": 26066556, "lat": 40.425082, "lon": -3.7074215}, {"type": "node", "id": 26066557, "lat": 40.4251256, "lon": -3.7066205}, {"type": "node", "id": 26066558, "lat": 40.4249535, "lon": -3.7066244}, {"type": "node", "id": 26066559, "lat": 40.4250084, "lon": -3.7058799}, {"type": "node", "id": 26066560, "lat": 40.4250416, "lon": -3.7053819}, {"type": "node", "id": 26066561, "lat": 40.4251265, "lon": -3.7044266}, {"type": "node", "id": 26066562, "lat": 40.4248838, "lon": -3.7059232}, {"type": "node", "id": 26066563, "lat": 40.4242386, "lon": -3.7051736}, {"type": "node", "id": 26066564, "lat": 40.4240887, "lon": -3.7062896}, {"type": "node", "id": 26066566, "lat": 40.4238598, "lon": -3.7056302}, {"type": "node", "id": 26066571, "lat": 40.4239333, "lon": -3.7074116}, {"type": "node", "id": 26066572, "lat": 40.4243242, "lon": -3.7073916, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066573, "lat": 40.4242426, "lon": -3.7066205}, {"type": "node", "id": 26066574, "lat": 40.4237232, "lon": -3.7053087}, {"type": "node", "id": 26066576, "lat": 40.4232018, "lon": -3.7046553}, {"type": "node", "id": 26066577, "lat": 40.4229476, "lon": -3.7042807}, {"type": "node", "id": 26066578, "lat": 40.4232585, "lon": -3.7037973}, {"type": "node", "id": 26067258, "lat": 40.4251465, "lon": -3.7102944}, {"type": "node", "id": 26067259, "lat": 40.4249713, "lon": -3.7099568}, {"type": "node", "id": 26067260, "lat": 40.4248849, "lon": -3.709831}, {"type": "node", "id": 26067261, "lat": 40.4257323, "lon": -3.7093355}, {"type": "node", "id": 26067262, "lat": 40.4257292, "lon": -3.7092567}, {"type": "node", "id": 26067263, "lat": 40.4246602, "lon": -3.709143}, {"type": "node", "id": 26067265, "lat": 40.4256619, "lon": -3.7085088}, {"type": "node", "id": 26067266, "lat": 40.4262002, "lon": -3.708378}, {"type": "node", "id": 26067267, "lat": 40.426757, "lon": -3.7082559}, {"type": "node", "id": 26067268, "lat": 40.4274021, "lon": -3.7081269}, {"type": "node", "id": 26067269, "lat": 40.427968, "lon": -3.7080122, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067270, "lat": 40.428333, "lon": -3.7079615}, {"type": "node", "id": 26067271, "lat": 40.4256007, "lon": -3.7077741}, {"type": "node", "id": 26067272, "lat": 40.4271583, "lon": -3.7068894}, {"type": "node", "id": 26067273, "lat": 40.4274811, "lon": -3.7063529}, {"type": "node", "id": 26067274, "lat": 40.4261225, "lon": -3.7074728, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067275, "lat": 40.4266565, "lon": -3.707182, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067276, "lat": 40.4274588, "lon": -3.7067769}, {"type": "node", "id": 26067277, "lat": 40.4267097, "lon": -3.7077508}, {"type": "node", "id": 26067281, "lat": 40.4274245, "lon": -3.707533, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067282, "lat": 40.427164, "lon": -3.7075707}, {"type": "node", "id": 26067283, "lat": 40.4279957, "lon": -3.7074282}, {"type": "node", "id": 26067284, "lat": 40.4283419, "lon": -3.7073703}, {"type": "node", "id": 26067285, "lat": 40.4258277, "lon": -3.7098245}, {"type": "node", "id": 26067286, "lat": 40.4254768, "lon": -3.7111194}, {"type": "node", "id": 26067287, "lat": 40.4261562, "lon": -3.7106507}, {"type": "node", "id": 26067288, "lat": 40.4256929, "lon": -3.7116544}, {"type": "node", "id": 26067289, "lat": 40.4263719, "lon": -3.7111713}, {"type": "node", "id": 26067290, "lat": 40.4258038, "lon": -3.7119146}, {"type": "node", "id": 26067291, "lat": 40.426305, "lon": -3.71259}, {"type": "node", "id": 26067292, "lat": 40.4267843, "lon": -3.7121814}, {"type": "node", "id": 26067294, "lat": 40.4253403, "lon": -3.7119618}, {"type": "node", "id": 26067298, "lat": 40.4258956, "lon": -3.7100138}, {"type": "node", "id": 26067300, "lat": 40.4279556, "lon": -3.7101312}, {"type": "node", "id": 26067301, "lat": 40.4287519, "lon": -3.7095557, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26067302, "lat": 40.4268832, "lon": -3.7093974}, {"type": "node", "id": 26067303, "lat": 40.4262829, "lon": -3.7093367, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067304, "lat": 40.4273154, "lon": -3.7094705, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 26067306, "lat": 40.4283086, "lon": -3.7095708}, {"type": "node", "id": 26067307, "lat": 40.4268951, "lon": -3.7096322, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067308, "lat": 40.4278717, "lon": -3.7098977}, {"type": "node", "id": 26067309, "lat": 40.4269564, "lon": -3.7102993, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 26067310, "lat": 40.428271, "lon": -3.7099242}, {"type": "node", "id": 26067311, "lat": 40.4285866, "lon": -3.7107374, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067313, "lat": 40.4270677, "lon": -3.7094181, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 26067881, "lat": 40.426356, "lon": -3.7132546}, {"type": "node", "id": 26067884, "lat": 40.4270654, "lon": -3.7136282}, {"type": "node", "id": 26067885, "lat": 40.4271671, "lon": -3.7138322}, {"type": "node", "id": 26067887, "lat": 40.4275452, "lon": -3.7138167, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26067888, "lat": 40.4284636, "lon": -3.7131581}, {"type": "node", "id": 26068006, "lat": 40.425163, "lon": -3.7123967}, {"type": "node", "id": 26080658, "lat": 40.4255872, "lon": -3.7167587}, {"type": "node", "id": 26080663, "lat": 40.4252498, "lon": -3.7172006}, {"type": "node", "id": 26080688, "lat": 40.4247524, "lon": -3.7159496}, {"type": "node", "id": 26080755, "lat": 40.4254769, "lon": -3.7182799}, {"type": "node", "id": 26080756, "lat": 40.4255719, "lon": -3.7184524}, {"type": "node", "id": 26080757, "lat": 40.425781, "lon": -3.7186775}, {"type": "node", "id": 26080762, "lat": 40.4276385, "lon": -3.7204864}, {"type": "node", "id": 26080763, "lat": 40.4268249, "lon": -3.7196945}, {"type": "node", "id": 26080778, "lat": 40.4282605, "lon": -3.7146265}, {"type": "node", "id": 26080779, "lat": 40.4277051, "lon": -3.714219}, {"type": "node", "id": 26080781, "lat": 40.4266075, "lon": -3.7142826}, {"type": "node", "id": 26080782, "lat": 40.4267119, "lon": -3.7143698, "tags": {"amenity": "parking", "name": "Princesa 25", "parking": "underground"}}, {"type": "node", "id": 26153007, "lat": 40.4347849, "lon": -3.7126572}, {"type": "node", "id": 26153008, "lat": 40.4347844, "lon": -3.7125622}, {"type": "node", "id": 26153113, "lat": 40.4389375, "lon": -3.7131055, "tags": {"name": "Cea Berm\u00fadez impares-Guzman el Bueno", "railway": "subway_entrance"}}, {"type": "node", "id": 26153114, "lat": 40.4391583, "lon": -3.7130909, "tags": {"name": "Cea Berm\u00fadez pares-Guzman el Bueno", "railway": "subway_entrance"}}, {"type": "node", "id": 26211528, "lat": 40.4355418, "lon": -3.7182714}, {"type": "node", "id": 26211530, "lat": 40.4366445, "lon": -3.7180825}, {"type": "node", "id": 26211532, "lat": 40.4378778, "lon": -3.7178553}, {"type": "node", "id": 26211534, "lat": 40.4389881, "lon": -3.7174892}, {"type": "node", "id": 26211537, "lat": 40.4390784, "lon": -3.7173391}, {"type": "node", "id": 26211539, "lat": 40.4392848, "lon": -3.7173036}, {"type": "node", "id": 26211541, "lat": 40.4393423, "lon": -3.7173415}, {"type": "node", "id": 26211543, "lat": 40.4394086, "lon": -3.7174325}, {"type": "node", "id": 26211545, "lat": 40.4394251, "lon": -3.7174736}, {"type": "node", "id": 26211547, "lat": 40.4393996, "lon": -3.7177781}, {"type": "node", "id": 26211549, "lat": 40.4393258, "lon": -3.7178651}, {"type": "node", "id": 26211551, "lat": 40.4392313, "lon": -3.7179045, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 26211553, "lat": 40.4391327, "lon": -3.7178892}, {"type": "node", "id": 26211555, "lat": 40.439022, "lon": -3.7177847}, {"type": "node", "id": 26211558, "lat": 40.4389737, "lon": -3.7175842}, {"type": "node", "id": 26211561, "lat": 40.4390242, "lon": -3.7174048}, {"type": "node", "id": 26211563, "lat": 40.4394343, "lon": -3.7176864}, {"type": "node", "id": 26211576, "lat": 40.4400804, "lon": -3.7151482}, {"type": "node", "id": 26211577, "lat": 40.4405462, "lon": -3.7156591}, {"type": "node", "id": 26211580, "lat": 40.4400697, "lon": -3.714034}, {"type": "node", "id": 26212606, "lat": 40.4392912, "lon": -3.7123722, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26212608, "lat": 40.4391776, "lon": -3.7123237}, {"type": "node", "id": 26212609, "lat": 40.4390511, "lon": -3.7123153, "tags": {"highway": "give_way"}}, {"type": "node", "id": 26212610, "lat": 40.4390338, "lon": -3.7122851}, {"type": "node", "id": 26212611, "lat": 40.4389864, "lon": -3.7111123}, {"type": "node", "id": 26212612, "lat": 40.4396449, "lon": -3.7110631}, {"type": "node", "id": 26212613, "lat": 40.4395025, "lon": -3.7118202}, {"type": "node", "id": 26212614, "lat": 40.4392529, "lon": -3.7122947}, {"type": "node", "id": 26212616, "lat": 40.4396842, "lon": -3.7111327}, {"type": "node", "id": 26212617, "lat": 40.4392428, "lon": -3.7128296, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26212618, "lat": 40.4389305, "lon": -3.7125857}, {"type": "node", "id": 26212619, "lat": 40.4391981, "lon": -3.7125244}, {"type": "node", "id": 26212621, "lat": 40.4389573, "lon": -3.7120043}, {"type": "node", "id": 26212622, "lat": 40.4388872, "lon": -3.7104722}, {"type": "node", "id": 26242734, "lat": 40.4344299, "lon": -3.7069128}, {"type": "node", "id": 26242736, "lat": 40.4346192, "lon": -3.7086302}, {"type": "node", "id": 26242738, "lat": 40.4374311, "lon": -3.7080403, "tags": {"noexit": "yes"}}, {"type": "node", "id": 26242740, "lat": 40.4365444, "lon": -3.7067343, "tags": {"barrier": "gate", "name": "SelfieWallFiction", "tourism": "artwork"}}, {"type": "node", "id": 26341673, "lat": 40.4200052, "lon": -3.7011016, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 26412916, "lat": 40.4510621, "lon": -3.7033586}, {"type": "node", "id": 26413032, "lat": 40.4505383, "lon": -3.7034373}, {"type": "node", "id": 26413033, "lat": 40.4505302, "lon": -3.703438, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413048, "lat": 40.4499801, "lon": -3.7035192, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413061, "lat": 40.4494289, "lon": -3.7036001}, {"type": "node", "id": 26413086, "lat": 40.4486439, "lon": -3.7037164}, {"type": "node", "id": 26413137, "lat": 40.4474556, "lon": -3.7038912, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26413138, "lat": 40.4470434, "lon": -3.7042558}, {"type": "node", "id": 26413139, "lat": 40.4472146, "lon": -3.70405}, {"type": "node", "id": 26413141, "lat": 40.4471898, "lon": -3.7037492, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 26413142, "lat": 40.4471166, "lon": -3.7036522}, {"type": "node", "id": 26413144, "lat": 40.4469749, "lon": -3.703596}, {"type": "node", "id": 26413145, "lat": 40.4467592, "lon": -3.703753}, {"type": "node", "id": 26413152, "lat": 40.4467279, "lon": -3.7040132}, {"type": "node", "id": 26413156, "lat": 40.4471506, "lon": -3.7041747}, {"type": "node", "id": 26413323, "lat": 40.4468083, "lon": -3.7036778}, {"type": "node", "id": 26413324, "lat": 40.446862, "lon": -3.7042316, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 26413356, "lat": 40.4454648, "lon": -3.7039947, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413358, "lat": 40.4460506, "lon": -3.7039736}, {"type": "node", "id": 26413360, "lat": 40.4461641, "lon": -3.7037817, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 26413361, "lat": 40.4461163, "lon": -3.7035488}, {"type": "node", "id": 26413364, "lat": 40.4454132, "lon": -3.7032396, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413367, "lat": 40.4443031, "lon": -3.7027553, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413368, "lat": 40.444347, "lon": -3.7040353}, {"type": "node", "id": 26413513, "lat": 40.4432763, "lon": -3.7040709, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413522, "lat": 40.4431812, "lon": -3.7022696, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413576, "lat": 40.4423162, "lon": -3.7040979}, {"type": "node", "id": 26413579, "lat": 40.4421362, "lon": -3.7041032}, {"type": "node", "id": 26413581, "lat": 40.4421468, "lon": -3.7043999}, {"type": "node", "id": 26413583, "lat": 40.4421979, "lon": -3.7047786}, {"type": "node", "id": 26413584, "lat": 40.442357, "lon": -3.7049743}, {"type": "node", "id": 26413585, "lat": 40.4423515, "lon": -3.7048338, "tags": {"crossing": "uncontrolled", "highway": "crossing", "source": "Bing", "tactile_paving": "yes"}}, {"type": "node", "id": 26413586, "lat": 40.4420104, "lon": -3.70485, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26413587, "lat": 40.4420142, "lon": -3.7017696}, {"type": "node", "id": 26413595, "lat": 40.4418977, "lon": -3.7041087}, {"type": "node", "id": 26485808, "lat": 40.420186, "lon": -3.6892902}, {"type": "node", "id": 26485809, "lat": 40.4202684, "lon": -3.6894874, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 26513047, "lat": 40.4211459, "lon": -3.6871766}, {"type": "node", "id": 26513061, "lat": 40.4217567, "lon": -3.6870813}, {"type": "node", "id": 26513067, "lat": 40.4224667, "lon": -3.686977}, {"type": "node", "id": 26513072, "lat": 40.4239576, "lon": -3.6881247}, {"type": "node", "id": 26513085, "lat": 40.4238985, "lon": -3.6867635}, {"type": "node", "id": 26513097, "lat": 40.4210518, "lon": -3.6858532}, {"type": "node", "id": 26513105, "lat": 40.4216958, "lon": -3.6857646}, {"type": "node", "id": 26513111, "lat": 40.4224254, "lon": -3.6856854}, {"type": "node", "id": 26513117, "lat": 40.4238298, "lon": -3.6855316}, {"type": "node", "id": 26513124, "lat": 40.423112, "lon": -3.6856074}, {"type": "node", "id": 26513132, "lat": 40.4230532, "lon": -3.6842952}, {"type": "node", "id": 26513137, "lat": 40.422345, "lon": -3.6843605}, {"type": "node", "id": 26513145, "lat": 40.4216415, "lon": -3.6844209}, {"type": "node", "id": 26513155, "lat": 40.4237576, "lon": -3.6842383}, {"type": "node", "id": 26578942, "lat": 40.4319228, "lon": -3.7171105}, {"type": "node", "id": 26578943, "lat": 40.4322992, "lon": -3.7173983, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578944, "lat": 40.4330227, "lon": -3.7179129}, {"type": "node", "id": 26578945, "lat": 40.4339433, "lon": -3.7185671, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578946, "lat": 40.4341818, "lon": -3.7187427}, {"type": "node", "id": 26578947, "lat": 40.4351259, "lon": -3.7194039}, {"type": "node", "id": 26578950, "lat": 40.4314157, "lon": -3.7196737}, {"type": "node", "id": 26578951, "lat": 40.4309988, "lon": -3.7206561}, {"type": "node", "id": 26578954, "lat": 40.4329844, "lon": -3.7180218}, {"type": "node", "id": 26578956, "lat": 40.4320699, "lon": -3.7202608, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578957, "lat": 40.4316438, "lon": -3.7212525}, {"type": "node", "id": 26578958, "lat": 40.432752, "lon": -3.7178537, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26578960, "lat": 40.4349891, "lon": -3.7195011}, {"type": "node", "id": 26578961, "lat": 40.4349394, "lon": -3.7195778}, {"type": "node", "id": 26578962, "lat": 40.435167, "lon": -3.7202093}, {"type": "node", "id": 26578963, "lat": 40.4340388, "lon": -3.7216644}, {"type": "node", "id": 26578965, "lat": 40.4342779, "lon": -3.7180564, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26578966, "lat": 40.433254, "lon": -3.7173492}, {"type": "node", "id": 26578967, "lat": 40.4331107, "lon": -3.716895, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-23", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26578968, "lat": 40.4300712, "lon": -3.7228417}, {"type": "node", "id": 26578969, "lat": 40.4307282, "lon": -3.7234663}, {"type": "node", "id": 26578970, "lat": 40.4313261, "lon": -3.7240494}, {"type": "node", "id": 26578971, "lat": 40.4319054, "lon": -3.7246067}, {"type": "node", "id": 26578972, "lat": 40.4326718, "lon": -3.7253589}, {"type": "node", "id": 26578973, "lat": 40.433036, "lon": -3.723993}, {"type": "node", "id": 26578974, "lat": 40.4324159, "lon": -3.7233905}, {"type": "node", "id": 26578975, "lat": 40.4318256, "lon": -3.7228178}, {"type": "node", "id": 26578986, "lat": 40.4352371, "lon": -3.7204827}, {"type": "node", "id": 26578987, "lat": 40.4351843, "lon": -3.7211352}, {"type": "node", "id": 26578988, "lat": 40.4349212, "lon": -3.7215893}, {"type": "node", "id": 26578989, "lat": 40.4344848, "lon": -3.7230442}, {"type": "node", "id": 26578990, "lat": 40.4341739, "lon": -3.7244703}, {"type": "node", "id": 26579027, "lat": 40.4353382, "lon": -3.7195097}, {"type": "node", "id": 26579028, "lat": 40.435541, "lon": -3.7195221}, {"type": "node", "id": 26579030, "lat": 40.4358348, "lon": -3.7196376}, {"type": "node", "id": 26579032, "lat": 40.4368431, "lon": -3.7217931}, {"type": "node", "id": 26579033, "lat": 40.4372006, "lon": -3.7224476}, {"type": "node", "id": 26579034, "lat": 40.4378954, "lon": -3.723702}, {"type": "node", "id": 26579040, "lat": 40.4389991, "lon": -3.7181197, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 26579041, "lat": 40.4379929, "lon": -3.7195994}, {"type": "node", "id": 26579042, "lat": 40.4378481, "lon": -3.7197275}, {"type": "node", "id": 26579043, "lat": 40.4373838, "lon": -3.7203368}, {"type": "node", "id": 26579044, "lat": 40.4369037, "lon": -3.7207615}, {"type": "node", "id": 26579045, "lat": 40.4367706, "lon": -3.7209143}, {"type": "node", "id": 26579046, "lat": 40.4366725, "lon": -3.7211491}, {"type": "node", "id": 26579047, "lat": 40.436651, "lon": -3.721401}, {"type": "node", "id": 26579048, "lat": 40.4369694, "lon": -3.7221813}, {"type": "node", "id": 26579049, "lat": 40.437509, "lon": -3.7231935}, {"type": "node", "id": 26579050, "lat": 40.4382137, "lon": -3.7241014}, {"type": "node", "id": 26579076, "lat": 40.4384218, "lon": -3.7248093}, {"type": "node", "id": 26579077, "lat": 40.4375974, "lon": -3.723661}, {"type": "node", "id": 26579080, "lat": 40.4363162, "lon": -3.7214864}, {"type": "node", "id": 26579081, "lat": 40.4360235, "lon": -3.7210226}, {"type": "node", "id": 26579082, "lat": 40.4354763, "lon": -3.7199765}, {"type": "node", "id": 26579083, "lat": 40.4352291, "lon": -3.7196966, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:sound": "no"}}, {"type": "node", "id": 26579100, "lat": 40.4365531, "lon": -3.7214321}, {"type": "node", "id": 26579101, "lat": 40.4365809, "lon": -3.7211174}, {"type": "node", "id": 26579102, "lat": 40.4367639, "lon": -3.7207604}, {"type": "node", "id": 26579103, "lat": 40.4368566, "lon": -3.7206799}, {"type": "node", "id": 26579104, "lat": 40.4371744, "lon": -3.7203969}, {"type": "node", "id": 26579105, "lat": 40.4373172, "lon": -3.7202589}, {"type": "node", "id": 26579106, "lat": 40.4378637, "lon": -3.7194663}, {"type": "node", "id": 26579107, "lat": 40.438863, "lon": -3.717976, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 26579108, "lat": 40.4379047, "lon": -3.7195108}, {"type": "node", "id": 26579109, "lat": 40.4388528, "lon": -3.7181017}, {"type": "node", "id": 26579110, "lat": 40.4389014, "lon": -3.7181562}, {"type": "node", "id": 26579111, "lat": 40.4379451, "lon": -3.7195706}, {"type": "node", "id": 26579176, "lat": 40.4355278, "lon": -3.719375}, {"type": "node", "id": 26579177, "lat": 40.4356243, "lon": -3.7191283}, {"type": "node", "id": 26579178, "lat": 40.4356172, "lon": -3.718884}, {"type": "node", "id": 26579179, "lat": 40.4358026, "lon": -3.7193725}, {"type": "node", "id": 26579180, "lat": 40.4347887, "lon": -3.7183707}, {"type": "node", "id": 26579181, "lat": 40.4344194, "lon": -3.7181492, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26579182, "lat": 40.4342499, "lon": -3.7185721, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 26579183, "lat": 40.4341125, "lon": -3.7184726, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 26579184, "lat": 40.4343699, "lon": -3.7182809, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 26579187, "lat": 40.436812, "lon": -3.7205095}, {"type": "node", "id": 26579188, "lat": 40.4370887, "lon": -3.7210104}, {"type": "node", "id": 26579189, "lat": 40.4372324, "lon": -3.7212881}, {"type": "node", "id": 26579190, "lat": 40.4372437, "lon": -3.7214718}, {"type": "node", "id": 26579191, "lat": 40.4380149, "lon": -3.7233326}, {"type": "node", "id": 26579192, "lat": 40.4382594, "lon": -3.7237417}, {"type": "node", "id": 26579193, "lat": 40.4387445, "lon": -3.7244012}, {"type": "node", "id": 26579194, "lat": 40.4394894, "lon": -3.7253878}, {"type": "node", "id": 26579195, "lat": 40.4397031, "lon": -3.7258108}, {"type": "node", "id": 26808564, "lat": 40.4248448, "lon": -3.7097636}, {"type": "node", "id": 26808565, "lat": 40.425858, "lon": -3.7120325}, {"type": "node", "id": 26808566, "lat": 40.4265297, "lon": -3.7115519}, {"type": "node", "id": 27505287, "lat": 40.4269347, "lon": -3.7103088}, {"type": "node", "id": 27505288, "lat": 40.427195, "lon": -3.7101896}, {"type": "node", "id": 27506521, "lat": 40.4237924, "lon": -3.6941003}, {"type": "node", "id": 27508026, "lat": 40.4276324, "lon": -3.6960384, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 27508048, "lat": 40.4397098, "lon": -3.7175773, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27508159, "lat": 40.4395532, "lon": -3.7175613}, {"type": "node", "id": 27508160, "lat": 40.4395662, "lon": -3.7176454}, {"type": "node", "id": 27508161, "lat": 40.439711, "lon": -3.7176456, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27508162, "lat": 40.4398085, "lon": -3.7176192}, {"type": "node", "id": 27508163, "lat": 40.4399474, "lon": -3.7176476}, {"type": "node", "id": 27508173, "lat": 40.4428131, "lon": -3.7191595}, {"type": "node", "id": 27508174, "lat": 40.4433752, "lon": -3.719475}, {"type": "node", "id": 27508175, "lat": 40.4435383, "lon": -3.7194899}, {"type": "node", "id": 27508176, "lat": 40.4436111, "lon": -3.7194676}, {"type": "node", "id": 27508177, "lat": 40.4436835, "lon": -3.719389}, {"type": "node", "id": 27508178, "lat": 40.443607, "lon": -3.718503}, {"type": "node", "id": 27508179, "lat": 40.4436987, "lon": -3.7196579, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 27508180, "lat": 40.4436973, "lon": -3.719737}, {"type": "node", "id": 27508181, "lat": 40.4438051, "lon": -3.7197942, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 27508182, "lat": 40.4434985, "lon": -3.717269}, {"type": "node", "id": 27508183, "lat": 40.4434538, "lon": -3.7167399}, {"type": "node", "id": 27508184, "lat": 40.4434681, "lon": -3.7163938}, {"type": "node", "id": 27508185, "lat": 40.4434965, "lon": -3.7160934}, {"type": "node", "id": 27508186, "lat": 40.4435978, "lon": -3.7156267, "tags": {"created_by": "YahooApplet 1.0"}}, {"type": "node", "id": 27508195, "lat": 40.4437909, "lon": -3.7151191}, {"type": "node", "id": 27508196, "lat": 40.4438268, "lon": -3.715237}, {"type": "node", "id": 27508197, "lat": 40.4439291, "lon": -3.7151207, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 27508198, "lat": 40.4442853, "lon": -3.7148881}, {"type": "node", "id": 27508199, "lat": 40.4445654, "lon": -3.7148398}, {"type": "node", "id": 27508200, "lat": 40.4448827, "lon": -3.7148266}, {"type": "node", "id": 27508201, "lat": 40.444854, "lon": -3.7140605}, {"type": "node", "id": 27508204, "lat": 40.4437504, "lon": -3.7141448}, {"type": "node", "id": 27508205, "lat": 40.4447754, "lon": -3.7123754}, {"type": "node", "id": 27508208, "lat": 40.4436591, "lon": -3.7124661}, {"type": "node", "id": 27508209, "lat": 40.4426549, "lon": -3.7125442, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27508211, "lat": 40.44268, "lon": -3.7142468}, {"type": "node", "id": 27508213, "lat": 40.4425868, "lon": -3.712642}, {"type": "node", "id": 27508542, "lat": 40.4438095, "lon": -3.7171927}, {"type": "node", "id": 27508543, "lat": 40.4440114, "lon": -3.7170826}, {"type": "node", "id": 27508544, "lat": 40.4441245, "lon": -3.7169938}, {"type": "node", "id": 27508545, "lat": 40.4442699, "lon": -3.7168573}, {"type": "node", "id": 27508546, "lat": 40.4443874, "lon": -3.7167126}, {"type": "node", "id": 27508547, "lat": 40.4443816, "lon": -3.7160288}, {"type": "node", "id": 27508548, "lat": 40.4443657, "lon": -3.7185925}, {"type": "node", "id": 27514605, "lat": 40.4455618, "lon": -3.7147916, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514627, "lat": 40.445778, "lon": -3.7143817, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514644, "lat": 40.44595, "lon": -3.714451, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514646, "lat": 40.4458569, "lon": -3.7150281, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27514667, "lat": 40.445888, "lon": -3.713957}, {"type": "node", "id": 27514668, "lat": 40.4463023, "lon": -3.712262}, {"type": "node", "id": 27514670, "lat": 40.4461435, "lon": -3.7136978, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27514692, "lat": 40.4446819, "lon": -3.7105522}, {"type": "node", "id": 27514702, "lat": 40.4441082, "lon": -3.7105901}, {"type": "node", "id": 27514717, "lat": 40.4439501, "lon": -3.7106156, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27514733, "lat": 40.4438344, "lon": -3.7107907}, {"type": "node", "id": 27514734, "lat": 40.4432748, "lon": -3.7116188}, {"type": "node", "id": 27516322, "lat": 40.4427113, "lon": -3.7152088}, {"type": "node", "id": 27516626, "lat": 40.4416333, "lon": -3.7140548, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27516628, "lat": 40.4415742, "lon": -3.714142}, {"type": "node", "id": 27516630, "lat": 40.4415117, "lon": -3.7142342}, {"type": "node", "id": 27516635, "lat": 40.4396681, "lon": -3.7169546, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 27516655, "lat": 40.4395671, "lon": -3.7171557, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27516658, "lat": 40.4395167, "lon": -3.7171021, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 27516696, "lat": 40.4410986, "lon": -3.7139702}, {"type": "node", "id": 27516700, "lat": 40.4413059, "lon": -3.7136699}, {"type": "node", "id": 27516704, "lat": 40.4412755, "lon": -3.7126596, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 27517498, "lat": 40.4422228, "lon": -3.7150205}, {"type": "node", "id": 27517499, "lat": 40.4412511, "lon": -3.7164751}, {"type": "node", "id": 27517505, "lat": 40.4413146, "lon": -3.7169311}, {"type": "node", "id": 27517506, "lat": 40.4412681, "lon": -3.7171917}, {"type": "node", "id": 27517507, "lat": 40.4409844, "lon": -3.7181673}, {"type": "node", "id": 27517522, "lat": 40.4411751, "lon": -3.7163753, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 27517855, "lat": 40.4467486, "lon": -3.7104559, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 27517856, "lat": 40.4469391, "lon": -3.7104496}, {"type": "node", "id": 27517857, "lat": 40.4460611, "lon": -3.71047}, {"type": "node", "id": 27517888, "lat": 40.4456241, "lon": -3.7123137}, {"type": "node", "id": 27517891, "lat": 40.4400055, "lon": -3.7127658, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27517898, "lat": 40.439979, "lon": -3.712131}, {"type": "node", "id": 27517937, "lat": 40.4399078, "lon": -3.7105212}, {"type": "node", "id": 27517938, "lat": 40.4406702, "lon": -3.710926}, {"type": "node", "id": 27517939, "lat": 40.4412048, "lon": -3.7111254}, {"type": "node", "id": 27517940, "lat": 40.4416048, "lon": -3.7114759}, {"type": "node", "id": 27517954, "lat": 40.4412665, "lon": -3.7121667, "tags": {"created_by": "YahooApplet 1.0"}}, {"type": "node", "id": 27517955, "lat": 40.4413604, "lon": -3.7119438}, {"type": "node", "id": 27517956, "lat": 40.4427004, "lon": -3.7094032}, {"type": "node", "id": 27517991, "lat": 40.4419163, "lon": -3.7085364}, {"type": "node", "id": 27518000, "lat": 40.4417351, "lon": -3.7083834}, {"type": "node", "id": 27518009, "lat": 40.4415391, "lon": -3.7082667}, {"type": "node", "id": 27518022, "lat": 40.4414584, "lon": -3.7082264}, {"type": "node", "id": 27518032, "lat": 40.4413592, "lon": -3.7081808}, {"type": "node", "id": 27518046, "lat": 40.4410266, "lon": -3.7081151, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 27518078, "lat": 40.4407941, "lon": -3.7081073}, {"type": "node", "id": 27519777, "lat": 40.4435041, "lon": -3.7103225}, {"type": "node", "id": 27519834, "lat": 40.4437974, "lon": -3.7105132, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519838, "lat": 40.4437346, "lon": -3.7106386, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519852, "lat": 40.4438187, "lon": -3.7103582, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 27519868, "lat": 40.4440581, "lon": -3.7102602}, {"type": "node", "id": 27520539, "lat": 40.4405078, "lon": -3.708124}, {"type": "node", "id": 27520557, "lat": 40.4400437, "lon": -3.708171}, {"type": "node", "id": 27520738, "lat": 40.4399584, "lon": -3.7064428}, {"type": "node", "id": 27520754, "lat": 40.4394748, "lon": -3.7082193}, {"type": "node", "id": 27521668, "lat": 40.4401592, "lon": -3.7098521}, {"type": "node", "id": 27521709, "lat": 40.4404801, "lon": -3.7071942, "tags": {"highway": "turning_circle"}}, {"type": "node", "id": 27521722, "lat": 40.4403591, "lon": -3.7072069}, {"type": "node", "id": 27522330, "lat": 40.4400013, "lon": -3.7072311}, {"type": "node", "id": 27522332, "lat": 40.4399808, "lon": -3.7068619}, {"type": "node", "id": 27522353, "lat": 40.4412648, "lon": -3.7068781}, {"type": "node", "id": 27522357, "lat": 40.4387443, "lon": -3.706521}, {"type": "node", "id": 27522358, "lat": 40.4386713, "lon": -3.7042134, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27522994, "lat": 40.437168, "lon": -3.7042542, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523108, "lat": 40.436028, "lon": -3.704288, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523275, "lat": 40.4348826, "lon": -3.7043239, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 27523292, "lat": 40.4349589, "lon": -3.7056849}, {"type": "node", "id": 27523422, "lat": 40.4360629, "lon": -3.7055879}, {"type": "node", "id": 28096046, "lat": 40.4497258, "lon": -3.6968064}, {"type": "node", "id": 28096047, "lat": 40.4495373, "lon": -3.6968259}, {"type": "node", "id": 28096048, "lat": 40.4495163, "lon": -3.6959282}, {"type": "node", "id": 28096049, "lat": 40.4492417, "lon": -3.6968565}, {"type": "node", "id": 28096050, "lat": 40.4493339, "lon": -3.6983677}, {"type": "node", "id": 28096482, "lat": 40.4263313, "lon": -3.6840263}, {"type": "node", "id": 28096483, "lat": 40.4275878, "lon": -3.6813141}, {"type": "node", "id": 28096486, "lat": 40.4261431, "lon": -3.680123}, {"type": "node", "id": 28096491, "lat": 40.4289866, "lon": -3.6812032}, {"type": "node", "id": 28096493, "lat": 40.4314327, "lon": -3.6810092}, {"type": "node", "id": 28096494, "lat": 40.4313723, "lon": -3.6796828}, {"type": "node", "id": 28096615, "lat": 40.4312954, "lon": -3.6780968}, {"type": "node", "id": 28096620, "lat": 40.4290435, "lon": -3.6824572}, {"type": "node", "id": 28096621, "lat": 40.4302345, "lon": -3.6823592, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 28096622, "lat": 40.4314941, "lon": -3.6822555}, {"type": "node", "id": 28096711, "lat": 40.4262058, "lon": -3.6814238}, {"type": "node", "id": 28096713, "lat": 40.4264464, "lon": -3.6864123}, {"type": "node", "id": 28096714, "lat": 40.4263902, "lon": -3.6852465}, {"type": "node", "id": 28096715, "lat": 40.4262667, "lon": -3.6826858}, {"type": "node", "id": 28096716, "lat": 40.4276424, "lon": -3.6825725}, {"type": "node", "id": 28096717, "lat": 40.4277008, "lon": -3.6839134}, {"type": "node", "id": 28096718, "lat": 40.4277645, "lon": -3.6850848}, {"type": "node", "id": 28096719, "lat": 40.427826, "lon": -3.6862071}, {"type": "node", "id": 28096821, "lat": 40.4292194, "lon": -3.6859801}, {"type": "node", "id": 28096822, "lat": 40.4291573, "lon": -3.6849337}, {"type": "node", "id": 28096857, "lat": 40.4311564, "lon": -3.6751823}, {"type": "node", "id": 28096858, "lat": 40.4310798, "lon": -3.673579}, {"type": "node", "id": 28096859, "lat": 40.4310086, "lon": -3.6720878}, {"type": "node", "id": 28096881, "lat": 40.4316107, "lon": -3.684697}, {"type": "node", "id": 28096888, "lat": 40.4327659, "lon": -3.680899}, {"type": "node", "id": 28096889, "lat": 40.4326293, "lon": -3.6809103}, {"type": "node", "id": 28096905, "lat": 40.4328568, "lon": -3.6856046}, {"type": "node", "id": 28096922, "lat": 40.4316586, "lon": -3.6857006}, {"type": "node", "id": 28097220, "lat": 40.4304021, "lon": -3.6858234}, {"type": "node", "id": 28097221, "lat": 40.4303531, "lon": -3.6848019}, {"type": "node", "id": 28097222, "lat": 40.430296, "lon": -3.6836996, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 28097324, "lat": 40.4317109, "lon": -3.6867955}, {"type": "node", "id": 29739480, "lat": 40.4447593, "lon": -3.6857108}, {"type": "node", "id": 29739481, "lat": 40.4444157, "lon": -3.6857136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 29739482, "lat": 40.4440051, "lon": -3.6857485}, {"type": "node", "id": 29739483, "lat": 40.443575, "lon": -3.685785}, {"type": "node", "id": 29739484, "lat": 40.4428099, "lon": -3.68585, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 29739485, "lat": 40.4420801, "lon": -3.68592}, {"type": "node", "id": 29739486, "lat": 40.4413787, "lon": -3.685981}, {"type": "node", "id": 29739489, "lat": 40.4393311, "lon": -3.6861712}, {"type": "node", "id": 29739490, "lat": 40.4382825, "lon": -3.6862387, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 29739491, "lat": 40.4373741, "lon": -3.686318, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 29739493, "lat": 40.4362884, "lon": -3.6864287}, {"type": "node", "id": 29739615, "lat": 40.4291084, "lon": -3.6837975}, {"type": "node", "id": 29739616, "lat": 40.4315582, "lon": -3.6835971, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 29739617, "lat": 40.4327548, "lon": -3.6835}, {"type": "node", "id": 29739619, "lat": 40.4349413, "lon": -3.6833113}, {"type": "node", "id": 29739623, "lat": 40.4404816, "lon": -3.6828504, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 29739636, "lat": 40.4418638, "lon": -3.6827345}, {"type": "node", "id": 29739646, "lat": 40.4419106, "lon": -3.6834186}, {"type": "node", "id": 29741516, "lat": 40.4312293, "lon": -3.6767094}, {"type": "node", "id": 29802991, "lat": 40.4325669, "lon": -3.6796103}, {"type": "node", "id": 29802998, "lat": 40.4336904, "lon": -3.6795192}, {"type": "node", "id": 30914817, "lat": 40.4402258, "lon": -3.7241964}, {"type": "node", "id": 30914823, "lat": 40.4413004, "lon": -3.7249948}, {"type": "node", "id": 32602923, "lat": 40.4469338, "lon": -3.7097298}, {"type": "node", "id": 32602924, "lat": 40.4470366, "lon": -3.7084918}, {"type": "node", "id": 32602925, "lat": 40.4470176, "lon": -3.7080759}, {"type": "node", "id": 32602928, "lat": 40.4468589, "lon": -3.7060556}, {"type": "node", "id": 32602929, "lat": 40.4469449, "lon": -3.7062065}, {"type": "node", "id": 32602930, "lat": 40.4470183, "lon": -3.7061992}, {"type": "node", "id": 32602932, "lat": 40.4471239, "lon": -3.7068203}, {"type": "node", "id": 32602934, "lat": 40.447175, "lon": -3.7082803}, {"type": "node", "id": 32602935, "lat": 40.4471949, "lon": -3.7085677}, {"type": "node", "id": 32602937, "lat": 40.4472123, "lon": -3.7089709}, {"type": "node", "id": 32602938, "lat": 40.4471497, "lon": -3.7095648}, {"type": "node", "id": 32604391, "lat": 40.4461065, "lon": -3.707875}, {"type": "node", "id": 32604397, "lat": 40.4459776, "lon": -3.7077996}, {"type": "node", "id": 32604398, "lat": 40.4458619, "lon": -3.7078269}, {"type": "node", "id": 32604399, "lat": 40.4457269, "lon": -3.7079362, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 32604401, "lat": 40.4454762, "lon": -3.7083417}, {"type": "node", "id": 32604410, "lat": 40.4454093, "lon": -3.7084498}, {"type": "node", "id": 32604414, "lat": 40.4452546, "lon": -3.7087}, {"type": "node", "id": 32604418, "lat": 40.4451947, "lon": -3.7087969}, {"type": "node", "id": 32604423, "lat": 40.444433, "lon": -3.7100284}, {"type": "node", "id": 32604425, "lat": 40.4444445, "lon": -3.7101666}, {"type": "node", "id": 32604427, "lat": 40.4443034, "lon": -3.7101193}, {"type": "node", "id": 32604429, "lat": 40.4442598, "lon": -3.7100508}, {"type": "node", "id": 32604431, "lat": 40.4442365, "lon": -3.7099807}, {"type": "node", "id": 32604444, "lat": 40.4457491, "lon": -3.707562}, {"type": "node", "id": 32604445, "lat": 40.4459194, "lon": -3.7074167, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 32604452, "lat": 40.4460921, "lon": -3.7074021}, {"type": "node", "id": 32604454, "lat": 40.4467664, "lon": -3.7078912}, {"type": "node", "id": 32604456, "lat": 40.4467999, "lon": -3.7080165}, {"type": "node", "id": 32604458, "lat": 40.4467872, "lon": -3.7080978}, {"type": "node", "id": 32604459, "lat": 40.4466714, "lon": -3.7081433}, {"type": "node", "id": 32604461, "lat": 40.4474404, "lon": -3.7084717, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 32604462, "lat": 40.447587, "lon": -3.708562}, {"type": "node", "id": 32604465, "lat": 40.4452852, "lon": -3.7067676}, {"type": "node", "id": 32604466, "lat": 40.4455695, "lon": -3.7073022, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 32604467, "lat": 40.4451853, "lon": -3.7068932}, {"type": "node", "id": 32604468, "lat": 40.4443716, "lon": -3.7063773, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 32630163, "lat": 40.4475188, "lon": -3.7107177}, {"type": "node", "id": 32630164, "lat": 40.4482529, "lon": -3.7110174}, {"type": "node", "id": 32630165, "lat": 40.4488333, "lon": -3.7112592}, {"type": "node", "id": 32630166, "lat": 40.4486336, "lon": -3.712082}, {"type": "node", "id": 32630167, "lat": 40.4473128, "lon": -3.7115135, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 32630168, "lat": 40.4479599, "lon": -3.708978}, {"type": "node", "id": 32630173, "lat": 40.4450437, "lon": -3.7087056}, {"type": "node", "id": 32630174, "lat": 40.4451211, "lon": -3.708579}, {"type": "node", "id": 32630175, "lat": 40.445288, "lon": -3.7083228}, {"type": "node", "id": 32630176, "lat": 40.4453549, "lon": -3.7082173}, {"type": "node", "id": 32630177, "lat": 40.4454176, "lon": -3.7083321}, {"type": "node", "id": 32630178, "lat": 40.4453822, "lon": -3.7082994, "tags": {"highway": "give_way"}}, {"type": "node", "id": 32630179, "lat": 40.4453411, "lon": -3.708333}, {"type": "node", "id": 32630180, "lat": 40.4453702, "lon": -3.708359}, {"type": "node", "id": 32630181, "lat": 40.4451861, "lon": -3.7086862}, {"type": "node", "id": 32630182, "lat": 40.4451477, "lon": -3.7086391, "tags": {"highway": "give_way"}}, {"type": "node", "id": 32630183, "lat": 40.4451255, "lon": -3.7087081}, {"type": "node", "id": 32630184, "lat": 40.445159, "lon": -3.7087385, "tags": {"highway": "give_way"}}, {"type": "node", "id": 32638870, "lat": 40.4286162, "lon": -3.7073193, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 33131373, "lat": 40.4432401, "lon": -3.7056943}, {"type": "node", "id": 33131374, "lat": 40.442427, "lon": -3.7051661}, {"type": "node", "id": 33131379, "lat": 40.4424745, "lon": -3.705017}, {"type": "node", "id": 33131380, "lat": 40.4425726, "lon": -3.7050222}, {"type": "node", "id": 33131381, "lat": 40.4432844, "lon": -3.7055309}, {"type": "node", "id": 33131382, "lat": 40.4435929, "lon": -3.7057623}, {"type": "node", "id": 33131383, "lat": 40.4444199, "lon": -3.7063158}, {"type": "node", "id": 33131384, "lat": 40.4424161, "lon": -3.7051289}, {"type": "node", "id": 33131385, "lat": 40.4424266, "lon": -3.7050494, "tags": {"highway": "give_way"}}, {"type": "node", "id": 33131386, "lat": 40.4432993, "lon": -3.7056116}, {"type": "node", "id": 33131387, "lat": 40.4432769, "lon": -3.7056693, "tags": {"highway": "give_way"}}, {"type": "node", "id": 33131388, "lat": 40.4455074, "lon": -3.7061881}, {"type": "node", "id": 33131390, "lat": 40.4452522, "lon": -3.7068436}, {"type": "node", "id": 33131391, "lat": 40.4433208, "lon": -3.7050822}, {"type": "node", "id": 33131392, "lat": 40.4437659, "lon": -3.7051314}, {"type": "node", "id": 33131393, "lat": 40.443354, "lon": -3.7055765}, {"type": "node", "id": 34407779, "lat": 40.4476602, "lon": -3.7060233}, {"type": "node", "id": 34407848, "lat": 40.4476473, "lon": -3.7069977}, {"type": "node", "id": 34407996, "lat": 40.448219, "lon": -3.7071839}, {"type": "node", "id": 34408133, "lat": 40.4486107, "lon": -3.7074232}, {"type": "node", "id": 34408179, "lat": 40.4488838, "lon": -3.7073975}, {"type": "node", "id": 34408267, "lat": 40.4488384, "lon": -3.7069967}, {"type": "node", "id": 34408287, "lat": 40.448774, "lon": -3.7059571}, {"type": "node", "id": 34408303, "lat": 40.4485438, "lon": -3.7059855}, {"type": "node", "id": 34408321, "lat": 40.448259, "lon": -3.7060087}, {"type": "node", "id": 34408339, "lat": 40.4487474, "lon": -3.7054861}, {"type": "node", "id": 34408380, "lat": 40.4487087, "lon": -3.7048336}, {"type": "node", "id": 34408449, "lat": 40.4495207, "lon": -3.704715}, {"type": "node", "id": 34408462, "lat": 40.4495928, "lon": -3.7056757}, {"type": "node", "id": 34408479, "lat": 40.4501389, "lon": -3.7058704, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 34408502, "lat": 40.4501999, "lon": -3.7058758}, {"type": "node", "id": 34408565, "lat": 40.4500765, "lon": -3.7046259}, {"type": "node", "id": 34408606, "lat": 40.4506594, "lon": -3.7045364}, {"type": "node", "id": 34408611, "lat": 40.4507, "lon": -3.7060581, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 34408615, "lat": 40.4505179, "lon": -3.7069623}, {"type": "node", "id": 34408621, "lat": 40.4504919, "lon": -3.7071654, "tags": {"highway": "give_way"}}, {"type": "node", "id": 34408632, "lat": 40.450541, "lon": -3.7073137}, {"type": "node", "id": 34408653, "lat": 40.4507292, "lon": -3.7076729}, {"type": "node", "id": 34408658, "lat": 40.4508767, "lon": -3.7080006}, {"type": "node", "id": 34408661, "lat": 40.4506086, "lon": -3.7081018}, {"type": "node", "id": 34408665, "lat": 40.4503261, "lon": -3.7082079}, {"type": "node", "id": 34408668, "lat": 40.449752, "lon": -3.7084318}, {"type": "node", "id": 34408825, "lat": 40.4496661, "lon": -3.7082427}, {"type": "node", "id": 34408837, "lat": 40.4501947, "lon": -3.7079406}, {"type": "node", "id": 34408841, "lat": 40.4499353, "lon": -3.7074156}, {"type": "node", "id": 34408844, "lat": 40.4503854, "lon": -3.7073363}, {"type": "node", "id": 34408846, "lat": 40.4498506, "lon": -3.7072303}, {"type": "node", "id": 34408848, "lat": 40.4498516, "lon": -3.7069746}, {"type": "node", "id": 34408851, "lat": 40.4499046, "lon": -3.7069734}, {"type": "node", "id": 34408855, "lat": 40.4490978, "lon": -3.7069861}, {"type": "node", "id": 34408866, "lat": 40.4492629, "lon": -3.707355}, {"type": "node", "id": 51424234, "lat": 40.4494774, "lon": -3.7099266}, {"type": "node", "id": 55138143, "lat": 40.4255068, "lon": -3.716866, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 55138155, "lat": 40.4248129, "lon": -3.7158819, "tags": {"check_date:crossing": "2023-03-30", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 55138166, "lat": 40.4253544, "lon": -3.7153842}, {"type": "node", "id": 55138174, "lat": 40.4259357, "lon": -3.714876}, {"type": "node", "id": 55138181, "lat": 40.4288802, "lon": -3.7217032}, {"type": "node", "id": 55138197, "lat": 40.4323222, "lon": -3.7175377}, {"type": "node", "id": 55138206, "lat": 40.4256383, "lon": -3.7136301}, {"type": "node", "id": 55161023, "lat": 40.431755, "lon": -3.7227494}, {"type": "node", "id": 55161026, "lat": 40.4326199, "lon": -3.7206595}, {"type": "node", "id": 55161030, "lat": 40.4261356, "lon": -3.7161226}, {"type": "node", "id": 55161034, "lat": 40.4266525, "lon": -3.7154954}, {"type": "node", "id": 55161040, "lat": 40.4325245, "lon": -3.7191775}, {"type": "node", "id": 55161044, "lat": 40.426505, "lon": -3.7143761}, {"type": "node", "id": 55161046, "lat": 40.4250146, "lon": -3.7139989}, {"type": "node", "id": 55161049, "lat": 40.4242996, "lon": -3.7144124}, {"type": "node", "id": 55161051, "lat": 40.4271531, "lon": -3.7148919}, {"type": "node", "id": 55161055, "lat": 40.4277862, "lon": -3.7154109}, {"type": "node", "id": 55161059, "lat": 40.4273542, "lon": -3.7161126}, {"type": "node", "id": 55161064, "lat": 40.4269087, "lon": -3.71684}, {"type": "node", "id": 55161067, "lat": 40.426452, "lon": -3.7176075, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 55161074, "lat": 40.4273851, "lon": -3.7185012}, {"type": "node", "id": 55161078, "lat": 40.4277617, "lon": -3.7176403}, {"type": "node", "id": 55161082, "lat": 40.4281253, "lon": -3.7168093}, {"type": "node", "id": 55161088, "lat": 40.4284936, "lon": -3.7159603}, {"type": "node", "id": 55161091, "lat": 40.4293142, "lon": -3.7166476}, {"type": "node", "id": 55161094, "lat": 40.4289351, "lon": -3.7175179}, {"type": "node", "id": 55161100, "lat": 40.4285608, "lon": -3.718385}, {"type": "node", "id": 55161108, "lat": 40.4281743, "lon": -3.7192718}, {"type": "node", "id": 55161119, "lat": 40.4292591, "lon": -3.7203175, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 55161124, "lat": 40.4295748, "lon": -3.719334}, {"type": "node", "id": 55161130, "lat": 40.4299035, "lon": -3.7183351, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161135, "lat": 40.4302182, "lon": -3.7173652, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 55161145, "lat": 40.4299848, "lon": -3.7184152, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161154, "lat": 40.4296533, "lon": -3.7194384}, {"type": "node", "id": 55161167, "lat": 40.4293494, "lon": -3.720405, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 55161170, "lat": 40.4311908, "lon": -3.7181387}, {"type": "node", "id": 55161174, "lat": 40.4318494, "lon": -3.7186516}, {"type": "node", "id": 55161178, "lat": 40.4305906, "lon": -3.7216191}, {"type": "node", "id": 55161181, "lat": 40.4299909, "lon": -3.7210307, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161188, "lat": 40.4312331, "lon": -3.7222423, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 55161192, "lat": 40.4314659, "lon": -3.7224677}, {"type": "node", "id": 55161197, "lat": 40.4323283, "lon": -3.7204526}, {"type": "node", "id": 55311600, "lat": 40.4244342, "lon": -3.7091715}, {"type": "node", "id": 55311603, "lat": 40.424504, "lon": -3.7091291, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 55404964, "lat": 40.428829, "lon": -3.7219295, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 59633359, "lat": 40.42222, "lon": -3.6996855}, {"type": "node", "id": 60017473, "lat": 40.4414407, "lon": -3.6940906}, {"type": "node", "id": 60017474, "lat": 40.4416583, "lon": -3.6949176, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60017591, "lat": 40.4396769, "lon": -3.7007602, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60017632, "lat": 40.4403571, "lon": -3.6926716}, {"type": "node", "id": 60018311, "lat": 40.433917, "lon": -3.6949204}, {"type": "node", "id": 60018312, "lat": 40.4412901, "lon": -3.6942974, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60018334, "lat": 40.4359399, "lon": -3.7024306}, {"type": "node", "id": 60018337, "lat": 40.4355656, "lon": -3.694781}, {"type": "node", "id": 60018352, "lat": 40.4339847, "lon": -3.6932076, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030239, "lat": 40.4332635, "lon": -3.7054877, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030240, "lat": 40.4336158, "lon": -3.7044958}, {"type": "node", "id": 60030242, "lat": 40.4334256, "lon": -3.7042891, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030243, "lat": 40.4335352, "lon": -3.7040116}, {"type": "node", "id": 60030244, "lat": 40.4337225, "lon": -3.7040323, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030246, "lat": 40.4337705, "lon": -3.7043908}, {"type": "node", "id": 60030248, "lat": 40.4349348, "lon": -3.6987187, "tags": {"highway": "traffic_signals", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943", "wikidata": "Q26791943", "wikipedia": "es:Glorieta del Pintor Sorolla"}}, {"type": "node", "id": 60030251, "lat": 40.4334567, "lon": -3.7040974, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030252, "lat": 40.4334932, "lon": -3.7044382}, {"type": "node", "id": 60030256, "lat": 40.4384698, "lon": -3.7002381, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030257, "lat": 40.4384235, "lon": -3.6993321, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 60030258, "lat": 40.4383471, "lon": -3.6978044, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030259, "lat": 40.4382817, "lon": -3.696289}, {"type": "node", "id": 60030260, "lat": 40.4366721, "lon": -3.6964164}, {"type": "node", "id": 60030277, "lat": 40.436699, "lon": -3.6979437}, {"type": "node", "id": 60030278, "lat": 40.4357244, "lon": -3.6980261}, {"type": "node", "id": 60030279, "lat": 40.4356499, "lon": -3.6964973}, {"type": "node", "id": 60030280, "lat": 40.4366391, "lon": -3.6946902}, {"type": "node", "id": 60030301, "lat": 40.4381932, "lon": -3.6945588, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60030302, "lat": 40.4350224, "lon": -3.6965469}, {"type": "node", "id": 60030303, "lat": 40.4349787, "lon": -3.6980881}, {"type": "node", "id": 60030397, "lat": 40.4396024, "lon": -3.6992358}, {"type": "node", "id": 60030398, "lat": 40.4395284, "lon": -3.6976996}, {"type": "node", "id": 60030399, "lat": 40.4383883, "lon": -3.6986283}, {"type": "node", "id": 60030402, "lat": 40.4395592, "lon": -3.6983393}, {"type": "node", "id": 60030404, "lat": 40.440698, "lon": -3.6991458}, {"type": "node", "id": 60030405, "lat": 40.4406262, "lon": -3.6976108}, {"type": "node", "id": 60030406, "lat": 40.4405573, "lon": -3.696109}, {"type": "node", "id": 60030407, "lat": 40.4394564, "lon": -3.6961963}, {"type": "node", "id": 60030408, "lat": 40.4393722, "lon": -3.6944593}, {"type": "node", "id": 60030409, "lat": 40.4388794, "lon": -3.6945007}, {"type": "node", "id": 60030410, "lat": 40.4404759, "lon": -3.6943656}, {"type": "node", "id": 60030727, "lat": 40.4366087, "lon": -3.6930249}, {"type": "node", "id": 60030728, "lat": 40.4351098, "lon": -3.6931402}, {"type": "node", "id": 60030729, "lat": 40.4350642, "lon": -3.6948234}, {"type": "node", "id": 60672316, "lat": 40.4300551, "lon": -3.705634, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 60672339, "lat": 40.4303023, "lon": -3.7055485}, {"type": "node", "id": 60672523, "lat": 40.4314087, "lon": -3.705144, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 60672557, "lat": 40.4317441, "lon": -3.7049593}, {"type": "node", "id": 60672559, "lat": 40.4319016, "lon": -3.7049172, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 60672590, "lat": 40.4331259, "lon": -3.7045172, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 60672668, "lat": 40.4321849, "lon": -3.7051423}, {"type": "node", "id": 60672670, "lat": 40.4318019, "lon": -3.7051462}, {"type": "node", "id": 63530461, "lat": 40.4340604, "lon": -3.6912773}, {"type": "node", "id": 63530471, "lat": 40.433105, "lon": -3.6913897}, {"type": "node", "id": 63530476, "lat": 40.4330684, "lon": -3.6911264}, {"type": "node", "id": 63530481, "lat": 40.4328297, "lon": -3.6911595}, {"type": "node", "id": 63530492, "lat": 40.4328011, "lon": -3.691241}, {"type": "node", "id": 63530500, "lat": 40.4328314, "lon": -3.6914201}, {"type": "node", "id": 63530519, "lat": 40.4328833, "lon": -3.6914777}, {"type": "node", "id": 63530535, "lat": 40.4330107, "lon": -3.691493}, {"type": "node", "id": 63530544, "lat": 40.4330655, "lon": -3.6914534}, {"type": "node", "id": 63530546, "lat": 40.430555, "lon": -3.6926627, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 81466844, "lat": 40.4478897, "lon": -3.6954078}, {"type": "node", "id": 81466846, "lat": 40.449229, "lon": -3.6952864}, {"type": "node", "id": 81466847, "lat": 40.4508003, "lon": -3.6951325, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 81473204, "lat": 40.4525842, "lon": -3.6993558, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 81473206, "lat": 40.4524893, "lon": -3.6980802, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 81580395, "lat": 40.4522058, "lon": -3.699436}, {"type": "node", "id": 81580397, "lat": 40.451168, "lon": -3.6996433}, {"type": "node", "id": 81580399, "lat": 40.4510588, "lon": -3.6996514}, {"type": "node", "id": 81580400, "lat": 40.4508878, "lon": -3.6997548}, {"type": "node", "id": 81580401, "lat": 40.450301, "lon": -3.6998084}, {"type": "node", "id": 81580403, "lat": 40.4496223, "lon": -3.6998725}, {"type": "node", "id": 81580404, "lat": 40.4489466, "lon": -3.6999378}, {"type": "node", "id": 81580405, "lat": 40.4482393, "lon": -3.7000093}, {"type": "node", "id": 81580408, "lat": 40.4467139, "lon": -3.6999921}, {"type": "node", "id": 81581404, "lat": 40.4481675, "lon": -3.6984825}, {"type": "node", "id": 81581405, "lat": 40.4482027, "lon": -3.6991863}, {"type": "node", "id": 81581406, "lat": 40.4482715, "lon": -3.7008145}, {"type": "node", "id": 81581407, "lat": 40.4483163, "lon": -3.7017363}, {"type": "node", "id": 81581408, "lat": 40.4483293, "lon": -3.7022058}, {"type": "node", "id": 81582480, "lat": 40.4516272, "lon": -3.6995496}, {"type": "node", "id": 81604772, "lat": 40.4504244, "lon": -3.7019018}, {"type": "node", "id": 81604773, "lat": 40.4503852, "lon": -3.7007188}, {"type": "node", "id": 81604775, "lat": 40.4502607, "lon": -3.6989933}, {"type": "node", "id": 81604776, "lat": 40.4502211, "lon": -3.6982925}, {"type": "node", "id": 81605088, "lat": 40.4472343, "lon": -3.7034523, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 81605091, "lat": 40.4473835, "lon": -3.7026256}, {"type": "node", "id": 81605092, "lat": 40.4473136, "lon": -3.7018064}, {"type": "node", "id": 81605093, "lat": 40.447316, "lon": -3.7016488}, {"type": "node", "id": 81605094, "lat": 40.4474509, "lon": -3.7012606}, {"type": "node", "id": 81605096, "lat": 40.4474664, "lon": -3.7008731}, {"type": "node", "id": 81605097, "lat": 40.4474191, "lon": -3.7000695}, {"type": "node", "id": 81605098, "lat": 40.4473799, "lon": -3.6992612}, {"type": "node", "id": 81605099, "lat": 40.4473434, "lon": -3.6985634}, {"type": "node", "id": 81605725, "lat": 40.4477393, "lon": -3.7022673}, {"type": "node", "id": 82499051, "lat": 40.4497578, "lon": -3.7015521}, {"type": "node", "id": 82499052, "lat": 40.4495412, "lon": -3.6983566}, {"type": "node", "id": 82499214, "lat": 40.4487819, "lon": -3.6969042}, {"type": "node", "id": 82499215, "lat": 40.44886, "lon": -3.6984206}, {"type": "node", "id": 82499216, "lat": 40.4490997, "lon": -3.7022099}, {"type": "node", "id": 82499429, "lat": 40.4510178, "lon": -3.6989287}, {"type": "node", "id": 82499430, "lat": 40.4495773, "lon": -3.6990688}, {"type": "node", "id": 82499431, "lat": 40.4489035, "lon": -3.6991293}, {"type": "node", "id": 82499627, "lat": 40.4498051, "lon": -3.7020842}, {"type": "node", "id": 82499628, "lat": 40.4488339, "lon": -3.7022412}, {"type": "node", "id": 82500114, "lat": 40.4490226, "lon": -3.7016559}, {"type": "node", "id": 82500132, "lat": 40.447904, "lon": -3.7008584}, {"type": "node", "id": 82500158, "lat": 40.4479558, "lon": -3.7017586}, {"type": "node", "id": 98722464, "lat": 40.4520781, "lon": -3.7094429, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98722465, "lat": 40.451885, "lon": -3.7099843}, {"type": "node", "id": 98722468, "lat": 40.4516101, "lon": -3.7105123, "tags": {"barrier": "block", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 98722469, "lat": 40.4513513, "lon": -3.7105625}, {"type": "node", "id": 98722470, "lat": 40.4511819, "lon": -3.7106899}, {"type": "node", "id": 98723334, "lat": 40.4486923, "lon": -3.7092455}, {"type": "node", "id": 98723336, "lat": 40.4495271, "lon": -3.7098153}, {"type": "node", "id": 98723345, "lat": 40.4524553, "lon": -3.7116895, "tags": {"junction": "yes"}}, {"type": "node", "id": 98724253, "lat": 40.4531124, "lon": -3.7060325, "tags": {"junction": "yes", "name": "Glorieta de Miguel Rubiales"}}, {"type": "node", "id": 98724825, "lat": 40.4531911, "lon": -3.7067856}, {"type": "node", "id": 98724826, "lat": 40.4530037, "lon": -3.7080922}, {"type": "node", "id": 98724875, "lat": 40.4524072, "lon": -3.7074557}, {"type": "node", "id": 98725053, "lat": 40.4524056, "lon": -3.7077881}, {"type": "node", "id": 98725054, "lat": 40.4524002, "lon": -3.7069059}, {"type": "node", "id": 98725055, "lat": 40.4523911, "lon": -3.7061574}, {"type": "node", "id": 98725373, "lat": 40.4518602, "lon": -3.704356}, {"type": "node", "id": 98725376, "lat": 40.4503669, "lon": -3.7073764}, {"type": "node", "id": 98725377, "lat": 40.4517312, "lon": -3.707011}, {"type": "node", "id": 98725379, "lat": 40.451707, "lon": -3.7074229}, {"type": "node", "id": 98725380, "lat": 40.4517003, "lon": -3.7077147}, {"type": "node", "id": 98725381, "lat": 40.4517063, "lon": -3.708056}, {"type": "node", "id": 98725384, "lat": 40.4517144, "lon": -3.7093515}, {"type": "node", "id": 98726079, "lat": 40.4511475, "lon": -3.7044621}, {"type": "node", "id": 98726080, "lat": 40.4511815, "lon": -3.7047574}, {"type": "node", "id": 98726081, "lat": 40.4511753, "lon": -3.7062187, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 98726082, "lat": 40.4509925, "lon": -3.7071932}, {"type": "node", "id": 98726299, "lat": 40.4526844, "lon": -3.7061084}, {"type": "node", "id": 98726865, "lat": 40.4527329, "lon": -3.7068534}, {"type": "node", "id": 98727478, "lat": 40.4493862, "lon": -3.7091869, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98727479, "lat": 40.449208, "lon": -3.7085613}, {"type": "node", "id": 98727480, "lat": 40.4490184, "lon": -3.7082354}, {"type": "node", "id": 98727481, "lat": 40.4489365, "lon": -3.7079162}, {"type": "node", "id": 98727626, "lat": 40.4504475, "lon": -3.7100474}, {"type": "node", "id": 98727885, "lat": 40.4509512, "lon": -3.7095324}, {"type": "node", "id": 98727886, "lat": 40.4504985, "lon": -3.7085506}, {"type": "node", "id": 98727957, "lat": 40.4514973, "lon": -3.7093648}, {"type": "node", "id": 98727958, "lat": 40.451034, "lon": -3.7083412}, {"type": "node", "id": 98727994, "lat": 40.4511363, "lon": -3.7094758}, {"type": "node", "id": 98727995, "lat": 40.4509951, "lon": -3.7090774}, {"type": "node", "id": 98727996, "lat": 40.4508382, "lon": -3.7084192}, {"type": "node", "id": 98728183, "lat": 40.450258, "lon": -3.7086492}, {"type": "node", "id": 98728184, "lat": 40.4499075, "lon": -3.7087863}, {"type": "node", "id": 98728832, "lat": 40.4519615, "lon": -3.7093524, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98728833, "lat": 40.4512455, "lon": -3.7094277}, {"type": "node", "id": 98728989, "lat": 40.4478803, "lon": -3.7081409}, {"type": "node", "id": 98728990, "lat": 40.4479275, "lon": -3.7080984}, {"type": "node", "id": 98728991, "lat": 40.4480655, "lon": -3.7080576}, {"type": "node", "id": 98728992, "lat": 40.4484662, "lon": -3.7082904}, {"type": "node", "id": 98731452, "lat": 40.4517013, "lon": -3.7099676}, {"type": "node", "id": 98731608, "lat": 40.4512388, "lon": -3.7100067}, {"type": "node", "id": 98731778, "lat": 40.4504539, "lon": -3.7100929}, {"type": "node", "id": 98732051, "lat": 40.4522074, "lon": -3.7096083}, {"type": "node", "id": 98732052, "lat": 40.4522607, "lon": -3.7097125, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 98732053, "lat": 40.452397, "lon": -3.7101141}, {"type": "node", "id": 98732054, "lat": 40.452513, "lon": -3.7107558}, {"type": "node", "id": 98732055, "lat": 40.4525609, "lon": -3.7110611}, {"type": "node", "id": 98732056, "lat": 40.4525063, "lon": -3.7113817, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746256, "lat": 40.4509726, "lon": -3.6982217, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746257, "lat": 40.4498186, "lon": -3.6983304}, {"type": "node", "id": 98746258, "lat": 40.4466599, "lon": -3.6986277, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746807, "lat": 40.4465851, "lon": -3.6971318, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98746809, "lat": 40.4480236, "lon": -3.6969828, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98746810, "lat": 40.4493211, "lon": -3.6968483}, {"type": "node", "id": 98746811, "lat": 40.4508961, "lon": -3.6966851, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 98766581, "lat": 40.4524631, "lon": -3.6937608}, {"type": "node", "id": 98801269, "lat": 40.4515506, "lon": -3.6938401}, {"type": "node", "id": 98944239, "lat": 40.4466351, "lon": -3.7017785}, {"type": "node", "id": 98944240, "lat": 40.445346, "lon": -3.7019519}, {"type": "node", "id": 98944891, "lat": 40.4452698, "lon": -3.7004566}, {"type": "node", "id": 98944892, "lat": 40.4451822, "lon": -3.698779}, {"type": "node", "id": 98944893, "lat": 40.4451024, "lon": -3.6972335}, {"type": "node", "id": 98944895, "lat": 40.4450255, "lon": -3.6957433}, {"type": "node", "id": 98945384, "lat": 40.4455237, "lon": -3.7050602}, {"type": "node", "id": 98945385, "lat": 40.4451319, "lon": -3.705078}, {"type": "node", "id": 98945967, "lat": 40.4441817, "lon": -3.7005401}, {"type": "node", "id": 98945969, "lat": 40.4441021, "lon": -3.6988674}, {"type": "node", "id": 98945970, "lat": 40.4440286, "lon": -3.6973242}, {"type": "node", "id": 98945971, "lat": 40.4439678, "lon": -3.6958089}, {"type": "node", "id": 98946910, "lat": 40.4430239, "lon": -3.6989556}, {"type": "node", "id": 98946911, "lat": 40.4465205, "lon": -3.6986445, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98948612, "lat": 40.4429508, "lon": -3.6974153}, {"type": "node", "id": 98948614, "lat": 40.4464486, "lon": -3.6971197, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98949531, "lat": 40.4431037, "lon": -3.7006361}, {"type": "node", "id": 98949532, "lat": 40.4428815, "lon": -3.6959078}, {"type": "node", "id": 98949534, "lat": 40.4428191, "lon": -3.6947752, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98949981, "lat": 40.4420183, "lon": -3.7007103}, {"type": "node", "id": 98951270, "lat": 40.4445289, "lon": -3.6957682}, {"type": "node", "id": 98951271, "lat": 40.4448179, "lon": -3.6957469}, {"type": "node", "id": 98951272, "lat": 40.4463737, "lon": -3.6956259}, {"type": "node", "id": 98953225, "lat": 40.4419623, "lon": -3.7051775}, {"type": "node", "id": 98955810, "lat": 40.4359867, "lon": -3.7033085}, {"type": "node", "id": 98956113, "lat": 40.4370497, "lon": -3.7029705}, {"type": "node", "id": 98956258, "lat": 40.4342179, "lon": -3.7016832, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98956600, "lat": 40.4368704, "lon": -3.702822}, {"type": "node", "id": 98956601, "lat": 40.4332437, "lon": -3.7012725}, {"type": "node", "id": 98957145, "lat": 40.437033, "lon": -3.7025409}, {"type": "node", "id": 98957147, "lat": 40.4368691, "lon": -3.7010791}, {"type": "node", "id": 98957377, "lat": 40.437194, "lon": -3.7027485}, {"type": "node", "id": 98957378, "lat": 40.4385857, "lon": -3.7026359}, {"type": "node", "id": 98957846, "lat": 40.4371124, "lon": -3.7029436}, {"type": "node", "id": 98958253, "lat": 40.4369979, "lon": -3.70297}, {"type": "node", "id": 98958254, "lat": 40.4369086, "lon": -3.7026054}, {"type": "node", "id": 98958255, "lat": 40.4371835, "lon": -3.7026792}, {"type": "node", "id": 98958321, "lat": 40.4385057, "lon": -3.7010558}, {"type": "node", "id": 98958620, "lat": 40.4345778, "lon": -3.7002138}, {"type": "node", "id": 98958622, "lat": 40.4358548, "lon": -3.7006916}, {"type": "node", "id": 98958746, "lat": 40.4336713, "lon": -3.6998539}, {"type": "node", "id": 98958747, "lat": 40.4331273, "lon": -3.6996172}, {"type": "node", "id": 98958748, "lat": 40.4325975, "lon": -3.6994042}, {"type": "node", "id": 98958749, "lat": 40.4315036, "lon": -3.6989515}, {"type": "node", "id": 98958915, "lat": 40.4347517, "lon": -3.699507}, {"type": "node", "id": 98959041, "lat": 40.4338473, "lon": -3.6991476}, {"type": "node", "id": 98959043, "lat": 40.4333077, "lon": -3.6989204}, {"type": "node", "id": 98959044, "lat": 40.4327785, "lon": -3.6987018}, {"type": "node", "id": 98959052, "lat": 40.4329801, "lon": -3.6978731}, {"type": "node", "id": 98959391, "lat": 40.4324319, "lon": -3.700037}, {"type": "node", "id": 98959492, "lat": 40.4335031, "lon": -3.6980914}, {"type": "node", "id": 98959776, "lat": 40.4329178, "lon": -3.7004355}, {"type": "node", "id": 98959947, "lat": 40.4340482, "lon": -3.6983383}, {"type": "node", "id": 98960185, "lat": 40.4334972, "lon": -3.7005194}, {"type": "node", "id": 98960186, "lat": 40.4331709, "lon": -3.700735}, {"type": "node", "id": 98960226, "lat": 40.4344167, "lon": -3.7008826}, {"type": "node", "id": 98960521, "lat": 40.433974, "lon": -3.7027031, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 98960767, "lat": 40.4324449, "lon": -3.7023065}, {"type": "node", "id": 98960768, "lat": 40.4318903, "lon": -3.7021581}, {"type": "node", "id": 98960769, "lat": 40.4310764, "lon": -3.7019396}, {"type": "node", "id": 98960811, "lat": 40.433013, "lon": -3.7024509}, {"type": "node", "id": 98960871, "lat": 40.4348336, "lon": -3.7029624}, {"type": "node", "id": 98960966, "lat": 40.4348003, "lon": -3.7019266}, {"type": "node", "id": 98989151, "lat": 40.4519249, "lon": -3.6883545}, {"type": "node", "id": 98999832, "lat": 40.450268, "lon": -3.6822756, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100881334, "lat": 40.4486894, "lon": -3.6894044}, {"type": "node", "id": 100881577, "lat": 40.449339, "lon": -3.6885976}, {"type": "node", "id": 100881578, "lat": 40.4496754, "lon": -3.6881778}, {"type": "node", "id": 100881579, "lat": 40.4514354, "lon": -3.6862226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 100881715, "lat": 40.4490514, "lon": -3.6892629}, {"type": "node", "id": 100890239, "lat": 40.4378177, "lon": -3.6880186}, {"type": "node", "id": 100890241, "lat": 40.4377393, "lon": -3.6862943, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100890242, "lat": 40.4376921, "lon": -3.6854951}, {"type": "node", "id": 100890243, "lat": 40.4376811, "lon": -3.6852045}, {"type": "node", "id": 100890244, "lat": 40.437642, "lon": -3.6842146}, {"type": "node", "id": 100890246, "lat": 40.4376209, "lon": -3.6830831}, {"type": "node", "id": 100891149, "lat": 40.4378112, "lon": -3.6851235, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891150, "lat": 40.4378187, "lon": -3.685435, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891151, "lat": 40.4378642, "lon": -3.6862856, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 100891152, "lat": 40.4379443, "lon": -3.6879544}, {"type": "node", "id": 100891869, "lat": 40.4378822, "lon": -3.6883489}, {"type": "node", "id": 100892261, "lat": 40.4376676, "lon": -3.6836358}, {"type": "node", "id": 100993084, "lat": 40.451256, "lon": -3.7199271}, {"type": "node", "id": 100993085, "lat": 40.4515252, "lon": -3.719017}, {"type": "node", "id": 101180201, "lat": 40.4414428, "lon": -3.6947714}, {"type": "node", "id": 101181988, "lat": 40.4414672, "lon": -3.6943065, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 101182466, "lat": 40.443486, "lon": -3.6951234}, {"type": "node", "id": 101190047, "lat": 40.4506246, "lon": -3.6895093}, {"type": "node", "id": 101190048, "lat": 40.4499316, "lon": -3.6885446}, {"type": "node", "id": 101190120, "lat": 40.4491389, "lon": -3.6895521}, {"type": "node", "id": 101190157, "lat": 40.4503863, "lon": -3.6873469}, {"type": "node", "id": 101190286, "lat": 40.4506647, "lon": -3.688477}, {"type": "node", "id": 102192627, "lat": 40.4480584, "lon": -3.685166}, {"type": "node", "id": 102192628, "lat": 40.4471655, "lon": -3.6855583}, {"type": "node", "id": 102192630, "lat": 40.4465349, "lon": -3.6858453}, {"type": "node", "id": 102193004, "lat": 40.4510581, "lon": -3.6857735}, {"type": "node", "id": 102193006, "lat": 40.4510557, "lon": -3.6860257}, {"type": "node", "id": 102193007, "lat": 40.4495332, "lon": -3.6876886}, {"type": "node", "id": 102193009, "lat": 40.4495248, "lon": -3.6878751}, {"type": "node", "id": 102195393, "lat": 40.4493141, "lon": -3.6879617}, {"type": "node", "id": 102195394, "lat": 40.4488535, "lon": -3.6885751}, {"type": "node", "id": 102195398, "lat": 40.4481654, "lon": -3.6885439}, {"type": "node", "id": 102195399, "lat": 40.4478498, "lon": -3.6882243}, {"type": "node", "id": 102195400, "lat": 40.4476539, "lon": -3.6878896}, {"type": "node", "id": 102195402, "lat": 40.4468793, "lon": -3.6843738}, {"type": "node", "id": 102195668, "lat": 40.4490655, "lon": -3.6867122}, {"type": "node", "id": 102196413, "lat": 40.4484121, "lon": -3.6860353}, {"type": "node", "id": 102196415, "lat": 40.4502892, "lon": -3.6858587}, {"type": "node", "id": 102196725, "lat": 40.4468273, "lon": -3.6870345}, {"type": "node", "id": 102196726, "lat": 40.4474634, "lon": -3.6869209}, {"type": "node", "id": 102196728, "lat": 40.4484896, "lon": -3.6867586}, {"type": "node", "id": 102196730, "lat": 40.4496013, "lon": -3.6866737}, {"type": "node", "id": 102196857, "lat": 40.4489454, "lon": -3.6884334}, {"type": "node", "id": 102197178, "lat": 40.4476278, "lon": -3.6839174}, {"type": "node", "id": 102197888, "lat": 40.447465, "lon": -3.6892236}, {"type": "node", "id": 102197890, "lat": 40.4472705, "lon": -3.6888124}, {"type": "node", "id": 102197891, "lat": 40.4471794, "lon": -3.688622}, {"type": "node", "id": 102197892, "lat": 40.4460984, "lon": -3.684977}, {"type": "node", "id": 102198270, "lat": 40.445643, "lon": -3.6854204, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 102198273, "lat": 40.4486271, "lon": -3.6833168}, {"type": "node", "id": 102198274, "lat": 40.4492095, "lon": -3.6829417}, {"type": "node", "id": 102199240, "lat": 40.4497215, "lon": -3.6826224}, {"type": "node", "id": 102200180, "lat": 40.4489193, "lon": -3.6831234}, {"type": "node", "id": 102201209, "lat": 40.4453632, "lon": -3.6848882, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 102213105, "lat": 40.4457149, "lon": -3.6921124}, {"type": "node", "id": 102213107, "lat": 40.4458348, "lon": -3.6943132}, {"type": "node", "id": 102213109, "lat": 40.4453056, "lon": -3.6943536}, {"type": "node", "id": 102213110, "lat": 40.4452604, "lon": -3.6932753}, {"type": "node", "id": 102213636, "lat": 40.4422271, "lon": -3.6933213}, {"type": "node", "id": 102213637, "lat": 40.4434816, "lon": -3.6932335}, {"type": "node", "id": 102213638, "lat": 40.4436591, "lon": -3.6932103}, {"type": "node", "id": 102213639, "lat": 40.4450464, "lon": -3.6931237}, {"type": "node", "id": 102213643, "lat": 40.4457804, "lon": -3.6930681}, {"type": "node", "id": 102213806, "lat": 40.445787, "lon": -3.693219}, {"type": "node", "id": 102214347, "lat": 40.44373, "lon": -3.6933989}, {"type": "node", "id": 102214348, "lat": 40.4434041, "lon": -3.6934173}, {"type": "node", "id": 102214349, "lat": 40.4422328, "lon": -3.6935078}, {"type": "node", "id": 102215151, "lat": 40.4450101, "lon": -3.6922162}, {"type": "node", "id": 102215153, "lat": 40.4451867, "lon": -3.693115}, {"type": "node", "id": 102215555, "lat": 40.4437853, "lon": -3.694441}, {"type": "node", "id": 102215556, "lat": 40.4437904, "lon": -3.694569}, {"type": "node", "id": 102215557, "lat": 40.443801, "lon": -3.6948374}, {"type": "node", "id": 102215558, "lat": 40.4439628, "lon": -3.6949971}, {"type": "node", "id": 102215559, "lat": 40.4448384, "lon": -3.6949534}, {"type": "node", "id": 102216201, "lat": 40.4436131, "lon": -3.6931504}, {"type": "node", "id": 102217287, "lat": 40.4435944, "lon": -3.6932321}, {"type": "node", "id": 102217288, "lat": 40.4435909, "lon": -3.6933888}, {"type": "node", "id": 102217289, "lat": 40.4435035, "lon": -3.6932725}, {"type": "node", "id": 102217291, "lat": 40.4435399, "lon": -3.6932279}, {"type": "node", "id": 139951327, "lat": 40.4328678, "lon": -3.693329}, {"type": "node", "id": 139951329, "lat": 40.4328174, "lon": -3.6950082}, {"type": "node", "id": 139951330, "lat": 40.4326728, "lon": -3.6964975}, {"type": "node", "id": 139951332, "lat": 40.4322844, "lon": -3.6975432}, {"type": "node", "id": 139971858, "lat": 40.4329663, "lon": -3.6910734, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 139975676, "lat": 40.4330954, "lon": -3.6911661}, {"type": "node", "id": 139977749, "lat": 40.4317468, "lon": -3.6919687, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 139977758, "lat": 40.4317441, "lon": -3.6934207}, {"type": "node", "id": 139977761, "lat": 40.4317033, "lon": -3.6951049}, {"type": "node", "id": 139977763, "lat": 40.4316515, "lon": -3.6973027}, {"type": "node", "id": 139982483, "lat": 40.4434668, "lon": -3.6879514, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 139982486, "lat": 40.4440891, "lon": -3.6870892}, {"type": "node", "id": 139982488, "lat": 40.4447897, "lon": -3.6861222, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 141855405, "lat": 40.4376535, "lon": -3.7042464}, {"type": "node", "id": 141855434, "lat": 40.4376497, "lon": -3.7055018}, {"type": "node", "id": 141856303, "lat": 40.434473, "lon": -3.7057011}, {"type": "node", "id": 141856893, "lat": 40.4317357, "lon": -3.7050674}, {"type": "node", "id": 141857474, "lat": 40.4336149, "lon": -3.7056028}, {"type": "node", "id": 141857476, "lat": 40.4337727, "lon": -3.7058477}, {"type": "node", "id": 141858985, "lat": 40.4330151, "lon": -3.7062982}, {"type": "node", "id": 141859167, "lat": 40.4328326, "lon": -3.7070774}, {"type": "node", "id": 141859168, "lat": 40.4327904, "lon": -3.7077392}, {"type": "node", "id": 141859608, "lat": 40.4327253, "lon": -3.7071087}, {"type": "node", "id": 141859830, "lat": 40.4328007, "lon": -3.7070176}, {"type": "node", "id": 141859832, "lat": 40.4327924, "lon": -3.7071538}, {"type": "node", "id": 141860142, "lat": 40.4326318, "lon": -3.7071638, "tags": {"highway": "crossing"}}, {"type": "node", "id": 141860144, "lat": 40.4315206, "lon": -3.7073077}, {"type": "node", "id": 141860372, "lat": 40.4315333, "lon": -3.707145}, {"type": "node", "id": 141860374, "lat": 40.432608, "lon": -3.7070213, "tags": {"highway": "crossing"}}, {"type": "node", "id": 141860662, "lat": 40.4315307, "lon": -3.7074998}, {"type": "node", "id": 141861285, "lat": 40.4315192, "lon": -3.7068007}, {"type": "node", "id": 141861309, "lat": 40.4303839, "lon": -3.7075809}, {"type": "node", "id": 141861311, "lat": 40.4303531, "lon": -3.7071162}, {"type": "node", "id": 141862745, "lat": 40.4311938, "lon": -3.703254, "tags": {"highway": "traffic_signals", "survey:date": "2023-12-10"}}, {"type": "node", "id": 141862748, "lat": 40.4332082, "lon": -3.7041334, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141865273, "lat": 40.4336965, "lon": -3.7038305, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 141868929, "lat": 40.431361, "lon": -3.7043394}, {"type": "node", "id": 141870722, "lat": 40.4291534, "lon": -3.7024984}, {"type": "node", "id": 141874455, "lat": 40.4305903, "lon": -3.700968}, {"type": "node", "id": 141875015, "lat": 40.4311185, "lon": -3.7015028}, {"type": "node", "id": 141875017, "lat": 40.4311485, "lon": -3.7011921}, {"type": "node", "id": 141875018, "lat": 40.4313484, "lon": -3.7004022}, {"type": "node", "id": 141880344, "lat": 40.432335, "lon": -3.697975}, {"type": "node", "id": 141880346, "lat": 40.4305698, "lon": -3.7000548, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 141880907, "lat": 40.4320372, "lon": -3.7015699}, {"type": "node", "id": 141881345, "lat": 40.4329365, "lon": -3.7015807}, {"type": "node", "id": 141881346, "lat": 40.4330991, "lon": -3.7020879}, {"type": "node", "id": 141881347, "lat": 40.4326593, "lon": -3.7038935}, {"type": "node", "id": 141881448, "lat": 40.4321063, "lon": -3.7036499, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141881729, "lat": 40.4326158, "lon": -3.7016271}, {"type": "node", "id": 141881777, "lat": 40.4315745, "lon": -3.7034188}, {"type": "node", "id": 141882080, "lat": 40.4323114, "lon": -3.7013651}, {"type": "node", "id": 141882864, "lat": 40.4322768, "lon": -3.7008194}, {"type": "node", "id": 141884430, "lat": 40.432555, "lon": -3.7004361}, {"type": "node", "id": 141885133, "lat": 40.4329226, "lon": -3.7005041}, {"type": "node", "id": 141885351, "lat": 40.4315537, "lon": -3.6996505}, {"type": "node", "id": 141885510, "lat": 40.4310789, "lon": -3.6994557, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 141886481, "lat": 40.429716, "lon": -3.6964357, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141886625, "lat": 40.4307599, "lon": -3.6979527}, {"type": "node", "id": 141886626, "lat": 40.4319368, "lon": -3.6984373}, {"type": "node", "id": 141886675, "lat": 40.4306272, "lon": -3.6992635}, {"type": "node", "id": 141886881, "lat": 40.4308569, "lon": -3.6969381, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 141887738, "lat": 40.432413, "lon": -3.6971892}, {"type": "node", "id": 141888359, "lat": 40.4324302, "lon": -3.6976089}, {"type": "node", "id": 141889410, "lat": 40.4323607, "lon": -3.6977335}, {"type": "node", "id": 141915390, "lat": 40.4296676, "lon": -3.6952798}, {"type": "node", "id": 141917742, "lat": 40.431091, "lon": -3.6970563}, {"type": "node", "id": 141918063, "lat": 40.4312934, "lon": -3.6951286}, {"type": "node", "id": 141918065, "lat": 40.4311358, "lon": -3.6934711}, {"type": "node", "id": 141918536, "lat": 40.4307322, "lon": -3.6951902}, {"type": "node", "id": 141919137, "lat": 40.4295871, "lon": -3.6935978, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 141920074, "lat": 40.4306148, "lon": -3.6935137, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 141920921, "lat": 40.4317547, "lon": -3.6915634}, {"type": "node", "id": 141921783, "lat": 40.4305682, "lon": -3.6917959}, {"type": "node", "id": 141923239, "lat": 40.4295059, "lon": -3.6919569}, {"type": "node", "id": 141923543, "lat": 40.4287968, "lon": -3.6920153}, {"type": "node", "id": 141923652, "lat": 40.4288813, "lon": -3.6936556}, {"type": "node", "id": 142191440, "lat": 40.4462363, "lon": -3.6897706}, {"type": "node", "id": 142191967, "lat": 40.4466582, "lon": -3.6897012}, {"type": "node", "id": 142191968, "lat": 40.4484937, "lon": -3.688567}, {"type": "node", "id": 142194318, "lat": 40.4465003, "lon": -3.6956012, "tags": {"crossing": "no"}}, {"type": "node", "id": 142195759, "lat": 40.4462942, "lon": -3.6933335}, {"type": "node", "id": 142195761, "lat": 40.4460725, "lon": -3.6894025}, {"type": "node", "id": 142198196, "lat": 40.4468106, "lon": -3.7023983}, {"type": "node", "id": 142201929, "lat": 40.4467407, "lon": -3.7024045}, {"type": "node", "id": 142222546, "lat": 40.4459638, "lon": -3.6868684}, {"type": "node", "id": 142222548, "lat": 40.4458658, "lon": -3.6863001}, {"type": "node", "id": 142222549, "lat": 40.4458079, "lon": -3.6862034}, {"type": "node", "id": 142222551, "lat": 40.4456892, "lon": -3.686071}, {"type": "node", "id": 142223394, "lat": 40.4457279, "lon": -3.6860035}, {"type": "node", "id": 142223395, "lat": 40.4458289, "lon": -3.6861145}, {"type": "node", "id": 142223397, "lat": 40.4459304, "lon": -3.6862702}, {"type": "node", "id": 142223399, "lat": 40.4460006, "lon": -3.6864777}, {"type": "node", "id": 142227128, "lat": 40.445848, "lon": -3.6860164}, {"type": "node", "id": 142227130, "lat": 40.4459984, "lon": -3.6862453, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 142227132, "lat": 40.4460617, "lon": -3.6864612}, {"type": "node", "id": 142227645, "lat": 40.4458728, "lon": -3.6865678}, {"type": "node", "id": 142227647, "lat": 40.4457925, "lon": -3.6863241}, {"type": "node", "id": 142227648, "lat": 40.4454952, "lon": -3.6859838, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 142230853, "lat": 40.4446597, "lon": -3.6849187}, {"type": "node", "id": 142231379, "lat": 40.4446194, "lon": -3.6849825}, {"type": "node", "id": 142246030, "lat": 40.4467202, "lon": -3.7001461}, {"type": "node", "id": 142248303, "lat": 40.4466022, "lon": -3.7001847}, {"type": "node", "id": 142260103, "lat": 40.4432224, "lon": -3.6835834}, {"type": "node", "id": 142279247, "lat": 40.4448741, "lon": -3.6854948}, {"type": "node", "id": 142279248, "lat": 40.4449803, "lon": -3.685319, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 142279249, "lat": 40.4451097, "lon": -3.6852046}, {"type": "node", "id": 142279251, "lat": 40.4451742, "lon": -3.6851785}, {"type": "node", "id": 142279252, "lat": 40.4451997, "lon": -3.6851649}, {"type": "node", "id": 142279254, "lat": 40.4453958, "lon": -3.6852598}, {"type": "node", "id": 142279256, "lat": 40.4454668, "lon": -3.6855685}, {"type": "node", "id": 142279257, "lat": 40.445441, "lon": -3.6856711, "tags": {"postal_code": "28002"}}, {"type": "node", "id": 142279261, "lat": 40.4450892, "lon": -3.6858512}, {"type": "node", "id": 142281585, "lat": 40.44563, "lon": -3.6857997, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 142283820, "lat": 40.4442437, "lon": -3.6899556}, {"type": "node", "id": 142284527, "lat": 40.4425525, "lon": -3.6900739}, {"type": "node", "id": 142284529, "lat": 40.4428302, "lon": -3.6902753}, {"type": "node", "id": 142284530, "lat": 40.4430798, "lon": -3.6902726}, {"type": "node", "id": 142284532, "lat": 40.4432854, "lon": -3.690065}, {"type": "node", "id": 142284533, "lat": 40.4434322, "lon": -3.6897079}, {"type": "node", "id": 142284535, "lat": 40.4435441, "lon": -3.6893704}, {"type": "node", "id": 142284537, "lat": 40.4436328, "lon": -3.6891601, "tags": {"highway": "crossing"}}, {"type": "node", "id": 142284538, "lat": 40.4438714, "lon": -3.6888792}, {"type": "node", "id": 142284539, "lat": 40.4441813, "lon": -3.6887489}, {"type": "node", "id": 142284541, "lat": 40.4445041, "lon": -3.6888141}, {"type": "node", "id": 142284543, "lat": 40.4448935, "lon": -3.6890736}, {"type": "node", "id": 142294054, "lat": 40.4395267, "lon": -3.6897566}, {"type": "node", "id": 142294064, "lat": 40.440827, "lon": -3.6891389}, {"type": "node", "id": 142294066, "lat": 40.4415753, "lon": -3.6894079}, {"type": "node", "id": 142294067, "lat": 40.4413653, "lon": -3.6903878}, {"type": "node", "id": 142294069, "lat": 40.4406574, "lon": -3.6900806}, {"type": "node", "id": 142294070, "lat": 40.4405884, "lon": -3.6903528}, {"type": "node", "id": 142294113, "lat": 40.4401996, "lon": -3.6902136}, {"type": "node", "id": 142294702, "lat": 40.4402557, "lon": -3.6899753}, {"type": "node", "id": 142295943, "lat": 40.4392454, "lon": -3.6880194}, {"type": "node", "id": 142295945, "lat": 40.4392659, "lon": -3.6873946}, {"type": "node", "id": 142296560, "lat": 40.4394439, "lon": -3.6863141}, {"type": "node", "id": 142296562, "lat": 40.439573, "lon": -3.686716}, {"type": "node", "id": 142296564, "lat": 40.4395168, "lon": -3.6872004}, {"type": "node", "id": 142296568, "lat": 40.4390051, "lon": -3.6874176}, {"type": "node", "id": 142296570, "lat": 40.4387243, "lon": -3.6875127}, {"type": "node", "id": 142296571, "lat": 40.4384674, "lon": -3.6876354}, {"type": "node", "id": 142297730, "lat": 40.4422223, "lon": -3.6886429}, {"type": "node", "id": 142298473, "lat": 40.4409205, "lon": -3.6879614}, {"type": "node", "id": 142298992, "lat": 40.4414303, "lon": -3.6882467, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 142299870, "lat": 40.4403366, "lon": -3.6875795}, {"type": "node", "id": 142299872, "lat": 40.4400106, "lon": -3.6873769}, {"type": "node", "id": 142299874, "lat": 40.43988, "lon": -3.687334}, {"type": "node", "id": 142299876, "lat": 40.4397493, "lon": -3.6873855}, {"type": "node", "id": 142299877, "lat": 40.4396364, "lon": -3.6875253, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 142301508, "lat": 40.4390858, "lon": -3.6855282}, {"type": "node", "id": 142301509, "lat": 40.4390794, "lon": -3.6851778}, {"type": "node", "id": 142301510, "lat": 40.4391879, "lon": -3.6846905}, {"type": "node", "id": 142301511, "lat": 40.4392659, "lon": -3.6842612}, {"type": "node", "id": 142301512, "lat": 40.4392725, "lon": -3.6837463}, {"type": "node", "id": 142301513, "lat": 40.4392069, "lon": -3.6829578}, {"type": "node", "id": 142302067, "lat": 40.440512, "lon": -3.6832883}, {"type": "node", "id": 142302069, "lat": 40.4407592, "lon": -3.6842384}, {"type": "node", "id": 142302070, "lat": 40.4412936, "lon": -3.6859862}, {"type": "node", "id": 142303401, "lat": 40.4401277, "lon": -3.6847137}, {"type": "node", "id": 142303403, "lat": 40.4397266, "lon": -3.6849193}, {"type": "node", "id": 142303405, "lat": 40.4390964, "lon": -3.6849713}, {"type": "node", "id": 142321412, "lat": 40.43634, "lon": -3.6889083}, {"type": "node", "id": 143497066, "lat": 40.4349953, "lon": -3.6844146}, {"type": "node", "id": 143497929, "lat": 40.4350448, "lon": -3.6854294}, {"type": "node", "id": 143500432, "lat": 40.436235, "lon": -3.6853324}, {"type": "node", "id": 143500434, "lat": 40.4361848, "lon": -3.6843011}, {"type": "node", "id": 143500436, "lat": 40.4360669, "lon": -3.6818791}, {"type": "node", "id": 143500437, "lat": 40.4360059, "lon": -3.6806273}, {"type": "node", "id": 143500439, "lat": 40.4359427, "lon": -3.6793288}, {"type": "node", "id": 143504242, "lat": 40.4348756, "lon": -3.6819848}, {"type": "node", "id": 143505038, "lat": 40.4340419, "lon": -3.6866295}, {"type": "node", "id": 143508728, "lat": 40.4339875, "lon": -3.6855141}, {"type": "node", "id": 143508729, "lat": 40.4339382, "lon": -3.6845028}, {"type": "node", "id": 143508731, "lat": 40.4338176, "lon": -3.6820642}, {"type": "node", "id": 143508732, "lat": 40.4337553, "lon": -3.6808172}, {"type": "node", "id": 143598548, "lat": 40.432703, "lon": -3.6795982}, {"type": "node", "id": 149169016, "lat": 40.4219277, "lon": -3.6950529}, {"type": "node", "id": 149169629, "lat": 40.4204058, "lon": -3.6950405}, {"type": "node", "id": 149169631, "lat": 40.4203834, "lon": -3.6940766}, {"type": "node", "id": 150371212, "lat": 40.4410771, "lon": -3.6680915}, {"type": "node", "id": 150760245, "lat": 40.4455407, "lon": -3.7209408}, {"type": "node", "id": 150760271, "lat": 40.4468143, "lon": -3.7189883}, {"type": "node", "id": 150760278, "lat": 40.4467145, "lon": -3.7181462}, {"type": "node", "id": 150760281, "lat": 40.4473048, "lon": -3.7175851}, {"type": "node", "id": 150760286, "lat": 40.446424, "lon": -3.7154, "tags": {"highway": "crossing"}}, {"type": "node", "id": 150760292, "lat": 40.4464372, "lon": -3.7150458}, {"type": "node", "id": 150760294, "lat": 40.4467123, "lon": -3.7139373}, {"type": "node", "id": 150760298, "lat": 40.4470564, "lon": -3.7125483}, {"type": "node", "id": 150760306, "lat": 40.4471678, "lon": -3.7120986}, {"type": "node", "id": 150760309, "lat": 40.4484834, "lon": -3.7126938}, {"type": "node", "id": 150760313, "lat": 40.4480766, "lon": -3.7144113, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760316, "lat": 40.4480466, "lon": -3.7148308, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 150760322, "lat": 40.4487553, "lon": -3.7166192, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 150760333, "lat": 40.4493978, "lon": -3.7130858}, {"type": "node", "id": 150760339, "lat": 40.4505435, "lon": -3.7135642}, {"type": "node", "id": 150760350, "lat": 40.4495768, "lon": -3.7110324}, {"type": "node", "id": 150760355, "lat": 40.4492051, "lon": -3.7146946, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760365, "lat": 40.4492384, "lon": -3.7167007}, {"type": "node", "id": 150760374, "lat": 40.44963, "lon": -3.7170111}, {"type": "node", "id": 150760379, "lat": 40.450042, "lon": -3.7170063}, {"type": "node", "id": 150760384, "lat": 40.4503325, "lon": -3.7166485}, {"type": "node", "id": 150760393, "lat": 40.4507376, "lon": -3.7166829}, {"type": "node", "id": 150760397, "lat": 40.4511924, "lon": -3.7171338}, {"type": "node", "id": 150760405, "lat": 40.4504813, "lon": -3.7165532}, {"type": "node", "id": 150760410, "lat": 40.4504524, "lon": -3.7159998}, {"type": "node", "id": 150760414, "lat": 40.4506184, "lon": -3.7154747}, {"type": "node", "id": 150760418, "lat": 40.4507292, "lon": -3.7152773}, {"type": "node", "id": 150760421, "lat": 40.4489733, "lon": -3.7199046}, {"type": "node", "id": 150760425, "lat": 40.4484809, "lon": -3.7216017}, {"type": "node", "id": 150760431, "lat": 40.4490425, "lon": -3.7212273}, {"type": "node", "id": 150760436, "lat": 40.4499665, "lon": -3.720468}, {"type": "node", "id": 150760441, "lat": 40.4505093, "lon": -3.7199131, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 150760447, "lat": 40.4509028, "lon": -3.7195884, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 150760456, "lat": 40.4464612, "lon": -3.7184666}, {"type": "node", "id": 150760463, "lat": 40.4456906, "lon": -3.7192551, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760466, "lat": 40.4454782, "lon": -3.719622}, {"type": "node", "id": 150760472, "lat": 40.4454591, "lon": -3.7196481}, {"type": "node", "id": 150760477, "lat": 40.4454093, "lon": -3.7196743, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 150760480, "lat": 40.4451305, "lon": -3.7198555}, {"type": "node", "id": 150760483, "lat": 40.4450931, "lon": -3.7198776, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760490, "lat": 40.4455853, "lon": -3.7194688}, {"type": "node", "id": 150760511, "lat": 40.4449322, "lon": -3.7160026}, {"type": "node", "id": 150760517, "lat": 40.4449772, "lon": -3.7169047}, {"type": "node", "id": 150760521, "lat": 40.4451347, "lon": -3.7179169}, {"type": "node", "id": 150760526, "lat": 40.4467022, "lon": -3.7179424, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 150760533, "lat": 40.4466285, "lon": -3.7171163}, {"type": "node", "id": 150760537, "lat": 40.4462407, "lon": -3.716134}, {"type": "node", "id": 150760543, "lat": 40.444914, "lon": -3.7155899}, {"type": "node", "id": 150760546, "lat": 40.445399, "lon": -3.7159522, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760548, "lat": 40.4457891, "lon": -3.717202}, {"type": "node", "id": 150760551, "lat": 40.4460276, "lon": -3.7172718}, {"type": "node", "id": 150760555, "lat": 40.4464002, "lon": -3.7172204, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760560, "lat": 40.4457215, "lon": -3.7175097}, {"type": "node", "id": 150760562, "lat": 40.4456836, "lon": -3.7177725}, {"type": "node", "id": 150760567, "lat": 40.4456957, "lon": -3.7180961}, {"type": "node", "id": 150760572, "lat": 40.4458074, "lon": -3.7185031}, {"type": "node", "id": 150760577, "lat": 40.4460227, "lon": -3.7189215}, {"type": "node", "id": 150760580, "lat": 40.445416, "lon": -3.7178527}, {"type": "node", "id": 150760587, "lat": 40.4455707, "lon": -3.7179639}, {"type": "node", "id": 150760590, "lat": 40.4450145, "lon": -3.7179485}, {"type": "node", "id": 150760596, "lat": 40.4449002, "lon": -3.7180028}, {"type": "node", "id": 150760601, "lat": 40.4448027, "lon": -3.7180825}, {"type": "node", "id": 150760604, "lat": 40.4445916, "lon": -3.718393}, {"type": "node", "id": 150760630, "lat": 40.4443446, "lon": -3.7198782}, {"type": "node", "id": 150760632, "lat": 40.4463753, "lon": -3.7152963}, {"type": "node", "id": 150760640, "lat": 40.4463068, "lon": -3.7154849, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 150760645, "lat": 40.4462326, "lon": -3.7156219}, {"type": "node", "id": 150760653, "lat": 40.4461, "lon": -3.7157128}, {"type": "node", "id": 150760658, "lat": 40.4458896, "lon": -3.7148098}, {"type": "node", "id": 150760661, "lat": 40.4464829, "lon": -3.7123263}, {"type": "node", "id": 150760666, "lat": 40.4495288, "lon": -3.7115537}, {"type": "node", "id": 150760671, "lat": 40.4504184, "lon": -3.7110818}, {"type": "node", "id": 150760678, "lat": 40.4504649, "lon": -3.7112753}, {"type": "node", "id": 150760682, "lat": 40.4508146, "lon": -3.7114073, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 150760685, "lat": 40.4509126, "lon": -3.7114336}, {"type": "node", "id": 150760689, "lat": 40.4502151, "lon": -3.711067}, {"type": "node", "id": 150760701, "lat": 40.4434356, "lon": -3.7196479}, {"type": "node", "id": 150760705, "lat": 40.4434532, "lon": -3.7198347}, {"type": "node", "id": 150760710, "lat": 40.4434305, "lon": -3.7207627}, {"type": "node", "id": 150760714, "lat": 40.4440238, "lon": -3.7208599}, {"type": "node", "id": 150760718, "lat": 40.4439941, "lon": -3.721449}, {"type": "node", "id": 150760721, "lat": 40.4440368, "lon": -3.7217845}, {"type": "node", "id": 150760723, "lat": 40.4439025, "lon": -3.7227965}, {"type": "node", "id": 150760727, "lat": 40.4397356, "lon": -3.7183133}, {"type": "node", "id": 150760730, "lat": 40.4397513, "lon": -3.7184751}, {"type": "node", "id": 150760732, "lat": 40.4391199, "lon": -3.7198471}, {"type": "node", "id": 150760739, "lat": 40.4391541, "lon": -3.7202279}, {"type": "node", "id": 150760743, "lat": 40.4410356, "lon": -3.7218489}, {"type": "node", "id": 150760747, "lat": 40.441351, "lon": -3.7217207}, {"type": "node", "id": 150760749, "lat": 40.4418146, "lon": -3.7206647}, {"type": "node", "id": 150760753, "lat": 40.4421497, "lon": -3.7205458}, {"type": "node", "id": 150760756, "lat": 40.4496065, "lon": -3.7159187}, {"type": "node", "id": 150760759, "lat": 40.4498698, "lon": -3.7154925}, {"type": "node", "id": 150760762, "lat": 40.4503911, "lon": -3.7143369}, {"type": "node", "id": 150760925, "lat": 40.4417588, "lon": -3.7267791}, {"type": "node", "id": 150760926, "lat": 40.4419639, "lon": -3.7250282}, {"type": "node", "id": 150760933, "lat": 40.4421999, "lon": -3.7247893}, {"type": "node", "id": 150760935, "lat": 40.442482, "lon": -3.7247979}, {"type": "node", "id": 150760937, "lat": 40.4427143, "lon": -3.7227883}, {"type": "node", "id": 150760941, "lat": 40.4428606, "lon": -3.7226253}, {"type": "node", "id": 150760946, "lat": 40.4455604, "lon": -3.723114}, {"type": "node", "id": 150760950, "lat": 40.4454293, "lon": -3.7243833}, {"type": "node", "id": 150760955, "lat": 40.4453114, "lon": -3.7254427}, {"type": "node", "id": 150760961, "lat": 40.4461019, "lon": -3.7256248, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760966, "lat": 40.4462161, "lon": -3.724525}, {"type": "node", "id": 150760970, "lat": 40.4461597, "lon": -3.7250931}, {"type": "node", "id": 150760978, "lat": 40.4427425, "lon": -3.7250292}, {"type": "node", "id": 150760984, "lat": 40.4431184, "lon": -3.7252282}, {"type": "node", "id": 150760987, "lat": 40.4447959, "lon": -3.7255368, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 150760992, "lat": 40.4450557, "lon": -3.7254432}, {"type": "node", "id": 153062596, "lat": 40.4442207, "lon": -3.726858}, {"type": "node", "id": 153062609, "lat": 40.4442904, "lon": -3.7261507}, {"type": "node", "id": 153062614, "lat": 40.4443377, "lon": -3.72567}, {"type": "node", "id": 153062621, "lat": 40.4438545, "lon": -3.7255868}, {"type": "node", "id": 153062629, "lat": 40.4433587, "lon": -3.7255016}, {"type": "node", "id": 153062639, "lat": 40.4433109, "lon": -3.7259728}, {"type": "node", "id": 153062646, "lat": 40.4432397, "lon": -3.7266755}, {"type": "node", "id": 153115916, "lat": 40.442007, "lon": -3.724773}, {"type": "node", "id": 153116020, "lat": 40.4380847, "lon": -3.7229923}, {"type": "node", "id": 154818553, "lat": 40.4442639, "lon": -3.7270125}, {"type": "node", "id": 177587168, "lat": 40.4458956, "lon": -3.7275243, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 255099047, "lat": 40.4406828, "lon": -3.7011948}, {"type": "node", "id": 255099808, "lat": 40.440913, "lon": -3.7002851}, {"type": "node", "id": 255099809, "lat": 40.4406557, "lon": -3.7001715}, {"type": "node", "id": 255099811, "lat": 40.4404239, "lon": -3.7010825}, {"type": "node", "id": 255289006, "lat": 40.4222034, "lon": -3.6817478}, {"type": "node", "id": 255289007, "lat": 40.4222649, "lon": -3.6830184}, {"type": "node", "id": 255881690, "lat": 40.4328078, "lon": -3.6909297, "tags": {"name": "Rub\u00e9n Dar\u00edo", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 255881691, "lat": 40.4331394, "lon": -3.6909407, "tags": {"layer": "-1", "name": "Rub\u00e9n Dar\u00edo", "railway": "subway_entrance"}}, {"type": "node", "id": 256525373, "lat": 40.4378662, "lon": -3.6905819, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 256525374, "lat": 40.4378776, "lon": -3.6904838}, {"type": "node", "id": 256525381, "lat": 40.4381335, "lon": -3.6906041}, {"type": "node", "id": 256525425, "lat": 40.4380919, "lon": -3.6904689, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 263839181, "lat": 40.4461667, "lon": -3.6922538}, {"type": "node", "id": 263839680, "lat": 40.4462386, "lon": -3.6921841}, {"type": "node", "id": 263839681, "lat": 40.4463731, "lon": -3.692247}, {"type": "node", "id": 264097169, "lat": 40.4375429, "lon": -3.7233799}, {"type": "node", "id": 264097170, "lat": 40.4380093, "lon": -3.7240947}, {"type": "node", "id": 264097171, "lat": 40.4383193, "lon": -3.7245232}, {"type": "node", "id": 264097172, "lat": 40.4388867, "lon": -3.7252752}, {"type": "node", "id": 264097173, "lat": 40.4395486, "lon": -3.7261482}, {"type": "node", "id": 266372698, "lat": 40.4355682, "lon": -3.7199539}, {"type": "node", "id": 266372699, "lat": 40.4358614, "lon": -3.7205226}, {"type": "node", "id": 266372700, "lat": 40.4362721, "lon": -3.7211634}, {"type": "node", "id": 266373384, "lat": 40.4355609, "lon": -3.7198697}, {"type": "node", "id": 266373385, "lat": 40.4356059, "lon": -3.7197491}, {"type": "node", "id": 266373386, "lat": 40.4356906, "lon": -3.7196605}, {"type": "node", "id": 266374396, "lat": 40.4358644, "lon": -3.719669}, {"type": "node", "id": 267271033, "lat": 40.4413498, "lon": -3.692567, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 269361123, "lat": 40.4383842, "lon": -3.6985453}, {"type": "node", "id": 269361124, "lat": 40.4367119, "lon": -3.6988487}, {"type": "node", "id": 269361176, "lat": 40.4376642, "lon": -3.699407}, {"type": "node", "id": 269361177, "lat": 40.4372881, "lon": -3.6978939}, {"type": "node", "id": 269361215, "lat": 40.4361366, "lon": -3.6979913}, {"type": "node", "id": 269361216, "lat": 40.436085, "lon": -3.6992134}, {"type": "node", "id": 287009075, "lat": 40.4390395, "lon": -3.7097223}, {"type": "node", "id": 289004847, "lat": 40.4374764, "lon": -3.6986402}, {"type": "node", "id": 289005947, "lat": 40.4357768, "lon": -3.6990794, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 289076301, "lat": 40.4332125, "lon": -3.7013514}, {"type": "node", "id": 289076302, "lat": 40.4331706, "lon": -3.7012299}, {"type": "node", "id": 289076304, "lat": 40.4332548, "lon": -3.7011575}, {"type": "node", "id": 291274690, "lat": 40.4354234, "lon": -3.7005231}, {"type": "node", "id": 291274693, "lat": 40.4352195, "lon": -3.699783}, {"type": "node", "id": 291274695, "lat": 40.4354937, "lon": -3.6996806}, {"type": "node", "id": 291274698, "lat": 40.4355762, "lon": -3.7000243}, {"type": "node", "id": 291274700, "lat": 40.435319, "lon": -3.7001342}, {"type": "node", "id": 291274927, "lat": 40.4383263, "lon": -3.704336, "tags": {"name": "Bravo Murillo impares", "railway": "subway_entrance", "wikidata": "Q191987", "wikipedia": "es:Metro de Madrid"}}, {"type": "node", "id": 292093353, "lat": 40.4297986, "lon": -3.708441}, {"type": "node", "id": 292093354, "lat": 40.4293674, "lon": -3.7085157}, {"type": "node", "id": 292093356, "lat": 40.4293466, "lon": -3.7083078}, {"type": "node", "id": 292093358, "lat": 40.42978, "lon": -3.7082327}, {"type": "node", "id": 293251183, "lat": 40.4485639, "lon": -3.7247335}, {"type": "node", "id": 293293726, "lat": 40.425321, "lon": -3.7170997}, {"type": "node", "id": 296097815, "lat": 40.4507901, "lon": -3.7196645}, {"type": "node", "id": 296097816, "lat": 40.4495, "lon": -3.7209518}, {"type": "node", "id": 296097838, "lat": 40.4484821, "lon": -3.7244561}, {"type": "node", "id": 298148410, "lat": 40.4292586, "lon": -3.6962369}, {"type": "node", "id": 298150577, "lat": 40.4301756, "lon": -3.7029996}, {"type": "node", "id": 298150579, "lat": 40.4305807, "lon": -3.7031633}, {"type": "node", "id": 298151119, "lat": 40.4315181, "lon": -3.7041718}, {"type": "node", "id": 298151333, "lat": 40.4312918, "lon": -3.7034402, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 298151334, "lat": 40.4313533, "lon": -3.7041968}, {"type": "node", "id": 298151406, "lat": 40.4301505, "lon": -3.7029356}, {"type": "node", "id": 298151462, "lat": 40.4317015, "lon": -3.7034782}, {"type": "node", "id": 298151463, "lat": 40.4331178, "lon": -3.704222}, {"type": "node", "id": 298152194, "lat": 40.4318146, "lon": -3.7005308}, {"type": "node", "id": 298152196, "lat": 40.4322554, "lon": -3.7009331}, {"type": "node", "id": 298152197, "lat": 40.4317809, "lon": -3.7007236}, {"type": "node", "id": 298152271, "lat": 40.431612, "lon": -3.7005304}, {"type": "node", "id": 298152283, "lat": 40.4323008, "lon": -3.7007365}, {"type": "node", "id": 298152330, "lat": 40.4323514, "lon": -3.7008539}, {"type": "node", "id": 298152518, "lat": 40.4340166, "lon": -3.7016207}, {"type": "node", "id": 298152519, "lat": 40.4337346, "lon": -3.7015811}, {"type": "node", "id": 298152611, "lat": 40.4337948, "lon": -3.7014008}, {"type": "node", "id": 298153229, "lat": 40.4331441, "lon": -3.7007284}, {"type": "node", "id": 298153463, "lat": 40.4326259, "lon": -3.7015354}, {"type": "node", "id": 298153464, "lat": 40.4325362, "lon": -3.7014768}, {"type": "node", "id": 298153466, "lat": 40.4323678, "lon": -3.7011574}, {"type": "node", "id": 298153468, "lat": 40.4324509, "lon": -3.7007014}, {"type": "node", "id": 298153469, "lat": 40.4325017, "lon": -3.7006349}, {"type": "node", "id": 298153470, "lat": 40.4325968, "lon": -3.7005576}, {"type": "node", "id": 298153471, "lat": 40.4326988, "lon": -3.7005189}, {"type": "node", "id": 298153472, "lat": 40.4329022, "lon": -3.7005487}, {"type": "node", "id": 298153478, "lat": 40.4330839, "lon": -3.7013437}, {"type": "node", "id": 298153502, "lat": 40.4323582, "lon": -3.7010098}, {"type": "node", "id": 298153508, "lat": 40.4329881, "lon": -3.7014701}, {"type": "node", "id": 298153590, "lat": 40.4327654, "lon": -3.7011339}, {"type": "node", "id": 298153592, "lat": 40.4327275, "lon": -3.701123}, {"type": "node", "id": 298153593, "lat": 40.432708, "lon": -3.7011058}, {"type": "node", "id": 298153595, "lat": 40.4327159, "lon": -3.70098}, {"type": "node", "id": 298153599, "lat": 40.4328027, "lon": -3.7011099}, {"type": "node", "id": 298153704, "lat": 40.4327972, "lon": -3.7009779}, {"type": "node", "id": 298153706, "lat": 40.4331287, "lon": -3.7008417}, {"type": "node", "id": 298153717, "lat": 40.4331496, "lon": -3.7009323}, {"type": "node", "id": 298153719, "lat": 40.4331579, "lon": -3.7010264}, {"type": "node", "id": 298153721, "lat": 40.4331355, "lon": -3.7012128}, {"type": "node", "id": 298153752, "lat": 40.4326925, "lon": -3.7010566}, {"type": "node", "id": 298153755, "lat": 40.4328223, "lon": -3.7010271}, {"type": "node", "id": 298153820, "lat": 40.4330004, "lon": -3.7006209}, {"type": "node", "id": 298153856, "lat": 40.4327804, "lon": -3.7009654}, {"type": "node", "id": 298153888, "lat": 40.4323802, "lon": -3.7008645}, {"type": "node", "id": 298154188, "lat": 40.4329876, "lon": -3.7005541}, {"type": "node", "id": 298154271, "lat": 40.4330891, "lon": -3.7006569}, {"type": "node", "id": 298156269, "lat": 40.4326393, "lon": -3.7059412, "tags": {"noexit": "yes"}}, {"type": "node", "id": 298156293, "lat": 40.4326089, "lon": -3.7052809}, {"type": "node", "id": 298156454, "lat": 40.4325497, "lon": -3.7060394}, {"type": "node", "id": 298156456, "lat": 40.4324762, "lon": -3.7060481}, {"type": "node", "id": 298156457, "lat": 40.4324994, "lon": -3.7052482}, {"type": "node", "id": 298157062, "lat": 40.4369435, "lon": -3.704605}, {"type": "node", "id": 298157533, "lat": 40.4366109, "lon": -3.7055424, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298157651, "lat": 40.4372785, "lon": -3.7055163}, {"type": "node", "id": 298157654, "lat": 40.437038, "lon": -3.7055257}, {"type": "node", "id": 298157662, "lat": 40.4371517, "lon": -3.7049062}, {"type": "node", "id": 298157709, "lat": 40.4371452, "lon": -3.7044644}, {"type": "node", "id": 298157772, "lat": 40.4371461, "lon": -3.7044328, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298157773, "lat": 40.4372534, "lon": -3.7042502, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 298157803, "lat": 40.4370734, "lon": -3.7049148}, {"type": "node", "id": 298157908, "lat": 40.4366859, "lon": -3.7046035}, {"type": "node", "id": 298157973, "lat": 40.4373645, "lon": -3.7048514}, {"type": "node", "id": 298158014, "lat": 40.4376582, "lon": -3.7050615, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298158021, "lat": 40.4376148, "lon": -3.7048494, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298158022, "lat": 40.437656, "lon": -3.7048481}, {"type": "node", "id": 298158053, "lat": 40.4366924, "lon": -3.7048596}, {"type": "node", "id": 298158061, "lat": 40.4369341, "lon": -3.704851}, {"type": "node", "id": 298158500, "lat": 40.4373477, "lon": -3.7046064}, {"type": "node", "id": 298158501, "lat": 40.4376234, "lon": -3.704595, "tags": {"barrier": "gate"}}, {"type": "node", "id": 298158502, "lat": 40.4376556, "lon": -3.7045933}, {"type": "node", "id": 298158504, "lat": 40.4370736, "lon": -3.7050868}, {"type": "node", "id": 298158512, "lat": 40.4372661, "lon": -3.7050774}, {"type": "node", "id": 298158513, "lat": 40.4370256, "lon": -3.7050891}, {"type": "node", "id": 298158521, "lat": 40.4357683, "lon": -3.7042937}, {"type": "node", "id": 298158739, "lat": 40.4357772, "lon": -3.705604}, {"type": "node", "id": 298448863, "lat": 40.427978, "lon": -3.7142741}, {"type": "node", "id": 298609370, "lat": 40.4253388, "lon": -3.7125258}, {"type": "node", "id": 299600101, "lat": 40.4349085, "lon": -3.699257, "tags": {"name": "Eloy Gonzalo, impares", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "This entrance has steps, lift to station nearby to East."}}, {"type": "node", "id": 300750920, "lat": 40.4254701, "lon": -3.6890623, "tags": {"amenity": "parking", "layer": "-1", "name": "Plaza de Col\u00f3n", "parking": "underground"}}, {"type": "node", "id": 300751449, "lat": 40.4278977, "lon": -3.6893475, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 300751453, "lat": 40.4292463, "lon": -3.689087, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-24", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 301432199, "lat": 40.4366886, "lon": -3.7055394}, {"type": "node", "id": 301432403, "lat": 40.4371538, "lon": -3.7048587}, {"type": "node", "id": 301432548, "lat": 40.437147, "lon": -3.7046087}, {"type": "node", "id": 301432644, "lat": 40.4366982, "lon": -3.7054176}, {"type": "node", "id": 301432646, "lat": 40.4366874, "lon": -3.7046982}, {"type": "node", "id": 301432647, "lat": 40.4366907, "lon": -3.7048058}, {"type": "node", "id": 301432648, "lat": 40.4366341, "lon": -3.7048705}, {"type": "node", "id": 301432763, "lat": 40.4366081, "lon": -3.7080394}, {"type": "node", "id": 301432764, "lat": 40.4365693, "lon": -3.7062877}, {"type": "node", "id": 301432765, "lat": 40.4366607, "lon": -3.7062795}, {"type": "node", "id": 301432766, "lat": 40.4366422, "lon": -3.7055412}, {"type": "node", "id": 301432878, "lat": 40.4376791, "lon": -3.7061953}, {"type": "node", "id": 301432902, "lat": 40.4378943, "lon": -3.7061769}, {"type": "node", "id": 301432903, "lat": 40.437341, "lon": -3.7062242}, {"type": "node", "id": 301432914, "lat": 40.4373718, "lon": -3.7059668}, {"type": "node", "id": 301432915, "lat": 40.4376683, "lon": -3.7059408}, {"type": "node", "id": 301432916, "lat": 40.4378765, "lon": -3.7059225}, {"type": "node", "id": 301432943, "lat": 40.4373522, "lon": -3.705735}, {"type": "node", "id": 301432944, "lat": 40.4376586, "lon": -3.7057116}, {"type": "node", "id": 301432945, "lat": 40.437914, "lon": -3.7056921}, {"type": "node", "id": 301432954, "lat": 40.4362785, "lon": -3.7058176}, {"type": "node", "id": 301432955, "lat": 40.4366486, "lon": -3.7057954}, {"type": "node", "id": 301432956, "lat": 40.4369879, "lon": -3.7057751}, {"type": "node", "id": 301432963, "lat": 40.4363201, "lon": -3.7060526}, {"type": "node", "id": 301432964, "lat": 40.4366544, "lon": -3.7060274}, {"type": "node", "id": 301432965, "lat": 40.4369864, "lon": -3.7060011}, {"type": "node", "id": 301432985, "lat": 40.4369929, "lon": -3.70625}, {"type": "node", "id": 301433140, "lat": 40.4365616, "lon": -3.7067333}, {"type": "node", "id": 301433174, "lat": 40.4363919, "lon": -3.7063034, "tags": {"highway": "turning_circle"}}, {"type": "node", "id": 301555339, "lat": 40.4324139, "lon": -3.7013093}, {"type": "node", "id": 301555575, "lat": 40.4325607, "lon": -3.7005814}, {"type": "node", "id": 302786451, "lat": 40.4418843, "lon": -3.7017108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 305536077, "lat": 40.4228721, "lon": -3.6931391}, {"type": "node", "id": 305776147, "lat": 40.4372134, "lon": -3.7236628}, {"type": "node", "id": 306092383, "lat": 40.4368628, "lon": -3.7027453}, {"type": "node", "id": 306092384, "lat": 40.4369562, "lon": -3.7025599}, {"type": "node", "id": 306092387, "lat": 40.4369426, "lon": -3.7029422}, {"type": "node", "id": 306092388, "lat": 40.4371855, "lon": -3.7028252}, {"type": "node", "id": 306092389, "lat": 40.4370666, "lon": -3.702544}, {"type": "node", "id": 306092390, "lat": 40.4331241, "lon": -3.6912993, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 306092392, "lat": 40.4328018, "lon": -3.6913397, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 306546511, "lat": 40.4414774, "lon": -3.6879502}, {"type": "node", "id": 306546512, "lat": 40.4414362, "lon": -3.6880489}, {"type": "node", "id": 306546514, "lat": 40.4411475, "lon": -3.6880769}, {"type": "node", "id": 306546515, "lat": 40.4420557, "lon": -3.6888331}, {"type": "node", "id": 306546516, "lat": 40.4413618, "lon": -3.6884788}, {"type": "node", "id": 306546519, "lat": 40.4421772, "lon": -3.6877574}, {"type": "node", "id": 306546520, "lat": 40.4431869, "lon": -3.6876703}, {"type": "node", "id": 306546521, "lat": 40.4431968, "lon": -3.6872752}, {"type": "node", "id": 306546522, "lat": 40.4432403, "lon": -3.6872267}, {"type": "node", "id": 306547670, "lat": 40.4408429, "lon": -3.6882044}, {"type": "node", "id": 318919458, "lat": 40.4270819, "lon": -3.7210086}, {"type": "node", "id": 318919466, "lat": 40.4286581, "lon": -3.7214834}, {"type": "node", "id": 318919470, "lat": 40.4286625, "lon": -3.7217279}, {"type": "node", "id": 321256790, "lat": 40.4383162, "lon": -3.6987634, "tags": {"name": "Jos\u00e9 Abascal - Ponzano", "railway": "subway_entrance"}}, {"type": "node", "id": 325172790, "lat": 40.4253492, "lon": -3.7036209}, {"type": "node", "id": 325172794, "lat": 40.4251454, "lon": -3.7038934}, {"type": "node", "id": 325172800, "lat": 40.4252271, "lon": -3.7041792}, {"type": "node", "id": 326195947, "lat": 40.424456, "lon": -3.6941985, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 326195962, "lat": 40.4245508, "lon": -3.6946645, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 326196041, "lat": 40.4238382, "lon": -3.6977583}, {"type": "node", "id": 327492852, "lat": 40.4328438, "lon": -3.6837283}, {"type": "node", "id": 327492865, "lat": 40.4328841, "lon": -3.6845906, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 327492878, "lat": 40.4329145, "lon": -3.685601}, {"type": "node", "id": 330179617, "lat": 40.4347235, "lon": -3.7196077, "tags": {"level": "0", "name": "Terminal de autobuses (isla 1)", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 330271035, "lat": 40.4481839, "lon": -3.7274285}, {"type": "node", "id": 330271037, "lat": 40.44843, "lon": -3.7251622}, {"type": "node", "id": 330271089, "lat": 40.445914, "lon": -3.7273545, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 330271161, "lat": 40.4417963, "lon": -3.7266673, "tags": {"bicycle": "yes", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 338727723, "lat": 40.4470318, "lon": -3.7092979}, {"type": "node", "id": 338727732, "lat": 40.4467673, "lon": -3.7041255}, {"type": "node", "id": 338727741, "lat": 40.4468056, "lon": -3.7050476}, {"type": "node", "id": 338727751, "lat": 40.4457863, "lon": -3.7051402, "tags": {"highway": "turning_circle"}}, {"type": "node", "id": 338727758, "lat": 40.4478713, "lon": -3.703833}, {"type": "node", "id": 338727767, "lat": 40.4472632, "lon": -3.6999611}, {"type": "node", "id": 338727776, "lat": 40.4473644, "lon": -3.7000626}, {"type": "node", "id": 338727784, "lat": 40.4473604, "lon": -3.6999435}, {"type": "node", "id": 338727794, "lat": 40.4473384, "lon": -3.6999455}, {"type": "node", "id": 338727802, "lat": 40.4473413, "lon": -3.700046, "tags": {"highway": "elevator"}}, {"type": "node", "id": 338727811, "lat": 40.4473166, "lon": -3.7000476}, {"type": "node", "id": 338727821, "lat": 40.4473146, "lon": -3.6999531}, {"type": "node", "id": 338727830, "lat": 40.4465953, "lon": -3.700319}, {"type": "node", "id": 338727838, "lat": 40.4468592, "lon": -3.7009294}, {"type": "node", "id": 338727849, "lat": 40.4465827, "lon": -3.7007212}, {"type": "node", "id": 338727887, "lat": 40.4461548, "lon": -3.703679}, {"type": "node", "id": 338727896, "lat": 40.4461404, "lon": -3.703872, "tags": {"highway": "give_way"}}, {"type": "node", "id": 338727906, "lat": 40.4465063, "lon": -3.7039531, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 338727916, "lat": 40.4465825, "lon": -3.7037392, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 338727925, "lat": 40.4469954, "lon": -3.7045542, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 338727935, "lat": 40.4470771, "lon": -3.7060046}, {"type": "node", "id": 338727945, "lat": 40.4469094, "lon": -3.7068013}, {"type": "node", "id": 338727954, "lat": 40.4468797, "lon": -3.7059942}, {"type": "node", "id": 338727964, "lat": 40.4469346, "lon": -3.7059329}, {"type": "node", "id": 338727974, "lat": 40.4469664, "lon": -3.7059243}, {"type": "node", "id": 338727985, "lat": 40.4470397, "lon": -3.7059461, "tags": {"highway": "give_way"}}, {"type": "node", "id": 338727995, "lat": 40.4469133, "lon": -3.7047292}, {"type": "node", "id": 338728005, "lat": 40.446985, "lon": -3.7055192}, {"type": "node", "id": 338728013, "lat": 40.4470585, "lon": -3.7056513}, {"type": "node", "id": 338728036, "lat": 40.4468754, "lon": -3.7023787}, {"type": "node", "id": 338728050, "lat": 40.4466691, "lon": -3.7023727}, {"type": "node", "id": 338728060, "lat": 40.4468374, "lon": -3.7024681}, {"type": "node", "id": 338728073, "lat": 40.4467707, "lon": -3.7024943}, {"type": "node", "id": 338728086, "lat": 40.4467128, "lon": -3.7024699}, {"type": "node", "id": 338728098, "lat": 40.446878, "lon": -3.7024773}, {"type": "node", "id": 338728112, "lat": 40.4467968, "lon": -3.7026393}, {"type": "node", "id": 338728124, "lat": 40.4468182, "lon": -3.7031552}, {"type": "node", "id": 338728134, "lat": 40.4469105, "lon": -3.703261}, {"type": "node", "id": 338728145, "lat": 40.4467417, "lon": -3.7035479}, {"type": "node", "id": 338728155, "lat": 40.4466793, "lon": -3.7026677}, {"type": "node", "id": 338728164, "lat": 40.4467957, "lon": -3.7032758}, {"type": "node", "id": 338728174, "lat": 40.4467806, "lon": -3.7028703}, {"type": "node", "id": 338728189, "lat": 40.4458285, "lon": -3.7074652}, {"type": "node", "id": 338728203, "lat": 40.4444264, "lon": -3.7101147}, {"type": "node", "id": 338728219, "lat": 40.4445071, "lon": -3.7103188}, {"type": "node", "id": 338728428, "lat": 40.447213, "lon": -3.7092266}, {"type": "node", "id": 338728444, "lat": 40.4470551, "lon": -3.708915}, {"type": "node", "id": 338728451, "lat": 40.4439585, "lon": -3.7104431}, {"type": "node", "id": 338734056, "lat": 40.4497514, "lon": -3.702266}, {"type": "node", "id": 338734205, "lat": 40.4490412, "lon": -3.7019362}, {"type": "node", "id": 338734223, "lat": 40.4488174, "lon": -3.7020378}, {"type": "node", "id": 338734241, "lat": 40.4490183, "lon": -3.7021108}, {"type": "node", "id": 338734279, "lat": 40.4490541, "lon": -3.7019865}, {"type": "node", "id": 338896009, "lat": 40.4325773, "lon": -3.7268524}, {"type": "node", "id": 338896745, "lat": 40.4365688, "lon": -3.7219011}, {"type": "node", "id": 338896746, "lat": 40.4372744, "lon": -3.7232632}, {"type": "node", "id": 338896749, "lat": 40.4373973, "lon": -3.7234711}, {"type": "node", "id": 338896752, "lat": 40.4367859, "lon": -3.7223214}, {"type": "node", "id": 338896753, "lat": 40.4372838, "lon": -3.7233107}, {"type": "node", "id": 338896754, "lat": 40.4373425, "lon": -3.7234678}, {"type": "node", "id": 338896756, "lat": 40.4369139, "lon": -3.7208543}, {"type": "node", "id": 338896757, "lat": 40.4367791, "lon": -3.721043}, {"type": "node", "id": 338896759, "lat": 40.4367473, "lon": -3.721311}, {"type": "node", "id": 338896760, "lat": 40.4369276, "lon": -3.7217217}, {"type": "node", "id": 338896761, "lat": 40.4376498, "lon": -3.7231453}, {"type": "node", "id": 338944951, "lat": 40.441175, "lon": -3.7218737}, {"type": "node", "id": 338944965, "lat": 40.4420237, "lon": -3.7205312}, {"type": "node", "id": 338945022, "lat": 40.4420985, "lon": -3.7248028}, {"type": "node", "id": 338945030, "lat": 40.4424983, "lon": -3.7249453}, {"type": "node", "id": 338945038, "lat": 40.4386054, "lon": -3.7203005}, {"type": "node", "id": 338945047, "lat": 40.4381579, "lon": -3.7198212}, {"type": "node", "id": 338945070, "lat": 40.4375981, "lon": -3.7208189}, {"type": "node", "id": 338945080, "lat": 40.4375254, "lon": -3.7210822}, {"type": "node", "id": 338945090, "lat": 40.4375125, "lon": -3.7214286}, {"type": "node", "id": 338945099, "lat": 40.437559, "lon": -3.7217405, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 338945107, "lat": 40.4381661, "lon": -3.7227391}, {"type": "node", "id": 338945113, "lat": 40.4386149, "lon": -3.7223273}, {"type": "node", "id": 338956158, "lat": 40.4438766, "lon": -3.7253767, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 338956162, "lat": 40.4444543, "lon": -3.7262531}, {"type": "node", "id": 338956163, "lat": 40.4445037, "lon": -3.7254859}, {"type": "node", "id": 338956164, "lat": 40.4448123, "lon": -3.7263285}, {"type": "node", "id": 338956168, "lat": 40.4444468, "lon": -3.7260502}, {"type": "node", "id": 338956169, "lat": 40.4439812, "lon": -3.7221626}, {"type": "node", "id": 338956179, "lat": 40.4441052, "lon": -3.7222712}, {"type": "node", "id": 338956180, "lat": 40.444461, "lon": -3.7223376}, {"type": "node", "id": 338956181, "lat": 40.4444358, "lon": -3.7225759}, {"type": "node", "id": 338956182, "lat": 40.4440914, "lon": -3.7225095}, {"type": "node", "id": 338956205, "lat": 40.4432458, "lon": -3.7252536}, {"type": "node", "id": 338956206, "lat": 40.4427971, "lon": -3.7259651}, {"type": "node", "id": 338956207, "lat": 40.442839, "lon": -3.7263104}, {"type": "node", "id": 338956209, "lat": 40.4427733, "lon": -3.7261939}, {"type": "node", "id": 338956210, "lat": 40.4428369, "lon": -3.725584}, {"type": "node", "id": 338956211, "lat": 40.4429423, "lon": -3.7255006}, {"type": "node", "id": 338956212, "lat": 40.4428153, "lon": -3.7257981}, {"type": "node", "id": 338956213, "lat": 40.4431956, "lon": -3.7257708}, {"type": "node", "id": 339391801, "lat": 40.4470987, "lon": -3.7009062}, {"type": "node", "id": 339391803, "lat": 40.4508499, "lon": -3.6959321}, {"type": "node", "id": 339391806, "lat": 40.4523534, "lon": -3.6957818}, {"type": "node", "id": 339391870, "lat": 40.4483736, "lon": -3.703759, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339391878, "lat": 40.451809, "lon": -3.7032474, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339410670, "lat": 40.4486434, "lon": -3.7093941}, {"type": "node", "id": 339636165, "lat": 40.4472327, "lon": -3.6917026}, {"type": "node", "id": 339636170, "lat": 40.4473571, "lon": -3.6926731}, {"type": "node", "id": 339636176, "lat": 40.4473463, "lon": -3.6929475}, {"type": "node", "id": 339636192, "lat": 40.4473833, "lon": -3.692929}, {"type": "node", "id": 339636199, "lat": 40.4474553, "lon": -3.6930278}, {"type": "node", "id": 339636207, "lat": 40.4475116, "lon": -3.6934076}, {"type": "node", "id": 339636228, "lat": 40.4474954, "lon": -3.6931283}, {"type": "node", "id": 339636244, "lat": 40.446451, "lon": -3.6927011}, {"type": "node", "id": 339636249, "lat": 40.4464634, "lon": -3.6916413, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 339636267, "lat": 40.4472193, "lon": -3.6928098}, {"type": "node", "id": 339636283, "lat": 40.4474388, "lon": -3.6927908}, {"type": "node", "id": 339636297, "lat": 40.4474751, "lon": -3.6927876}, {"type": "node", "id": 339636307, "lat": 40.446516, "lon": -3.6929221}, {"type": "node", "id": 339636344, "lat": 40.4465442, "lon": -3.6931971}, {"type": "node", "id": 339636378, "lat": 40.4463657, "lon": -3.6913641, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 339636384, "lat": 40.4463786, "lon": -3.6911557, "tags": {"created_by": "ivansanchez", "source": "yahoo_maps"}}, {"type": "node", "id": 339824055, "lat": 40.4509583, "lon": -3.7196102, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 339824056, "lat": 40.4510781, "lon": -3.7196762}, {"type": "node", "id": 339824057, "lat": 40.451163, "lon": -3.7197774}, {"type": "node", "id": 339824059, "lat": 40.45121, "lon": -3.7198519}, {"type": "node", "id": 339824066, "lat": 40.4511596, "lon": -3.7194157}, {"type": "node", "id": 339824100, "lat": 40.4480426, "lon": -3.7237393}, {"type": "node", "id": 339825026, "lat": 40.4445575, "lon": -3.7269303}, {"type": "node", "id": 339825041, "lat": 40.4446587, "lon": -3.7268075}, {"type": "node", "id": 339825059, "lat": 40.444747, "lon": -3.7267541}, {"type": "node", "id": 339825076, "lat": 40.4448206, "lon": -3.726706}, {"type": "node", "id": 339825090, "lat": 40.4448962, "lon": -3.7265463}, {"type": "node", "id": 339825101, "lat": 40.4449396, "lon": -3.7257807}, {"type": "node", "id": 339825114, "lat": 40.4449306, "lon": -3.7262759}, {"type": "node", "id": 339825209, "lat": 40.4461906, "lon": -3.7250608, "tags": {"highway": "stop"}}, {"type": "node", "id": 340219340, "lat": 40.4269669, "lon": -3.7124803}, {"type": "node", "id": 340219341, "lat": 40.4268259, "lon": -3.7126466, "tags": {"access": "private", "addr:housenumber": "20", "addr:street": "Calle de la Princesa", "barrier": "gate", "bicycle": "no", "entrance": "main", "foot": "no"}}, {"type": "node", "id": 340219344, "lat": 40.4269871, "lon": -3.712962}, {"type": "node", "id": 340219346, "lat": 40.4269472, "lon": -3.7126549}, {"type": "node", "id": 340219347, "lat": 40.4271122, "lon": -3.7123191}, {"type": "node", "id": 340219354, "lat": 40.4272909, "lon": -3.7121905}, {"type": "node", "id": 340219355, "lat": 40.4274179, "lon": -3.712146}, {"type": "node", "id": 340219356, "lat": 40.4276842, "lon": -3.7127893}, {"type": "node", "id": 340219357, "lat": 40.4275854, "lon": -3.7129257}, {"type": "node", "id": 340219358, "lat": 40.4274712, "lon": -3.7130201}, {"type": "node", "id": 340219362, "lat": 40.4272938, "lon": -3.7130832}, {"type": "node", "id": 340219363, "lat": 40.4271101, "lon": -3.7130799}, {"type": "node", "id": 340219557, "lat": 40.4269816, "lon": -3.7107713, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 340225375, "lat": 40.4480119, "lon": -3.6946126}, {"type": "node", "id": 340225381, "lat": 40.4477657, "lon": -3.6946887}, {"type": "node", "id": 340225387, "lat": 40.4476914, "lon": -3.6946634}, {"type": "node", "id": 340225400, "lat": 40.4476586, "lon": -3.6945183}, {"type": "node", "id": 340225409, "lat": 40.4477172, "lon": -3.6944265}, {"type": "node", "id": 340225416, "lat": 40.4477803, "lon": -3.6944133}, {"type": "node", "id": 340225417, "lat": 40.4480547, "lon": -3.6944636}, {"type": "node", "id": 340225421, "lat": 40.4481726, "lon": -3.6944267}, {"type": "node", "id": 340225428, "lat": 40.4482796, "lon": -3.6945291}, {"type": "node", "id": 340225429, "lat": 40.4480763, "lon": -3.694627}, {"type": "node", "id": 340225431, "lat": 40.4477994, "lon": -3.6947199}, {"type": "node", "id": 340225432, "lat": 40.4478294, "lon": -3.6954229}, {"type": "node", "id": 340225434, "lat": 40.4478632, "lon": -3.6946701}, {"type": "node", "id": 340225446, "lat": 40.4482008, "lon": -3.693616}, {"type": "node", "id": 340225452, "lat": 40.4487553, "lon": -3.6924462}, {"type": "node", "id": 340225458, "lat": 40.4483677, "lon": -3.6930354}, {"type": "node", "id": 340225465, "lat": 40.4483871, "lon": -3.6935916}, {"type": "node", "id": 340225472, "lat": 40.4482977, "lon": -3.6930696}, {"type": "node", "id": 340225478, "lat": 40.4482365, "lon": -3.6931733}, {"type": "node", "id": 340225480, "lat": 40.4482548, "lon": -3.6936053}, {"type": "node", "id": 340225494, "lat": 40.4481251, "lon": -3.6936171}, {"type": "node", "id": 340225499, "lat": 40.4481129, "lon": -3.6932837}, {"type": "node", "id": 340225506, "lat": 40.4479929, "lon": -3.6931037}, {"type": "node", "id": 340225525, "lat": 40.4491601, "lon": -3.6919901}, {"type": "node", "id": 340225537, "lat": 40.448947, "lon": -3.6915042}, {"type": "node", "id": 340225570, "lat": 40.4491744, "lon": -3.6922113}, {"type": "node", "id": 340225583, "lat": 40.448751, "lon": -3.6922278}, {"type": "node", "id": 340225593, "lat": 40.4487266, "lon": -3.694261}, {"type": "node", "id": 340225604, "lat": 40.4486419, "lon": -3.6926953}, {"type": "node", "id": 340225613, "lat": 40.4486292, "lon": -3.6922267}, {"type": "node", "id": 340225616, "lat": 40.4491792, "lon": -3.6923178}, {"type": "node", "id": 340225623, "lat": 40.4489595, "lon": -3.6923304}, {"type": "node", "id": 340225630, "lat": 40.4488538, "lon": -3.6924471}, {"type": "node", "id": 340225637, "lat": 40.4488574, "lon": -3.6927768}, {"type": "node", "id": 340225642, "lat": 40.4486512, "lon": -3.692857}, {"type": "node", "id": 340225643, "lat": 40.4491711, "lon": -3.6921303}, {"type": "node", "id": 340225645, "lat": 40.4478416, "lon": -3.6922339}, {"type": "node", "id": 340225646, "lat": 40.4483239, "lon": -3.6945214}, {"type": "node", "id": 340225647, "lat": 40.4502964, "lon": -3.694342}, {"type": "node", "id": 340225780, "lat": 40.4486747, "lon": -3.6933513}, {"type": "node", "id": 340225792, "lat": 40.4483793, "lon": -3.6933793}, {"type": "node", "id": 340225846, "lat": 40.4512329, "lon": -3.6950931}, {"type": "node", "id": 340225876, "lat": 40.4516026, "lon": -3.6912492}, {"type": "node", "id": 340225877, "lat": 40.4509614, "lon": -3.6913129}, {"type": "node", "id": 340225878, "lat": 40.4478065, "lon": -3.6916088}, {"type": "node", "id": 340225879, "lat": 40.447408, "lon": -3.6916587}, {"type": "node", "id": 340225881, "lat": 40.4470657, "lon": -3.6916876}, {"type": "node", "id": 340225882, "lat": 40.4464655, "lon": -3.6917622}, {"type": "node", "id": 340225883, "lat": 40.4473229, "lon": -3.6919676}, {"type": "node", "id": 340225885, "lat": 40.4472613, "lon": -3.6919762, "tags": {"noexit": "yes"}}, {"type": "node", "id": 340225886, "lat": 40.4470613, "lon": -3.6919949}, {"type": "node", "id": 340225887, "lat": 40.4471997, "lon": -3.6925799}, {"type": "node", "id": 340225889, "lat": 40.446781, "lon": -3.6926115}, {"type": "node", "id": 340225891, "lat": 40.4467522, "lon": -3.6919525}, {"type": "node", "id": 340225893, "lat": 40.4471973, "lon": -3.6917969}, {"type": "node", "id": 340225895, "lat": 40.4470929, "lon": -3.691849, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 340226353, "lat": 40.4473726, "lon": -3.6990854}, {"type": "node", "id": 340226354, "lat": 40.4473858, "lon": -3.6987979}, {"type": "node", "id": 340226358, "lat": 40.4473852, "lon": -3.6988247}, {"type": "node", "id": 340226371, "lat": 40.4473352, "lon": -3.6988304}, {"type": "node", "id": 340226381, "lat": 40.4473905, "lon": -3.6989162}, {"type": "node", "id": 340226382, "lat": 40.4473913, "lon": -3.6989322}, {"type": "node", "id": 340226383, "lat": 40.4473677, "lon": -3.6989889}, {"type": "node", "id": 340228128, "lat": 40.4494313, "lon": -3.6925374}, {"type": "node", "id": 340228129, "lat": 40.4493882, "lon": -3.6920004}, {"type": "node", "id": 340228133, "lat": 40.4496483, "lon": -3.6914381}, {"type": "node", "id": 340228145, "lat": 40.44899, "lon": -3.6914964}, {"type": "node", "id": 340228147, "lat": 40.4489175, "lon": -3.6914397}, {"type": "node", "id": 340228148, "lat": 40.4497033, "lon": -3.6920955}, {"type": "node", "id": 340228149, "lat": 40.4496089, "lon": -3.691859}, {"type": "node", "id": 340228150, "lat": 40.4497415, "lon": -3.6914266}, {"type": "node", "id": 340228152, "lat": 40.4504933, "lon": -3.6924722}, {"type": "node", "id": 340228157, "lat": 40.450272, "lon": -3.6924956}, {"type": "node", "id": 340228159, "lat": 40.450279, "lon": -3.6927367}, {"type": "node", "id": 340228161, "lat": 40.4508196, "lon": -3.6919644}, {"type": "node", "id": 340228671, "lat": 40.4473334, "lon": -3.6948269}, {"type": "node", "id": 340228711, "lat": 40.4467573, "lon": -3.6950101}, {"type": "node", "id": 340228729, "lat": 40.4465721, "lon": -3.6950318, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 340228748, "lat": 40.4465195, "lon": -3.6950967}, {"type": "node", "id": 340228759, "lat": 40.4473182, "lon": -3.6945663}, {"type": "node", "id": 340228769, "lat": 40.4467505, "lon": -3.6947794}, {"type": "node", "id": 340228781, "lat": 40.4465575, "lon": -3.6948214, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 340228784, "lat": 40.4464999, "lon": -3.6947938}, {"type": "node", "id": 340228785, "lat": 40.4460669, "lon": -3.6951589}, {"type": "node", "id": 341829485, "lat": 40.4330912, "lon": -3.6901047}, {"type": "node", "id": 341829497, "lat": 40.4328766, "lon": -3.6908121, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 341829506, "lat": 40.4328983, "lon": -3.6901436}, {"type": "node", "id": 341829519, "lat": 40.433068, "lon": -3.690714}, {"type": "node", "id": 341829531, "lat": 40.4330838, "lon": -3.690452}, {"type": "node", "id": 344601408, "lat": 40.4342261, "lon": -3.718178, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 344603973, "lat": 40.4396895, "lon": -3.6898057}, {"type": "node", "id": 344603995, "lat": 40.4397831, "lon": -3.689804}, {"type": "node", "id": 344604046, "lat": 40.4410282, "lon": -3.6902224}, {"type": "node", "id": 344604057, "lat": 40.4412339, "lon": -3.6903406, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 344604078, "lat": 40.4412945, "lon": -3.6910427, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 344795413, "lat": 40.4340253, "lon": -3.6921753}, {"type": "node", "id": 344795459, "lat": 40.4329209, "lon": -3.692104}, {"type": "node", "id": 344875504, "lat": 40.4473545, "lon": -3.7023068}, {"type": "node", "id": 345213334, "lat": 40.439082, "lon": -3.7200244}, {"type": "node", "id": 345255555, "lat": 40.4353845, "lon": -3.6889254, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 345537803, "lat": 40.4250635, "lon": -3.690123}, {"type": "node", "id": 345538472, "lat": 40.4248341, "lon": -3.6910357, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 345538475, "lat": 40.4242986, "lon": -3.6904324, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 351923288, "lat": 40.4460719, "lon": -3.6911516}, {"type": "node", "id": 353290961, "lat": 40.4392419, "lon": -3.6835441}, {"type": "node", "id": 355172281, "lat": 40.4460878, "lon": -3.6913989}, {"type": "node", "id": 355174895, "lat": 40.4457662, "lon": -3.691435}, {"type": "node", "id": 356264959, "lat": 40.4411665, "lon": -3.692128}, {"type": "node", "id": 359308509, "lat": 40.4462621, "lon": -3.6913456}, {"type": "node", "id": 359308510, "lat": 40.4461891, "lon": -3.6913464}, {"type": "node", "id": 359392862, "lat": 40.4468127, "lon": -3.7101996}, {"type": "node", "id": 359392864, "lat": 40.4468561, "lon": -3.7101756}, {"type": "node", "id": 359392867, "lat": 40.4469391, "lon": -3.710203}, {"type": "node", "id": 359392869, "lat": 40.4469709, "lon": -3.7102818, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 359404815, "lat": 40.4452522, "lon": -3.7195452}, {"type": "node", "id": 359412218, "lat": 40.4506623, "lon": -3.7088948}, {"type": "node", "id": 365604154, "lat": 40.4490425, "lon": -3.7194165}, {"type": "node", "id": 365604226, "lat": 40.4498712, "lon": -3.7201187}, {"type": "node", "id": 365604227, "lat": 40.449757, "lon": -3.7202979}, {"type": "node", "id": 365604228, "lat": 40.4495452, "lon": -3.7201236}, {"type": "node", "id": 365604230, "lat": 40.4495875, "lon": -3.720041}, {"type": "node", "id": 365604231, "lat": 40.4490145, "lon": -3.7196288}, {"type": "node", "id": 365604288, "lat": 40.4498224, "lon": -3.7201995}, {"type": "node", "id": 365608211, "lat": 40.4491148, "lon": -3.7194534, "tags": {"barrier": "gate"}}, {"type": "node", "id": 365608213, "lat": 40.4491022, "lon": -3.7196718, "tags": {"barrier": "gate"}}, {"type": "node", "id": 365614645, "lat": 40.4486132, "lon": -3.721147}, {"type": "node", "id": 365614754, "lat": 40.4486986, "lon": -3.7213293}, {"type": "node", "id": 365614755, "lat": 40.4488368, "lon": -3.7213688}, {"type": "node", "id": 365886560, "lat": 40.4298709, "lon": -3.7091852, "tags": {"highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 365886561, "lat": 40.4295443, "lon": -3.7058129}, {"type": "node", "id": 365886562, "lat": 40.4289286, "lon": -3.7021501, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 365886564, "lat": 40.4248919, "lon": -3.6906599}, {"type": "node", "id": 366033301, "lat": 40.4361575, "lon": -3.7198642}, {"type": "node", "id": 369845645, "lat": 40.4392682, "lon": -3.6827104}, {"type": "node", "id": 369846113, "lat": 40.4362499, "lon": -3.6832001}, {"type": "node", "id": 370503465, "lat": 40.4257609, "lon": -3.692048}, {"type": "node", "id": 370503469, "lat": 40.4254986, "lon": -3.6921803, "tags": {"barrier": "lift_gate", "foot": "yes"}}, {"type": "node", "id": 370503470, "lat": 40.4258145, "lon": -3.6935817, "tags": {"barrier": "lift_gate", "foot": "yes"}}, {"type": "node", "id": 370503474, "lat": 40.426074, "lon": -3.6927797, "tags": {"barrier": "lift_gate", "foot": "yes"}}, {"type": "node", "id": 370503475, "lat": 40.4249783, "lon": -3.6938763, "tags": {"barrier": "lift_gate", "foot": "yes"}}, {"type": "node", "id": 370503496, "lat": 40.4246979, "lon": -3.692607}, {"type": "node", "id": 370503497, "lat": 40.4246894, "lon": -3.6925697}, {"type": "node", "id": 370503507, "lat": 40.4250912, "lon": -3.6923075}, {"type": "node", "id": 370503508, "lat": 40.4251093, "lon": -3.6924042, "tags": {"amenity": "parking", "capacity": "342", "fee": "yes", "layer": "-1", "name": "Villa de Par\u00eds", "park_ride": "no", "parking": "underground"}}, {"type": "node", "id": 370503551, "lat": 40.4237602, "lon": -3.696942}, {"type": "node", "id": 370503552, "lat": 40.4239844, "lon": -3.6971357}, {"type": "node", "id": 370503553, "lat": 40.426526, "lon": -3.6968401}, {"type": "node", "id": 370503569, "lat": 40.42662, "lon": -3.6969685}, {"type": "node", "id": 370503620, "lat": 40.4267243, "lon": -3.6969956}, {"type": "node", "id": 370503621, "lat": 40.4263401, "lon": -3.6965537}, {"type": "node", "id": 370503626, "lat": 40.4276556, "lon": -3.6961727}, {"type": "node", "id": 380747013, "lat": 40.4249099, "lon": -3.6940404}, {"type": "node", "id": 385569660, "lat": 40.4302672, "lon": -3.7121524}, {"type": "node", "id": 385569772, "lat": 40.4303395, "lon": -3.7133066}, {"type": "node", "id": 385569773, "lat": 40.4303729, "lon": -3.7137348}, {"type": "node", "id": 385569774, "lat": 40.4303097, "lon": -3.7139611}, {"type": "node", "id": 385569775, "lat": 40.4302528, "lon": -3.7140288}, {"type": "node", "id": 385569776, "lat": 40.4295054, "lon": -3.7145356, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 386248160, "lat": 40.4314888, "lon": -3.7170191, "tags": {"name": "Altamirano", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 386248161, "lat": 40.4303723, "lon": -3.715932, "tags": {"name": "Princesa, 56", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 389139048, "lat": 40.4255572, "lon": -3.6904648}, {"type": "node", "id": 389139055, "lat": 40.4249082, "lon": -3.6910061}, {"type": "node", "id": 390582262, "lat": 40.4249644, "lon": -3.6923566}, {"type": "node", "id": 390582264, "lat": 40.4249207, "lon": -3.6921427, "tags": {"amenity": "parking", "layer": "-1", "name": "Centro Col\u00f3n", "parking": "underground"}}, {"type": "node", "id": 394684528, "lat": 40.4380569, "lon": -3.6915884}, {"type": "node", "id": 394684646, "lat": 40.4380887, "lon": -3.6912907}, {"type": "node", "id": 394684648, "lat": 40.4384181, "lon": -3.6908052, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 394684649, "lat": 40.4386448, "lon": -3.6908271}, {"type": "node", "id": 408757686, "lat": 40.4252599, "lon": -3.6994346}, {"type": "node", "id": 408757687, "lat": 40.4249579, "lon": -3.6995942, "tags": {"noexit": "yes"}}, {"type": "node", "id": 408757688, "lat": 40.4252276, "lon": -3.6994516, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 410106052, "lat": 40.4462807, "lon": -3.7266264}, {"type": "node", "id": 410106054, "lat": 40.4463339, "lon": -3.7265383}, {"type": "node", "id": 410106056, "lat": 40.446402, "lon": -3.7263764}, {"type": "node", "id": 410106058, "lat": 40.4465375, "lon": -3.7255554}, {"type": "node", "id": 410106060, "lat": 40.4465976, "lon": -3.7250973}, {"type": "node", "id": 410106063, "lat": 40.4466085, "lon": -3.7249817}, {"type": "node", "id": 410106065, "lat": 40.4467181, "lon": -3.7249312}, {"type": "node", "id": 410106067, "lat": 40.4471222, "lon": -3.724988}, {"type": "node", "id": 410106070, "lat": 40.4473701, "lon": -3.7250051}, {"type": "node", "id": 410106072, "lat": 40.4476618, "lon": -3.7251084}, {"type": "node", "id": 410106074, "lat": 40.4479198, "lon": -3.7251672}, {"type": "node", "id": 410106076, "lat": 40.4479908, "lon": -3.7252548}, {"type": "node", "id": 410623212, "lat": 40.4484209, "lon": -3.7245347}, {"type": "node", "id": 410623213, "lat": 40.4483843, "lon": -3.7246206}, {"type": "node", "id": 410623214, "lat": 40.4482845, "lon": -3.7246592}, {"type": "node", "id": 410623215, "lat": 40.4481559, "lon": -3.7245678}, {"type": "node", "id": 410623217, "lat": 40.4480952, "lon": -3.7244261}, {"type": "node", "id": 410623219, "lat": 40.4480968, "lon": -3.7237497}, {"type": "node", "id": 410623220, "lat": 40.4484953, "lon": -3.7217965}, {"type": "node", "id": 410641194, "lat": 40.4462687, "lon": -3.7267573}, {"type": "node", "id": 413878087, "lat": 40.4485054, "lon": -3.7245483, "tags": {"access": "destination", "barrier": "lift_gate", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 433406808, "lat": 40.4389818, "lon": -3.717901}, {"type": "node", "id": 433406813, "lat": 40.4391223, "lon": -3.717415}, {"type": "node", "id": 433406814, "lat": 40.4391584, "lon": -3.7168323}, {"type": "node", "id": 433406816, "lat": 40.4389953, "lon": -3.7132867}, {"type": "node", "id": 433406824, "lat": 40.4390931, "lon": -3.7127141}, {"type": "node", "id": 433406826, "lat": 40.439054, "lon": -3.7132882}, {"type": "node", "id": 433406832, "lat": 40.4392097, "lon": -3.7168337}, {"type": "node", "id": 433406834, "lat": 40.4391896, "lon": -3.7174288}, {"type": "node", "id": 433406835, "lat": 40.4390334, "lon": -3.7179512}, {"type": "node", "id": 433406848, "lat": 40.4395282, "lon": -3.7179738}, {"type": "node", "id": 433406868, "lat": 40.4382652, "lon": -3.7191939}, {"type": "node", "id": 433406874, "lat": 40.4381437, "lon": -3.7196401, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 433406876, "lat": 40.4389129, "lon": -3.7184278}, {"type": "node", "id": 433406878, "lat": 40.4390035, "lon": -3.7182493}, {"type": "node", "id": 433406879, "lat": 40.4391895, "lon": -3.7182221}, {"type": "node", "id": 433406881, "lat": 40.4392981, "lon": -3.7181999}, {"type": "node", "id": 433406883, "lat": 40.4393659, "lon": -3.718168}, {"type": "node", "id": 433406887, "lat": 40.439471, "lon": -3.71805}, {"type": "node", "id": 444644585, "lat": 40.438756, "lon": -3.7069568}, {"type": "node", "id": 444644586, "lat": 40.4392, "lon": -3.7069372}, {"type": "node", "id": 444644587, "lat": 40.439183, "lon": -3.7064937}, {"type": "node", "id": 536185687, "lat": 40.4463638, "lon": -3.6954112}, {"type": "node", "id": 544426537, "lat": 40.4514485, "lon": -3.7063072}, {"type": "node", "id": 544435179, "lat": 40.4520681, "lon": -3.706954}, {"type": "node", "id": 544435182, "lat": 40.4520872, "lon": -3.7062052}, {"type": "node", "id": 554166725, "lat": 40.4254187, "lon": -3.6909019}, {"type": "node", "id": 554166728, "lat": 40.4252771, "lon": -3.6909726, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 554167206, "lat": 40.4350624, "lon": -3.688934}, {"type": "node", "id": 554167210, "lat": 40.4351046, "lon": -3.6885636}, {"type": "node", "id": 554167331, "lat": 40.435023, "lon": -3.6886877, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 563326690, "lat": 40.4420758, "lon": -3.7048046}, {"type": "node", "id": 563326691, "lat": 40.4419453, "lon": -3.7002159}, {"type": "node", "id": 563326692, "lat": 40.4419746, "lon": -3.7010513}, {"type": "node", "id": 563326693, "lat": 40.4379315, "lon": -3.68946}, {"type": "node", "id": 565714231, "lat": 40.4465012, "lon": -3.6910416, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 565714233, "lat": 40.446977, "lon": -3.6914432}, {"type": "node", "id": 565714235, "lat": 40.4490928, "lon": -3.6912864}, {"type": "node", "id": 565714236, "lat": 40.4488965, "lon": -3.691396}, {"type": "node", "id": 565714239, "lat": 40.4493295, "lon": -3.6911588, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 565714240, "lat": 40.4516591, "lon": -3.6905476}, {"type": "node", "id": 565714241, "lat": 40.4516862, "lon": -3.6909254}, {"type": "node", "id": 565714246, "lat": 40.4525512, "lon": -3.6904614}, {"type": "node", "id": 569034140, "lat": 40.4445846, "lon": -3.6972773}, {"type": "node", "id": 581287799, "lat": 40.4254989, "lon": -3.6915281}, {"type": "node", "id": 581287837, "lat": 40.4457899, "lon": -3.7147323, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 581287840, "lat": 40.4469256, "lon": -3.7100824}, {"type": "node", "id": 581870023, "lat": 40.4377611, "lon": -3.6856552}, {"type": "node", "id": 582754412, "lat": 40.4473858, "lon": -3.7086247, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 584209224, "lat": 40.4468104, "lon": -3.7248228, "tags": {"barrier": "gate", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 587643323, "lat": 40.4344645, "lon": -3.7191665}, {"type": "node", "id": 587643324, "lat": 40.4343582, "lon": -3.7191366}, {"type": "node", "id": 587643325, "lat": 40.434067, "lon": -3.7189306}, {"type": "node", "id": 588635956, "lat": 40.4406474, "lon": -3.6907401}, {"type": "node", "id": 588635957, "lat": 40.4405593, "lon": -3.6905819}, {"type": "node", "id": 588635962, "lat": 40.4405892, "lon": -3.6907005}, {"type": "node", "id": 588635963, "lat": 40.4405629, "lon": -3.6907724}, {"type": "node", "id": 588635964, "lat": 40.4404926, "lon": -3.6909083}, {"type": "node", "id": 588635965, "lat": 40.4404485, "lon": -3.690972}, {"type": "node", "id": 588635967, "lat": 40.4401748, "lon": -3.6904017}, {"type": "node", "id": 588635968, "lat": 40.4401086, "lon": -3.6905349}, {"type": "node", "id": 588635970, "lat": 40.4400952, "lon": -3.6906705}, {"type": "node", "id": 588635971, "lat": 40.4401293, "lon": -3.6908497}, {"type": "node", "id": 588635977, "lat": 40.4397149, "lon": -3.6906543}, {"type": "node", "id": 588635980, "lat": 40.4398916, "lon": -3.6904236}, {"type": "node", "id": 588635983, "lat": 40.4395911, "lon": -3.6902557}, {"type": "node", "id": 588635989, "lat": 40.4401994, "lon": -3.6909371}, {"type": "node", "id": 588635991, "lat": 40.4403246, "lon": -3.6909749}, {"type": "node", "id": 588635992, "lat": 40.4408881, "lon": -3.6908122}, {"type": "node", "id": 588635997, "lat": 40.4408361, "lon": -3.6910807}, {"type": "node", "id": 603072367, "lat": 40.4327439, "lon": -3.7011326}, {"type": "node", "id": 603072369, "lat": 40.432697, "lon": -3.7010817}, {"type": "node", "id": 603072370, "lat": 40.432694, "lon": -3.7010262}, {"type": "node", "id": 603072371, "lat": 40.4327349, "lon": -3.7009655}, {"type": "node", "id": 603072372, "lat": 40.4327567, "lon": -3.7009595}, {"type": "node", "id": 603072374, "lat": 40.4328138, "lon": -3.7009987}, {"type": "node", "id": 603072375, "lat": 40.4328179, "lon": -3.7010854}, {"type": "node", "id": 603072376, "lat": 40.4327854, "lon": -3.7011246}, {"type": "node", "id": 613053062, "lat": 40.4421081, "lon": -3.7049442, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 613053614, "lat": 40.4421338, "lon": -3.705198}, {"type": "node", "id": 613053616, "lat": 40.4412595, "lon": -3.7077001}, {"type": "node", "id": 613053624, "lat": 40.4441072, "lon": -3.7095347}, {"type": "node", "id": 613053627, "lat": 40.4449619, "lon": -3.7069825}, {"type": "node", "id": 613055508, "lat": 40.4438157, "lon": -3.7102922, "tags": {"barrier": "gate"}}, {"type": "node", "id": 613055510, "lat": 40.4437911, "lon": -3.7100746}, {"type": "node", "id": 613055512, "lat": 40.4437831, "lon": -3.7100359}, {"type": "node", "id": 613056096, "lat": 40.4428083, "lon": -3.7091979}, {"type": "node", "id": 613056117, "lat": 40.4425048, "lon": -3.7087139}, {"type": "node", "id": 613056120, "lat": 40.4430854, "lon": -3.7094909}, {"type": "node", "id": 613056123, "lat": 40.4430768, "lon": -3.7095789}, {"type": "node", "id": 613056126, "lat": 40.4433515, "lon": -3.7097287}, {"type": "node", "id": 613056129, "lat": 40.4434052, "lon": -3.70977}, {"type": "node", "id": 613056132, "lat": 40.4434848, "lon": -3.7097901}, {"type": "node", "id": 613056134, "lat": 40.4435657, "lon": -3.7098301}, {"type": "node", "id": 614036231, "lat": 40.4292017, "lon": -3.7152549}, {"type": "node", "id": 614036232, "lat": 40.429073, "lon": -3.7151152}, {"type": "node", "id": 614036233, "lat": 40.4291792, "lon": -3.7148818}, {"type": "node", "id": 614036235, "lat": 40.4298181, "lon": -3.714482}, {"type": "node", "id": 614036236, "lat": 40.4298566, "lon": -3.7144215}, {"type": "node", "id": 614036238, "lat": 40.429867, "lon": -3.7140364}, {"type": "node", "id": 614036239, "lat": 40.4296856, "lon": -3.7132846}, {"type": "node", "id": 616211030, "lat": 40.4473523, "lon": -3.7041284, "tags": {"name": "Bravo Murillo", "railway": "subway_entrance", "ref": "L1, L6", "toilets:wheelchair": "no", "wheelchair": "no"}}, {"type": "node", "id": 616211590, "lat": 40.4472062, "lon": -3.7040736}, {"type": "node", "id": 616211591, "lat": 40.4470709, "lon": -3.7042421, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 616211624, "lat": 40.4468885, "lon": -3.7044991, "tags": {"name": "Reina Victoria Pares", "railway": "subway_entrance", "wikidata": "Q191987", "wikipedia": "es:Metro de Madrid"}}, {"type": "node", "id": 616211641, "lat": 40.4467016, "lon": -3.704186, "tags": {"name": "Reina Victoria Impares", "railway": "subway_entrance", "ref": "L1, L6", "wheelchair": "no"}}, {"type": "node", "id": 616211953, "lat": 40.4469032, "lon": -3.7036096, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 616212459, "lat": 40.4467213, "lon": -3.7175937}, {"type": "node", "id": 616220786, "lat": 40.4326959, "lon": -3.697753, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 616225689, "lat": 40.4303643, "lon": -3.7073539, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 616225704, "lat": 40.4298042, "lon": -3.7074511}, {"type": "node", "id": 616225748, "lat": 40.432616, "lon": -3.7070936}, {"type": "node", "id": 616225755, "lat": 40.4315175, "lon": -3.7072255, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 616226050, "lat": 40.431447, "lon": -3.7069651}, {"type": "node", "id": 616226051, "lat": 40.4304039, "lon": -3.7070797}, {"type": "node", "id": 616226053, "lat": 40.4303943, "lon": -3.7073474}, {"type": "node", "id": 616226070, "lat": 40.4309086, "lon": -3.7075662}, {"type": "node", "id": 616226130, "lat": 40.4308978, "lon": -3.7074501}, {"type": "node", "id": 616226131, "lat": 40.4309815, "lon": -3.7072789}, {"type": "node", "id": 616226132, "lat": 40.4308606, "lon": -3.7071349}, {"type": "node", "id": 616227276, "lat": 40.4302584, "lon": -3.7073667}, {"type": "node", "id": 616227283, "lat": 40.4298891, "lon": -3.7074353}, {"type": "node", "id": 616263063, "lat": 40.446296, "lon": -3.7003667}, {"type": "node", "id": 616263140, "lat": 40.4462901, "lon": -3.7002647}, {"type": "node", "id": 616263143, "lat": 40.4462199, "lon": -3.698694}, {"type": "node", "id": 616263146, "lat": 40.4461758, "lon": -3.6978426}, {"type": "node", "id": 616263147, "lat": 40.4461151, "lon": -3.6971521, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 616264641, "lat": 40.448116, "lon": -3.6836251}, {"type": "node", "id": 616264645, "lat": 40.4483837, "lon": -3.6885605}, {"type": "node", "id": 616264715, "lat": 40.4482205, "lon": -3.6877373}, {"type": "node", "id": 616264718, "lat": 40.4482562, "lon": -3.6876337}, {"type": "node", "id": 616264721, "lat": 40.4482146, "lon": -3.6873678}, {"type": "node", "id": 616264722, "lat": 40.4481444, "lon": -3.68731}, {"type": "node", "id": 616264726, "lat": 40.4480524, "lon": -3.686821}, {"type": "node", "id": 616264739, "lat": 40.4481096, "lon": -3.6873977}, {"type": "node", "id": 616264741, "lat": 40.4481537, "lon": -3.6876592}, {"type": "node", "id": 622204580, "lat": 40.4306087, "lon": -3.716495, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204581, "lat": 40.4305213, "lon": -3.7164404, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204582, "lat": 40.4303497, "lon": -3.7161242, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204583, "lat": 40.4303867, "lon": -3.7160325, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204584, "lat": 40.4305637, "lon": -3.7159502, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204585, "lat": 40.4306512, "lon": -3.7159519, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204586, "lat": 40.430839, "lon": -3.7163247, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 622204587, "lat": 40.4307992, "lon": -3.7164323, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 630734756, "lat": 40.4289738, "lon": -3.7024298}, {"type": "node", "id": 674449753, "lat": 40.4352878, "lon": -3.689218, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674449754, "lat": 40.4380118, "lon": -3.6905486, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 674449756, "lat": 40.4379918, "lon": -3.6899992, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 674477932, "lat": 40.4310712, "lon": -3.7090148, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 674477942, "lat": 40.4316782, "lon": -3.7103063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477945, "lat": 40.4318227, "lon": -3.7104205, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477947, "lat": 40.4315172, "lon": -3.7088859, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477948, "lat": 40.4315985, "lon": -3.7087911, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674477950, "lat": 40.4311161, "lon": -3.7103596, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 674477952, "lat": 40.4327583, "lon": -3.7087836, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477954, "lat": 40.4328631, "lon": -3.7088873, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477977, "lat": 40.4341099, "lon": -3.7027377, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477979, "lat": 40.4347568, "lon": -3.7029423, "tags": {"highway": "crossing"}}, {"type": "node", "id": 674477982, "lat": 40.4339407, "lon": -3.7028345, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 674477994, "lat": 40.4347859, "lon": -3.7020716, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674477995, "lat": 40.4343505, "lon": -3.7017245, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674477996, "lat": 40.4349201, "lon": -3.7019808, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492240, "lat": 40.4242603, "lon": -3.7073935, "tags": {"button_operated": "no", "check_date:crossing": "2021-06-20", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492244, "lat": 40.4265173, "lon": -3.706778, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 674492245, "lat": 40.4279494, "lon": -3.7062604, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492248, "lat": 40.4270961, "lon": -3.7064863, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 674492250, "lat": 40.430711, "lon": -3.7001515, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492251, "lat": 40.4307636, "lon": -3.6998234, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492252, "lat": 40.4304412, "lon": -3.7002136, "tags": {"button_operated": "no", "check_date:crossing": "2021-08-31", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492253, "lat": 40.4304158, "lon": -3.6999518, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 674492255, "lat": 40.4313898, "lon": -3.7000104, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Luchana", "parking": "underground"}}, {"type": "node", "id": 674492259, "lat": 40.4327595, "lon": -3.7010387}, {"type": "node", "id": 705649552, "lat": 40.4415438, "lon": -3.72443}, {"type": "node", "id": 705649554, "lat": 40.4409032, "lon": -3.7239689}, {"type": "node", "id": 706689897, "lat": 40.4448438, "lon": -3.6875606}, {"type": "node", "id": 706689900, "lat": 40.4453955, "lon": -3.6875112}, {"type": "node", "id": 706689901, "lat": 40.4459324, "lon": -3.6874674}, {"type": "node", "id": 706689902, "lat": 40.4453074, "lon": -3.6858397}, {"type": "node", "id": 706689906, "lat": 40.4466099, "lon": -3.688846}, {"type": "node", "id": 706689907, "lat": 40.4468436, "lon": -3.6894663}, {"type": "node", "id": 706689917, "lat": 40.4468381, "lon": -3.6896011}, {"type": "node", "id": 706689919, "lat": 40.4468576, "lon": -3.6887922}, {"type": "node", "id": 706689923, "lat": 40.447069, "lon": -3.6894651}, {"type": "node", "id": 706689925, "lat": 40.4469875, "lon": -3.6893772}, {"type": "node", "id": 706689927, "lat": 40.4469115, "lon": -3.6893914}, {"type": "node", "id": 706689929, "lat": 40.4488376, "lon": -3.6880606}, {"type": "node", "id": 706689931, "lat": 40.4492416, "lon": -3.6870912}, {"type": "node", "id": 706689933, "lat": 40.4490779, "lon": -3.6879609}, {"type": "node", "id": 706689939, "lat": 40.4477545, "lon": -3.6852991}, {"type": "node", "id": 737215719, "lat": 40.444798, "lon": -3.7084534}, {"type": "node", "id": 737215749, "lat": 40.4451127, "lon": -3.7087845}, {"type": "node", "id": 737215751, "lat": 40.444786, "lon": -3.708502}, {"type": "node", "id": 737215752, "lat": 40.4448028, "lon": -3.7084964}, {"type": "node", "id": 737215754, "lat": 40.4451693, "lon": -3.708838, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 737215755, "lat": 40.4447744, "lon": -3.7084613}, {"type": "node", "id": 737215759, "lat": 40.4448068, "lon": -3.70849}, {"type": "node", "id": 737215793, "lat": 40.4446165, "lon": -3.7083052}, {"type": "node", "id": 737215794, "lat": 40.4442916, "lon": -3.7101043, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 750475948, "lat": 40.4454438, "lon": -3.7242554, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 750475949, "lat": 40.4461879, "lon": -3.7232137, "tags": {"check_date:crossing": "2021-02-19", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 750475950, "lat": 40.4461379, "lon": -3.7232039}, {"type": "node", "id": 750476602, "lat": 40.4461725, "lon": -3.7233906}, {"type": "node", "id": 758253355, "lat": 40.4460252, "lon": -3.7273642}, {"type": "node", "id": 758253363, "lat": 40.4462237, "lon": -3.7251607}, {"type": "node", "id": 758253371, "lat": 40.4469325, "lon": -3.7247216}, {"type": "node", "id": 758253380, "lat": 40.4482744, "lon": -3.7249671}, {"type": "node", "id": 768765505, "lat": 40.4291055, "lon": -3.7019314}, {"type": "node", "id": 768765506, "lat": 40.4298092, "lon": -3.7028258}, {"type": "node", "id": 768765507, "lat": 40.4307129, "lon": -3.7029923}, {"type": "node", "id": 768765508, "lat": 40.4296089, "lon": -3.7027388, "tags": {"amenity": "parking", "fee": "yes", "layer": "-1", "parking": "underground"}}, {"type": "node", "id": 768765510, "lat": 40.4295022, "lon": -3.7026971}, {"type": "node", "id": 768765511, "lat": 40.4299846, "lon": -3.7027291}, {"type": "node", "id": 768765512, "lat": 40.4292506, "lon": -3.7022291, "tags": {"amenity": "parking_entrance", "operator": "Empark"}}, {"type": "node", "id": 768765513, "lat": 40.4306609, "lon": -3.7031932}, {"type": "node", "id": 797297571, "lat": 40.4365674, "lon": -3.7207979, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 797297574, "lat": 40.4362304, "lon": -3.7201717}, {"type": "node", "id": 797297575, "lat": 40.4365403, "lon": -3.7207685}, {"type": "node", "id": 797297576, "lat": 40.4352456, "lon": -3.7195844, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 797297579, "lat": 40.4360502, "lon": -3.7198353}, {"type": "node", "id": 797297580, "lat": 40.4353997, "lon": -3.719713}, {"type": "node", "id": 844466098, "lat": 40.4469059, "lon": -3.7031283, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 845455932, "lat": 40.4413801, "lon": -3.691372}, {"type": "node", "id": 851530281, "lat": 40.4366536, "lon": -3.7217899}, {"type": "node", "id": 858587173, "lat": 40.4291399, "lon": -3.7148846}, {"type": "node", "id": 858587179, "lat": 40.4303998, "lon": -3.713728}, {"type": "node", "id": 858587187, "lat": 40.4303638, "lon": -3.7135486}, {"type": "node", "id": 858587190, "lat": 40.4291026, "lon": -3.7149584}, {"type": "node", "id": 858587192, "lat": 40.4296273, "lon": -3.7145143}, {"type": "node", "id": 858587194, "lat": 40.4299086, "lon": -3.7158219}, {"type": "node", "id": 858587196, "lat": 40.4298925, "lon": -3.7143165}, {"type": "node", "id": 858587216, "lat": 40.4292297, "lon": -3.7147308}, {"type": "node", "id": 858587220, "lat": 40.4291207, "lon": -3.7150956}, {"type": "node", "id": 858587224, "lat": 40.4302882, "lon": -3.713404}, {"type": "node", "id": 858587228, "lat": 40.4297461, "lon": -3.7133835}, {"type": "node", "id": 858587232, "lat": 40.4303651, "lon": -3.7141618, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 858587240, "lat": 40.4298215, "lon": -3.7157112}, {"type": "node", "id": 875774460, "lat": 40.4470655, "lon": -3.699304}, {"type": "node", "id": 875774476, "lat": 40.4466847, "lon": -3.6993339}, {"type": "node", "id": 893869106, "lat": 40.4265803, "lon": -3.712938}, {"type": "node", "id": 893869107, "lat": 40.4263332, "lon": -3.713122}, {"type": "node", "id": 893911192, "lat": 40.4306784, "lon": -3.71564, "tags": {"name": "Alberto Aguilera, 70", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 902327001, "lat": 40.4347218, "lon": -3.7189723, "tags": {"name": "Princesa", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 902327004, "lat": 40.4287904, "lon": -3.7020097, "tags": {"name": "Fuencarral", "railway": "subway_entrance"}}, {"type": "node", "id": 904853734, "lat": 40.4263838, "lon": -3.6966036}, {"type": "node", "id": 904853746, "lat": 40.4270552, "lon": -3.6964611, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 904855949, "lat": 40.4280227, "lon": -3.6955996, "tags": {"name": "Santa Engracia", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 904855951, "lat": 40.427828, "lon": -3.6970542, "tags": {"name": "Hermanos \u00c1lvarez Quintero", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 904855958, "lat": 40.4273945, "lon": -3.6954215, "tags": {"name": "G\u00e9nova, pares", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "Steps down to ticket hall from street. [2017-18: Improvements being made."}}, {"type": "node", "id": 904855961, "lat": 40.4274858, "lon": -3.6959107, "tags": {"name": "Santa B\u00e1rbara", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 904868123, "lat": 40.4253594, "lon": -3.7124126}, {"type": "node", "id": 904868125, "lat": 40.4251694, "lon": -3.7122778}, {"type": "node", "id": 907465886, "lat": 40.4493361, "lon": -3.7163371}, {"type": "node", "id": 907465887, "lat": 40.4492155, "lon": -3.716489}, {"type": "node", "id": 907465899, "lat": 40.4490763, "lon": -3.7162572}, {"type": "node", "id": 907465902, "lat": 40.4493227, "lon": -3.7163934}, {"type": "node", "id": 907465904, "lat": 40.4491232, "lon": -3.7161723}, {"type": "node", "id": 907465906, "lat": 40.4502245, "lon": -3.7168517}, {"type": "node", "id": 907465908, "lat": 40.4499464, "lon": -3.7170469}, {"type": "node", "id": 907465912, "lat": 40.4491276, "lon": -3.716459}, {"type": "node", "id": 907465913, "lat": 40.4492071, "lon": -3.7161376}, {"type": "node", "id": 907465923, "lat": 40.4499691, "lon": -3.7172763}, {"type": "node", "id": 907465925, "lat": 40.4493183, "lon": -3.7162232}, {"type": "node", "id": 907465929, "lat": 40.4493345, "lon": -3.7162782}, {"type": "node", "id": 907465931, "lat": 40.450048, "lon": -3.7172419}, {"type": "node", "id": 907465934, "lat": 40.4490744, "lon": -3.7163622}, {"type": "node", "id": 907465936, "lat": 40.449296, "lon": -3.7164408}, {"type": "node", "id": 907465940, "lat": 40.4493603, "lon": -3.7168075}, {"type": "node", "id": 907465943, "lat": 40.4491149, "lon": -3.7186699}, {"type": "node", "id": 907465945, "lat": 40.4498643, "lon": -3.7172007}, {"type": "node", "id": 907465948, "lat": 40.4491947, "lon": -3.7168217}, {"type": "node", "id": 913080864, "lat": 40.4348271, "lon": -3.7191917, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 913080865, "lat": 40.4261823, "lon": -3.7130119, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 913080866, "lat": 40.4280123, "lon": -3.7144444, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080867, "lat": 40.4348638, "lon": -3.7197373, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080868, "lat": 40.4302695, "lon": -3.7139316, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 913080869, "lat": 40.4315455, "lon": -3.7223166, "tags": {"noexit": "yes"}}, {"type": "node", "id": 913080870, "lat": 40.434757, "lon": -3.7193684, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 913080871, "lat": 40.427796, "lon": -3.7141462}, {"type": "node", "id": 913080872, "lat": 40.4323023, "lon": -3.7205133, "tags": {"barrier": "gate"}}, {"type": "node", "id": 913080874, "lat": 40.4303519, "lon": -3.7140295}, {"type": "node", "id": 913206910, "lat": 40.429108, "lon": -3.7149541, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 914974919, "lat": 40.4403727, "lon": -3.6805679}, {"type": "node", "id": 914974922, "lat": 40.4400914, "lon": -3.6712772}, {"type": "node", "id": 914974927, "lat": 40.4405632, "lon": -3.6690705}, {"type": "node", "id": 914974930, "lat": 40.4403216, "lon": -3.6698034}, {"type": "node", "id": 914974933, "lat": 40.4415002, "lon": -3.6772859}, {"type": "node", "id": 914974934, "lat": 40.4408819, "lon": -3.6745147}, {"type": "node", "id": 914974937, "lat": 40.4412029, "lon": -3.675578}, {"type": "node", "id": 914974938, "lat": 40.4414531, "lon": -3.6766467}, {"type": "node", "id": 914974940, "lat": 40.4390211, "lon": -3.6832502}, {"type": "node", "id": 914974941, "lat": 40.4401663, "lon": -3.6719596}, {"type": "node", "id": 914974943, "lat": 40.4413505, "lon": -3.6783293}, {"type": "node", "id": 916938490, "lat": 40.4382197, "lon": -3.7242605}, {"type": "node", "id": 927751050, "lat": 40.4269303, "lon": -3.7147067}, {"type": "node", "id": 927751052, "lat": 40.4272781, "lon": -3.7139107}, {"type": "node", "id": 929294330, "lat": 40.4202096, "lon": -3.6956428}, {"type": "node", "id": 929294336, "lat": 40.4319681, "lon": -3.7172774, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 929294339, "lat": 40.4254556, "lon": -3.6888738}, {"type": "node", "id": 929294349, "lat": 40.4254865, "lon": -3.6893061}, {"type": "node", "id": 930662415, "lat": 40.4238682, "lon": -3.6992701}, {"type": "node", "id": 930662417, "lat": 40.426279, "lon": -3.7003811, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Parking Barcel\u00f3", "parking": "underground", "phone": "+34 915 217 995"}}, {"type": "node", "id": 930662432, "lat": 40.4281422, "lon": -3.7034514}, {"type": "node", "id": 930662433, "lat": 40.4281139, "lon": -3.7027219, "tags": {"amenity": "parking", "layer": "-1", "parking": "underground"}}, {"type": "node", "id": 930662446, "lat": 40.4280926, "lon": -3.7020193}, {"type": "node", "id": 930662450, "lat": 40.4238369, "lon": -3.6992877, "tags": {"amenity": "parking", "layer": "-1", "parking": "underground"}}, {"type": "node", "id": 936505945, "lat": 40.4300275, "lon": -3.7086621}, {"type": "node", "id": 936505954, "lat": 40.4299147, "lon": -3.7087053}, {"type": "node", "id": 937649649, "lat": 40.4329991, "lon": -3.7302439}, {"type": "node", "id": 937649650, "lat": 40.4341206, "lon": -3.7319122}, {"type": "node", "id": 937649651, "lat": 40.4352156, "lon": -3.7201379}, {"type": "node", "id": 937649652, "lat": 40.4327574, "lon": -3.7274875}, {"type": "node", "id": 937649653, "lat": 40.4330229, "lon": -3.7293599}, {"type": "node", "id": 937649655, "lat": 40.4334948, "lon": -3.731127}, {"type": "node", "id": 937649656, "lat": 40.4345678, "lon": -3.7229865}, {"type": "node", "id": 937649657, "lat": 40.4327876, "lon": -3.7283675}, {"type": "node", "id": 937649658, "lat": 40.4360547, "lon": -3.7214449}, {"type": "node", "id": 937649659, "lat": 40.4329983, "lon": -3.7301315}, {"type": "node", "id": 937649660, "lat": 40.4358807, "lon": -3.7266913}, {"type": "node", "id": 937649661, "lat": 40.4329078, "lon": -3.7271418}, {"type": "node", "id": 937649663, "lat": 40.4328902, "lon": -3.7291311}, {"type": "node", "id": 937649666, "lat": 40.435002, "lon": -3.7216203}, {"type": "node", "id": 937649667, "lat": 40.4327688, "lon": -3.7280437}, {"type": "node", "id": 937649668, "lat": 40.4363761, "lon": -3.7218116}, {"type": "node", "id": 937649669, "lat": 40.4340333, "lon": -3.7316332}, {"type": "node", "id": 937649671, "lat": 40.4356308, "lon": -3.7277857}, {"type": "node", "id": 937649673, "lat": 40.4332763, "lon": -3.7264196}, {"type": "node", "id": 937649675, "lat": 40.4327904, "lon": -3.7289087}, {"type": "node", "id": 937649677, "lat": 40.4333242, "lon": -3.7308918}, {"type": "node", "id": 937649678, "lat": 40.4341972, "lon": -3.7327946}, {"type": "node", "id": 937649679, "lat": 40.4352345, "lon": -3.7212251}, {"type": "node", "id": 937649681, "lat": 40.4327244, "lon": -3.7277328}, {"type": "node", "id": 937649682, "lat": 40.4368565, "lon": -3.7230381}, {"type": "node", "id": 937649683, "lat": 40.4337939, "lon": -3.7313864}, {"type": "node", "id": 937649684, "lat": 40.4349103, "lon": -3.7308595}, {"type": "node", "id": 937649685, "lat": 40.4342413, "lon": -3.7245087}, {"type": "node", "id": 937649686, "lat": 40.4330793, "lon": -3.730493}, {"type": "node", "id": 937649688, "lat": 40.435259, "lon": -3.7200219}, {"type": "node", "id": 937649689, "lat": 40.4341521, "lon": -3.7322639}, {"type": "node", "id": 937649690, "lat": 40.4353044, "lon": -3.7204746}, {"type": "node", "id": 937649691, "lat": 40.4330766, "lon": -3.7296644}, {"type": "node", "id": 937649692, "lat": 40.4360037, "lon": -3.7263244}, {"type": "node", "id": 937649693, "lat": 40.4336638, "lon": -3.7313176}, {"type": "node", "id": 937649694, "lat": 40.4342712, "lon": -3.7332779}, {"type": "node", "id": 937649695, "lat": 40.4327658, "lon": -3.7286627}, {"type": "node", "id": 937660052, "lat": 40.4336567, "lon": -3.7176409}, {"type": "node", "id": 937660053, "lat": 40.4335516, "lon": -3.7185112, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 937660054, "lat": 40.4334309, "lon": -3.7182063}, {"type": "node", "id": 937660056, "lat": 40.433661, "lon": -3.7185057, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 937660057, "lat": 40.4333441, "lon": -3.7182773, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 939958050, "lat": 40.4327881, "lon": -3.7273938}, {"type": "node", "id": 939960816, "lat": 40.434909, "lon": -3.7200132}, {"type": "node", "id": 939960817, "lat": 40.432744, "lon": -3.7251691}, {"type": "node", "id": 942080445, "lat": 40.4225369, "lon": -3.6883449}, {"type": "node", "id": 942080448, "lat": 40.4211903, "lon": -3.6885487}, {"type": "node", "id": 942080456, "lat": 40.424334, "lon": -3.6893101, "tags": {"access": "yes", "addr:city": "Madrid", "addr:postcode": "28001", "addr:street": "Calle de la Armada Espa\u00f1ola", "amenity": "parking", "capacity:charging": "15", "layer": "-1", "name": "Plaza de Col\u00f3n", "operator": "Serrano Park III", "parking": "underground", "phone": "+34915761837", "website": "https://www.empark.com/es/es/parking/madrid/plaza-de-colon/"}}, {"type": "node", "id": 942080459, "lat": 40.4223322, "lon": -3.6841854, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 942080463, "lat": 40.4242847, "lon": -3.6891166}, {"type": "node", "id": 942080469, "lat": 40.4240367, "lon": -3.6883754}, {"type": "node", "id": 942080477, "lat": 40.424449, "lon": -3.6899565}, {"type": "node", "id": 942080478, "lat": 40.4207347, "lon": -3.6859118, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 942080480, "lat": 40.4243824, "lon": -3.6894984}, {"type": "node", "id": 989204859, "lat": 40.4440459, "lon": -3.6951867}, {"type": "node", "id": 989204862, "lat": 40.4472868, "lon": -3.6954848}, {"type": "node", "id": 989204869, "lat": 40.4456833, "lon": -3.6951174}, {"type": "node", "id": 989204960, "lat": 40.4460588, "lon": -3.6949282}, {"type": "node", "id": 989204966, "lat": 40.4462121, "lon": -3.6950723}, {"type": "node", "id": 989204999, "lat": 40.447942, "lon": -3.6954028}, {"type": "node", "id": 989205005, "lat": 40.4463127, "lon": -3.6949889}, {"type": "node", "id": 989205016, "lat": 40.4468565, "lon": -3.6949893}, {"type": "node", "id": 989205020, "lat": 40.447969, "lon": -3.6958769}, {"type": "node", "id": 989205027, "lat": 40.4452317, "lon": -3.6949928}, {"type": "node", "id": 989205057, "lat": 40.4462449, "lon": -3.694889, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 989205076, "lat": 40.4440808, "lon": -3.6957935}, {"type": "node", "id": 989205097, "lat": 40.446305, "lon": -3.69486}, {"type": "node", "id": 989205114, "lat": 40.4473027, "lon": -3.6959462}, {"type": "node", "id": 989205158, "lat": 40.445173, "lon": -3.6952136, "tags": {"highway": "give_way"}}, {"type": "node", "id": 989277971, "lat": 40.4495669, "lon": -3.6880211, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 989278010, "lat": 40.4488681, "lon": -3.6893348, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 989278057, "lat": 40.4489934, "lon": -3.6889785, "tags": {"highway": "crossing"}}, {"type": "node", "id": 989278143, "lat": 40.4489732, "lon": -3.6904506, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 989278226, "lat": 40.4490565, "lon": -3.6903053}, {"type": "node", "id": 989278228, "lat": 40.4496122, "lon": -3.6882541}, {"type": "node", "id": 989278265, "lat": 40.4490937, "lon": -3.6890678, "tags": {"highway": "crossing"}}, {"type": "node", "id": 992003252, "lat": 40.4382185, "lon": -3.7243876, "tags": {"highway": "speed_camera", "note": "Av Arco Victoria VAO Moto-Bus DIR Centro"}}, {"type": "node", "id": 996183497, "lat": 40.4311041, "lon": -3.6740873}, {"type": "node", "id": 996183509, "lat": 40.4230412, "lon": -3.6861157, "tags": {"noexit": "yes"}}, {"type": "node", "id": 996183822, "lat": 40.4238727, "lon": -3.6863008}, {"type": "node", "id": 996184045, "lat": 40.4230788, "lon": -3.6864155, "tags": {"noexit": "yes"}}, {"type": "node", "id": 996184088, "lat": 40.4238562, "lon": -3.6860061}, {"type": "node", "id": 1011869670, "lat": 40.4329755, "lon": -3.6906081}, {"type": "node", "id": 1011869673, "lat": 40.432896, "lon": -3.6910433}, {"type": "node", "id": 1011869674, "lat": 40.4328812, "lon": -3.6911004}, {"type": "node", "id": 1011869675, "lat": 40.4351346, "lon": -3.6921067}, {"type": "node", "id": 1011869678, "lat": 40.4340292, "lon": -3.6920758}, {"type": "node", "id": 1016578176, "lat": 40.4455198, "lon": -3.6952068}, {"type": "node", "id": 1016578179, "lat": 40.4447093, "lon": -3.702401}, {"type": "node", "id": 1016578196, "lat": 40.4443769, "lon": -3.6982291}, {"type": "node", "id": 1016578197, "lat": 40.4445577, "lon": -3.7009137}, {"type": "node", "id": 1016578203, "lat": 40.4349707, "lon": -3.6983449, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1016578214, "lat": 40.4503523, "lon": -3.7089482}, {"type": "node", "id": 1016578216, "lat": 40.4449387, "lon": -3.7004764}, {"type": "node", "id": 1016578237, "lat": 40.4435058, "lon": -3.6985488}, {"type": "node", "id": 1016578249, "lat": 40.4529834, "lon": -3.7060524, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1016578253, "lat": 40.4348523, "lon": -3.6990975, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 1016578272, "lat": 40.4455435, "lon": -3.6956977}, {"type": "node", "id": 1016578274, "lat": 40.4449757, "lon": -3.7023845}, {"type": "node", "id": 1016578305, "lat": 40.4448295, "lon": -3.6979539}, {"type": "node", "id": 1016578323, "lat": 40.4346649, "lon": -3.6986068, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1016578331, "lat": 40.4450278, "lon": -3.7022961}, {"type": "node", "id": 1016578355, "lat": 40.4445353, "lon": -3.7005104}, {"type": "node", "id": 1016578357, "lat": 40.4431721, "lon": -3.6973966}, {"type": "node", "id": 1016578361, "lat": 40.4447961, "lon": -3.6972594}, {"type": "node", "id": 1016578380, "lat": 40.4449591, "lon": -3.7008769}, {"type": "node", "id": 1016578409, "lat": 40.4446234, "lon": -3.7022082}, {"type": "node", "id": 1016578419, "lat": 40.4446387, "lon": -3.7023326}, {"type": "node", "id": 1016578427, "lat": 40.4352454, "lon": -3.6988535, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1016578441, "lat": 40.445025, "lon": -3.7021797}, {"type": "node", "id": 1016578444, "lat": 40.4440768, "lon": -3.698336}, {"type": "node", "id": 1056095515, "lat": 40.4461599, "lon": -3.7229087}, {"type": "node", "id": 1056095516, "lat": 40.4466889, "lon": -3.7226118}, {"type": "node", "id": 1056095518, "lat": 40.446196, "lon": -3.7212188}, {"type": "node", "id": 1056095519, "lat": 40.446545, "lon": -3.7209941}, {"type": "node", "id": 1056095520, "lat": 40.4463908, "lon": -3.7211037}, {"type": "node", "id": 1056095521, "lat": 40.4459005, "lon": -3.7214167}, {"type": "node", "id": 1056095522, "lat": 40.4456588, "lon": -3.7215275}, {"type": "node", "id": 1056095523, "lat": 40.4470431, "lon": -3.7224355}, {"type": "node", "id": 1056095524, "lat": 40.4473803, "lon": -3.7222348}, {"type": "node", "id": 1056095525, "lat": 40.4468649, "lon": -3.7207977}, {"type": "node", "id": 1067565836, "lat": 40.4259215, "lon": -3.7128138}, {"type": "node", "id": 1067565849, "lat": 40.4335794, "lon": -3.7184435}, {"type": "node", "id": 1085874133, "lat": 40.431233, "lon": -3.6884912}, {"type": "node", "id": 1095709752, "lat": 40.4290527, "lon": -3.7218553, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709754, "lat": 40.4288889, "lon": -3.7214929}, {"type": "node", "id": 1095709756, "lat": 40.4287432, "lon": -3.7215649, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709757, "lat": 40.428822, "lon": -3.7220519}, {"type": "node", "id": 1095709758, "lat": 40.4292094, "lon": -3.7204701, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709759, "lat": 40.4289787, "lon": -3.7215922}, {"type": "node", "id": 1095709761, "lat": 40.4289104, "lon": -3.7213946, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709762, "lat": 40.4290119, "lon": -3.7214905, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1095709764, "lat": 40.4292944, "lon": -3.7205734, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1128664801, "lat": 40.4299346, "lon": -3.6931293, "tags": {"amenity": "parking_entrance", "maxheight": "1.9", "name": "Almagro", "parking": "underground"}}, {"type": "node", "id": 1135863591, "lat": 40.4512817, "lon": -3.7155996}, {"type": "node", "id": 1135863592, "lat": 40.4506483, "lon": -3.7165914}, {"type": "node", "id": 1135863594, "lat": 40.4508317, "lon": -3.7163848}, {"type": "node", "id": 1135863597, "lat": 40.4504215, "lon": -3.7165709}, {"type": "node", "id": 1135863626, "lat": 40.4513332, "lon": -3.7154766}, {"type": "node", "id": 1135863628, "lat": 40.4505965, "lon": -3.7165692}, {"type": "node", "id": 1135863630, "lat": 40.4511436, "lon": -3.7168821}, {"type": "node", "id": 1135863634, "lat": 40.4508396, "lon": -3.7165771}, {"type": "node", "id": 1135863642, "lat": 40.4497907, "lon": -3.7170744}, {"type": "node", "id": 1135863645, "lat": 40.4513285, "lon": -3.7171343}, {"type": "node", "id": 1135863649, "lat": 40.4504953, "lon": -3.7157442}, {"type": "node", "id": 1135863661, "lat": 40.4513308, "lon": -3.7170144}, {"type": "node", "id": 1135863663, "lat": 40.4514783, "lon": -3.715209}, {"type": "node", "id": 1135863666, "lat": 40.4511015, "lon": -3.7168206}, {"type": "node", "id": 1135863682, "lat": 40.4512599, "lon": -3.7171387}, {"type": "node", "id": 1135863683, "lat": 40.4506852, "lon": -3.7166202}, {"type": "node", "id": 1135863691, "lat": 40.4504541, "lon": -3.7161902}, {"type": "node", "id": 1135863709, "lat": 40.4513191, "lon": -3.7169528}, {"type": "node", "id": 1135863722, "lat": 40.4510547, "lon": -3.7166822}, {"type": "node", "id": 1135863725, "lat": 40.4510547, "lon": -3.716513}, {"type": "node", "id": 1135863737, "lat": 40.4509213, "lon": -3.7166914}, {"type": "node", "id": 1135863744, "lat": 40.4509564, "lon": -3.7169928}, {"type": "node", "id": 1135863748, "lat": 40.4506135, "lon": -3.7164728, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1135863759, "lat": 40.451277, "lon": -3.7169313}, {"type": "node", "id": 1135863769, "lat": 40.4510851, "lon": -3.716347}, {"type": "node", "id": 1135863771, "lat": 40.451174, "lon": -3.716024}, {"type": "node", "id": 1135863778, "lat": 40.4509254, "lon": -3.716409}, {"type": "node", "id": 1135863783, "lat": 40.4505372, "lon": -3.716557}, {"type": "node", "id": 1135863791, "lat": 40.4509236, "lon": -3.7167253, "tags": {"access": "private", "barrier": "lift_gate"}}, {"type": "node", "id": 1135863794, "lat": 40.4515096, "lon": -3.7184487, "tags": {"access": "private", "barrier": "gate", "bicycle": "destination", "foot": "destination", "motor_vehicle": "destination"}}, {"type": "node", "id": 1135863807, "lat": 40.4511998, "lon": -3.7169159}, {"type": "node", "id": 1135863811, "lat": 40.4512325, "lon": -3.7157903}, {"type": "node", "id": 1140217778, "lat": 40.4469738, "lon": -3.7193165}, {"type": "node", "id": 1140217791, "lat": 40.4463187, "lon": -3.7079319}, {"type": "node", "id": 1140217792, "lat": 40.4492796, "lon": -3.7096192, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217797, "lat": 40.4510348, "lon": -3.7109435, "tags": {"highway": "traffic_signals", "traffic_signals:direction": "both"}}, {"type": "node", "id": 1140217801, "lat": 40.4497097, "lon": -3.7102539}, {"type": "node", "id": 1140217808, "lat": 40.4496758, "lon": -3.710312}, {"type": "node", "id": 1140217818, "lat": 40.4466906, "lon": -3.7173188}, {"type": "node", "id": 1140217820, "lat": 40.448036, "lon": -3.7090229, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217822, "lat": 40.4492293, "lon": -3.7097729, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217830, "lat": 40.4496136, "lon": -3.7105955}, {"type": "node", "id": 1140217832, "lat": 40.4476526, "lon": -3.7084599, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1140217842, "lat": 40.4473001, "lon": -3.7085968}, {"type": "node", "id": 1140217843, "lat": 40.4480921, "lon": -3.7088605, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1140217847, "lat": 40.4499366, "lon": -3.7102305}, {"type": "node", "id": 1152699024, "lat": 40.4299038, "lon": -3.6932928, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1152699045, "lat": 40.4489142, "lon": -3.6910956}, {"type": "node", "id": 1152699053, "lat": 40.4492437, "lon": -3.6911726, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1179021796, "lat": 40.4302912, "lon": -3.7140656, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179021802, "lat": 40.4302796, "lon": -3.7126892}, {"type": "node", "id": 1179021807, "lat": 40.4297188, "lon": -3.715174}, {"type": "node", "id": 1179021817, "lat": 40.4302749, "lon": -3.7146864, "tags": {"amenity": "parking", "name": "El Corte Ingl\u00e9s", "parking": "underground"}}, {"type": "node", "id": 1179021923, "lat": 40.4296949, "lon": -3.7152152}, {"type": "node", "id": 1179021961, "lat": 40.4291488, "lon": -3.7202106, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022127, "lat": 40.4288049, "lon": -3.7148748, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1179022148, "lat": 40.4305138, "lon": -3.7135158, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022178, "lat": 40.4304083, "lon": -3.7145838}, {"type": "node", "id": 1179022182, "lat": 40.4289864, "lon": -3.7151983, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022300, "lat": 40.4288176, "lon": -3.7152035, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022304, "lat": 40.4303955, "lon": -3.7133532, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022345, "lat": 40.4290583, "lon": -3.7149461}, {"type": "node", "id": 1179022387, "lat": 40.428992, "lon": -3.7148916, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1179022390, "lat": 40.425854, "lon": -3.7187477, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1179022518, "lat": 40.4296865, "lon": -3.7158021, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1179022533, "lat": 40.4286907, "lon": -3.7149422}, {"type": "node", "id": 1179022535, "lat": 40.4304736, "lon": -3.7141485, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1179022558, "lat": 40.4296862, "lon": -3.7155082}, {"type": "node", "id": 1179022561, "lat": 40.4290368, "lon": -3.7150377, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847110, "lat": 40.4469166, "lon": -3.7083184}, {"type": "node", "id": 1203847112, "lat": 40.4448889, "lon": -3.7092913, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847114, "lat": 40.442224, "lon": -3.701862, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847115, "lat": 40.4449202, "lon": -3.7086575}, {"type": "node", "id": 1203847117, "lat": 40.4421447, "lon": -3.7043235, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847118, "lat": 40.4441573, "lon": -3.7101048, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1203847119, "lat": 40.4434104, "lon": -3.7057166}, {"type": "node", "id": 1203847120, "lat": 40.4419073, "lon": -3.7043965}, {"type": "node", "id": 1203847122, "lat": 40.4418175, "lon": -3.6991549}, {"type": "node", "id": 1203847123, "lat": 40.445728, "lon": -3.707295}, {"type": "node", "id": 1203847124, "lat": 40.4443175, "lon": -3.7077165}, {"type": "node", "id": 1203847125, "lat": 40.4443568, "lon": -3.7101227}, {"type": "node", "id": 1203847126, "lat": 40.4420055, "lon": -3.7016108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847127, "lat": 40.4450114, "lon": -3.7087567, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847129, "lat": 40.4422038, "lon": -3.7043228}, {"type": "node", "id": 1203847130, "lat": 40.4442353, "lon": -3.7091544}, {"type": "node", "id": 1203847131, "lat": 40.4419744, "lon": -3.704231}, {"type": "node", "id": 1203847132, "lat": 40.4444248, "lon": -3.7103855}, {"type": "node", "id": 1203847133, "lat": 40.4443753, "lon": -3.7080334}, {"type": "node", "id": 1203847134, "lat": 40.4422168, "lon": -3.704837, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1203847135, "lat": 40.4420012, "lon": -3.7002637}, {"type": "node", "id": 1203847136, "lat": 40.4438285, "lon": -3.7104435}, {"type": "node", "id": 1203847137, "lat": 40.4450229, "lon": -3.7070807}, {"type": "node", "id": 1203847138, "lat": 40.4448906, "lon": -3.7085888}, {"type": "node", "id": 1203847139, "lat": 40.4442385, "lon": -3.7101899}, {"type": "node", "id": 1203847140, "lat": 40.4446881, "lon": -3.709616, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1203847142, "lat": 40.4448784, "lon": -3.708612}, {"type": "node", "id": 1203847143, "lat": 40.4421036, "lon": -3.7052284}, {"type": "node", "id": 1203847146, "lat": 40.4434891, "lon": -3.7058498}, {"type": "node", "id": 1203847147, "lat": 40.4441318, "lon": -3.7064523}, {"type": "node", "id": 1203847148, "lat": 40.4420901, "lon": -3.7046654}, {"type": "node", "id": 1203847149, "lat": 40.4437071, "lon": -3.7074973}, {"type": "node", "id": 1203847151, "lat": 40.4456475, "lon": -3.707224}, {"type": "node", "id": 1203847152, "lat": 40.4443546, "lon": -3.7078891}, {"type": "node", "id": 1203847153, "lat": 40.4466447, "lon": -3.7081359}, {"type": "node", "id": 1203847155, "lat": 40.4423253, "lon": -3.7042935, "tags": {"crossing": "uncontrolled", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 1203847156, "lat": 40.4441566, "lon": -3.7076121}, {"type": "node", "id": 1203847157, "lat": 40.4441783, "lon": -3.7092793}, {"type": "node", "id": 1203847158, "lat": 40.4444258, "lon": -3.7105691, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847159, "lat": 40.4458338, "lon": -3.7072074, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847160, "lat": 40.4443909, "lon": -3.7081639}, {"type": "node", "id": 1203847161, "lat": 40.4419003, "lon": -3.7042358, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847162, "lat": 40.4422373, "lon": -3.7041013, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847164, "lat": 40.4419504, "lon": -3.6991469}, {"type": "node", "id": 1203847165, "lat": 40.4450212, "lon": -3.7071942}, {"type": "node", "id": 1203847166, "lat": 40.4439172, "lon": -3.7079913}, {"type": "node", "id": 1203847167, "lat": 40.4443546, "lon": -3.7087387}, {"type": "node", "id": 1203847168, "lat": 40.4468937, "lon": -3.7083808, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847170, "lat": 40.444733, "lon": -3.7079859}, {"type": "node", "id": 1203847171, "lat": 40.4448313, "lon": -3.7092343}, {"type": "node", "id": 1203847172, "lat": 40.4436181, "lon": -3.7073916}, {"type": "node", "id": 1203847173, "lat": 40.4436639, "lon": -3.7103581}, {"type": "node", "id": 1203847174, "lat": 40.4456049, "lon": -3.7078017, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847175, "lat": 40.4412428, "lon": -3.7075415}, {"type": "node", "id": 1203847176, "lat": 40.4440587, "lon": -3.7076765}, {"type": "node", "id": 1203847177, "lat": 40.4422295, "lon": -3.7048578}, {"type": "node", "id": 1203847178, "lat": 40.4437977, "lon": -3.7073897}, {"type": "node", "id": 1203847179, "lat": 40.4421233, "lon": -3.7045698}, {"type": "node", "id": 1203847180, "lat": 40.4437374, "lon": -3.7075324}, {"type": "node", "id": 1203847181, "lat": 40.4468444, "lon": -3.7104781, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1203847182, "lat": 40.4456192, "lon": -3.7072356}, {"type": "node", "id": 1203847183, "lat": 40.4467321, "lon": -3.7081392}, {"type": "node", "id": 1203847185, "lat": 40.4441091, "lon": -3.7094043}, {"type": "node", "id": 1203847187, "lat": 40.4438715, "lon": -3.7078192}, {"type": "node", "id": 1203847188, "lat": 40.4443944, "lon": -3.7083548}, {"type": "node", "id": 1203847189, "lat": 40.4420046, "lon": -3.704244}, {"type": "node", "id": 1203847191, "lat": 40.4437974, "lon": -3.7073792}, {"type": "node", "id": 1203847193, "lat": 40.4420505, "lon": -3.7049536}, {"type": "node", "id": 1203847194, "lat": 40.4457882, "lon": -3.7073066}, {"type": "node", "id": 1203847195, "lat": 40.4435183, "lon": -3.7073166}, {"type": "node", "id": 1203847196, "lat": 40.4421905, "lon": -3.7052123}, {"type": "node", "id": 1203847197, "lat": 40.4446413, "lon": -3.7079264}, {"type": "node", "id": 1203847199, "lat": 40.4435027, "lon": -3.70774}, {"type": "node", "id": 1203847200, "lat": 40.4443235, "lon": -3.7089068}, {"type": "node", "id": 1203847201, "lat": 40.444633, "lon": -3.7095539}, {"type": "node", "id": 1203847202, "lat": 40.4420243, "lon": -3.7019831, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847203, "lat": 40.4412262, "lon": -3.7076273}, {"type": "node", "id": 1203847205, "lat": 40.444148, "lon": -3.7095293}, {"type": "node", "id": 1203847206, "lat": 40.4438031, "lon": -3.7076596}, {"type": "node", "id": 1203847209, "lat": 40.4435484, "lon": -3.7072387}, {"type": "node", "id": 1203847210, "lat": 40.4440446, "lon": -3.7094943}, {"type": "node", "id": 1203847211, "lat": 40.4438999, "lon": -3.7079073}, {"type": "node", "id": 1203847213, "lat": 40.4443857, "lon": -3.7085547}, {"type": "node", "id": 1203847214, "lat": 40.4420856, "lon": -3.7043242}, {"type": "node", "id": 1203847215, "lat": 40.4433877, "lon": -3.7056636, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1203847216, "lat": 40.4419303, "lon": -3.7046793}, {"type": "node", "id": 1203847219, "lat": 40.4457608, "lon": -3.7073194}, {"type": "node", "id": 1203847220, "lat": 40.4443947, "lon": -3.7100958}, {"type": "node", "id": 1203847222, "lat": 40.4441437, "lon": -3.7081367}, {"type": "node", "id": 1203847224, "lat": 40.4442837, "lon": -3.7090295}, {"type": "node", "id": 1203847225, "lat": 40.4419714, "lon": -3.7041059, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1203847226, "lat": 40.4468969, "lon": -3.7079957, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847227, "lat": 40.4445139, "lon": -3.7103278}, {"type": "node", "id": 1203847228, "lat": 40.4445347, "lon": -3.7085309}, {"type": "node", "id": 1203847229, "lat": 40.44213, "lon": -3.7039035, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1203847231, "lat": 40.4437736, "lon": -3.7078938}, {"type": "node", "id": 1203847232, "lat": 40.4419524, "lon": -3.704764}, {"type": "node", "id": 1203847233, "lat": 40.4440342, "lon": -3.7105943}, {"type": "node", "id": 1203847234, "lat": 40.4441854, "lon": -3.7094948}, {"type": "node", "id": 1203847235, "lat": 40.4448948, "lon": -3.7086299}, {"type": "node", "id": 1209332387, "lat": 40.4206806, "lon": -3.6859445}, {"type": "node", "id": 1211171045, "lat": 40.4295685, "lon": -3.7052449, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1211171046, "lat": 40.4296104, "lon": -3.7063626, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1211171047, "lat": 40.4297048, "lon": -3.7063513, "tags": {"button_operated": "no", "check_date:crossing": "2021-12-03", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1211171050, "lat": 40.4297499, "lon": -3.7061081, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211171056, "lat": 40.429427, "lon": -3.7054936, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211192956, "lat": 40.4296739, "lon": -3.7059695, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1211192961, "lat": 40.4295192, "lon": -3.7056302, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1212072712, "lat": 40.445359, "lon": -3.7178578}, {"type": "node", "id": 1212072724, "lat": 40.4436973, "lon": -3.719476}, {"type": "node", "id": 1212072739, "lat": 40.4456813, "lon": -3.7179585}, {"type": "node", "id": 1212072740, "lat": 40.4453801, "lon": -3.7196721}, {"type": "node", "id": 1212072741, "lat": 40.4436478, "lon": -3.7195435}, {"type": "node", "id": 1212072752, "lat": 40.4449559, "lon": -3.719948}, {"type": "node", "id": 1212072762, "lat": 40.4465571, "lon": -3.7183525, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1212072772, "lat": 40.4473964, "lon": -3.7174916}, {"type": "node", "id": 1212072788, "lat": 40.4454715, "lon": -3.717873}, {"type": "node", "id": 1212072791, "lat": 40.4453505, "lon": -3.7193049, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1212072795, "lat": 40.4436648, "lon": -3.7194226, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1212072810, "lat": 40.4444769, "lon": -3.7185177}, {"type": "node", "id": 1212072813, "lat": 40.4437541, "lon": -3.7197753}, {"type": "node", "id": 1212072818, "lat": 40.446193, "lon": -3.7198861, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1212072820, "lat": 40.4457275, "lon": -3.718265}, {"type": "node", "id": 1212072836, "lat": 40.447005, "lon": -3.7178919, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1212072840, "lat": 40.4462582, "lon": -3.719978, "tags": {"name": "Vicente Aleixandre", "railway": "subway_entrance"}}, {"type": "node", "id": 1212072844, "lat": 40.4452375, "lon": -3.7194265, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1212072849, "lat": 40.4454755, "lon": -3.7210345}, {"type": "node", "id": 1212072856, "lat": 40.4434606, "lon": -3.7195371}, {"type": "node", "id": 1212072857, "lat": 40.4462205, "lon": -3.7172698}, {"type": "node", "id": 1212072858, "lat": 40.4436273, "lon": -3.7196833}, {"type": "node", "id": 1212072884, "lat": 40.4436476, "lon": -3.7194449}, {"type": "node", "id": 1212072896, "lat": 40.4453527, "lon": -3.7196585}, {"type": "node", "id": 1212072897, "lat": 40.4435357, "lon": -3.7195989}, {"type": "node", "id": 1212072904, "lat": 40.445841, "lon": -3.7168843, "tags": {"entrance": "yes"}}, {"type": "node", "id": 1212072906, "lat": 40.4450024, "lon": -3.7199409}, {"type": "node", "id": 1223809783, "lat": 40.4347617, "lon": -3.6884145}, {"type": "node", "id": 1223809784, "lat": 40.4306606, "lon": -3.6886123, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809785, "lat": 40.4349713, "lon": -3.6893736, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809786, "lat": 40.4311573, "lon": -3.6870127, "tags": {"check_date:crossing": "2023-03-30", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809787, "lat": 40.4352837, "lon": -3.688373, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809788, "lat": 40.4331504, "lon": -3.688186}, {"type": "node", "id": 1223809789, "lat": 40.4330856, "lon": -3.6886242}, {"type": "node", "id": 1223809791, "lat": 40.4358505, "lon": -3.6889089}, {"type": "node", "id": 1223809792, "lat": 40.4347824, "lon": -3.6890013}, {"type": "node", "id": 1223809793, "lat": 40.4331072, "lon": -3.6883449, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809794, "lat": 40.43521, "lon": -3.688311}, {"type": "node", "id": 1223809796, "lat": 40.4335465, "lon": -3.6888808}, {"type": "node", "id": 1223809797, "lat": 40.4355247, "lon": -3.6889625}, {"type": "node", "id": 1223809798, "lat": 40.4351976, "lon": -3.6896272, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809800, "lat": 40.4354178, "lon": -3.6887938}, {"type": "node", "id": 1223809801, "lat": 40.4348844, "lon": -3.6883782}, {"type": "node", "id": 1223809802, "lat": 40.4330827, "lon": -3.688723, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809803, "lat": 40.4306681, "lon": -3.688818}, {"type": "node", "id": 1223809804, "lat": 40.4338076, "lon": -3.6884688}, {"type": "node", "id": 1223809805, "lat": 40.4307179, "lon": -3.6892402}, {"type": "node", "id": 1223809806, "lat": 40.435819, "lon": -3.6887701}, {"type": "node", "id": 1223809807, "lat": 40.4329486, "lon": -3.6881999}, {"type": "node", "id": 1223809808, "lat": 40.4351419, "lon": -3.6891964, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809809, "lat": 40.4354001, "lon": -3.6892549}, {"type": "node", "id": 1223809811, "lat": 40.435518, "lon": -3.6894494}, {"type": "node", "id": 1223809812, "lat": 40.4346242, "lon": -3.6884207}, {"type": "node", "id": 1223809813, "lat": 40.4327795, "lon": -3.6888104}, {"type": "node", "id": 1223809814, "lat": 40.4350143, "lon": -3.6888043}, {"type": "node", "id": 1223809815, "lat": 40.4347434, "lon": -3.6886279}, {"type": "node", "id": 1223809816, "lat": 40.4330904, "lon": -3.6884644, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809817, "lat": 40.4339774, "lon": -3.6883052, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1223809818, "lat": 40.4361183, "lon": -3.6891068}, {"type": "node", "id": 1223809819, "lat": 40.4346057, "lon": -3.6890698}, {"type": "node", "id": 1223809820, "lat": 40.4312256, "lon": -3.6883474, "tags": {"check_date:crossing": "2021-10-12", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809821, "lat": 40.4355972, "lon": -3.6884707}, {"type": "node", "id": 1223809822, "lat": 40.4350215, "lon": -3.6892138}, {"type": "node", "id": 1223809823, "lat": 40.4349172, "lon": -3.6887021}, {"type": "node", "id": 1223809824, "lat": 40.4306843, "lon": -3.688955, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809825, "lat": 40.4350368, "lon": -3.6883076}, {"type": "node", "id": 1223809826, "lat": 40.4332238, "lon": -3.6887692}, {"type": "node", "id": 1223809827, "lat": 40.4347823, "lon": -3.6882776}, {"type": "node", "id": 1223809828, "lat": 40.435456, "lon": -3.6884667, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809829, "lat": 40.4329555, "lon": -3.6887372}, {"type": "node", "id": 1223809830, "lat": 40.4306976, "lon": -3.6890679, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809831, "lat": 40.4352337, "lon": -3.6882685}, {"type": "node", "id": 1223809832, "lat": 40.4339211, "lon": -3.6883694}, {"type": "node", "id": 1223809835, "lat": 40.4357803, "lon": -3.6887058}, {"type": "node", "id": 1223809836, "lat": 40.4353585, "lon": -3.6884653}, {"type": "node", "id": 1223809838, "lat": 40.4352677, "lon": -3.6890082}, {"type": "node", "id": 1223809840, "lat": 40.4329273, "lon": -3.6880867}, {"type": "node", "id": 1223809841, "lat": 40.4341163, "lon": -3.6890873, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1223809843, "lat": 40.4340995, "lon": -3.6882074}, {"type": "node", "id": 1223809845, "lat": 40.4307344, "lon": -3.6893807, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809846, "lat": 40.4328742, "lon": -3.6886792}, {"type": "node", "id": 1223809847, "lat": 40.4330784, "lon": -3.6888286, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1223809849, "lat": 40.4357517, "lon": -3.6887498}, {"type": "node", "id": 1223809851, "lat": 40.4341579, "lon": -3.6883453}, {"type": "node", "id": 1223809852, "lat": 40.4346431, "lon": -3.6889132}, {"type": "node", "id": 1223809854, "lat": 40.4359722, "lon": -3.6892164}, {"type": "node", "id": 1245495086, "lat": 40.4451366, "lon": -3.721447}, {"type": "node", "id": 1245495089, "lat": 40.4452407, "lon": -3.7215194}, {"type": "node", "id": 1245495098, "lat": 40.4451078, "lon": -3.7210314}, {"type": "node", "id": 1245495099, "lat": 40.4450733, "lon": -3.7211976}, {"type": "node", "id": 1245495105, "lat": 40.4453774, "lon": -3.7215731}, {"type": "node", "id": 1245495107, "lat": 40.4455428, "lon": -3.7216133}, {"type": "node", "id": 1245495108, "lat": 40.4456653, "lon": -3.7215493}, {"type": "node", "id": 1245495123, "lat": 40.4450896, "lon": -3.7213076}, {"type": "node", "id": 1253137011, "lat": 40.4254844, "lon": -3.6882422}, {"type": "node", "id": 1276028458, "lat": 40.4241464, "lon": -3.7027637}, {"type": "node", "id": 1276960072, "lat": 40.4280299, "lon": -3.721377}, {"type": "node", "id": 1278838929, "lat": 40.4197251, "lon": -3.6934131}, {"type": "node", "id": 1278838932, "lat": 40.4234188, "lon": -3.6908177, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1278838934, "lat": 40.4256791, "lon": -3.6905328, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1278838937, "lat": 40.4241807, "lon": -3.6880886, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278838940, "lat": 40.4254084, "lon": -3.6880948, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2010", "traffic_signals": "crossing"}}, {"type": "node", "id": 1278838949, "lat": 40.4233526, "lon": -3.6914648}, {"type": "node", "id": 1278838951, "lat": 40.4235658, "lon": -3.6913693}, {"type": "node", "id": 1278838954, "lat": 40.4241236, "lon": -3.6885253}, {"type": "node", "id": 1278838956, "lat": 40.4248144, "lon": -3.6903023}, {"type": "node", "id": 1278838958, "lat": 40.4247679, "lon": -3.6908914}, {"type": "node", "id": 1278838973, "lat": 40.4225193, "lon": -3.6921111, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278838975, "lat": 40.4251332, "lon": -3.6907273, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1278838976, "lat": 40.4234669, "lon": -3.6909946, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 1278838992, "lat": 40.4257211, "lon": -3.6904913}, {"type": "node", "id": 1278838994, "lat": 40.4255753, "lon": -3.690163, "tags": {"crossing": "no", "highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 1278839003, "lat": 40.4199149, "lon": -3.6930179}, {"type": "node", "id": 1278839004, "lat": 40.4253824, "lon": -3.6911419}, {"type": "node", "id": 1278839005, "lat": 40.4253795, "lon": -3.687687, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1278839008, "lat": 40.4256849, "lon": -3.6906054, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1278839019, "lat": 40.4234978, "lon": -3.6911116, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps"}}, {"type": "node", "id": 1278839022, "lat": 40.4222104, "lon": -3.691589, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839025, "lat": 40.4240137, "lon": -3.6882783, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839030, "lat": 40.4218175, "lon": -3.6921696}, {"type": "node", "id": 1278839038, "lat": 40.4254012, "lon": -3.6902392, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839040, "lat": 40.4224424, "lon": -3.6918723, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839042, "lat": 40.4254411, "lon": -3.6898153, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839045, "lat": 40.4259305, "lon": -3.690436}, {"type": "node", "id": 1278839048, "lat": 40.423212, "lon": -3.6915278, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839062, "lat": 40.4222436, "lon": -3.6916969, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839063, "lat": 40.4247539, "lon": -3.6908373}, {"type": "node", "id": 1278839064, "lat": 40.4254126, "lon": -3.6912376}, {"type": "node", "id": 1278839065, "lat": 40.4255187, "lon": -3.6898055, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839071, "lat": 40.4259156, "lon": -3.6903307, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1278839077, "lat": 40.4218111, "lon": -3.6924462, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1278839083, "lat": 40.4219617, "lon": -3.6920989}, {"type": "node", "id": 1278839084, "lat": 40.4250807, "lon": -3.6908809, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1278839092, "lat": 40.4255012, "lon": -3.6911921, "tags": {"button_operated": "no", "check_date:crossing": "2021-05-15", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1278839114, "lat": 40.4218862, "lon": -3.692139, "tags": {"button_operated": "no", "check_date:crossing": "2021-12-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1278839121, "lat": 40.4234047, "lon": -3.6916998, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1278839127, "lat": 40.4223052, "lon": -3.6919338}, {"type": "node", "id": 1278839128, "lat": 40.4244659, "lon": -3.6898165}, {"type": "node", "id": 1278839131, "lat": 40.4244183, "lon": -3.69038, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1278839146, "lat": 40.4255819, "lon": -3.6878256, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1280098498, "lat": 40.4473241, "lon": -3.6947398}, {"type": "node", "id": 1286234982, "lat": 40.4302385, "lon": -3.6907365, "tags": {"barrier": "bump_gate", "motorcar": "yes", "motorcycle": "yes"}}, {"type": "node", "id": 1288327568, "lat": 40.4282591, "lon": -3.7213728}, {"type": "node", "id": 1311052133, "lat": 40.4381562, "lon": -3.6902508}, {"type": "node", "id": 1311052137, "lat": 40.445219, "lon": -3.6858647}, {"type": "node", "id": 1311052148, "lat": 40.4379963, "lon": -3.690873, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1311052151, "lat": 40.4458837, "lon": -3.6914188}, {"type": "node", "id": 1311052154, "lat": 40.4458449, "lon": -3.6864281}, {"type": "node", "id": 1311052157, "lat": 40.4357533, "lon": -3.689051}, {"type": "node", "id": 1311052159, "lat": 40.4381437, "lon": -3.6910568, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1311052161, "lat": 40.4460285, "lon": -3.6863251}, {"type": "node", "id": 1311052162, "lat": 40.4459304, "lon": -3.6864737}, {"type": "node", "id": 1311052172, "lat": 40.4459685, "lon": -3.6863646}, {"type": "node", "id": 1311052179, "lat": 40.4383347, "lon": -3.6908239}, {"type": "node", "id": 1314916897, "lat": 40.448184, "lon": -3.6933374}, {"type": "node", "id": 1314916898, "lat": 40.4484121, "lon": -3.6945526}, {"type": "node", "id": 1314916899, "lat": 40.4513372, "lon": -3.6940931}, {"type": "node", "id": 1314916900, "lat": 40.4508807, "lon": -3.6922411}, {"type": "node", "id": 1314916903, "lat": 40.4490177, "lon": -3.6922086}, {"type": "node", "id": 1314916904, "lat": 40.4508286, "lon": -3.6943183}, {"type": "node", "id": 1314916905, "lat": 40.4505726, "lon": -3.6943744}, {"type": "node", "id": 1314916907, "lat": 40.4478171, "lon": -3.6930037}, {"type": "node", "id": 1314916909, "lat": 40.4476225, "lon": -3.6946615}, {"type": "node", "id": 1314916910, "lat": 40.4507041, "lon": -3.6920317}, {"type": "node", "id": 1314916911, "lat": 40.4479638, "lon": -3.6946196}, {"type": "node", "id": 1314916913, "lat": 40.4509559, "lon": -3.6939867}, {"type": "node", "id": 1314916914, "lat": 40.4524624, "lon": -3.6940056}, {"type": "node", "id": 1314916915, "lat": 40.4495729, "lon": -3.6944634}, {"type": "node", "id": 1314916917, "lat": 40.4520946, "lon": -3.6938633}, {"type": "node", "id": 1314916918, "lat": 40.4493904, "lon": -3.6944832}, {"type": "node", "id": 1314916919, "lat": 40.451764, "lon": -3.6919804}, {"type": "node", "id": 1314916920, "lat": 40.4518901, "lon": -3.6939129}, {"type": "node", "id": 1314916922, "lat": 40.4514816, "lon": -3.6919544}, {"type": "node", "id": 1314916923, "lat": 40.4494349, "lon": -3.6945798}, {"type": "node", "id": 1314916924, "lat": 40.449407, "lon": -3.6921546}, {"type": "node", "id": 1314916925, "lat": 40.4510891, "lon": -3.6942581}, {"type": "node", "id": 1314916926, "lat": 40.452444, "lon": -3.6936654}, {"type": "node", "id": 1314916927, "lat": 40.4482229, "lon": -3.6943285}, {"type": "node", "id": 1314919701, "lat": 40.4512128, "lon": -3.6939204}, {"type": "node", "id": 1314919703, "lat": 40.4477806, "lon": -3.6946421}, {"type": "node", "id": 1314919705, "lat": 40.4466294, "lon": -3.6949545}, {"type": "node", "id": 1314919706, "lat": 40.4509481, "lon": -3.6937888}, {"type": "node", "id": 1314926631, "lat": 40.4494068, "lon": -3.6920345}, {"type": "node", "id": 1314926635, "lat": 40.449429, "lon": -3.6951271}, {"type": "node", "id": 1314926642, "lat": 40.4477989, "lon": -3.6946434}, {"type": "node", "id": 1314926644, "lat": 40.4473268, "lon": -3.6947967}, {"type": "node", "id": 1314926651, "lat": 40.4521244, "lon": -3.6940028}, {"type": "node", "id": 1314926654, "lat": 40.4505085, "lon": -3.691979}, {"type": "node", "id": 1314926656, "lat": 40.4469646, "lon": -3.6948436}, {"type": "node", "id": 1314926657, "lat": 40.4508478, "lon": -3.6922809}, {"type": "node", "id": 1314926659, "lat": 40.4481065, "lon": -3.6944724}, {"type": "node", "id": 1314926667, "lat": 40.4491248, "lon": -3.6921324}, {"type": "node", "id": 1314926672, "lat": 40.4495905, "lon": -3.695094}, {"type": "node", "id": 1314926674, "lat": 40.4494565, "lon": -3.6920748}, {"type": "node", "id": 1314926675, "lat": 40.4472921, "lon": -3.6945928}, {"type": "node", "id": 1314926676, "lat": 40.4493045, "lon": -3.6944439}, {"type": "node", "id": 1314926678, "lat": 40.4509993, "lon": -3.6941703}, {"type": "node", "id": 1314926690, "lat": 40.4482139, "lon": -3.6933487}, {"type": "node", "id": 1314926692, "lat": 40.4477823, "lon": -3.6929646}, {"type": "node", "id": 1314926694, "lat": 40.4496779, "lon": -3.6944122}, {"type": "node", "id": 1314926696, "lat": 40.4508106, "lon": -3.6942687}, {"type": "node", "id": 1314926698, "lat": 40.4484229, "lon": -3.6945016}, {"type": "node", "id": 1314926701, "lat": 40.4515621, "lon": -3.6938855}, {"type": "node", "id": 1314926717, "lat": 40.4482945, "lon": -3.6945129}, {"type": "node", "id": 1314926718, "lat": 40.4512803, "lon": -3.6939733}, {"type": "node", "id": 1314926719, "lat": 40.4482562, "lon": -3.6943379}, {"type": "node", "id": 1314926721, "lat": 40.4510953, "lon": -3.6942069}, {"type": "node", "id": 1314926724, "lat": 40.4495801, "lon": -3.6948373}, {"type": "node", "id": 1314926727, "lat": 40.4521088, "lon": -3.693778}, {"type": "node", "id": 1314926730, "lat": 40.449391, "lon": -3.6945751}, {"type": "node", "id": 1314926740, "lat": 40.4494708, "lon": -3.6952416}, {"type": "node", "id": 1314926742, "lat": 40.4513375, "lon": -3.694161}, {"type": "node", "id": 1314926744, "lat": 40.4509195, "lon": -3.6939932}, {"type": "node", "id": 1314926746, "lat": 40.4505718, "lon": -3.6943182}, {"type": "node", "id": 1314928548, "lat": 40.449568, "lon": -3.6945723}, {"type": "node", "id": 1314930098, "lat": 40.4512463, "lon": -3.6919181}, {"type": "node", "id": 1314938250, "lat": 40.4490232, "lon": -3.6893786}, {"type": "node", "id": 1314938252, "lat": 40.4491216, "lon": -3.6903032}, {"type": "node", "id": 1314938254, "lat": 40.4491807, "lon": -3.6910059}, {"type": "node", "id": 1314938257, "lat": 40.4490524, "lon": -3.6913739}, {"type": "node", "id": 1314938264, "lat": 40.4491311, "lon": -3.6910282}, {"type": "node", "id": 1314938266, "lat": 40.4488813, "lon": -3.6913223}, {"type": "node", "id": 1314938271, "lat": 40.4491141, "lon": -3.6920226}, {"type": "node", "id": 1314938273, "lat": 40.4474754, "lon": -3.6915394}, {"type": "node", "id": 1314938275, "lat": 40.4473232, "lon": -3.6913572}, {"type": "node", "id": 1314938277, "lat": 40.449133, "lon": -3.6904642}, {"type": "node", "id": 1314938279, "lat": 40.4485237, "lon": -3.691266}, {"type": "node", "id": 1314938282, "lat": 40.4490158, "lon": -3.6911723}, {"type": "node", "id": 1314938283, "lat": 40.4492007, "lon": -3.6916711}, {"type": "node", "id": 1316546238, "lat": 40.42692, "lon": -3.6938161, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1316546411, "lat": 40.4270562, "lon": -3.6948449, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1316546497, "lat": 40.4266934, "lon": -3.6939269, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1316546802, "lat": 40.4261637, "lon": -3.6928441, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1316546929, "lat": 40.4271824, "lon": -3.6948617, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1316547022, "lat": 40.4267242, "lon": -3.6937563, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1320786894, "lat": 40.4371935, "lon": -3.7195426}, {"type": "node", "id": 1320786900, "lat": 40.4400193, "lon": -3.7180223}, {"type": "node", "id": 1320786920, "lat": 40.4366438, "lon": -3.7199504}, {"type": "node", "id": 1320787074, "lat": 40.4377876, "lon": -3.7184383}, {"type": "node", "id": 1320787110, "lat": 40.4400548, "lon": -3.7176919}, {"type": "node", "id": 1320787127, "lat": 40.436744, "lon": -3.7189973}, {"type": "node", "id": 1320787252, "lat": 40.4374458, "lon": -3.7195848}, {"type": "node", "id": 1320787269, "lat": 40.440061, "lon": -3.7186631, "tags": {"highway": "mini_roundabout"}}, {"type": "node", "id": 1320787274, "lat": 40.4360758, "lon": -3.7187596}, {"type": "node", "id": 1320787444, "lat": 40.437735, "lon": -3.7178806}, {"type": "node", "id": 1320787484, "lat": 40.4400132, "lon": -3.7179211}, {"type": "node", "id": 1320787498, "lat": 40.4370391, "lon": -3.7196162}, {"type": "node", "id": 1320787628, "lat": 40.4376278, "lon": -3.7198161}, {"type": "node", "id": 1320787649, "lat": 40.4392438, "lon": -3.7203143}, {"type": "node", "id": 1320787654, "lat": 40.4366824, "lon": -3.7186558}, {"type": "node", "id": 1336935931, "lat": 40.4462823, "lon": -3.6911634}, {"type": "node", "id": 1336935943, "lat": 40.450007, "lon": -3.6911016}, {"type": "node", "id": 1336935947, "lat": 40.4497309, "lon": -3.6913486}, {"type": "node", "id": 1336935950, "lat": 40.4501719, "lon": -3.6909568}, {"type": "node", "id": 1339493362, "lat": 40.4486294, "lon": -3.7215649}, {"type": "node", "id": 1339493364, "lat": 40.4461591, "lon": -3.7240468}, {"type": "node", "id": 1339493375, "lat": 40.4482754, "lon": -3.7249172}, {"type": "node", "id": 1339493380, "lat": 40.4462417, "lon": -3.7251265}, {"type": "node", "id": 1339493396, "lat": 40.4461918, "lon": -3.7252043}, {"type": "node", "id": 1339493397, "lat": 40.4479033, "lon": -3.7277761}, {"type": "node", "id": 1339493411, "lat": 40.4424134, "lon": -3.7248122, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1339493413, "lat": 40.4478286, "lon": -3.7246028, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493415, "lat": 40.4484848, "lon": -3.7251853}, {"type": "node", "id": 1339493417, "lat": 40.4425226, "lon": -3.724973}, {"type": "node", "id": 1339493428, "lat": 40.4479732, "lon": -3.7277816}, {"type": "node", "id": 1339493433, "lat": 40.4482253, "lon": -3.7270631}, {"type": "node", "id": 1339493439, "lat": 40.4478603, "lon": -3.7277745}, {"type": "node", "id": 1339493442, "lat": 40.4465922, "lon": -3.724562, "tags": {"check_date:crossing": "2023-02-03", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1339493443, "lat": 40.4478484, "lon": -3.7248428}, {"type": "node", "id": 1339493459, "lat": 40.4490145, "lon": -3.7200456}, {"type": "node", "id": 1339493463, "lat": 40.44816, "lon": -3.7276107}, {"type": "node", "id": 1339493466, "lat": 40.448212, "lon": -3.724631}, {"type": "node", "id": 1339493474, "lat": 40.448336, "lon": -3.7250099}, {"type": "node", "id": 1339493488, "lat": 40.4486558, "lon": -3.7212583, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1339493493, "lat": 40.4462687, "lon": -3.7251039}, {"type": "node", "id": 1339493495, "lat": 40.4462244, "lon": -3.7231987, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 1339493499, "lat": 40.4482426, "lon": -3.7274511}, {"type": "node", "id": 1339493503, "lat": 40.4459657, "lon": -3.7237295}, {"type": "node", "id": 1339493509, "lat": 40.4462042, "lon": -3.7251505}, {"type": "node", "id": 1339493516, "lat": 40.4474509, "lon": -3.7277133}, {"type": "node", "id": 1339493522, "lat": 40.4456635, "lon": -3.7241898}, {"type": "node", "id": 1339493529, "lat": 40.4477756, "lon": -3.7246625}, {"type": "node", "id": 1339493531, "lat": 40.4467435, "lon": -3.7247456, "tags": {"check_date:crossing": "2023-02-03", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1339493538, "lat": 40.4484458, "lon": -3.7250737}, {"type": "node", "id": 1339493540, "lat": 40.4428242, "lon": -3.7250998}, {"type": "node", "id": 1339493544, "lat": 40.4438165, "lon": -3.7259494}, {"type": "node", "id": 1339493546, "lat": 40.4480893, "lon": -3.727673}, {"type": "node", "id": 1339493548, "lat": 40.44803, "lon": -3.7277575}, {"type": "node", "id": 1339493564, "lat": 40.4478442, "lon": -3.7248862}, {"type": "node", "id": 1339493574, "lat": 40.4486766, "lon": -3.7212192}, {"type": "node", "id": 1339493580, "lat": 40.4482109, "lon": -3.7275732}, {"type": "node", "id": 1339493582, "lat": 40.4484156, "lon": -3.7251108}, {"type": "node", "id": 1339493591, "lat": 40.4486292, "lon": -3.721319}, {"type": "node", "id": 1339493595, "lat": 40.4464902, "lon": -3.7260691}, {"type": "node", "id": 1339493598, "lat": 40.4467623, "lon": -3.7247773}, {"type": "node", "id": 1339493600, "lat": 40.4417389, "lon": -3.7266603}, {"type": "node", "id": 1339493602, "lat": 40.445857, "lon": -3.7239288}, {"type": "node", "id": 1339493606, "lat": 40.4454347, "lon": -3.7243391, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 1339493612, "lat": 40.446242, "lon": -3.72509}, {"type": "node", "id": 1339493625, "lat": 40.4476416, "lon": -3.7247569}, {"type": "node", "id": 1339493627, "lat": 40.4418421, "lon": -3.7266729}, {"type": "node", "id": 1339493628, "lat": 40.4455087, "lon": -3.7212507}, {"type": "node", "id": 1339493630, "lat": 40.448389, "lon": -3.7249846}, {"type": "node", "id": 1339493632, "lat": 40.4428988, "lon": -3.7251877}, {"type": "node", "id": 1339493643, "lat": 40.4478971, "lon": -3.7244488}, {"type": "node", "id": 1339493645, "lat": 40.4462414, "lon": -3.7233237}, {"type": "node", "id": 1339493648, "lat": 40.4459582, "lon": -3.7273603}, {"type": "node", "id": 1339493650, "lat": 40.4469267, "lon": -3.7246868}, {"type": "node", "id": 1339493656, "lat": 40.4456123, "lon": -3.721583, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1339493657, "lat": 40.4478032, "lon": -3.724559}, {"type": "node", "id": 1339493660, "lat": 40.442476, "lon": -3.7248628}, {"type": "node", "id": 1339493661, "lat": 40.446131, "lon": -3.7244428}, {"type": "node", "id": 1339493662, "lat": 40.4459839, "lon": -3.7274374}, {"type": "node", "id": 1339493666, "lat": 40.4478621, "lon": -3.7246801, "tags": {"crossing:island": "yes"}}, {"type": "node", "id": 1339493668, "lat": 40.4478542, "lon": -3.7247918, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493673, "lat": 40.4486052, "lon": -3.7214987, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1339493674, "lat": 40.4462016, "lon": -3.7237503}, {"type": "node", "id": 1339493678, "lat": 40.4461589, "lon": -3.7231109}, {"type": "node", "id": 1339493680, "lat": 40.446597, "lon": -3.7244797}, {"type": "node", "id": 1339493681, "lat": 40.448345, "lon": -3.7249461}, {"type": "node", "id": 1339493687, "lat": 40.4461401, "lon": -3.7232718}, {"type": "node", "id": 1339493689, "lat": 40.4479218, "lon": -3.7246479, "tags": {"bicycle": "yes", "button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1339493691, "lat": 40.4466122, "lon": -3.7243798}, {"type": "node", "id": 1339493695, "lat": 40.4459693, "lon": -3.7273962}, {"type": "node", "id": 1339493698, "lat": 40.4419847, "lon": -3.7249359}, {"type": "node", "id": 1339493699, "lat": 40.4467896, "lon": -3.7247951}, {"type": "node", "id": 1339493701, "lat": 40.4478699, "lon": -3.7245335}, {"type": "node", "id": 1339493706, "lat": 40.4485877, "lon": -3.7214583}, {"type": "node", "id": 1339501833, "lat": 40.4396958, "lon": -3.7258904}, {"type": "node", "id": 1339912639, "lat": 40.433981, "lon": -3.7315598}, {"type": "node", "id": 1339912650, "lat": 40.4341743, "lon": -3.7325332}, {"type": "node", "id": 1339912666, "lat": 40.4340733, "lon": -3.7317278}, {"type": "node", "id": 1339912679, "lat": 40.4339189, "lon": -3.731486}, {"type": "node", "id": 1350673783, "lat": 40.4488508, "lon": -3.7165331}, {"type": "node", "id": 1350673784, "lat": 40.4491705, "lon": -3.7166377}, {"type": "node", "id": 1350673785, "lat": 40.4491047, "lon": -3.7165881, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1350673787, "lat": 40.4490106, "lon": -3.7165309}, {"type": "node", "id": 1357992429, "lat": 40.4290241, "lon": -3.7025836, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992432, "lat": 40.4290602, "lon": -3.7024796, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1357992434, "lat": 40.4291435, "lon": -3.7026398, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1357992435, "lat": 40.4291819, "lon": -3.7023662, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1357992445, "lat": 40.4294024, "lon": -3.712487, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 1357992452, "lat": 40.4295275, "lon": -3.7125496, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992454, "lat": 40.4300883, "lon": -3.7119874, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992456, "lat": 40.4300529, "lon": -3.7033207}, {"type": "node", "id": 1357992470, "lat": 40.4301294, "lon": -3.7030465}, {"type": "node", "id": 1357992473, "lat": 40.4301769, "lon": -3.7120765, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992474, "lat": 40.4302585, "lon": -3.7120641, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1357992475, "lat": 40.4310987, "lon": -3.7032146, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1357992476, "lat": 40.4311825, "lon": -3.7031409, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1358036196, "lat": 40.4272842, "lon": -3.7184034, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036197, "lat": 40.427332, "lon": -3.7186216, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1358036198, "lat": 40.4274523, "lon": -3.7183465, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036199, "lat": 40.4274979, "lon": -3.7186105, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1358036200, "lat": 40.4280977, "lon": -3.7168724, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1358036201, "lat": 40.4281004, "lon": -3.7191944, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036202, "lat": 40.4281246, "lon": -3.7193778, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1358036203, "lat": 40.4282307, "lon": -3.7191456, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1359796755, "lat": 40.437514, "lon": -3.6899255}, {"type": "node", "id": 1359796756, "lat": 40.4378469, "lon": -3.6890457}, {"type": "node", "id": 1362534264, "lat": 40.4330514, "lon": -3.6884529}, {"type": "node", "id": 1364770880, "lat": 40.4253652, "lon": -3.7171235}, {"type": "node", "id": 1364770883, "lat": 40.4254546, "lon": -3.716804}, {"type": "node", "id": 1364770887, "lat": 40.4255237, "lon": -3.7167028, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1364770889, "lat": 40.425502, "lon": -3.7183441}, {"type": "node", "id": 1364770891, "lat": 40.4255346, "lon": -3.7168976}, {"type": "node", "id": 1364770896, "lat": 40.4255957, "lon": -3.7182046}, {"type": "node", "id": 1364770912, "lat": 40.4258713, "lon": -3.7185601, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1364770913, "lat": 40.4259514, "lon": -3.7185715}, {"type": "node", "id": 1364770934, "lat": 40.426833, "lon": -3.7199712}, {"type": "node", "id": 1364770953, "lat": 40.4269157, "lon": -3.719576, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1364770957, "lat": 40.426924, "lon": -3.7197935, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1364770975, "lat": 40.4269947, "lon": -3.7196493}, {"type": "node", "id": 1364771066, "lat": 40.427618, "lon": -3.7207428}, {"type": "node", "id": 1364771094, "lat": 40.4277117, "lon": -3.720559, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1364771096, "lat": 40.4277176, "lon": -3.7203194, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1364771113, "lat": 40.4277956, "lon": -3.7203945}, {"type": "node", "id": 1364771264, "lat": 40.4283979, "lon": -3.7215108}, {"type": "node", "id": 1364771350, "lat": 40.4288307, "lon": -3.7213902}, {"type": "node", "id": 1364771365, "lat": 40.4289266, "lon": -3.7221538}, {"type": "node", "id": 1364771367, "lat": 40.4289381, "lon": -3.7220806}, {"type": "node", "id": 1364771369, "lat": 40.4289382, "lon": -3.7222533}, {"type": "node", "id": 1364771383, "lat": 40.4289582, "lon": -3.7220405}, {"type": "node", "id": 1364771386, "lat": 40.4290072, "lon": -3.7224626}, {"type": "node", "id": 1364771397, "lat": 40.4290413, "lon": -3.7216213}, {"type": "node", "id": 1364771541, "lat": 40.4294645, "lon": -3.7236141}, {"type": "node", "id": 1364771569, "lat": 40.4295119, "lon": -3.723674}, {"type": "node", "id": 1364771581, "lat": 40.42955, "lon": -3.72209}, {"type": "node", "id": 1364771589, "lat": 40.4296176, "lon": -3.7237339}, {"type": "node", "id": 1364771615, "lat": 40.4297051, "lon": -3.7237698}, {"type": "node", "id": 1364771625, "lat": 40.4297944, "lon": -3.7238416}, {"type": "node", "id": 1364771637, "lat": 40.4298582, "lon": -3.7239446}, {"type": "node", "id": 1364771644, "lat": 40.4298892, "lon": -3.7240954}, {"type": "node", "id": 1364771655, "lat": 40.4299166, "lon": -3.7242343}, {"type": "node", "id": 1364771662, "lat": 40.4299566, "lon": -3.7242826}, {"type": "node", "id": 1364771695, "lat": 40.4301432, "lon": -3.7226721}, {"type": "node", "id": 1364771697, "lat": 40.430159, "lon": -3.7245265}, {"type": "node", "id": 1364771793, "lat": 40.4307139, "lon": -3.7232496}, {"type": "node", "id": 1364771799, "lat": 40.4308009, "lon": -3.7232901, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1364771805, "lat": 40.4308481, "lon": -3.7234048}, {"type": "node", "id": 1364771810, "lat": 40.4308748, "lon": -3.7253063}, {"type": "node", "id": 1364771840, "lat": 40.431172, "lon": -3.7255838}, {"type": "node", "id": 1364771864, "lat": 40.4313016, "lon": -3.723832}, {"type": "node", "id": 1364771873, "lat": 40.431398, "lon": -3.7238723}, {"type": "node", "id": 1364771876, "lat": 40.4314445, "lon": -3.7239623}, {"type": "node", "id": 1364771877, "lat": 40.4314932, "lon": -3.7258698}, {"type": "node", "id": 1364771894, "lat": 40.4318986, "lon": -3.7243479}, {"type": "node", "id": 1364771904, "lat": 40.4319793, "lon": -3.7244253, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1364771942, "lat": 40.4322205, "lon": -3.7264972}, {"type": "node", "id": 1364771958, "lat": 40.4323321, "lon": -3.7266083}, {"type": "node", "id": 1364771974, "lat": 40.4325067, "lon": -3.7249464}, {"type": "node", "id": 1364771980, "lat": 40.432533, "lon": -3.7249686}, {"type": "node", "id": 1364772029, "lat": 40.4327053, "lon": -3.7268899}, {"type": "node", "id": 1364772041, "lat": 40.4327426, "lon": -3.7279032}, {"type": "node", "id": 1364772045, "lat": 40.4327645, "lon": -3.7287892}, {"type": "node", "id": 1364772047, "lat": 40.4328285, "lon": -3.7252546}, {"type": "node", "id": 1364772048, "lat": 40.4328308, "lon": -3.7290185}, {"type": "node", "id": 1364772055, "lat": 40.4328731, "lon": -3.7268744}, {"type": "node", "id": 1364772083, "lat": 40.4329403, "lon": -3.7239085, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1364772097, "lat": 40.4329904, "lon": -3.7269798}, {"type": "node", "id": 1364772105, "lat": 40.4330295, "lon": -3.7303806}, {"type": "node", "id": 1364772107, "lat": 40.4330379, "lon": -3.7299099}, {"type": "node", "id": 1364772124, "lat": 40.4330533, "lon": -3.7294705}, {"type": "node", "id": 1364772126, "lat": 40.4330639, "lon": -3.7297763}, {"type": "node", "id": 1364772153, "lat": 40.4331468, "lon": -3.7249659}, {"type": "node", "id": 1364772161, "lat": 40.4331682, "lon": -3.7248073}, {"type": "node", "id": 1364772173, "lat": 40.4332158, "lon": -3.7244314}, {"type": "node", "id": 1364772181, "lat": 40.4332413, "lon": -3.7241948}, {"type": "node", "id": 1364772183, "lat": 40.4332719, "lon": -3.7239119}, {"type": "node", "id": 1364772272, "lat": 40.4336071, "lon": -3.7312619}, {"type": "node", "id": 1364772311, "lat": 40.4337502, "lon": -3.7254844}, {"type": "node", "id": 1364772372, "lat": 40.4339187, "lon": -3.7295894}, {"type": "node", "id": 1364772374, "lat": 40.4339234, "lon": -3.7294326}, {"type": "node", "id": 1364772376, "lat": 40.4339318, "lon": -3.7296976}, {"type": "node", "id": 1364772380, "lat": 40.4339343, "lon": -3.7215957, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1364772386, "lat": 40.4339247, "lon": -3.7248077}, {"type": "node", "id": 1364772390, "lat": 40.4339781, "lon": -3.7292114}, {"type": "node", "id": 1364772405, "lat": 40.4340022, "lon": -3.7299031}, {"type": "node", "id": 1364772407, "lat": 40.4340125, "lon": -3.7317909}, {"type": "node", "id": 1364772414, "lat": 40.4340326, "lon": -3.7299748}, {"type": "node", "id": 1364772418, "lat": 40.4340651, "lon": -3.7290526}, {"type": "node", "id": 1364772424, "lat": 40.4340796, "lon": -3.7245001}, {"type": "node", "id": 1364772429, "lat": 40.4340846, "lon": -3.7300976}, {"type": "node", "id": 1364772448, "lat": 40.4341398, "lon": -3.7243421}, {"type": "node", "id": 1364772450, "lat": 40.4341431, "lon": -3.7315985}, {"type": "node", "id": 1364772451, "lat": 40.4341981, "lon": -3.7289094}, {"type": "node", "id": 1364772453, "lat": 40.4341765, "lon": -3.7302999}, {"type": "node", "id": 1364772465, "lat": 40.4341944, "lon": -3.7314683}, {"type": "node", "id": 1364772468, "lat": 40.4342275, "lon": -3.7242977}, {"type": "node", "id": 1364772470, "lat": 40.4342302, "lon": -3.7304489}, {"type": "node", "id": 1364772485, "lat": 40.4342517, "lon": -3.7312284}, {"type": "node", "id": 1364772489, "lat": 40.4342758, "lon": -3.7244992}, {"type": "node", "id": 1364772498, "lat": 40.4342816, "lon": -3.7306622}, {"type": "node", "id": 1364772508, "lat": 40.4342838, "lon": -3.7308265}, {"type": "node", "id": 1364772510, "lat": 40.4342852, "lon": -3.7309225}, {"type": "node", "id": 1364772528, "lat": 40.4343167, "lon": -3.7234847}, {"type": "node", "id": 1364772555, "lat": 40.4343405, "lon": -3.7244286}, {"type": "node", "id": 1364772598, "lat": 40.4343895, "lon": -3.7238553}, {"type": "node", "id": 1364772605, "lat": 40.4344071, "lon": -3.723063}, {"type": "node", "id": 1364772610, "lat": 40.4344876, "lon": -3.7287157}, {"type": "node", "id": 1364772614, "lat": 40.4344187, "lon": -3.7242151}, {"type": "node", "id": 1364772625, "lat": 40.4344211, "lon": -3.7214332}, {"type": "node", "id": 1364772635, "lat": 40.4344532, "lon": -3.723545}, {"type": "node", "id": 1364772649, "lat": 40.4344563, "lon": -3.7228747}, {"type": "node", "id": 1364772654, "lat": 40.4344933, "lon": -3.7324422}, {"type": "node", "id": 1364772661, "lat": 40.434503, "lon": -3.7235409}, {"type": "node", "id": 1364772681, "lat": 40.4345291, "lon": -3.7248105}, {"type": "node", "id": 1364772685, "lat": 40.4345352, "lon": -3.7248796}, {"type": "node", "id": 1364772688, "lat": 40.4345396, "lon": -3.7213973}, {"type": "node", "id": 1364772709, "lat": 40.4345533, "lon": -3.7227891}, {"type": "node", "id": 1364772711, "lat": 40.434556, "lon": -3.7247206}, {"type": "node", "id": 1364772728, "lat": 40.4345739, "lon": -3.7239133}, {"type": "node", "id": 1364772752, "lat": 40.4345963, "lon": -3.7246677}, {"type": "node", "id": 1364772769, "lat": 40.4346362, "lon": -3.7234607}, {"type": "node", "id": 1364772775, "lat": 40.43466, "lon": -3.7285721}, {"type": "node", "id": 1364772779, "lat": 40.4346464, "lon": -3.7245794}, {"type": "node", "id": 1364772787, "lat": 40.4346782, "lon": -3.7244429}, {"type": "node", "id": 1364772792, "lat": 40.4346826, "lon": -3.7237897}, {"type": "node", "id": 1364772795, "lat": 40.434703, "lon": -3.7316528}, {"type": "node", "id": 1364772799, "lat": 40.434716, "lon": -3.7243033}, {"type": "node", "id": 1364772802, "lat": 40.4347245, "lon": -3.7194431}, {"type": "node", "id": 1364772804, "lat": 40.4347512, "lon": -3.728452}, {"type": "node", "id": 1364772805, "lat": 40.4347485, "lon": -3.7254795}, {"type": "node", "id": 1364772806, "lat": 40.4347553, "lon": -3.725581}, {"type": "node", "id": 1364772807, "lat": 40.434763, "lon": -3.7190017}, {"type": "node", "id": 1364772808, "lat": 40.4347656, "lon": -3.7223542}, {"type": "node", "id": 1364772809, "lat": 40.4347677, "lon": -3.7218546}, {"type": "node", "id": 1364772810, "lat": 40.434771, "lon": -3.7242214}, {"type": "node", "id": 1364772812, "lat": 40.4347625, "lon": -3.725338}, {"type": "node", "id": 1364772814, "lat": 40.4348222, "lon": -3.7195154}, {"type": "node", "id": 1364772815, "lat": 40.4348307, "lon": -3.718535}, {"type": "node", "id": 1364772816, "lat": 40.4348235, "lon": -3.7246164}, {"type": "node", "id": 1364772817, "lat": 40.4348272, "lon": -3.7241316}, {"type": "node", "id": 1364772818, "lat": 40.4348478, "lon": -3.7282864}, {"type": "node", "id": 1364772819, "lat": 40.4348333, "lon": -3.7247608}, {"type": "node", "id": 1364772820, "lat": 40.4348217, "lon": -3.7232319}, {"type": "node", "id": 1364772822, "lat": 40.4348438, "lon": -3.7216104}, {"type": "node", "id": 1364772824, "lat": 40.4348504, "lon": -3.7244799}, {"type": "node", "id": 1364772826, "lat": 40.4348504, "lon": -3.7251525}, {"type": "node", "id": 1364772829, "lat": 40.4348516, "lon": -3.7223516}, {"type": "node", "id": 1364772830, "lat": 40.4348561, "lon": -3.7236902}, {"type": "node", "id": 1364772832, "lat": 40.4349145, "lon": -3.7281257}, {"type": "node", "id": 1364772833, "lat": 40.4348675, "lon": -3.7310338}, {"type": "node", "id": 1364772837, "lat": 40.4348726, "lon": -3.7190801}, {"type": "node", "id": 1364772842, "lat": 40.4348846, "lon": -3.7240401}, {"type": "node", "id": 1364772846, "lat": 40.4348908, "lon": -3.721954}, {"type": "node", "id": 1364772847, "lat": 40.4348998, "lon": -3.7214789}, {"type": "node", "id": 1364772850, "lat": 40.4349479, "lon": -3.7185301}, {"type": "node", "id": 1364772852, "lat": 40.4349286, "lon": -3.724252}, {"type": "node", "id": 1364772855, "lat": 40.4349417, "lon": -3.7279426}, {"type": "node", "id": 1364772856, "lat": 40.4349432, "lon": -3.7222874}, {"type": "node", "id": 1364772858, "lat": 40.4349436, "lon": -3.7199121}, {"type": "node", "id": 1364772859, "lat": 40.4349457, "lon": -3.7239598}, {"type": "node", "id": 1364772865, "lat": 40.434903, "lon": -3.7231256}, {"type": "node", "id": 1364772867, "lat": 40.4349611, "lon": -3.7204035}, {"type": "node", "id": 1364772868, "lat": 40.4349633, "lon": -3.721371}, {"type": "node", "id": 1364772870, "lat": 40.4350128, "lon": -3.7191831}, {"type": "node", "id": 1364772871, "lat": 40.4349888, "lon": -3.7250243}, {"type": "node", "id": 1364772877, "lat": 40.4349908, "lon": -3.7198643, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1364772878, "lat": 40.4349969, "lon": -3.7201264}, {"type": "node", "id": 1364772880, "lat": 40.4349998, "lon": -3.7214422}, {"type": "node", "id": 1364772881, "lat": 40.4350026, "lon": -3.7276728}, {"type": "node", "id": 1364772887, "lat": 40.4350247, "lon": -3.7236533}, {"type": "node", "id": 1364772888, "lat": 40.4350296, "lon": -3.7228652}, {"type": "node", "id": 1364772889, "lat": 40.43503, "lon": -3.7238138}, {"type": "node", "id": 1364772890, "lat": 40.4350361, "lon": -3.7216454}, {"type": "node", "id": 1364772892, "lat": 40.4350458, "lon": -3.7241284}, {"type": "node", "id": 1364772893, "lat": 40.4350516, "lon": -3.7273027}, {"type": "node", "id": 1364772898, "lat": 40.4350685, "lon": -3.7212171}, {"type": "node", "id": 1364772901, "lat": 40.4350468, "lon": -3.7198118}, {"type": "node", "id": 1364772902, "lat": 40.435073, "lon": -3.7269074}, {"type": "node", "id": 1364772904, "lat": 40.4350809, "lon": -3.722732}, {"type": "node", "id": 1364772906, "lat": 40.4350874, "lon": -3.721647}, {"type": "node", "id": 1364772908, "lat": 40.4350921, "lon": -3.7267396}, {"type": "node", "id": 1364772913, "lat": 40.4350976, "lon": -3.7202686}, {"type": "node", "id": 1364772915, "lat": 40.435102, "lon": -3.724069}, {"type": "node", "id": 1364772920, "lat": 40.4351148, "lon": -3.7211239}, {"type": "node", "id": 1364772921, "lat": 40.4351199, "lon": -3.7198767}, {"type": "node", "id": 1364772922, "lat": 40.4351424, "lon": -3.7212339}, {"type": "node", "id": 1364772923, "lat": 40.4351297, "lon": -3.7210621}, {"type": "node", "id": 1364772924, "lat": 40.4351303, "lon": -3.7266126}, {"type": "node", "id": 1364772926, "lat": 40.4351395, "lon": -3.7236677}, {"type": "node", "id": 1364772927, "lat": 40.4351447, "lon": -3.7204098}, {"type": "node", "id": 1364772931, "lat": 40.4351566, "lon": -3.7204775}, {"type": "node", "id": 1364772932, "lat": 40.4351574, "lon": -3.7206197}, {"type": "node", "id": 1364772934, "lat": 40.4351584, "lon": -3.7239834}, {"type": "node", "id": 1364772935, "lat": 40.4351937, "lon": -3.7249416}, {"type": "node", "id": 1364772940, "lat": 40.4351615, "lon": -3.7227817}, {"type": "node", "id": 1364772941, "lat": 40.4351754, "lon": -3.7235489}, {"type": "node", "id": 1364772946, "lat": 40.4352032, "lon": -3.7264808}, {"type": "node", "id": 1364772947, "lat": 40.4352109, "lon": -3.7203383, "tags": {"bus": "yes", "name": "Ruperto Chap\u00ed - Pza. Moncloa", "public_transport": "stop_position"}}, {"type": "node", "id": 1364772952, "lat": 40.4352182, "lon": -3.7234478}, {"type": "node", "id": 1364772953, "lat": 40.4352193, "lon": -3.7238909}, {"type": "node", "id": 1364772954, "lat": 40.4352236, "lon": -3.7220608}, {"type": "node", "id": 1364772956, "lat": 40.4352208, "lon": -3.720943}, {"type": "node", "id": 1364772959, "lat": 40.4352279, "lon": -3.7215779}, {"type": "node", "id": 1364772965, "lat": 40.4352694, "lon": -3.7237159}, {"type": "node", "id": 1364772966, "lat": 40.4352716, "lon": -3.7202998}, {"type": "node", "id": 1364772968, "lat": 40.4352763, "lon": -3.7222665}, {"type": "node", "id": 1364772969, "lat": 40.4352772, "lon": -3.7262958}, {"type": "node", "id": 1364772970, "lat": 40.4352793, "lon": -3.7245393}, {"type": "node", "id": 1364772974, "lat": 40.4352797, "lon": -3.7211181}, {"type": "node", "id": 1364772976, "lat": 40.4352853, "lon": -3.7247945}, {"type": "node", "id": 1364772977, "lat": 40.4352878, "lon": -3.7232809}, {"type": "node", "id": 1364772981, "lat": 40.4352892, "lon": -3.721001}, {"type": "node", "id": 1364772983, "lat": 40.4352987, "lon": -3.7236132}, {"type": "node", "id": 1364772984, "lat": 40.435307, "lon": -3.7261154}, {"type": "node", "id": 1364772985, "lat": 40.4353098, "lon": -3.7246647}, {"type": "node", "id": 1364772986, "lat": 40.4353194, "lon": -3.7259782}, {"type": "node", "id": 1364772988, "lat": 40.4353269, "lon": -3.7232054}, {"type": "node", "id": 1364772990, "lat": 40.4353297, "lon": -3.7258645}, {"type": "node", "id": 1364772992, "lat": 40.4353308, "lon": -3.724266}, {"type": "node", "id": 1364772993, "lat": 40.4353527, "lon": -3.7227682}, {"type": "node", "id": 1364772995, "lat": 40.435344, "lon": -3.7256872}, {"type": "node", "id": 1364772997, "lat": 40.4353452, "lon": -3.7228635}, {"type": "node", "id": 1364773001, "lat": 40.4353488, "lon": -3.7234671}, {"type": "node", "id": 1364773002, "lat": 40.4353639, "lon": -3.7226896}, {"type": "node", "id": 1364773003, "lat": 40.4353574, "lon": -3.7230561}, {"type": "node", "id": 1364773004, "lat": 40.4353635, "lon": -3.7229181}, {"type": "node", "id": 1364773005, "lat": 40.4353709, "lon": -3.7247049}, {"type": "node", "id": 1364773006, "lat": 40.4353822, "lon": -3.725601}, {"type": "node", "id": 1364773007, "lat": 40.4353879, "lon": -3.7219535}, {"type": "node", "id": 1364773014, "lat": 40.4354022, "lon": -3.7226576}, {"type": "node", "id": 1364773016, "lat": 40.4353998, "lon": -3.7241255}, {"type": "node", "id": 1364773020, "lat": 40.4354319, "lon": -3.7233516}, {"type": "node", "id": 1364773021, "lat": 40.4354508, "lon": -3.7184445}, {"type": "node", "id": 1364773022, "lat": 40.4354539, "lon": -3.7254943}, {"type": "node", "id": 1364773023, "lat": 40.4354755, "lon": -3.7187302}, {"type": "node", "id": 1364773026, "lat": 40.4354641, "lon": -3.7210467}, {"type": "node", "id": 1364773028, "lat": 40.4354896, "lon": -3.7215334}, {"type": "node", "id": 1364773030, "lat": 40.4354623, "lon": -3.7225763}, {"type": "node", "id": 1364773036, "lat": 40.4355122, "lon": -3.7239424}, {"type": "node", "id": 1364773038, "lat": 40.4355279, "lon": -3.7224602}, {"type": "node", "id": 1364773041, "lat": 40.435547, "lon": -3.725419}, {"type": "node", "id": 1364773043, "lat": 40.4355683, "lon": -3.7184435, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1364773044, "lat": 40.4355453, "lon": -3.722797}, {"type": "node", "id": 1364773050, "lat": 40.4355666, "lon": -3.7205721}, {"type": "node", "id": 1364773052, "lat": 40.4355675, "lon": -3.7218556}, {"type": "node", "id": 1364773054, "lat": 40.4355333, "lon": -3.7241652}, {"type": "node", "id": 1364773055, "lat": 40.4355833, "lon": -3.7210741}, {"type": "node", "id": 1364773057, "lat": 40.4355785, "lon": -3.7225603}, {"type": "node", "id": 1364773059, "lat": 40.4355778, "lon": -3.7245967}, {"type": "node", "id": 1364773061, "lat": 40.4355889, "lon": -3.7232482}, {"type": "node", "id": 1364773065, "lat": 40.4355965, "lon": -3.7223985}, {"type": "node", "id": 1364773069, "lat": 40.4356546, "lon": -3.7215841}, {"type": "node", "id": 1364773070, "lat": 40.4356195, "lon": -3.7222526}, {"type": "node", "id": 1364773075, "lat": 40.4356206, "lon": -3.7235027}, {"type": "node", "id": 1364773079, "lat": 40.4356401, "lon": -3.7238271}, {"type": "node", "id": 1364773081, "lat": 40.4356426, "lon": -3.7242024}, {"type": "node", "id": 1364773085, "lat": 40.4356651, "lon": -3.723705}, {"type": "node", "id": 1364773086, "lat": 40.435675, "lon": -3.7218364}, {"type": "node", "id": 1364773088, "lat": 40.4357058, "lon": -3.7217596}, {"type": "node", "id": 1364773089, "lat": 40.4356711, "lon": -3.7231949}, {"type": "node", "id": 1364773091, "lat": 40.4357103, "lon": -3.7238344}, {"type": "node", "id": 1364773093, "lat": 40.4357155, "lon": -3.7245563}, {"type": "node", "id": 1364773101, "lat": 40.4357198, "lon": -3.7222954}, {"type": "node", "id": 1364773102, "lat": 40.4357341, "lon": -3.7241735}, {"type": "node", "id": 1364773103, "lat": 40.4357494, "lon": -3.7252869}, {"type": "node", "id": 1364773104, "lat": 40.4357445, "lon": -3.7216845}, {"type": "node", "id": 1364773105, "lat": 40.4357806, "lon": -3.7240234}, {"type": "node", "id": 1364773113, "lat": 40.435852, "lon": -3.7214663}, {"type": "node", "id": 1364773116, "lat": 40.4358021, "lon": -3.727008}, {"type": "node", "id": 1364773117, "lat": 40.4357961, "lon": -3.7245311}, {"type": "node", "id": 1364773118, "lat": 40.4358239, "lon": -3.72414}, {"type": "node", "id": 1364773119, "lat": 40.4358405, "lon": -3.7238095}, {"type": "node", "id": 1364773120, "lat": 40.4358466, "lon": -3.7216866}, {"type": "node", "id": 1364773121, "lat": 40.4358549, "lon": -3.7252179}, {"type": "node", "id": 1364773131, "lat": 40.4358644, "lon": -3.7230498}, {"type": "node", "id": 1364773134, "lat": 40.4358647, "lon": -3.7242241}, {"type": "node", "id": 1364773142, "lat": 40.4359198, "lon": -3.7242872}, {"type": "node", "id": 1364773146, "lat": 40.4359299, "lon": -3.7251496}, {"type": "node", "id": 1364773148, "lat": 40.4359373, "lon": -3.7224238}, {"type": "node", "id": 1364773150, "lat": 40.4360005, "lon": -3.7242404}, {"type": "node", "id": 1364773151, "lat": 40.4359935, "lon": -3.7224334}, {"type": "node", "id": 1364773160, "lat": 40.4360029, "lon": -3.7250831}, {"type": "node", "id": 1364773163, "lat": 40.4359991, "lon": -3.7216922}, {"type": "node", "id": 1364773165, "lat": 40.4360208, "lon": -3.7229693}, {"type": "node", "id": 1364773167, "lat": 40.4360291, "lon": -3.7232617}, {"type": "node", "id": 1364773169, "lat": 40.4360291, "lon": -3.7233589}, {"type": "node", "id": 1364773171, "lat": 40.4360428, "lon": -3.7237694}, {"type": "node", "id": 1364773173, "lat": 40.4360521, "lon": -3.7224093}, {"type": "node", "id": 1364773179, "lat": 40.4360935, "lon": -3.7231458}, {"type": "node", "id": 1364773181, "lat": 40.4360935, "lon": -3.7234718}, {"type": "node", "id": 1364773184, "lat": 40.4360917, "lon": -3.7223535}, {"type": "node", "id": 1364773186, "lat": 40.4361319, "lon": -3.7218604}, {"type": "node", "id": 1364773187, "lat": 40.4361682, "lon": -3.7242263}, {"type": "node", "id": 1364773188, "lat": 40.4362161, "lon": -3.722954}, {"type": "node", "id": 1364773190, "lat": 40.4361938, "lon": -3.7235909}, {"type": "node", "id": 1364773194, "lat": 40.436227, "lon": -3.7236844}, {"type": "node", "id": 1364773195, "lat": 40.4362232, "lon": -3.7220101}, {"type": "node", "id": 1364773196, "lat": 40.4361837, "lon": -3.7230673}, {"type": "node", "id": 1364773197, "lat": 40.4362384, "lon": -3.7221161}, {"type": "node", "id": 1364773198, "lat": 40.4362606, "lon": -3.723779}, {"type": "node", "id": 1364773200, "lat": 40.4362469, "lon": -3.722676}, {"type": "node", "id": 1364773202, "lat": 40.4362697, "lon": -3.7224715}, {"type": "node", "id": 1364773209, "lat": 40.4362704, "lon": -3.722255}, {"type": "node", "id": 1364773210, "lat": 40.4362892, "lon": -3.724754}, {"type": "node", "id": 1364773211, "lat": 40.4363063, "lon": -3.7230214}, {"type": "node", "id": 1364773212, "lat": 40.4363083, "lon": -3.7240047}, {"type": "node", "id": 1364773214, "lat": 40.4363318, "lon": -3.7241874}, {"type": "node", "id": 1364773215, "lat": 40.4363368, "lon": -3.7221541}, {"type": "node", "id": 1364773216, "lat": 40.4363369, "lon": -3.7242273}, {"type": "node", "id": 1364773224, "lat": 40.4363417, "lon": -3.724591}, {"type": "node", "id": 1364773226, "lat": 40.436356, "lon": -3.7243903}, {"type": "node", "id": 1364773227, "lat": 40.4363825, "lon": -3.7241687}, {"type": "node", "id": 1364773229, "lat": 40.436399, "lon": -3.7229912}, {"type": "node", "id": 1364773230, "lat": 40.4364206, "lon": -3.7252929}, {"type": "node", "id": 1364773231, "lat": 40.4364455, "lon": -3.7222408}, {"type": "node", "id": 1364773232, "lat": 40.4364497, "lon": -3.7241297}, {"type": "node", "id": 1364773237, "lat": 40.436521, "lon": -3.7229536}, {"type": "node", "id": 1364773239, "lat": 40.4365255, "lon": -3.7240208}, {"type": "node", "id": 1364773241, "lat": 40.4365649, "lon": -3.7234636}, {"type": "node", "id": 1364773243, "lat": 40.4365716, "lon": -3.7237518}, {"type": "node", "id": 1364773244, "lat": 40.4365684, "lon": -3.7222981}, {"type": "node", "id": 1364773245, "lat": 40.4365807, "lon": -3.7227259}, {"type": "node", "id": 1364773246, "lat": 40.4365822, "lon": -3.7240147}, {"type": "node", "id": 1364773249, "lat": 40.4365846, "lon": -3.7228107}, {"type": "node", "id": 1364773251, "lat": 40.4365973, "lon": -3.7226386}, {"type": "node", "id": 1364773253, "lat": 40.4366002, "lon": -3.7244616}, {"type": "node", "id": 1364773255, "lat": 40.4366018, "lon": -3.722895}, {"type": "node", "id": 1364773257, "lat": 40.4366209, "lon": -3.7240239}, {"type": "node", "id": 1364773258, "lat": 40.4365992, "lon": -3.7245775}, {"type": "node", "id": 1364773260, "lat": 40.436665, "lon": -3.7246839}, {"type": "node", "id": 1364773262, "lat": 40.4366384, "lon": -3.7225885}, {"type": "node", "id": 1364773264, "lat": 40.4366696, "lon": -3.7230135}, {"type": "node", "id": 1364773265, "lat": 40.4366747, "lon": -3.7225806}, {"type": "node", "id": 1364773266, "lat": 40.436689, "lon": -3.7240465}, {"type": "node", "id": 1364773268, "lat": 40.4366896, "lon": -3.7228168}, {"type": "node", "id": 1364773269, "lat": 40.43669, "lon": -3.7227758}, {"type": "node", "id": 1364773270, "lat": 40.4367, "lon": -3.7228631}, {"type": "node", "id": 1364773277, "lat": 40.4367068, "lon": -3.7227553}, {"type": "node", "id": 1364773279, "lat": 40.4367175, "lon": -3.7230533}, {"type": "node", "id": 1364773280, "lat": 40.436724, "lon": -3.7228899}, {"type": "node", "id": 1364773281, "lat": 40.4367272, "lon": -3.722759}, {"type": "node", "id": 1364773282, "lat": 40.436742, "lon": -3.72277}, {"type": "node", "id": 1364773283, "lat": 40.4367459, "lon": -3.7226103}, {"type": "node", "id": 1364773284, "lat": 40.4367484, "lon": -3.7228947}, {"type": "node", "id": 1364773285, "lat": 40.4367616, "lon": -3.7228031}, {"type": "node", "id": 1364773290, "lat": 40.4367656, "lon": -3.7228857}, {"type": "node", "id": 1364773291, "lat": 40.4367696, "lon": -3.7228368}, {"type": "node", "id": 1364773293, "lat": 40.4367696, "lon": -3.7228626}, {"type": "node", "id": 1364773295, "lat": 40.436783, "lon": -3.7230636}, {"type": "node", "id": 1364773296, "lat": 40.4368055, "lon": -3.7240444}, {"type": "node", "id": 1364773298, "lat": 40.4368102, "lon": -3.7233029}, {"type": "node", "id": 1364773299, "lat": 40.4368211, "lon": -3.7226758}, {"type": "node", "id": 1364773300, "lat": 40.4368299, "lon": -3.7230546}, {"type": "node", "id": 1364773302, "lat": 40.4368497, "lon": -3.7227318}, {"type": "node", "id": 1364773304, "lat": 40.436863, "lon": -3.7232903}, {"type": "node", "id": 1364773309, "lat": 40.436871, "lon": -3.7227734}, {"type": "node", "id": 1364773311, "lat": 40.4368749, "lon": -3.7229994}, {"type": "node", "id": 1364773313, "lat": 40.4368916, "lon": -3.7241139}, {"type": "node", "id": 1364773315, "lat": 40.4368866, "lon": -3.7228505}, {"type": "node", "id": 1364773319, "lat": 40.4368876, "lon": -3.7229442}, {"type": "node", "id": 1364773320, "lat": 40.4369339, "lon": -3.7229347}, {"type": "node", "id": 1364773322, "lat": 40.4369419, "lon": -3.7233631}, {"type": "node", "id": 1364773324, "lat": 40.4369916, "lon": -3.7235361}, {"type": "node", "id": 1364773326, "lat": 40.4369965, "lon": -3.7229628}, {"type": "node", "id": 1364773328, "lat": 40.4370347, "lon": -3.7230049}, {"type": "node", "id": 1364773330, "lat": 40.4370545, "lon": -3.7230731}, {"type": "node", "id": 1364773333, "lat": 40.4370584, "lon": -3.7237067}, {"type": "node", "id": 1364773338, "lat": 40.4370988, "lon": -3.7231132}, {"type": "node", "id": 1364773341, "lat": 40.43714, "lon": -3.7231453}, {"type": "node", "id": 1364773344, "lat": 40.4371984, "lon": -3.7236956, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1364773345, "lat": 40.4371586, "lon": -3.7232133}, {"type": "node", "id": 1364773350, "lat": 40.4372293, "lon": -3.7233177}, {"type": "node", "id": 1365197179, "lat": 40.425422, "lon": -3.690626}, {"type": "node", "id": 1366142630, "lat": 40.4324087, "lon": -3.6974328, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1366142631, "lat": 40.432291, "lon": -3.6974231, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1366142634, "lat": 40.4323776, "lon": -3.6979251, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 1377881473, "lat": 40.4326898, "lon": -3.6821571}, {"type": "node", "id": 1377881475, "lat": 40.432808, "lon": -3.6845971}, {"type": "node", "id": 1377881477, "lat": 40.4328305, "lon": -3.6821455}, {"type": "node", "id": 1377881478, "lat": 40.4328824, "lon": -3.6861952}, {"type": "node", "id": 1377881483, "lat": 40.4328975, "lon": -3.683485}, {"type": "node", "id": 1377881485, "lat": 40.4329526, "lon": -3.6845851}, {"type": "node", "id": 1377881488, "lat": 40.433003, "lon": -3.685593}, {"type": "node", "id": 1377881495, "lat": 40.444602, "lon": -3.686381}, {"type": "node", "id": 1377881496, "lat": 40.4446664, "lon": -3.685694, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881501, "lat": 40.4446347, "lon": -3.685111, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881506, "lat": 40.4446892, "lon": -3.6856958}, {"type": "node", "id": 1377881508, "lat": 40.444694, "lon": -3.6851729}, {"type": "node", "id": 1377881509, "lat": 40.444709, "lon": -3.6864001}, {"type": "node", "id": 1377881511, "lat": 40.4447279, "lon": -3.6852139}, {"type": "node", "id": 1377881512, "lat": 40.4447462, "lon": -3.6849041, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881520, "lat": 40.4447716, "lon": -3.6864683, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1377881522, "lat": 40.4447891, "lon": -3.6855962}, {"type": "node", "id": 1377881523, "lat": 40.4447681, "lon": -3.6857841}, {"type": "node", "id": 1377881524, "lat": 40.4448011, "lon": -3.6865391}, {"type": "node", "id": 1377881525, "lat": 40.4448122, "lon": -3.6860039}, {"type": "node", "id": 1377881528, "lat": 40.4447984, "lon": -3.6858761}, {"type": "node", "id": 1377881539, "lat": 40.4449078, "lon": -3.6855765, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881542, "lat": 40.4449766, "lon": -3.6859338}, {"type": "node", "id": 1377881546, "lat": 40.4450097, "lon": -3.6858076}, {"type": "node", "id": 1377881551, "lat": 40.4453366, "lon": -3.686076, "tags": {"highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1377881557, "lat": 40.445356, "lon": -3.6852098}, {"type": "node", "id": 1377881558, "lat": 40.4453817, "lon": -3.6857747, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881560, "lat": 40.4454511, "lon": -3.6854257, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1377881561, "lat": 40.445555, "lon": -3.6860385}, {"type": "node", "id": 1377881563, "lat": 40.4456541, "lon": -3.685889, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1377881565, "lat": 40.4456776, "lon": -3.6858518}, {"type": "node", "id": 1378696850, "lat": 40.4276408, "lon": -3.7142997, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696853, "lat": 40.427723, "lon": -3.714099, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696856, "lat": 40.4277922, "lon": -3.7142829, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696858, "lat": 40.4280202, "lon": -3.7142015, "tags": {"button_operated": "no", "check_date:crossing": "2023-05-22", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696860, "lat": 40.4280391, "lon": -3.7143183, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696861, "lat": 40.4299131, "lon": -3.7105242, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1378696865, "lat": 40.4300272, "lon": -3.7106767, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696867, "lat": 40.4301082, "lon": -3.7103876, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696871, "lat": 40.4302415, "lon": -3.7105195, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696873, "lat": 40.4307465, "lon": -3.7157882, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1378696877, "lat": 40.4314295, "lon": -3.71689, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696878, "lat": 40.4315932, "lon": -3.7171698, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1378696879, "lat": 40.4318636, "lon": -3.7172019}, {"type": "node", "id": 1437132913, "lat": 40.4459193, "lon": -3.691689, "tags": {"level": "-1;0", "name": "P\u00ba de la Castellana, impares", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 1437132917, "lat": 40.4465668, "lon": -3.6921852, "tags": {"name": "Nuevos Ministerios", "railway": "subway_entrance"}}, {"type": "node", "id": 1439702944, "lat": 40.4470038, "lon": -3.7054528}, {"type": "node", "id": 1439705328, "lat": 40.4354847, "lon": -3.6887439, "tags": {"bench": "yes", "bin": "yes", "bus": "yes", "highway": "bus_stop", "lit": "yes", "name": "Emilio Castelar", "operator": "EMT Madrid", "public_transport": "platform", "ref": "58", "shelter": "yes", "source": "https://navegapormadrid.emtmadrid.es/app/", "tactile_paving": "yes"}}, {"type": "node", "id": 1446632660, "lat": 40.4338561, "lon": -3.7185037, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447057701, "lat": 40.4467837, "lon": -3.7029418, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447181174, "lat": 40.4462248, "lon": -3.6916381, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447395580, "lat": 40.4387354, "lon": -3.717723, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "traffic_signals": "signal", "wheelchair": "yes"}}, {"type": "node", "id": 1447402323, "lat": 40.4458219, "lon": -3.7122935, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1447529412, "lat": 40.437301, "lon": -3.6901298}, {"type": "node", "id": 1465071277, "lat": 40.4242686, "lon": -3.6882625}, {"type": "node", "id": 1465071278, "lat": 40.4243577, "lon": -3.6886157}, {"type": "node", "id": 1465071279, "lat": 40.4245077, "lon": -3.688566}, {"type": "node", "id": 1465071280, "lat": 40.4245309, "lon": -3.6899083}, {"type": "node", "id": 1465071281, "lat": 40.4245301, "lon": -3.6898601}, {"type": "node", "id": 1465071282, "lat": 40.4245381, "lon": -3.6898051}, {"type": "node", "id": 1465071283, "lat": 40.4245842, "lon": -3.6897119}, {"type": "node", "id": 1465071284, "lat": 40.4246193, "lon": -3.6896799}, {"type": "node", "id": 1465071285, "lat": 40.4246641, "lon": -3.6896595}, {"type": "node", "id": 1465071286, "lat": 40.4247242, "lon": -3.6885376}, {"type": "node", "id": 1465071287, "lat": 40.4247116, "lon": -3.6896566}, {"type": "node", "id": 1465071288, "lat": 40.4247578, "lon": -3.6896715}, {"type": "node", "id": 1465071289, "lat": 40.4247952, "lon": -3.6896994}, {"type": "node", "id": 1465071290, "lat": 40.4248478, "lon": -3.6897878}, {"type": "node", "id": 1465071291, "lat": 40.4248731, "lon": -3.6885699}, {"type": "node", "id": 1465071292, "lat": 40.4250508, "lon": -3.6886445}, {"type": "node", "id": 1465071294, "lat": 40.425176, "lon": -3.6886954}, {"type": "node", "id": 1465071295, "lat": 40.4252055, "lon": -3.6896362}, {"type": "node", "id": 1465071296, "lat": 40.4252058, "lon": -3.6881507}, {"type": "node", "id": 1465071297, "lat": 40.4253425, "lon": -3.6895786}, {"type": "node", "id": 1474148374, "lat": 40.4240452, "lon": -3.7054228}, {"type": "node", "id": 1474148375, "lat": 40.4241349, "lon": -3.6964642}, {"type": "node", "id": 1474148376, "lat": 40.4250821, "lon": -3.6978753, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1474148377, "lat": 40.4259505, "lon": -3.7057689}, {"type": "node", "id": 1474148379, "lat": 40.4264967, "lon": -3.7056683}, {"type": "node", "id": 1474148380, "lat": 40.43777, "lon": -3.6841772}, {"type": "node", "id": 1474148381, "lat": 40.4383489, "lon": -3.6841778}, {"type": "node", "id": 1474148382, "lat": 40.4426406, "lon": -3.7111592}, {"type": "node", "id": 1474148383, "lat": 40.4426623, "lon": -3.7111343}, {"type": "node", "id": 1474148385, "lat": 40.4426367, "lon": -3.7112322}, {"type": "node", "id": 1474148387, "lat": 40.4427112, "lon": -3.7112659}, {"type": "node", "id": 1474148388, "lat": 40.4427179, "lon": -3.7111394}, {"type": "node", "id": 1474148391, "lat": 40.442733, "lon": -3.711241}, {"type": "node", "id": 1474148393, "lat": 40.4427369, "lon": -3.711168}, {"type": "node", "id": 1474148394, "lat": 40.4468123, "lon": -3.7078278}, {"type": "node", "id": 1474148396, "lat": 40.4469651, "lon": -3.707771}, {"type": "node", "id": 1474148398, "lat": 40.4481237, "lon": -3.6983897, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1474148402, "lat": 40.4496961, "lon": -3.7021223}, {"type": "node", "id": 1474148418, "lat": 40.4497952, "lon": -3.701935}, {"type": "node", "id": 1474148425, "lat": 40.4498254, "lon": -3.7022758}, {"type": "node", "id": 1474148441, "lat": 40.4499337, "lon": -3.7020457}, {"type": "node", "id": 1474148445, "lat": 40.4510259, "lon": -3.7017382}, {"type": "node", "id": 1474148446, "lat": 40.4511683, "lon": -3.6999574}, {"type": "node", "id": 1474148448, "lat": 40.45127, "lon": -3.7004862}, {"type": "node", "id": 1474148455, "lat": 40.4514776, "lon": -3.7015665}, {"type": "node", "id": 1486142497, "lat": 40.4342222, "lon": -3.7188883}, {"type": "node", "id": 1486142510, "lat": 40.4347894, "lon": -3.7192852, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1486142511, "lat": 40.4350563, "lon": -3.7194436}, {"type": "node", "id": 1486142513, "lat": 40.4354371, "lon": -3.7194511}, {"type": "node", "id": 1486142528, "lat": 40.4354979, "lon": -3.7198317, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1486142530, "lat": 40.4355916, "lon": -3.7192624}, {"type": "node", "id": 1486142531, "lat": 40.4356384, "lon": -3.7189708}, {"type": "node", "id": 1486142532, "lat": 40.4356811, "lon": -3.7195413}, {"type": "node", "id": 1486142534, "lat": 40.4356921, "lon": -3.7191524}, {"type": "node", "id": 1486142535, "lat": 40.4357061, "lon": -3.7206132}, {"type": "node", "id": 1486142536, "lat": 40.4359961, "lon": -3.7211475}, {"type": "node", "id": 1486142559, "lat": 40.4361824, "lon": -3.7213068}, {"type": "node", "id": 1486142561, "lat": 40.436412, "lon": -3.7215718}, {"type": "node", "id": 1486142563, "lat": 40.4364614, "lon": -3.7217064}, {"type": "node", "id": 1486142565, "lat": 40.4365001, "lon": -3.7214917}, {"type": "node", "id": 1486142567, "lat": 40.4365199, "lon": -3.7217021}, {"type": "node", "id": 1486142569, "lat": 40.4365564, "lon": -3.721286}, {"type": "node", "id": 1486142572, "lat": 40.4365883, "lon": -3.7216095}, {"type": "node", "id": 1486142593, "lat": 40.4366202, "lon": -3.7208167}, {"type": "node", "id": 1486142595, "lat": 40.4366324, "lon": -3.7209752}, {"type": "node", "id": 1486142596, "lat": 40.4366597, "lon": -3.721262}, {"type": "node", "id": 1486142597, "lat": 40.4366597, "lon": -3.7215037}, {"type": "node", "id": 1486142598, "lat": 40.4366858, "lon": -3.7208696}, {"type": "node", "id": 1486142599, "lat": 40.4366825, "lon": -3.7216035}, {"type": "node", "id": 1486142601, "lat": 40.4366917, "lon": -3.7208047}, {"type": "node", "id": 1486142603, "lat": 40.4367129, "lon": -3.7210264}, {"type": "node", "id": 1486142623, "lat": 40.4367464, "lon": -3.7211783}, {"type": "node", "id": 1486142624, "lat": 40.4367849, "lon": -3.7214591}, {"type": "node", "id": 1486142626, "lat": 40.4368346, "lon": -3.7209449}, {"type": "node", "id": 1486142627, "lat": 40.436894, "lon": -3.7217504}, {"type": "node", "id": 1486142629, "lat": 40.4370926, "lon": -3.7236397}, {"type": "node", "id": 1486142632, "lat": 40.4371576, "lon": -3.7205842}, {"type": "node", "id": 1486142645, "lat": 40.4373025, "lon": -3.7235136}, {"type": "node", "id": 1486142647, "lat": 40.4373377, "lon": -3.7228777}, {"type": "node", "id": 1486142650, "lat": 40.4374835, "lon": -3.7202257}, {"type": "node", "id": 1486142652, "lat": 40.4377171, "lon": -3.7197885}, {"type": "node", "id": 1486142655, "lat": 40.4378242, "lon": -3.7234618}, {"type": "node", "id": 1490070885, "lat": 40.4354542, "lon": -3.6867638, "tags": {"access": "private", "amenity": "parking", "layer": "-1", "parking": "underground"}}, {"type": "node", "id": 1491286098, "lat": 40.4353228, "lon": -3.7189581}, {"type": "node", "id": 1491286099, "lat": 40.4355273, "lon": -3.7187904}, {"type": "node", "id": 1491286100, "lat": 40.4355849, "lon": -3.720322}, {"type": "node", "id": 1491286102, "lat": 40.435899, "lon": -3.7200342}, {"type": "node", "id": 1491286103, "lat": 40.4360829, "lon": -3.7198702}, {"type": "node", "id": 1491286104, "lat": 40.4365478, "lon": -3.7206624}, {"type": "node", "id": 1491286106, "lat": 40.4367249, "lon": -3.7213988}, {"type": "node", "id": 1493669240, "lat": 40.425749, "lon": -3.6898897}, {"type": "node", "id": 1493669241, "lat": 40.4261601, "lon": -3.6897757}, {"type": "node", "id": 1493669242, "lat": 40.4263723, "lon": -3.6897369}, {"type": "node", "id": 1493669252, "lat": 40.4325711, "lon": -3.6881301}, {"type": "node", "id": 1493669255, "lat": 40.4335294, "lon": -3.688111}, {"type": "node", "id": 1500124428, "lat": 40.4384747, "lon": -3.7177594, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1500124436, "lat": 40.4387238, "lon": -3.717619}, {"type": "node", "id": 1500124441, "lat": 40.4387492, "lon": -3.7178476}, {"type": "node", "id": 1500124446, "lat": 40.438846, "lon": -3.7175597}, {"type": "node", "id": 1500124447, "lat": 40.4389754, "lon": -3.7176356, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124465, "lat": 40.4389838, "lon": -3.7172351}, {"type": "node", "id": 1500124468, "lat": 40.4390111, "lon": -3.7140062, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124471, "lat": 40.4389979, "lon": -3.7177338}, {"type": "node", "id": 1500124475, "lat": 40.4390099, "lon": -3.7163847, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1500124478, "lat": 40.4390201, "lon": -3.7142371, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124495, "lat": 40.4390049, "lon": -3.7171237}, {"type": "node", "id": 1500124498, "lat": 40.4390307, "lon": -3.7181529}, {"type": "node", "id": 1500124500, "lat": 40.4390602, "lon": -3.7150965, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124504, "lat": 40.439074, "lon": -3.7153763, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124510, "lat": 40.4390715, "lon": -3.7178477}, {"type": "node", "id": 1500124514, "lat": 40.4390764, "lon": -3.7176561}, {"type": "node", "id": 1500124528, "lat": 40.4390996, "lon": -3.7161306, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124531, "lat": 40.4391023, "lon": -3.7170904, "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124536, "lat": 40.4391215, "lon": -3.7169186}, {"type": "node", "id": 1500124542, "lat": 40.4391376, "lon": -3.7176868}, {"type": "node", "id": 1500124545, "lat": 40.4391423, "lon": -3.7139638, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124558, "lat": 40.4391511, "lon": -3.7171243}, {"type": "node", "id": 1500124561, "lat": 40.439155, "lon": -3.7142185, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124566, "lat": 40.4391526, "lon": -3.7180094}, {"type": "node", "id": 1500124568, "lat": 40.4391433, "lon": -3.7172994}, {"type": "node", "id": 1500124571, "lat": 40.4391903, "lon": -3.7150823, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124573, "lat": 40.4392026, "lon": -3.7177717, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124587, "lat": 40.4392043, "lon": -3.715364, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124589, "lat": 40.4392143, "lon": -3.7172872, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124591, "lat": 40.4392122, "lon": -3.7171243}, {"type": "node", "id": 1500124593, "lat": 40.4392362, "lon": -3.716131, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124594, "lat": 40.4392513, "lon": -3.7140868, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1500124607, "lat": 40.4392612, "lon": -3.7174592, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124610, "lat": 40.4392856, "lon": -3.7170778, "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124613, "lat": 40.4393085, "lon": -3.7152011, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1500124619, "lat": 40.4394076, "lon": -3.7179664}, {"type": "node", "id": 1500124631, "lat": 40.4394441, "lon": -3.7175789, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1500124635, "lat": 40.4394644, "lon": -3.7170713}, {"type": "node", "id": 1500124637, "lat": 40.4395231, "lon": -3.7181271}, {"type": "node", "id": 1500124638, "lat": 40.4395842, "lon": -3.7180483, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1500124640, "lat": 40.439653, "lon": -3.7172475}, {"type": "node", "id": 1500124641, "lat": 40.4396678, "lon": -3.7179279}, {"type": "node", "id": 1500124642, "lat": 40.4397128, "lon": -3.7177433}, {"type": "node", "id": 1500124644, "lat": 40.4397109, "lon": -3.7175274, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1500124657, "lat": 40.4404439, "lon": -3.7158097, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1500160587, "lat": 40.4374304, "lon": -3.7201499}, {"type": "node", "id": 1500160589, "lat": 40.4375277, "lon": -3.7200262}, {"type": "node", "id": 1500160600, "lat": 40.437737, "lon": -3.7236874}, {"type": "node", "id": 1501200385, "lat": 40.4245034, "lon": -3.7119367, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1501227816, "lat": 40.4285241, "lon": -3.7021726, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227820, "lat": 40.428756, "lon": -3.7023021, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227823, "lat": 40.4287628, "lon": -3.7021614, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227825, "lat": 40.4288437, "lon": -3.7021851}, {"type": "node", "id": 1501227827, "lat": 40.4288425, "lon": -3.7020673}, {"type": "node", "id": 1501227829, "lat": 40.4288428, "lon": -3.7016676, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227832, "lat": 40.4288622, "lon": -3.7023005}, {"type": "node", "id": 1501227833, "lat": 40.4289018, "lon": -3.7023701}, {"type": "node", "id": 1501227838, "lat": 40.4289333, "lon": -3.7016351, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1501227841, "lat": 40.4289862, "lon": -3.7018508, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1501227843, "lat": 40.4292107, "lon": -3.7019841}, {"type": "node", "id": 1501227845, "lat": 40.4292245, "lon": -3.7016547, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1501227847, "lat": 40.4292111, "lon": -3.7026748}, {"type": "node", "id": 1501227850, "lat": 40.4292795, "lon": -3.7023861}, {"type": "node", "id": 1501227856, "lat": 40.429274, "lon": -3.7017292}, {"type": "node", "id": 1501227857, "lat": 40.4293516, "lon": -3.7026063}, {"type": "node", "id": 1501227858, "lat": 40.4293902, "lon": -3.7024092}, {"type": "node", "id": 1501230372, "lat": 40.4295117, "lon": -3.7014949, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1502697018, "lat": 40.4370528, "lon": -3.724039, "tags": {"bus": "yes", "name": "Avenida de la Memoria", "old_name": "Av. S\u00e9neca - Arco de la Victoria", "public_transport": "stop_position"}}, {"type": "node", "id": 1505080991, "lat": 40.4327958, "lon": -3.7177586, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505080997, "lat": 40.4329502, "lon": -3.7181514, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081002, "lat": 40.4330631, "lon": -3.7178083, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "wheelchair": "yes"}}, {"type": "node", "id": 1505081009, "lat": 40.4330936, "lon": -3.7170642}, {"type": "node", "id": 1505081012, "lat": 40.433081, "lon": -3.7180901, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081018, "lat": 40.4331002, "lon": -3.7171729}, {"type": "node", "id": 1505081022, "lat": 40.4332193, "lon": -3.717402}, {"type": "node", "id": 1505081023, "lat": 40.4333594, "lon": -3.7174276, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1505081028, "lat": 40.4333847, "lon": -3.7181732, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1505081037, "lat": 40.4335594, "lon": -3.7185769}, {"type": "node", "id": 1505081040, "lat": 40.433633, "lon": -3.718343}, {"type": "node", "id": 1505081044, "lat": 40.4338913, "lon": -3.7188038, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1505081139, "lat": 40.4418889, "lon": -3.6828894}, {"type": "node", "id": 1505081155, "lat": 40.4457642, "lon": -3.7145575}, {"type": "node", "id": 1505081157, "lat": 40.4458963, "lon": -3.7146427}, {"type": "node", "id": 1505081158, "lat": 40.4459844, "lon": -3.7148539, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1505081159, "lat": 40.4461259, "lon": -3.691548, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081160, "lat": 40.4461582, "lon": -3.6920934}, {"type": "node", "id": 1505081161, "lat": 40.4461852, "lon": -3.6951618}, {"type": "node", "id": 1505081162, "lat": 40.4461913, "lon": -3.6920554}, {"type": "node", "id": 1505081163, "lat": 40.4462367, "lon": -3.6920355}, {"type": "node", "id": 1505081164, "lat": 40.4462566, "lon": -3.6951823, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1505081174, "lat": 40.4462562, "lon": -3.6956488, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081175, "lat": 40.4462918, "lon": -3.6921838}, {"type": "node", "id": 1505081176, "lat": 40.4463097, "lon": -3.6920301}, {"type": "node", "id": 1505081178, "lat": 40.4463556, "lon": -3.6945565}, {"type": "node", "id": 1505081179, "lat": 40.4463627, "lon": -3.6920545}, {"type": "node", "id": 1505081180, "lat": 40.446384, "lon": -3.6958591, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081189, "lat": 40.4464253, "lon": -3.6945424}, {"type": "node", "id": 1505081192, "lat": 40.4465175, "lon": -3.6958483, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081193, "lat": 40.4466061, "lon": -3.7039608}, {"type": "node", "id": 1505081195, "lat": 40.4466579, "lon": -3.7037533}, {"type": "node", "id": 1505081196, "lat": 40.4466651, "lon": -3.6955691, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081204, "lat": 40.4467123, "lon": -3.7033437, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1505081209, "lat": 40.4467788, "lon": -3.7033392, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1505081210, "lat": 40.4467838, "lon": -3.7044044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505081213, "lat": 40.4468261, "lon": -3.7042032}, {"type": "node", "id": 1505081214, "lat": 40.4468617, "lon": -3.7032097, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1505081224, "lat": 40.4469142, "lon": -3.70333, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1505081225, "lat": 40.44694, "lon": -3.703471}, {"type": "node", "id": 1505081226, "lat": 40.4469418, "lon": -3.7042636}, {"type": "node", "id": 1505081227, "lat": 40.4469939, "lon": -3.7044791}, {"type": "node", "id": 1505081228, "lat": 40.4470498, "lon": -3.7036106}, {"type": "node", "id": 1505081230, "lat": 40.4471964, "lon": -3.7035401}, {"type": "node", "id": 1505081231, "lat": 40.4472091, "lon": -3.7037972}, {"type": "node", "id": 1505081242, "lat": 40.4472303, "lon": -3.7039416, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1505081244, "lat": 40.4473321, "lon": -3.7038403}, {"type": "node", "id": 1505106008, "lat": 40.4313586, "lon": -3.6794159, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106009, "lat": 40.4313664, "lon": -3.67958}, {"type": "node", "id": 1505106010, "lat": 40.4313789, "lon": -3.6798431, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106022, "lat": 40.4325727, "lon": -3.6797404, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106033, "lat": 40.4327094, "lon": -3.6797269, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106044, "lat": 40.4336964, "lon": -3.6796391, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505106068, "lat": 40.4359471, "lon": -3.6794189, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1505184339, "lat": 40.4261523, "lon": -3.6803135, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1515303874, "lat": 40.446952, "lon": -3.7053626, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1522690059, "lat": 40.4191651, "lon": -3.6955731, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1522690087, "lat": 40.448539, "lon": -3.7023319}, {"type": "node", "id": 1522690088, "lat": 40.4485444, "lon": -3.7023972}, {"type": "node", "id": 1522690089, "lat": 40.4485495, "lon": -3.7024673}, {"type": "node", "id": 1522690090, "lat": 40.4485645, "lon": -3.7022806}, {"type": "node", "id": 1522690091, "lat": 40.448862, "lon": -3.7019641}, {"type": "node", "id": 1522690095, "lat": 40.449013, "lon": -3.7020467}, {"type": "node", "id": 1522690100, "lat": 40.4497032, "lon": -3.7023081, "tags": {"amenity": "parking", "layer": "-1", "parking": "underground"}}, {"type": "node", "id": 1522690105, "lat": 40.4498102, "lon": -3.7021603}, {"type": "node", "id": 1537917857, "lat": 40.4347065, "lon": -3.7183568}, {"type": "node", "id": 1537917858, "lat": 40.4351473, "lon": -3.71802, "tags": {"access": "yes", "addr:city": "Madrid", "addr:housenumber": "4", "addr:postcode": "28015", "addr:street": "Calle de Isaac Peral", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Galaxia", "opening_hours": "24/7", "parking": "underground", "supervised": "yes"}}, {"type": "node", "id": 1537917859, "lat": 40.4351539, "lon": -3.7181173}, {"type": "node", "id": 1537917861, "lat": 40.4351592, "lon": -3.7182104, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1537917871, "lat": 40.4351651, "lon": -3.7183198}, {"type": "node", "id": 1537917872, "lat": 40.4352374, "lon": -3.7194763}, {"type": "node", "id": 1541983914, "lat": 40.4510669, "lon": -3.6933345}, {"type": "node", "id": 1541983916, "lat": 40.4510947, "lon": -3.6938206}, {"type": "node", "id": 1555729941, "lat": 40.4278185, "lon": -3.6873076}, {"type": "node", "id": 1555729943, "lat": 40.436284, "lon": -3.6863379}, {"type": "node", "id": 1555729951, "lat": 40.4225239, "lon": -3.6882247}, {"type": "node", "id": 1555729952, "lat": 40.427014, "lon": -3.6874578}, {"type": "node", "id": 1555729954, "lat": 40.4316177, "lon": -3.6867195}, {"type": "node", "id": 1555729955, "lat": 40.4279324, "lon": -3.6872867}, {"type": "node", "id": 1555729956, "lat": 40.4291316, "lon": -3.6870706}, {"type": "node", "id": 1555729957, "lat": 40.4328182, "lon": -3.6866246}, {"type": "node", "id": 1555729959, "lat": 40.4315938, "lon": -3.6867396}, {"type": "node", "id": 1555729960, "lat": 40.4317795, "lon": -3.6867197}, {"type": "node", "id": 1555729961, "lat": 40.4253822, "lon": -3.6877316}, {"type": "node", "id": 1555729962, "lat": 40.4331506, "lon": -3.6866072}, {"type": "node", "id": 1555729967, "lat": 40.4239595, "lon": -3.6880004}, {"type": "node", "id": 1555729969, "lat": 40.4211147, "lon": -3.6884699}, {"type": "node", "id": 1555729971, "lat": 40.4340981, "lon": -3.6865249}, {"type": "node", "id": 1555729972, "lat": 40.4317606, "lon": -3.6867114}, {"type": "node", "id": 1555729973, "lat": 40.4305695, "lon": -3.6868082}, {"type": "node", "id": 1555729975, "lat": 40.4377343, "lon": -3.6862525}, {"type": "node", "id": 1555729978, "lat": 40.4293359, "lon": -3.687044}, {"type": "node", "id": 1555729980, "lat": 40.4264916, "lon": -3.6875556}, {"type": "node", "id": 1555729981, "lat": 40.4349535, "lon": -3.6864561}, {"type": "node", "id": 1555729983, "lat": 40.4339597, "lon": -3.6865423}, {"type": "node", "id": 1555729985, "lat": 40.4211834, "lon": -3.6883941, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 1555729989, "lat": 40.4352299, "lon": -3.6864041}, {"type": "node", "id": 1555729994, "lat": 40.4330826, "lon": -3.6865399}, {"type": "node", "id": 1555729995, "lat": 40.4303822, "lon": -3.6867648}, {"type": "node", "id": 1575177820, "lat": 40.4398309, "lon": -3.7258683, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329818, "lat": 40.4261235, "lon": -3.7012066, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329824, "lat": 40.4264091, "lon": -3.7013157, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329839, "lat": 40.4266118, "lon": -3.7005721, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1591329840, "lat": 40.4266446, "lon": -3.6967655, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329844, "lat": 40.426767, "lon": -3.6970555, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329853, "lat": 40.4268501, "lon": -3.699875, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591329866, "lat": 40.4269731, "lon": -3.6984064, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329868, "lat": 40.4270713, "lon": -3.6987025, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329870, "lat": 40.4270639, "lon": -3.6989487, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329871, "lat": 40.4272432, "lon": -3.7008206, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329872, "lat": 40.427255, "lon": -3.7015531, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329873, "lat": 40.4272966, "lon": -3.7007403, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329881, "lat": 40.4273069, "lon": -3.7020184}, {"type": "node", "id": 1591329883, "lat": 40.4273772, "lon": -3.7017202, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329885, "lat": 40.427378, "lon": -3.7008764, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329888, "lat": 40.427396, "lon": -3.6993689, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329890, "lat": 40.4274131, "lon": -3.7000906, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329893, "lat": 40.4274692, "lon": -3.6957156, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329895, "lat": 40.4275136, "lon": -3.7017748}, {"type": "node", "id": 1591329900, "lat": 40.4275452, "lon": -3.6982168, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329902, "lat": 40.4275775, "lon": -3.6960729, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329906, "lat": 40.4275253, "lon": -3.6952504}, {"type": "node", "id": 1591329908, "lat": 40.4276216, "lon": -3.6952391}, {"type": "node", "id": 1591329914, "lat": 40.4277918, "lon": -3.6952725}, {"type": "node", "id": 1591329916, "lat": 40.4278285, "lon": -3.6971809, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329924, "lat": 40.427849, "lon": -3.6953214, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1591329927, "lat": 40.4279098, "lon": -3.6953497}, {"type": "node", "id": 1591329929, "lat": 40.4278614, "lon": -3.6964573, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329935, "lat": 40.428009, "lon": -3.6980739, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329944, "lat": 40.4281002, "lon": -3.699243, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329945, "lat": 40.4280803, "lon": -3.6971071, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329948, "lat": 40.4282596, "lon": -3.6993899, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329955, "lat": 40.4283075, "lon": -3.6991251, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329959, "lat": 40.4282956, "lon": -3.6981056, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329962, "lat": 40.4284196, "lon": -3.6997209, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329976, "lat": 40.4284217, "lon": -3.6990911, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329977, "lat": 40.4285156, "lon": -3.7005034, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591329980, "lat": 40.428533, "lon": -3.698157, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591329982, "lat": 40.4285357, "lon": -3.6996708, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1591329985, "lat": 40.4286314, "lon": -3.6994545, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591329988, "lat": 40.4286374, "lon": -3.6973728, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330000, "lat": 40.4286949, "lon": -3.7013806, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330002, "lat": 40.4287148, "lon": -3.6972873, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330004, "lat": 40.4287808, "lon": -3.6962354, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330008, "lat": 40.4287948, "lon": -3.7004895, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330012, "lat": 40.4288702, "lon": -3.6983807, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330015, "lat": 40.4289779, "lon": -3.6983725, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330025, "lat": 40.4290416, "lon": -3.7032832, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330026, "lat": 40.4291286, "lon": -3.6972875, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330027, "lat": 40.4291746, "lon": -3.6974068, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330029, "lat": 40.4292313, "lon": -3.6964438, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330031, "lat": 40.4293625, "lon": -3.7005216, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330034, "lat": 40.4294251, "lon": -3.699813, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330037, "lat": 40.4294302, "lon": -3.6986697, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330056, "lat": 40.4294398, "lon": -3.7006143, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330058, "lat": 40.4294476, "lon": -3.6995479, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330059, "lat": 40.429513, "lon": -3.69882, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330060, "lat": 40.4295319, "lon": -3.69861, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330061, "lat": 40.4296199, "lon": -3.6976312, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330063, "lat": 40.429639, "lon": -3.6974189, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330081, "lat": 40.429642, "lon": -3.6964018, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330083, "lat": 40.4297029, "lon": -3.6975667, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1591330085, "lat": 40.4297099, "lon": -3.6966302, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330088, "lat": 40.4300755, "lon": -3.7027698, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1591330108, "lat": 40.4305403, "lon": -3.6992205, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330139, "lat": 40.4306368, "lon": -3.6991551, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330144, "lat": 40.4307725, "lon": -3.697846, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330146, "lat": 40.4308324, "lon": -3.6979797, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330158, "lat": 40.4308363, "lon": -3.6971205, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330161, "lat": 40.4308534, "lon": -3.6967897, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330163, "lat": 40.430941, "lon": -3.6994167, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330165, "lat": 40.4310915, "lon": -3.7011715, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330168, "lat": 40.4310839, "lon": -3.7018618, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330170, "lat": 40.4311166, "lon": -3.6969294, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330173, "lat": 40.4311595, "lon": -3.7019623, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330178, "lat": 40.4312086, "lon": -3.7012169, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330180, "lat": 40.4313097, "lon": -3.7005614, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330186, "lat": 40.4315985, "lon": -3.703331, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330194, "lat": 40.4316286, "lon": -3.6990081, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330195, "lat": 40.4316747, "lon": -3.6971686, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330196, "lat": 40.4318452, "lon": -3.6983562, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330197, "lat": 40.4318377, "lon": -3.702143, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330198, "lat": 40.4319105, "lon": -3.7020868, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330199, "lat": 40.432006, "lon": -3.7015423, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330212, "lat": 40.4322381, "lon": -3.7037098, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330215, "lat": 40.432371, "lon": -3.7022887, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330218, "lat": 40.4324293, "lon": -3.7023745, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330220, "lat": 40.4324628, "lon": -3.7022333, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1591330222, "lat": 40.4324979, "lon": -3.7023205, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330227, "lat": 40.4325723, "lon": -3.699503, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330231, "lat": 40.4326798, "lon": -3.7038154, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330244, "lat": 40.4331018, "lon": -3.6997183, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1591330245, "lat": 40.4331527, "lon": -3.7041108, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330247, "lat": 40.4334008, "lon": -3.69805, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1591330252, "lat": 40.4335233, "lon": -3.6979228, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698083, "lat": 40.4303461, "lon": -3.711851, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698084, "lat": 40.4311093, "lon": -3.7118787, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698085, "lat": 40.4312148, "lon": -3.7133668, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698086, "lat": 40.4312455, "lon": -3.7052062, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698087, "lat": 40.4314026, "lon": -3.7048693, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698088, "lat": 40.431425, "lon": -3.7054103, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698091, "lat": 40.4316085, "lon": -3.7089804, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698092, "lat": 40.431569, "lon": -3.7050148, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1596698093, "lat": 40.4316158, "lon": -3.711728, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698094, "lat": 40.4316904, "lon": -3.7105386, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1596698095, "lat": 40.4317326, "lon": -3.7116223, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698096, "lat": 40.4317389, "lon": -3.7117883, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698097, "lat": 40.4317301, "lon": -3.7134151, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698098, "lat": 40.4317524, "lon": -3.7145652, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698099, "lat": 40.4317961, "lon": -3.713298, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698100, "lat": 40.4318046, "lon": -3.7135202, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698101, "lat": 40.4318404, "lon": -3.7144643, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698102, "lat": 40.4318481, "lon": -3.7146674, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698103, "lat": 40.4318281, "lon": -3.7127354, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698104, "lat": 40.4318842, "lon": -3.7156185, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698105, "lat": 40.4318918, "lon": -3.715819, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698106, "lat": 40.4318947, "lon": -3.7134015, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698107, "lat": 40.4319057, "lon": -3.7145563, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698108, "lat": 40.4321893, "lon": -3.7125351, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698110, "lat": 40.4325885, "lon": -3.7017201, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1596698113, "lat": 40.4328208, "lon": -3.7103555, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698115, "lat": 40.4328694, "lon": -3.7116127, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698116, "lat": 40.4329111, "lon": -3.7118788, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698117, "lat": 40.4329263, "lon": -3.7104519, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698118, "lat": 40.4329559, "lon": -3.7024376, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698119, "lat": 40.4329657, "lon": -3.7117169, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698121, "lat": 40.4330127, "lon": -3.7132045, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698122, "lat": 40.4330193, "lon": -3.7134175, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1596698123, "lat": 40.4330143, "lon": -3.7115977, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698124, "lat": 40.4330321, "lon": -3.7023649, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1596698125, "lat": 40.4330581, "lon": -3.714589, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698127, "lat": 40.4331278, "lon": -3.713306, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698128, "lat": 40.4333131, "lon": -3.7041275}, {"type": "node", "id": 1596698131, "lat": 40.4336346, "lon": -3.7112835, "tags": {"amenity": "parking_entrance", "name": "Aparcamiento Residentes Galileo", "parking": "underground", "source": "survey"}}, {"type": "node", "id": 1596698132, "lat": 40.4336339, "lon": -3.7115465}, {"type": "node", "id": 1596698135, "lat": 40.4340227, "lon": -3.711513, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698138, "lat": 40.4340617, "lon": -3.710181, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1596698139, "lat": 40.434077, "lon": -3.7104215, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1596698140, "lat": 40.434125, "lon": -3.7132286, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698141, "lat": 40.4341387, "lon": -3.7113934, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698143, "lat": 40.4341609, "lon": -3.7102727, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1596698144, "lat": 40.4342272, "lon": -3.7115023, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1596698145, "lat": 40.4342481, "lon": -3.7131162, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698146, "lat": 40.4342623, "lon": -3.7133399, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698147, "lat": 40.4343238, "lon": -3.7143077, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698148, "lat": 40.4343454, "lon": -3.7132123, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698149, "lat": 40.4344138, "lon": -3.7143992, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698151, "lat": 40.4348038, "lon": -3.7130977, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698152, "lat": 40.4347881, "lon": -3.7132861, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698153, "lat": 40.4348282, "lon": -3.7142861, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1596698154, "lat": 40.4351783, "lon": -3.7114267, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698155, "lat": 40.4352513, "lon": -3.7115284, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698156, "lat": 40.4353245, "lon": -3.7132552, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1596698157, "lat": 40.4354093, "lon": -3.7131425, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1613048503, "lat": 40.4408537, "lon": -3.6917058, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048504, "lat": 40.4409123, "lon": -3.6914836, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048507, "lat": 40.4410852, "lon": -3.6943142}, {"type": "node", "id": 1613048508, "lat": 40.4410887, "lon": -3.6944025, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048509, "lat": 40.441113, "lon": -3.6949224}, {"type": "node", "id": 1613048510, "lat": 40.4411378, "lon": -3.6943097, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048511, "lat": 40.4411637, "lon": -3.6950104}, {"type": "node", "id": 1613048518, "lat": 40.4412865, "lon": -3.694188, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 1613048520, "lat": 40.4412987, "lon": -3.6944315}, {"type": "node", "id": 1613048522, "lat": 40.4413769, "lon": -3.6946639}, {"type": "node", "id": 1613048524, "lat": 40.4414182, "lon": -3.6919143}, {"type": "node", "id": 1613048525, "lat": 40.4413929, "lon": -3.6915343}, {"type": "node", "id": 1613048526, "lat": 40.4414464, "lon": -3.6941694, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048527, "lat": 40.4415048, "lon": -3.6949908, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048538, "lat": 40.4415115, "lon": -3.6924158, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048540, "lat": 40.4415278, "lon": -3.6948703}, {"type": "node", "id": 1613048541, "lat": 40.4415508, "lon": -3.6918798, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048542, "lat": 40.4415777, "lon": -3.6941598}, {"type": "node", "id": 1613048543, "lat": 40.4415818, "lon": -3.6949102}, {"type": "node", "id": 1613048550, "lat": 40.4416085, "lon": -3.6947196}, {"type": "node", "id": 1613048552, "lat": 40.4416542, "lon": -3.6921074, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048554, "lat": 40.4418225, "lon": -3.6990759}, {"type": "node", "id": 1613048555, "lat": 40.4416888, "lon": -3.697522, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048558, "lat": 40.4417455, "lon": -3.6990804, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048560, "lat": 40.4417436, "lon": -3.6920867}, {"type": "node", "id": 1613048569, "lat": 40.4418024, "lon": -3.6975124}, {"type": "node", "id": 1613048570, "lat": 40.4418451, "lon": -3.6959934, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048571, "lat": 40.4418545, "lon": -3.6948389, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048575, "lat": 40.4419791, "lon": -3.6919817}, {"type": "node", "id": 1613048577, "lat": 40.4418788, "lon": -3.6990702}, {"type": "node", "id": 1613048580, "lat": 40.4420986, "lon": -3.7007111, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048583, "lat": 40.442286, "lon": -3.6990273, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048586, "lat": 40.4427209, "lon": -3.6947794, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048587, "lat": 40.4427834, "lon": -3.6959165, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048588, "lat": 40.4428345, "lon": -3.694967, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048589, "lat": 40.4428631, "lon": -3.6974228, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048590, "lat": 40.4428756, "lon": -3.6957993, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048592, "lat": 40.4428862, "lon": -3.6960182, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048594, "lat": 40.4429437, "lon": -3.6959026, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048599, "lat": 40.4429494, "lon": -3.6989617, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048600, "lat": 40.4429567, "lon": -3.6975393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048602, "lat": 40.4430212, "lon": -3.7006422, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048604, "lat": 40.4430395, "lon": -3.7022143, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048606, "lat": 40.4430291, "lon": -3.6990649, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048615, "lat": 40.4430992, "lon": -3.7005408, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048616, "lat": 40.4431088, "lon": -3.7007415, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048617, "lat": 40.4431741, "lon": -3.702117, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048618, "lat": 40.4431925, "lon": -3.7024533, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048621, "lat": 40.4431971, "lon": -3.7006278, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048623, "lat": 40.4431996, "lon": -3.697485, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 1613048626, "lat": 40.4432349, "lon": -3.694939}, {"type": "node", "id": 1613048637, "lat": 40.4432439, "lon": -3.6953825}, {"type": "node", "id": 1613048639, "lat": 40.4432639, "lon": -3.6957812, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048641, "lat": 40.4432679, "lon": -3.7039008, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1613048644, "lat": 40.443253, "lon": -3.6958795}, {"type": "node", "id": 1613048646, "lat": 40.4432852, "lon": -3.7042338, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048648, "lat": 40.4433779, "lon": -3.7040658, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1613048650, "lat": 40.4435801, "lon": -3.6951706}, {"type": "node", "id": 1613048658, "lat": 40.4436994, "lon": -3.6952045}, {"type": "node", "id": 1613048659, "lat": 40.4439215, "lon": -3.6973333, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048661, "lat": 40.4439619, "lon": -3.6959224, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048663, "lat": 40.4440178, "lon": -3.6958048, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048666, "lat": 40.4440239, "lon": -3.6972242, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048667, "lat": 40.444033, "lon": -3.6974165, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048676, "lat": 40.4440328, "lon": -3.698873, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048678, "lat": 40.4440517, "lon": -3.6953267, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1613048680, "lat": 40.4440602, "lon": -3.6956944, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048683, "lat": 40.4440977, "lon": -3.6987743, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048686, "lat": 40.4441071, "lon": -3.6989731, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1613048689, "lat": 40.4441813, "lon": -3.6988609, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1636560190, "lat": 40.4455555, "lon": -3.7207497}, {"type": "node", "id": 1636560194, "lat": 40.4455555, "lon": -3.721112}, {"type": "node", "id": 1636560197, "lat": 40.4455803, "lon": -3.7212698}, {"type": "node", "id": 1636560215, "lat": 40.4456746, "lon": -3.7203734}, {"type": "node", "id": 1636560218, "lat": 40.4457555, "lon": -3.7202437}, {"type": "node", "id": 1636560221, "lat": 40.4458971, "lon": -3.7201019}, {"type": "node", "id": 1636560225, "lat": 40.4465249, "lon": -3.7239262}, {"type": "node", "id": 1636560228, "lat": 40.4465872, "lon": -3.719595}, {"type": "node", "id": 1636560232, "lat": 40.4466725, "lon": -3.7194711}, {"type": "node", "id": 1636560235, "lat": 40.4466903, "lon": -3.7244054}, {"type": "node", "id": 1636560239, "lat": 40.4467312, "lon": -3.7193402}, {"type": "node", "id": 1636560241, "lat": 40.4467882, "lon": -3.7191626}, {"type": "node", "id": 1636560243, "lat": 40.4467849, "lon": -3.7185845, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1636560244, "lat": 40.4467971, "lon": -3.7245433}, {"type": "node", "id": 1636560288, "lat": 40.4480316, "lon": -3.7252901}, {"type": "node", "id": 1636560299, "lat": 40.4483581, "lon": -3.7222008}, {"type": "node", "id": 1636560325, "lat": 40.4484065, "lon": -3.7222214}, {"type": "node", "id": 1636560337, "lat": 40.4484681, "lon": -3.7241219}, {"type": "node", "id": 1636560341, "lat": 40.448472, "lon": -3.7242221}, {"type": "node", "id": 1636560345, "lat": 40.448472, "lon": -3.7243027}, {"type": "node", "id": 1636560350, "lat": 40.4485248, "lon": -3.7239378}, {"type": "node", "id": 1636560354, "lat": 40.4486745, "lon": -3.7237684}, {"type": "node", "id": 1636560390, "lat": 40.448781, "lon": -3.7236023}, {"type": "node", "id": 1636560400, "lat": 40.4488247, "lon": -3.7234161}, {"type": "node", "id": 1636560408, "lat": 40.4488809, "lon": -3.7223737}, {"type": "node", "id": 1636560412, "lat": 40.4488996, "lon": -3.7230645}, {"type": "node", "id": 1636560457, "lat": 40.4490229, "lon": -3.7223364}, {"type": "node", "id": 1636560470, "lat": 40.449099, "lon": -3.7218868}, {"type": "node", "id": 1636560496, "lat": 40.4491825, "lon": -3.7216226}, {"type": "node", "id": 1636560502, "lat": 40.4492762, "lon": -3.721477}, {"type": "node", "id": 1636560518, "lat": 40.4494108, "lon": -3.7213651}, {"type": "node", "id": 1636560557, "lat": 40.449496, "lon": -3.7213382}, {"type": "node", "id": 1636560573, "lat": 40.4495488, "lon": -3.7213584}, {"type": "node", "id": 1636560600, "lat": 40.4495581, "lon": -3.7226926}, {"type": "node", "id": 1636560609, "lat": 40.4495901, "lon": -3.7224457}, {"type": "node", "id": 1636560619, "lat": 40.4496102, "lon": -3.7214099}, {"type": "node", "id": 1636560626, "lat": 40.4496647, "lon": -3.721692}, {"type": "node", "id": 1636560628, "lat": 40.4496664, "lon": -3.7215666}, {"type": "node", "id": 1636560831, "lat": 40.450144, "lon": -3.7174805}, {"type": "node", "id": 1636560978, "lat": 40.450336, "lon": -3.7170631}, {"type": "node", "id": 1636561242, "lat": 40.4506462, "lon": -3.7170664}, {"type": "node", "id": 1636561431, "lat": 40.4509065, "lon": -3.7192649}, {"type": "node", "id": 1636561437, "lat": 40.4509483, "lon": -3.7193449}, {"type": "node", "id": 1636561487, "lat": 40.4511363, "lon": -3.7189812}, {"type": "node", "id": 1636561501, "lat": 40.4512199, "lon": -3.7177523}, {"type": "node", "id": 1636561503, "lat": 40.4512839, "lon": -3.7175808}, {"type": "node", "id": 1636561504, "lat": 40.4512912, "lon": -3.719075}, {"type": "node", "id": 1636561507, "lat": 40.4513483, "lon": -3.7182743}, {"type": "node", "id": 1636561534, "lat": 40.4514044, "lon": -3.7185259}, {"type": "node", "id": 1636561539, "lat": 40.451448, "lon": -3.7180153}, {"type": "node", "id": 1636561541, "lat": 40.4515419, "lon": -3.7186838}, {"type": "node", "id": 1636561545, "lat": 40.4516149, "lon": -3.7185715}, {"type": "node", "id": 1651583792, "lat": 40.4287045, "lon": -3.7079826, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583794, "lat": 40.4288028, "lon": -3.7093426, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583795, "lat": 40.4288307, "lon": -3.7096888, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583797, "lat": 40.4288367, "lon": -3.7078701, "tags": {"highway": "crossing", "source": "bing"}}, {"type": "node", "id": 1651583798, "lat": 40.4289211, "lon": -3.7061775, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583800, "lat": 40.4291572, "lon": -3.7106288, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583801, "lat": 40.4296619, "lon": -3.7077427, "tags": {"highway": "crossing", "source": "bing"}}, {"type": "node", "id": 1651583802, "lat": 40.4296965, "lon": -3.708944, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1651583803, "lat": 40.4298516, "lon": -3.7007058, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1651583804, "lat": 40.4301247, "lon": -3.7007867, "tags": {"crossing": "marked", "highway": "crossing", "source": "bing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250182, "lat": 40.4440945, "lon": -3.7005479, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250183, "lat": 40.4441349, "lon": -3.7026842, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250184, "lat": 40.4441768, "lon": -3.700437, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250185, "lat": 40.4441874, "lon": -3.700659, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250186, "lat": 40.4442609, "lon": -3.7005334, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250187, "lat": 40.4442938, "lon": -3.7026163, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250188, "lat": 40.4443122, "lon": -3.7029497, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250189, "lat": 40.4443396, "lon": -3.7038572, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250190, "lat": 40.4444411, "lon": -3.6957745, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1654250191, "lat": 40.4445114, "lon": -3.6972834, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250192, "lat": 40.4445325, "lon": -3.6958692, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250193, "lat": 40.4445811, "lon": -3.6971814, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250194, "lat": 40.4448214, "lon": -3.6956385, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250195, "lat": 40.4450037, "lon": -3.7040117, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1654250196, "lat": 40.4450314, "lon": -3.6958567, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250197, "lat": 40.4450339, "lon": -3.6972393, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250198, "lat": 40.4450962, "lon": -3.6971127, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250199, "lat": 40.4451145, "lon": -3.6987845, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250200, "lat": 40.4451074, "lon": -3.6973292, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250201, "lat": 40.4451161, "lon": -3.6957331, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1654250202, "lat": 40.4451767, "lon": -3.6986711, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250203, "lat": 40.4451892, "lon": -3.6989137, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250205, "lat": 40.4452056, "lon": -3.7004602, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1654250206, "lat": 40.4452621, "lon": -3.6987724, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250207, "lat": 40.4452637, "lon": -3.7003477, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1654250208, "lat": 40.4452676, "lon": -3.703173, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250209, "lat": 40.445275, "lon": -3.7005751, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250210, "lat": 40.4453597, "lon": -3.7004485, "tags": {"crossing": "marked", "crossing:markings": "zebra", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250211, "lat": 40.4454066, "lon": -3.7031072, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250212, "lat": 40.4454215, "lon": -3.7034132, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250213, "lat": 40.4454275, "lon": -3.701943, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1654250214, "lat": 40.4454424, "lon": -3.7038181, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1654250215, "lat": 40.4454821, "lon": -3.7041475, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1654250220, "lat": 40.4456158, "lon": -3.6971901}, {"type": "node", "id": 1654250221, "lat": 40.4456349, "lon": -3.6976218, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 1654250222, "lat": 40.4456753, "lon": -3.6983719, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 1654250223, "lat": 40.4456895, "lon": -3.6987374}, {"type": "node", "id": 1654250224, "lat": 40.445706, "lon": -3.6990538, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 1654250225, "lat": 40.4457637, "lon": -3.7000261, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 1654250226, "lat": 40.4457812, "lon": -3.7004096}, {"type": "node", "id": 1654250231, "lat": 40.446342, "lon": -3.6971287, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1654250232, "lat": 40.4464412, "lon": -3.6969771, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1654250233, "lat": 40.4464997, "lon": -3.7003463, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250234, "lat": 40.4465301, "lon": -3.7017889, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250235, "lat": 40.4465261, "lon": -3.6988218, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250236, "lat": 40.4465754, "lon": -3.6969637, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1654250237, "lat": 40.446666, "lon": -3.6988062, "tags": {"button_operated": "no", "check_date:crossing": "2023-11-14", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1654250238, "lat": 40.4466962, "lon": -3.6971203, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1654250240, "lat": 40.4467525, "lon": -3.698619, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1660871696, "lat": 40.4289387, "lon": -3.7068905}, {"type": "node", "id": 1660871699, "lat": 40.429644, "lon": -3.7067355, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1660892624, "lat": 40.4288825, "lon": -3.7099137}, {"type": "node", "id": 1660892627, "lat": 40.4285347, "lon": -3.7097461}, {"type": "node", "id": 1660892630, "lat": 40.4289284, "lon": -3.7100979}, {"type": "node", "id": 1666720773, "lat": 40.4280613, "lon": -3.7062425, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 1666721129, "lat": 40.4288108, "lon": -3.707479}, {"type": "node", "id": 1666721131, "lat": 40.4291696, "lon": -3.7071417}, {"type": "node", "id": 1666721132, "lat": 40.4291484, "lon": -3.7068696}, {"type": "node", "id": 1666721133, "lat": 40.4291149, "lon": -3.707312}, {"type": "node", "id": 1666721134, "lat": 40.4289046, "lon": -3.7074595}, {"type": "node", "id": 1666721135, "lat": 40.4290056, "lon": -3.7074286}, {"type": "node", "id": 1666721136, "lat": 40.4291475, "lon": -3.7072302}, {"type": "node", "id": 1666721146, "lat": 40.4290659, "lon": -3.7073871}, {"type": "node", "id": 1666721148, "lat": 40.4289546, "lon": -3.7074488}, {"type": "node", "id": 1666721149, "lat": 40.4291611, "lon": -3.7070329}, {"type": "node", "id": 1666721150, "lat": 40.4291549, "lon": -3.7069262}, {"type": "node", "id": 1669117690, "lat": 40.4318739, "lon": -3.7168766, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117694, "lat": 40.4319288, "lon": -3.7169938, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117696, "lat": 40.431968, "lon": -3.7157043, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117707, "lat": 40.4330095, "lon": -3.7167935, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-23", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117711, "lat": 40.4330825, "lon": -3.7155326, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117715, "lat": 40.4330926, "lon": -3.7157193, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117718, "lat": 40.4331215, "lon": -3.7166655, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117721, "lat": 40.4331688, "lon": -3.7156126, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117723, "lat": 40.4332312, "lon": -3.7167792, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117724, "lat": 40.4342951, "lon": -3.717938, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117734, "lat": 40.434332, "lon": -3.7155516, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117737, "lat": 40.4343797, "lon": -3.7167003, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117741, "lat": 40.4343946, "lon": -3.7154188, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117747, "lat": 40.434468, "lon": -3.7165786, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117752, "lat": 40.434483, "lon": -3.7155482, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117758, "lat": 40.4344975, "lon": -3.718206, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117762, "lat": 40.4345453, "lon": -3.716689, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117780, "lat": 40.4348838, "lon": -3.7056895, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117781, "lat": 40.434955, "lon": -3.7056097, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117783, "lat": 40.4349654, "lon": -3.705813, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117788, "lat": 40.4350264, "lon": -3.7069846, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117791, "lat": 40.4350994, "lon": -3.7068436, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117795, "lat": 40.4352664, "lon": -3.7101976, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117800, "lat": 40.4353753, "lon": -3.7144526, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117805, "lat": 40.4353602, "lon": -3.7166337, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117821, "lat": 40.4354142, "lon": -3.7153718, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117825, "lat": 40.4354224, "lon": -3.7155655, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117828, "lat": 40.4354187, "lon": -3.7182858, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117831, "lat": 40.435463, "lon": -3.7165234, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117834, "lat": 40.4354603, "lon": -3.7167276, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117836, "lat": 40.4354604, "lon": -3.7143316, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117838, "lat": 40.4354922, "lon": -3.7154627, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669117862, "lat": 40.4355402, "lon": -3.7166222, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117865, "lat": 40.4355164, "lon": -3.7181383, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 1669117870, "lat": 40.4356547, "lon": -3.7182469, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669117879, "lat": 40.4360604, "lon": -3.7054686, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117882, "lat": 40.4360877, "lon": -3.7085064, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117886, "lat": 40.4360961, "lon": -3.7066473, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117906, "lat": 40.4361488, "lon": -3.7055794, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1669117908, "lat": 40.4361697, "lon": -3.7083947, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117911, "lat": 40.4361818, "lon": -3.7086144, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117913, "lat": 40.4362414, "lon": -3.7113374, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117915, "lat": 40.4362419, "lon": -3.7100141, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117919, "lat": 40.4363044, "lon": -3.7112364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117922, "lat": 40.4363435, "lon": -3.7101068, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117925, "lat": 40.4363781, "lon": -3.7142724, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117951, "lat": 40.436391, "lon": -3.7129519, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117957, "lat": 40.4364017, "lon": -3.7131619, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117961, "lat": 40.4364272, "lon": -3.7136788}, {"type": "node", "id": 1669117964, "lat": 40.4364438, "lon": -3.7141745, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117965, "lat": 40.4364533, "lon": -3.7143558, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669117967, "lat": 40.4364907, "lon": -3.7165567, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669117970, "lat": 40.4364746, "lon": -3.7130464, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1669117973, "lat": 40.4365045, "lon": -3.7152784, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118003, "lat": 40.4365176, "lon": -3.7155113, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118005, "lat": 40.4365594, "lon": -3.7164497, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669118007, "lat": 40.4365699, "lon": -3.7166518, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1669118010, "lat": 40.4365906, "lon": -3.7154012, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1669118013, "lat": 40.4366362, "lon": -3.7179142, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118015, "lat": 40.4367655, "lon": -3.7180607, "tags": {"crossing:signals": "yes", "highway": "crossing"}}, {"type": "node", "id": 1669118016, "lat": 40.4376311, "lon": -3.7141914, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118019, "lat": 40.4376425, "lon": -3.7128403, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118030, "lat": 40.4376532, "lon": -3.7130819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118033, "lat": 40.4376763, "lon": -3.7135886}, {"type": "node", "id": 1669118035, "lat": 40.4376867, "lon": -3.7153218, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118037, "lat": 40.4376994, "lon": -3.7140973, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118040, "lat": 40.4377083, "lon": -3.7142938, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118042, "lat": 40.4377501, "lon": -3.7152136, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118045, "lat": 40.437759, "lon": -3.7154111, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118047, "lat": 40.4377839, "lon": -3.7141816, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118063, "lat": 40.437763, "lon": -3.7129658, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118067, "lat": 40.437803, "lon": -3.7163774, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118071, "lat": 40.4378123, "lon": -3.7165603, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118075, "lat": 40.4378359, "lon": -3.7153025, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118077, "lat": 40.4378711, "lon": -3.7177233, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1669118079, "lat": 40.4387939, "lon": -3.7111231, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118081, "lat": 40.4388553, "lon": -3.7128975, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118084, "lat": 40.4389072, "lon": -3.7122207, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118101, "lat": 40.4389392, "lon": -3.7141071, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118105, "lat": 40.4389507, "lon": -3.7152275, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118109, "lat": 40.4389798, "lon": -3.7129767, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118112, "lat": 40.4390298, "lon": -3.712212, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118116, "lat": 40.4390412, "lon": -3.7111096, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118119, "lat": 40.4391015, "lon": -3.7129635, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1669118122, "lat": 40.4395524, "lon": -3.7118524, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1669118140, "lat": 40.4395924, "lon": -3.7110645, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1689543016, "lat": 40.4292641, "lon": -3.6870111, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1689543018, "lat": 40.4304485, "lon": -3.6867582}, {"type": "node", "id": 1689543023, "lat": 40.431707, "lon": -3.6867144}, {"type": "node", "id": 1689543025, "lat": 40.4329038, "lon": -3.6865547, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1689543026, "lat": 40.4329619, "lon": -3.6865499}, {"type": "node", "id": 1689543046, "lat": 40.4330225, "lon": -3.6865449, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1689543052, "lat": 40.4340358, "lon": -3.6865048}, {"type": "node", "id": 1689543055, "lat": 40.4340584, "lon": -3.6882267}, {"type": "node", "id": 1689543057, "lat": 40.4350912, "lon": -3.6863782, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1716935322, "lat": 40.4256208, "lon": -3.7182831}, {"type": "node", "id": 1718376821, "lat": 40.4226957, "lon": -3.6966025}, {"type": "node", "id": 1718376823, "lat": 40.4220095, "lon": -3.6966717}, {"type": "node", "id": 1719813640, "lat": 40.4375235, "lon": -3.691184}, {"type": "node", "id": 1719813695, "lat": 40.4384593, "lon": -3.6912707}, {"type": "node", "id": 1719813892, "lat": 40.4408172, "lon": -3.6917604}, {"type": "node", "id": 1719813893, "lat": 40.4408209, "lon": -3.6911989}, {"type": "node", "id": 1719813894, "lat": 40.4408591, "lon": -3.6919931}, {"type": "node", "id": 1719813895, "lat": 40.4408567, "lon": -3.692116, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1719813896, "lat": 40.440893, "lon": -3.6916471}, {"type": "node", "id": 1719813901, "lat": 40.440945, "lon": -3.6912059}, {"type": "node", "id": 1719813920, "lat": 40.444384, "lon": -3.6909462, "tags": {"name": "P\u00ba de la Castellana, pares", "railway": "subway_entrance", "source": "knowledge"}}, {"type": "node", "id": 1736112455, "lat": 40.4316324, "lon": -3.7071395, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1736112458, "lat": 40.4316481, "lon": -3.7072891, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1736112460, "lat": 40.4317415, "lon": -3.707309}, {"type": "node", "id": 1736112461, "lat": 40.4317514, "lon": -3.7070848}, {"type": "node", "id": 1736112462, "lat": 40.4325412, "lon": -3.706996}, {"type": "node", "id": 1736112463, "lat": 40.4325647, "lon": -3.7072155}, {"type": "node", "id": 1736112464, "lat": 40.4326624, "lon": -3.7070181}, {"type": "node", "id": 1736112465, "lat": 40.4326772, "lon": -3.7071632}, {"type": "node", "id": 1736112466, "lat": 40.432725, "lon": -3.7070596}, {"type": "node", "id": 1736112467, "lat": 40.4327605, "lon": -3.7071531}, {"type": "node", "id": 1736112471, "lat": 40.4327629, "lon": -3.7070134}, {"type": "node", "id": 1736112474, "lat": 40.4328209, "lon": -3.7071871}, {"type": "node", "id": 1736112476, "lat": 40.4328301, "lon": -3.7071062}, {"type": "node", "id": 1736112478, "lat": 40.4328546, "lon": -3.7069602}, {"type": "node", "id": 1736112480, "lat": 40.4330225, "lon": -3.7071746}, {"type": "node", "id": 1736112482, "lat": 40.4330307, "lon": -3.7069472}, {"type": "node", "id": 1736112484, "lat": 40.4330666, "lon": -3.7071619}, {"type": "node", "id": 1736112485, "lat": 40.4330697, "lon": -3.7069702}, {"type": "node", "id": 1736112486, "lat": 40.4330954, "lon": -3.7071019}, {"type": "node", "id": 1736112487, "lat": 40.433096, "lon": -3.7070284}, {"type": "node", "id": 1737510771, "lat": 40.4317081, "lon": -3.7072036}, {"type": "node", "id": 1737510772, "lat": 40.4325701, "lon": -3.7071037}, {"type": "node", "id": 1752467527, "lat": 40.4458496, "lon": -3.6914209, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467528, "lat": 40.4459055, "lon": -3.6909643, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467529, "lat": 40.4460766, "lon": -3.6906063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467530, "lat": 40.4461532, "lon": -3.6919583, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467531, "lat": 40.4462725, "lon": -3.6905778, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467533, "lat": 40.4463542, "lon": -3.6914813}, {"type": "node", "id": 1752467534, "lat": 40.446361, "lon": -3.6919364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467535, "lat": 40.4464255, "lon": -3.6919362}, {"type": "node", "id": 1752467536, "lat": 40.4464441, "lon": -3.6917893}, {"type": "node", "id": 1752467537, "lat": 40.4464547, "lon": -3.6915324}, {"type": "node", "id": 1752467538, "lat": 40.4464756, "lon": -3.6907468, "tags": {"check_date:crossing": "2022-08-12", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467540, "lat": 40.4464915, "lon": -3.6908775}, {"type": "node", "id": 1752467545, "lat": 40.4465074, "lon": -3.6911403, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467546, "lat": 40.4465124, "lon": -3.6912323}, {"type": "node", "id": 1752467548, "lat": 40.4465256, "lon": -3.6917533}, {"type": "node", "id": 1752467549, "lat": 40.4465802, "lon": -3.6926548}, {"type": "node", "id": 1752467551, "lat": 40.4466054, "lon": -3.6926881}, {"type": "node", "id": 1752467553, "lat": 40.4466441, "lon": -3.6926857}, {"type": "node", "id": 1752467555, "lat": 40.4466477, "lon": -3.692785}, {"type": "node", "id": 1752467556, "lat": 40.4466658, "lon": -3.691959, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1752467558, "lat": 40.4466744, "lon": -3.6921476, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1752467559, "lat": 40.4466803, "lon": -3.6923245, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1752467560, "lat": 40.4466871, "lon": -3.6924948, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1752467562, "lat": 40.4466919, "lon": -3.6926182, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1752467563, "lat": 40.4467316, "lon": -3.6927188}, {"type": "node", "id": 1752467565, "lat": 40.4467352, "lon": -3.692779}, {"type": "node", "id": 1752467566, "lat": 40.4467426, "lon": -3.6928998}, {"type": "node", "id": 1752467567, "lat": 40.4467532, "lon": -3.6930747, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1752467573, "lat": 40.4467597, "lon": -3.6931815}, {"type": "node", "id": 1752467574, "lat": 40.4467604, "lon": -3.6921411}, {"type": "node", "id": 1752467576, "lat": 40.4467682, "lon": -3.6923179}, {"type": "node", "id": 1752467577, "lat": 40.4467756, "lon": -3.6924881}, {"type": "node", "id": 1752467578, "lat": 40.4469285, "lon": -3.6919392}, {"type": "node", "id": 1752467580, "lat": 40.4469465, "lon": -3.693168}, {"type": "node", "id": 1752467581, "lat": 40.447041, "lon": -3.6919534}, {"type": "node", "id": 1752467583, "lat": 40.4470417, "lon": -3.6918582}, {"type": "node", "id": 1752467586, "lat": 40.4470654, "lon": -3.6921181}, {"type": "node", "id": 1752467588, "lat": 40.4471408, "lon": -3.692676}, {"type": "node", "id": 1752467589, "lat": 40.4471486, "lon": -3.6918381}, {"type": "node", "id": 1752467590, "lat": 40.4471493, "lon": -3.6928159}, {"type": "node", "id": 1752467591, "lat": 40.4471523, "lon": -3.6928595}, {"type": "node", "id": 1752467592, "lat": 40.4472085, "lon": -3.6916713, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1752467593, "lat": 40.4471792, "lon": -3.6921095}, {"type": "node", "id": 1752467595, "lat": 40.4471869, "lon": -3.6922863}, {"type": "node", "id": 1752467597, "lat": 40.4471943, "lon": -3.6924565}, {"type": "node", "id": 1752467614, "lat": 40.4472506, "lon": -3.6920965, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 1752467616, "lat": 40.4472508, "lon": -3.6930416}, {"type": "node", "id": 1752467617, "lat": 40.4472992, "lon": -3.6918459}, {"type": "node", "id": 1752467618, "lat": 40.4473019, "lon": -3.6920977}, {"type": "node", "id": 1752467619, "lat": 40.4473301, "lon": -3.6921152}, {"type": "node", "id": 1752467620, "lat": 40.4473304, "lon": -3.6929843}, {"type": "node", "id": 1752467622, "lat": 40.4474047, "lon": -3.6914911}, {"type": "node", "id": 1752467623, "lat": 40.4475498, "lon": -3.6913696}, {"type": "node", "id": 1752467628, "lat": 40.4477981, "lon": -3.6901766, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467632, "lat": 40.4489711, "lon": -3.6903532, "tags": {"check_date:crossing": "2023-03-29", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467633, "lat": 40.4490176, "lon": -3.6913469}, {"type": "node", "id": 1752467634, "lat": 40.4491786, "lon": -3.6914797}, {"type": "node", "id": 1752467635, "lat": 40.4491968, "lon": -3.6903192, "tags": {"check_date:crossing": "2023-03-29", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1752467636, "lat": 40.4491957, "lon": -3.6905796}, {"type": "node", "id": 1752467637, "lat": 40.4492067, "lon": -3.6907753, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467638, "lat": 40.4492163, "lon": -3.6908993, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467639, "lat": 40.4492261, "lon": -3.691044, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467640, "lat": 40.449251, "lon": -3.6920143}, {"type": "node", "id": 1752467642, "lat": 40.4494727, "lon": -3.6919919}, {"type": "node", "id": 1752467644, "lat": 40.4513769, "lon": -3.6903539}, {"type": "node", "id": 1752467646, "lat": 40.4514226, "lon": -3.6905722, "tags": {"button_operated": "no", "check_date:crossing": "2021-10-02", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467647, "lat": 40.4514279, "lon": -3.6906799, "tags": {"button_operated": "no", "check_date:crossing": "2021-10-02", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467648, "lat": 40.4514352, "lon": -3.6908278, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467649, "lat": 40.4514417, "lon": -3.6909579, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1752467652, "lat": 40.4515307, "lon": -3.6901884, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1752467685, "lat": 40.4523833, "lon": -3.6904773, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1752467699, "lat": 40.4527528, "lon": -3.6904422, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1752467717, "lat": 40.4542172, "lon": -3.6903018}, {"type": "node", "id": 1753722729, "lat": 40.4466911, "lon": -3.6917333}, {"type": "node", "id": 1753722730, "lat": 40.4466921, "lon": -3.6917544}, {"type": "node", "id": 1753722731, "lat": 40.4466968, "lon": -3.6918637}, {"type": "node", "id": 1753722732, "lat": 40.4467009, "lon": -3.6919564}, {"type": "node", "id": 1753722736, "lat": 40.4468201, "lon": -3.6908332}, {"type": "node", "id": 1753722753, "lat": 40.4474318, "lon": -3.6907502}, {"type": "node", "id": 1753722767, "lat": 40.4489141, "lon": -3.6904558, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1753722768, "lat": 40.4489218, "lon": -3.6906061}, {"type": "node", "id": 1754199353, "lat": 40.423928, "lon": -3.7006497}, {"type": "node", "id": 1754199355, "lat": 40.4239446, "lon": -3.699994}, {"type": "node", "id": 1754199356, "lat": 40.4259817, "lon": -3.7001926}, {"type": "node", "id": 1754199357, "lat": 40.4260013, "lon": -3.7001262}, {"type": "node", "id": 1754199361, "lat": 40.4263981, "lon": -3.7005096}, {"type": "node", "id": 1754816974, "lat": 40.4409442, "lon": -3.6925674}, {"type": "node", "id": 1754816975, "lat": 40.4410115, "lon": -3.6913831}, {"type": "node", "id": 1754816976, "lat": 40.4410744, "lon": -3.6912553}, {"type": "node", "id": 1754816977, "lat": 40.4410712, "lon": -3.6913953, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1754816978, "lat": 40.4411136, "lon": -3.6911929, "tags": {"check_date:crossing": "2022-01-13", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754816979, "lat": 40.4411324, "lon": -3.6925717, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754816980, "lat": 40.4411873, "lon": -3.6928519}, {"type": "node", "id": 1754816981, "lat": 40.441244, "lon": -3.6913923}, {"type": "node", "id": 1754816982, "lat": 40.4412836, "lon": -3.6912857, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754816983, "lat": 40.4412342, "lon": -3.6921104, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754816984, "lat": 40.4413711, "lon": -3.6908683}, {"type": "node", "id": 1754816985, "lat": 40.44137, "lon": -3.6911764, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes"}}, {"type": "node", "id": 1754816986, "lat": 40.4413727, "lon": -3.6910073}, {"type": "node", "id": 1754816987, "lat": 40.4413774, "lon": -3.691291}, {"type": "node", "id": 1754816990, "lat": 40.4414693, "lon": -3.6920548}, {"type": "node", "id": 1754816991, "lat": 40.4414999, "lon": -3.6912855, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012"}}, {"type": "node", "id": 1754816992, "lat": 40.4415039, "lon": -3.6922872}, {"type": "node", "id": 1754816993, "lat": 40.441518, "lon": -3.6925442}, {"type": "node", "id": 1754816994, "lat": 40.441523, "lon": -3.6922164}, {"type": "node", "id": 1754816996, "lat": 40.4415594, "lon": -3.6919819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1754816997, "lat": 40.4415676, "lon": -3.6920474}, {"type": "node", "id": 1754817000, "lat": 40.4415685, "lon": -3.6921207}, {"type": "node", "id": 1754817001, "lat": 40.4415941, "lon": -3.6924768}, {"type": "node", "id": 1754817002, "lat": 40.4415987, "lon": -3.6920721, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754817003, "lat": 40.4416311, "lon": -3.6920822}, {"type": "node", "id": 1754817005, "lat": 40.4416542, "lon": -3.6912671}, {"type": "node", "id": 1754817006, "lat": 40.4416598, "lon": -3.6921918}, {"type": "node", "id": 1754817007, "lat": 40.4416653, "lon": -3.6919484}, {"type": "node", "id": 1754817008, "lat": 40.4416701, "lon": -3.6924649, "tags": {"check_date:crossing": "2022-09-20", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754817011, "lat": 40.4417199, "lon": -3.6913391}, {"type": "node", "id": 1754817017, "lat": 40.4417642, "lon": -3.6946897}, {"type": "node", "id": 1754817025, "lat": 40.4418325, "lon": -3.6924626}, {"type": "node", "id": 1754817035, "lat": 40.4418731, "lon": -3.6913502}, {"type": "node", "id": 1754817038, "lat": 40.4419443, "lon": -3.6912576}, {"type": "node", "id": 1754817040, "lat": 40.44197, "lon": -3.6914039}, {"type": "node", "id": 1754817042, "lat": 40.4420311, "lon": -3.6914452}, {"type": "node", "id": 1754817043, "lat": 40.4422585, "lon": -3.6917531}, {"type": "node", "id": 1754817050, "lat": 40.4421252, "lon": -3.692123}, {"type": "node", "id": 1754817055, "lat": 40.442214, "lon": -3.6915229}, {"type": "node", "id": 1754817060, "lat": 40.4425559, "lon": -3.691735}, {"type": "node", "id": 1754817062, "lat": 40.442631, "lon": -3.6914865}, {"type": "node", "id": 1754817065, "lat": 40.4426695, "lon": -3.6919043}, {"type": "node", "id": 1754817066, "lat": 40.4427201, "lon": -3.6913617}, {"type": "node", "id": 1754817068, "lat": 40.4427272, "lon": -3.6918411}, {"type": "node", "id": 1754817069, "lat": 40.4427168, "lon": -3.6914806}, {"type": "node", "id": 1754817070, "lat": 40.4427837, "lon": -3.6920499}, {"type": "node", "id": 1754817071, "lat": 40.4428247, "lon": -3.6911727}, {"type": "node", "id": 1754817073, "lat": 40.4429507, "lon": -3.6915497}, {"type": "node", "id": 1754817076, "lat": 40.4430674, "lon": -3.6912182}, {"type": "node", "id": 1754817077, "lat": 40.4431055, "lon": -3.6913266}, {"type": "node", "id": 1754817078, "lat": 40.4431356, "lon": -3.691808}, {"type": "node", "id": 1754817083, "lat": 40.4433443, "lon": -3.6915298}, {"type": "node", "id": 1754817084, "lat": 40.4433637, "lon": -3.6913048}, {"type": "node", "id": 1754817085, "lat": 40.443385, "lon": -3.6915457, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754817086, "lat": 40.4434205, "lon": -3.6915807}, {"type": "node", "id": 1754817087, "lat": 40.4434478, "lon": -3.6919921, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1754817088, "lat": 40.4434619, "lon": -3.6918307}, {"type": "node", "id": 1754817089, "lat": 40.4434805, "lon": -3.6920615}, {"type": "node", "id": 1754817090, "lat": 40.4434864, "lon": -3.6921863}, {"type": "node", "id": 1754817091, "lat": 40.443469, "lon": -3.6916599}, {"type": "node", "id": 1754817092, "lat": 40.4434632, "lon": -3.692619, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1754817093, "lat": 40.4434898, "lon": -3.6911032, "tags": {"crossing": "no"}}, {"type": "node", "id": 1754817094, "lat": 40.4435295, "lon": -3.6915485}, {"type": "node", "id": 1754817095, "lat": 40.4435451, "lon": -3.6919836, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1754817096, "lat": 40.4435509, "lon": -3.6917385}, {"type": "node", "id": 1754817098, "lat": 40.4435778, "lon": -3.6920519}, {"type": "node", "id": 1754817099, "lat": 40.4435849, "lon": -3.6921766}, {"type": "node", "id": 1754817101, "lat": 40.4435867, "lon": -3.6926079, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1754817102, "lat": 40.4436377, "lon": -3.6910877}, {"type": "node", "id": 1754817103, "lat": 40.4436313, "lon": -3.6914867}, {"type": "node", "id": 1754817105, "lat": 40.4436761, "lon": -3.6918456}, {"type": "node", "id": 1754817106, "lat": 40.4436832, "lon": -3.6919716}, {"type": "node", "id": 1754817107, "lat": 40.4436899, "lon": -3.6915303}, {"type": "node", "id": 1754817108, "lat": 40.4436956, "lon": -3.6916314, "tags": {"button_operated": "yes", "check_date:crossing": "2022-05-21", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817111, "lat": 40.4437055, "lon": -3.6918059, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817112, "lat": 40.4437076, "lon": -3.6918425}, {"type": "node", "id": 1754817113, "lat": 40.4437327, "lon": -3.6912664}, {"type": "node", "id": 1754817114, "lat": 40.4437598, "lon": -3.6917465}, {"type": "node", "id": 1754817115, "lat": 40.4438543, "lon": -3.691065, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1754817116, "lat": 40.4438603, "lon": -3.6911576, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1754817117, "lat": 40.4438704, "lon": -3.6913673, "tags": {"button_operated": "yes", "check_date:crossing": "2022-05-21", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817118, "lat": 40.443875, "lon": -3.6914627, "tags": {"button_operated": "yes", "check_date:crossing": "2022-05-21", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 1754817119, "lat": 40.4438774, "lon": -3.6915119}, {"type": "node", "id": 1754817122, "lat": 40.4439874, "lon": -3.6914516}, {"type": "node", "id": 1754817125, "lat": 40.4441108, "lon": -3.6917179}, {"type": "node", "id": 1754817126, "lat": 40.4441203, "lon": -3.6918343}, {"type": "node", "id": 1754817127, "lat": 40.4441238, "lon": -3.6919332}, {"type": "node", "id": 1754817131, "lat": 40.4441887, "lon": -3.6916774}, {"type": "node", "id": 1754817132, "lat": 40.4442075, "lon": -3.6913387}, {"type": "node", "id": 1754817134, "lat": 40.4442502, "lon": -3.6915775}, {"type": "node", "id": 1754817140, "lat": 40.4449552, "lon": -3.6909499}, {"type": "node", "id": 1754817142, "lat": 40.4450808, "lon": -3.6914994}, {"type": "node", "id": 1754817145, "lat": 40.4451446, "lon": -3.6921575}, {"type": "node", "id": 1754817146, "lat": 40.4451515, "lon": -3.6923122}, {"type": "node", "id": 1754817147, "lat": 40.4451926, "lon": -3.691566}, {"type": "node", "id": 1754817154, "lat": 40.4452689, "lon": -3.6916575}, {"type": "node", "id": 1754817155, "lat": 40.4452931, "lon": -3.6917097}, {"type": "node", "id": 1754817156, "lat": 40.4453077, "lon": -3.6918302, "tags": {"check_date:crossing": "2022-05-21", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754817157, "lat": 40.4453221, "lon": -3.6921435}, {"type": "node", "id": 1754817166, "lat": 40.4455363, "lon": -3.6918103, "tags": {"check_date:crossing": "2022-05-21", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754817167, "lat": 40.4455386, "lon": -3.6917298}, {"type": "node", "id": 1754817168, "lat": 40.4455463, "lon": -3.6916596}, {"type": "node", "id": 1754817169, "lat": 40.4455535, "lon": -3.6921252}, {"type": "node", "id": 1754817170, "lat": 40.4455541, "lon": -3.6908873, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1754817171, "lat": 40.4456101, "lon": -3.6918039}, {"type": "node", "id": 1754817172, "lat": 40.4455769, "lon": -3.691584}, {"type": "node", "id": 1754817173, "lat": 40.4456126, "lon": -3.691694}, {"type": "node", "id": 1754817181, "lat": 40.4456787, "lon": -3.6916167}, {"type": "node", "id": 1754817182, "lat": 40.4457516, "lon": -3.6922694}, {"type": "node", "id": 1754817188, "lat": 40.4458307, "lon": -3.6910303}, {"type": "node", "id": 1754817190, "lat": 40.4458584, "lon": -3.6916017}, {"type": "node", "id": 1754817193, "lat": 40.4458999, "lon": -3.6908512, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1754817194, "lat": 40.4459084, "lon": -3.6910238}, {"type": "node", "id": 1754817198, "lat": 40.4459309, "lon": -3.6915957}, {"type": "node", "id": 1754817201, "lat": 40.4459386, "lon": -3.6917753}, {"type": "node", "id": 1754817205, "lat": 40.4460816, "lon": -3.6917606}, {"type": "node", "id": 1754819476, "lat": 40.4408551, "lon": -3.6922042}, {"type": "node", "id": 1754819478, "lat": 40.4409346, "lon": -3.6922316}, {"type": "node", "id": 1754819482, "lat": 40.4410525, "lon": -3.6925454}, {"type": "node", "id": 1754819484, "lat": 40.4410864, "lon": -3.6913378}, {"type": "node", "id": 1754819486, "lat": 40.4412479, "lon": -3.6926389}, {"type": "node", "id": 1754819488, "lat": 40.4412646, "lon": -3.6923567, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754819491, "lat": 40.4412687, "lon": -3.6913481}, {"type": "node", "id": 1754819502, "lat": 40.4413085, "lon": -3.6911818}, {"type": "node", "id": 1754819503, "lat": 40.4413393, "lon": -3.6923999, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1754819504, "lat": 40.4414906, "lon": -3.6911672}, {"type": "node", "id": 1754819505, "lat": 40.4416667, "lon": -3.6923748}, {"type": "node", "id": 1754820534, "lat": 40.4418446, "lon": -3.6915669}, {"type": "node", "id": 1754820554, "lat": 40.4459852, "lon": -3.6916044}, {"type": "node", "id": 1754820555, "lat": 40.4460334, "lon": -3.6916383}, {"type": "node", "id": 1754820556, "lat": 40.4460626, "lon": -3.691684}, {"type": "node", "id": 1754820557, "lat": 40.4460924, "lon": -3.6919641}, {"type": "node", "id": 1759501452, "lat": 40.4356067, "lon": -3.6893684}, {"type": "node", "id": 1759501456, "lat": 40.4365054, "lon": -3.6900024, "tags": {"kerb": "no"}}, {"type": "node", "id": 1759501457, "lat": 40.4365565, "lon": -3.6899332}, {"type": "node", "id": 1759501459, "lat": 40.4366362, "lon": -3.6902102}, {"type": "node", "id": 1759501461, "lat": 40.4366594, "lon": -3.6898895}, {"type": "node", "id": 1759501463, "lat": 40.4373367, "lon": -3.6906878}, {"type": "node", "id": 1759501464, "lat": 40.4374197, "lon": -3.689859}, {"type": "node", "id": 1759501466, "lat": 40.4374197, "lon": -3.6904108}, {"type": "node", "id": 1759501468, "lat": 40.4374519, "lon": -3.6900159}, {"type": "node", "id": 1759501488, "lat": 40.4374845, "lon": -3.6908514}, {"type": "node", "id": 1759501491, "lat": 40.4375376, "lon": -3.6909539, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501498, "lat": 40.4376047, "lon": -3.6907503}, {"type": "node", "id": 1759501501, "lat": 40.4376108, "lon": -3.6907364}, {"type": "node", "id": 1759501503, "lat": 40.4377003, "lon": -3.6901538}, {"type": "node", "id": 1759501505, "lat": 40.4376843, "lon": -3.6911286}, {"type": "node", "id": 1759501507, "lat": 40.4377279, "lon": -3.6903885, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501511, "lat": 40.4377401, "lon": -3.6900542, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501512, "lat": 40.4376856, "lon": -3.6908643}, {"type": "node", "id": 1759501513, "lat": 40.4377854, "lon": -3.6902022}, {"type": "node", "id": 1759501515, "lat": 40.4378254, "lon": -3.6911676}, {"type": "node", "id": 1759501517, "lat": 40.4378901, "lon": -3.6902923, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1759501519, "lat": 40.4378873, "lon": -3.6900001, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501542, "lat": 40.4379236, "lon": -3.6899935, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501551, "lat": 40.4379211, "lon": -3.6910188, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501555, "lat": 40.4379478, "lon": -3.6911762}, {"type": "node", "id": 1759501557, "lat": 40.4380506, "lon": -3.6910346}, {"type": "node", "id": 1759501559, "lat": 40.4380987, "lon": -3.6911746}, {"type": "node", "id": 1759501561, "lat": 40.4381496, "lon": -3.6903716}, {"type": "node", "id": 1759501564, "lat": 40.4381808, "lon": -3.6912902, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501565, "lat": 40.4382361, "lon": -3.6903627, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1759501566, "lat": 40.4381902, "lon": -3.6912135}, {"type": "node", "id": 1759501568, "lat": 40.4382232, "lon": -3.6910848}, {"type": "node", "id": 1759501593, "lat": 40.4383147, "lon": -3.6912714}, {"type": "node", "id": 1759501597, "lat": 40.4383255, "lon": -3.6911671}, {"type": "node", "id": 1759501600, "lat": 40.4383663, "lon": -3.6912077}, {"type": "node", "id": 1759501603, "lat": 40.4383784, "lon": -3.691169, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1759501609, "lat": 40.438397, "lon": -3.6911097}, {"type": "node", "id": 1759501614, "lat": 40.4384114, "lon": -3.6909389, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501620, "lat": 40.4384226, "lon": -3.6907355, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501621, "lat": 40.438439, "lon": -3.6905782}, {"type": "node", "id": 1759501622, "lat": 40.4384525, "lon": -3.6904935, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501640, "lat": 40.4384614, "lon": -3.6904573}, {"type": "node", "id": 1759501646, "lat": 40.4384804, "lon": -3.6904027, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501654, "lat": 40.4385192, "lon": -3.6911923}, {"type": "node", "id": 1759501666, "lat": 40.4385496, "lon": -3.6911628}, {"type": "node", "id": 1759501671, "lat": 40.4386486, "lon": -3.6912692}, {"type": "node", "id": 1759501673, "lat": 40.4388087, "lon": -3.69057}, {"type": "node", "id": 1759501675, "lat": 40.438926, "lon": -3.691422}, {"type": "node", "id": 1759501676, "lat": 40.4393316, "lon": -3.6915638, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "bing", "source:date": "2012", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1759501677, "lat": 40.4394222, "lon": -3.6904542}, {"type": "node", "id": 1759501679, "lat": 40.4395598, "lon": -3.6861436}, {"type": "node", "id": 1759501690, "lat": 40.4395857, "lon": -3.6869887}, {"type": "node", "id": 1759501693, "lat": 40.4395869, "lon": -3.6908285}, {"type": "node", "id": 1759501705, "lat": 40.4396528, "lon": -3.6911804}, {"type": "node", "id": 1759501721, "lat": 40.4398503, "lon": -3.6910475, "tags": {"crossing:markings": "yes", "crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 1759501735, "lat": 40.4400067, "lon": -3.6909777}, {"type": "node", "id": 1759501751, "lat": 40.4402803, "lon": -3.6902517}, {"type": "node", "id": 1759501794, "lat": 40.4406284, "lon": -3.6919387}, {"type": "node", "id": 1759501798, "lat": 40.440782, "lon": -3.6921997}, {"type": "node", "id": 1759501816, "lat": 40.4409203, "lon": -3.6913948}, {"type": "node", "id": 1759501825, "lat": 40.4409928, "lon": -3.6905653}, {"type": "node", "id": 1760085654, "lat": 40.4256933, "lon": -3.6907112, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085655, "lat": 40.4258528, "lon": -3.6898686, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085656, "lat": 40.4258736, "lon": -3.6900337}, {"type": "node", "id": 1760085657, "lat": 40.4259821, "lon": -3.6905374}, {"type": "node", "id": 1760085658, "lat": 40.4262275, "lon": -3.6899429}, {"type": "node", "id": 1760085659, "lat": 40.4262608, "lon": -3.690562}, {"type": "node", "id": 1760085662, "lat": 40.4268245, "lon": -3.6904069}, {"type": "node", "id": 1760085663, "lat": 40.4271136, "lon": -3.690014}, {"type": "node", "id": 1760085664, "lat": 40.4271546, "lon": -3.6901676}, {"type": "node", "id": 1760085665, "lat": 40.4271842, "lon": -3.6903125}, {"type": "node", "id": 1760085666, "lat": 40.4278859, "lon": -3.6896848, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085667, "lat": 40.4279618, "lon": -3.6892216, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085668, "lat": 40.4279723, "lon": -3.6894917, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085669, "lat": 40.4279865, "lon": -3.6899512, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085670, "lat": 40.4280599, "lon": -3.6893025, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085671, "lat": 40.4280822, "lon": -3.6894635}, {"type": "node", "id": 1760085672, "lat": 40.42809, "lon": -3.6899242}, {"type": "node", "id": 1760085673, "lat": 40.428105, "lon": -3.6896275, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085674, "lat": 40.4281088, "lon": -3.6900698, "tags": {"button_operated": "no", "check_date:crossing": "2023-04-18", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085675, "lat": 40.4281217, "lon": -3.6897477, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085676, "lat": 40.4281442, "lon": -3.6899101}, {"type": "node", "id": 1760085677, "lat": 40.428517, "lon": -3.6891716}, {"type": "node", "id": 1760085678, "lat": 40.4287339, "lon": -3.6891708}, {"type": "node", "id": 1760085679, "lat": 40.4287537, "lon": -3.6898977}, {"type": "node", "id": 1760085680, "lat": 40.4288487, "lon": -3.6890608}, {"type": "node", "id": 1760085681, "lat": 40.4289134, "lon": -3.6891751}, {"type": "node", "id": 1760085682, "lat": 40.4289297, "lon": -3.6897995}, {"type": "node", "id": 1760085683, "lat": 40.4291764, "lon": -3.68964}, {"type": "node", "id": 1760085684, "lat": 40.4291907, "lon": -3.6897103, "tags": {"check_date:crossing": "2023-04-18", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085686, "lat": 40.4292102, "lon": -3.6898056, "tags": {"check_date:crossing": "2023-04-18", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "incorrect"}}, {"type": "node", "id": 1760085687, "lat": 40.4292168, "lon": -3.6891726}, {"type": "node", "id": 1760085688, "lat": 40.4292252, "lon": -3.6889841, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-24", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085689, "lat": 40.4292418, "lon": -3.6893312, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085690, "lat": 40.4292578, "lon": -3.6891622}, {"type": "node", "id": 1760085691, "lat": 40.4292598, "lon": -3.6894469, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085692, "lat": 40.429285, "lon": -3.6896132}, {"type": "node", "id": 1760085693, "lat": 40.429367, "lon": -3.6891342, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085694, "lat": 40.4294006, "lon": -3.6895832, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085695, "lat": 40.4294162, "lon": -3.6898833, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085696, "lat": 40.4294731, "lon": -3.6893905, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085697, "lat": 40.4294981, "lon": -3.6895578}, {"type": "node", "id": 1760085698, "lat": 40.4295209, "lon": -3.6897018, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1760085699, "lat": 40.4304236, "lon": -3.6890223, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085702, "lat": 40.4305635, "lon": -3.6888415, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085703, "lat": 40.4305942, "lon": -3.6892729, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085704, "lat": 40.4306019, "lon": -3.6895769, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085706, "lat": 40.4325897, "lon": -3.6914763, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1760085707, "lat": 40.4327208, "lon": -3.6914413}, {"type": "node", "id": 1760085708, "lat": 40.4327261, "lon": -3.6913451}, {"type": "node", "id": 1760085709, "lat": 40.4327407, "lon": -3.6881261}, {"type": "node", "id": 1760085710, "lat": 40.4328749, "lon": -3.6908873}, {"type": "node", "id": 1760085711, "lat": 40.4329238, "lon": -3.6916066}, {"type": "node", "id": 1760085712, "lat": 40.4329388, "lon": -3.6917377, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085713, "lat": 40.4329486, "lon": -3.6915027, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085714, "lat": 40.4329678, "lon": -3.6916066}, {"type": "node", "id": 1760085715, "lat": 40.4330208, "lon": -3.6910883}, {"type": "node", "id": 1760085716, "lat": 40.4330197, "lon": -3.6909537, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085717, "lat": 40.4330914, "lon": -3.6880071}, {"type": "node", "id": 1760085718, "lat": 40.4331632, "lon": -3.6880029, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1760085719, "lat": 40.433179, "lon": -3.6912189}, {"type": "node", "id": 1760085720, "lat": 40.4332049, "lon": -3.691335}, {"type": "node", "id": 1760085721, "lat": 40.4332254, "lon": -3.6912501}, {"type": "node", "id": 1760085722, "lat": 40.4332951, "lon": -3.691288, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1760085723, "lat": 40.4333296, "lon": -3.6880434}, {"type": "node", "id": 1760085724, "lat": 40.4351519, "lon": -3.6889653, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085725, "lat": 40.4353511, "lon": -3.68863, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1760085726, "lat": 40.4355781, "lon": -3.688253}, {"type": "node", "id": 1760085727, "lat": 40.4356724, "lon": -3.6883349, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 1760085728, "lat": 40.4357637, "lon": -3.6884419}, {"type": "node", "id": 1760085729, "lat": 40.4358115, "lon": -3.6885619}, {"type": "node", "id": 1760085730, "lat": 40.4358454, "lon": -3.6887075}, {"type": "node", "id": 1760085731, "lat": 40.4358991, "lon": -3.6888038}, {"type": "node", "id": 1760085732, "lat": 40.4358648, "lon": -3.6888172}, {"type": "node", "id": 1760085733, "lat": 40.4359759, "lon": -3.6888735}, {"type": "node", "id": 1760085734, "lat": 40.4360237, "lon": -3.6889177}, {"type": "node", "id": 1770052216, "lat": 40.4408494, "lon": -3.7181002, "tags": {"crossing": "traffic_signals", "crossing:markings": "dashes", "highway": "crossing"}}, {"type": "node", "id": 1770052217, "lat": 40.4409013, "lon": -3.7185921}, {"type": "node", "id": 1770052218, "lat": 40.4410253, "lon": -3.7180384, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770052219, "lat": 40.441021, "lon": -3.7183494, "tags": {"crossing": "traffic_signals", "crossing:markings": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1770052220, "lat": 40.4410668, "lon": -3.718215}, {"type": "node", "id": 1770052221, "lat": 40.4411156, "lon": -3.7138021}, {"type": "node", "id": 1770052222, "lat": 40.4411754, "lon": -3.7137137}, {"type": "node", "id": 1770052223, "lat": 40.4412285, "lon": -3.7136723}, {"type": "node", "id": 1770052224, "lat": 40.4412692, "lon": -3.7136592}, {"type": "node", "id": 1770052225, "lat": 40.4413074, "lon": -3.7163908, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770052226, "lat": 40.4414276, "lon": -3.7143583}, {"type": "node", "id": 1770052227, "lat": 40.4416612, "lon": -3.7143995, "tags": {"crossing": "uncontrolled", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1770052230, "lat": 40.4422052, "lon": -3.7201833}, {"type": "node", "id": 1770052231, "lat": 40.4422344, "lon": -3.719689}, {"type": "node", "id": 1770052233, "lat": 40.4422934, "lon": -3.7199738}, {"type": "node", "id": 1770052234, "lat": 40.4425305, "lon": -3.7153656}, {"type": "node", "id": 1770052237, "lat": 40.442841, "lon": -3.7190289, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1770056846, "lat": 40.4413061, "lon": -3.7142252, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1770056847, "lat": 40.4413603, "lon": -3.7144576, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1770056848, "lat": 40.4415163, "lon": -3.7139173, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1789638279, "lat": 40.4261399, "lon": -3.7131086, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1789638280, "lat": 40.4261856, "lon": -3.713308, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1789638281, "lat": 40.4268448, "lon": -3.713592, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638282, "lat": 40.4268811, "lon": -3.7134974, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638283, "lat": 40.4270674, "lon": -3.7138881, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1789638284, "lat": 40.4271279, "lon": -3.7138442}, {"type": "node", "id": 1791741985, "lat": 40.440932, "lon": -3.6865685}, {"type": "node", "id": 1791741989, "lat": 40.4409729, "lon": -3.6874026}, {"type": "node", "id": 1791742021, "lat": 40.4414076, "lon": -3.6865376}, {"type": "node", "id": 1791742029, "lat": 40.4414485, "lon": -3.6873717}, {"type": "node", "id": 1801212171, "lat": 40.446826, "lon": -3.7044017}, {"type": "node", "id": 1801212173, "lat": 40.4468514, "lon": -3.7058465, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2009", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1801212174, "lat": 40.4468858, "lon": -3.7058436}, {"type": "node", "id": 1801212177, "lat": 40.4469435, "lon": -3.7045599, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1801212178, "lat": 40.4470098, "lon": -3.705651}, {"type": "node", "id": 1801212179, "lat": 40.4470063, "lon": -3.7055608, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 1801212180, "lat": 40.4470035, "lon": -3.7072922}, {"type": "node", "id": 1801212182, "lat": 40.4470775, "lon": -3.7072987}, {"type": "node", "id": 1801212265, "lat": 40.4476792, "lon": -3.703861}, {"type": "node", "id": 1801212330, "lat": 40.4479641, "lon": -3.7080741}, {"type": "node", "id": 1801212350, "lat": 40.4482586, "lon": -3.7072538}, {"type": "node", "id": 1855027664, "lat": 40.4250234, "lon": -3.6967412}, {"type": "node", "id": 1855027673, "lat": 40.4253839, "lon": -3.6963927, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1855037740, "lat": 40.4257748, "lon": -3.6988177}, {"type": "node", "id": 1855037742, "lat": 40.4258729, "lon": -3.6986082}, {"type": "node", "id": 1868668289, "lat": 40.4337046, "lon": -3.7187877}, {"type": "node", "id": 1868668291, "lat": 40.4337476, "lon": -3.7186462}, {"type": "node", "id": 1868668292, "lat": 40.4337728, "lon": -3.7189676}, {"type": "node", "id": 1868668294, "lat": 40.4337962, "lon": -3.7191838}, {"type": "node", "id": 1868668298, "lat": 40.4338161, "lon": -3.7190916}, {"type": "node", "id": 1868668302, "lat": 40.4339221, "lon": -3.7186853}, {"type": "node", "id": 1868668306, "lat": 40.4340591, "lon": -3.7192069}, {"type": "node", "id": 1868668309, "lat": 40.4342088, "lon": -3.7193148}, {"type": "node", "id": 1868668316, "lat": 40.4345249, "lon": -3.7195558}, {"type": "node", "id": 1868668318, "lat": 40.4345505, "lon": -3.7194897}, {"type": "node", "id": 1868668321, "lat": 40.4346618, "lon": -3.7193538}, {"type": "node", "id": 1868668323, "lat": 40.4346391, "lon": -3.719635}, {"type": "node", "id": 1868668324, "lat": 40.434619, "lon": -3.7197631}, {"type": "node", "id": 1868668325, "lat": 40.4346626, "lon": -3.7195644}, {"type": "node", "id": 1868668327, "lat": 40.4346891, "lon": -3.7197571}, {"type": "node", "id": 1868668328, "lat": 40.4348485, "lon": -3.719294}, {"type": "node", "id": 1868668329, "lat": 40.434802, "lon": -3.7194805}, {"type": "node", "id": 1868668330, "lat": 40.4349322, "lon": -3.7196331}, {"type": "node", "id": 1868668333, "lat": 40.4350964, "lon": -3.719241}, {"type": "node", "id": 1868668338, "lat": 40.4352476, "lon": -3.7190197}, {"type": "node", "id": 1868668339, "lat": 40.4352408, "lon": -3.7197242}, {"type": "node", "id": 1868668345, "lat": 40.4358384, "lon": -3.7200879}, {"type": "node", "id": 1869313926, "lat": 40.4337876, "lon": -3.7189407}, {"type": "node", "id": 1869313927, "lat": 40.4337737, "lon": -3.7189309, "tags": {"name": "Terminal de autobuses (isla 1)", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 1869400489, "lat": 40.4351264, "lon": -3.7190801}, {"type": "node", "id": 1869400490, "lat": 40.4351806, "lon": -3.7191822}, {"type": "node", "id": 1869400491, "lat": 40.4352648, "lon": -3.7192712}, {"type": "node", "id": 1869400492, "lat": 40.4353492, "lon": -3.71943}, {"type": "node", "id": 1869400493, "lat": 40.4354333, "lon": -3.7188244}, {"type": "node", "id": 1869400494, "lat": 40.4355068, "lon": -3.7190353}, {"type": "node", "id": 1869400495, "lat": 40.435487, "lon": -3.7189262}, {"type": "node", "id": 1869400496, "lat": 40.4355875, "lon": -3.7191862}, {"type": "node", "id": 1869400497, "lat": 40.4356664, "lon": -3.7184392}, {"type": "node", "id": 1869400498, "lat": 40.435718, "lon": -3.718953}, {"type": "node", "id": 1869400500, "lat": 40.4374521, "lon": -3.7222854}, {"type": "node", "id": 1869415375, "lat": 40.43593, "lon": -3.7196094}, {"type": "node", "id": 1900998783, "lat": 40.4200523, "lon": -3.6956435, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1900998825, "lat": 40.4218066, "lon": -3.6883085}, {"type": "node", "id": 1900998827, "lat": 40.421813, "lon": -3.6884581}, {"type": "node", "id": 1915012227, "lat": 40.4243467, "lon": -3.6905934, "tags": {"button_operated": "no", "check_date:crossing": "2022-04-16", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1915012228, "lat": 40.4243736, "lon": -3.6906824, "tags": {"button_operated": "no", "check_date:crossing": "2022-04-16", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1915012230, "lat": 40.4245099, "lon": -3.6901724, "tags": {"crossing": "traffic_signals", "highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1915012231, "lat": 40.4246079, "lon": -3.6885487}, {"type": "node", "id": 1915012233, "lat": 40.4247999, "lon": -3.6908782}, {"type": "node", "id": 1915012238, "lat": 40.4249786, "lon": -3.6909836}, {"type": "node", "id": 1915012248, "lat": 40.4253149, "lon": -3.6902173}, {"type": "node", "id": 1915012255, "lat": 40.4253073, "lon": -3.6906867}, {"type": "node", "id": 1915012257, "lat": 40.4253331, "lon": -3.6909583}, {"type": "node", "id": 1915012263, "lat": 40.4254723, "lon": -3.6902675}, {"type": "node", "id": 1915012264, "lat": 40.4255898, "lon": -3.6906655}, {"type": "node", "id": 1924384857, "lat": 40.4322679, "lon": -3.7051741, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 1924384860, "lat": 40.4391207, "lon": -3.7123496}, {"type": "node", "id": 1924384869, "lat": 40.4394473, "lon": -3.7073408, "tags": {"noexit": "yes"}}, {"type": "node", "id": 1924384875, "lat": 40.4413685, "lon": -3.7067096}, {"type": "node", "id": 1924384878, "lat": 40.4414147, "lon": -3.7064272}, {"type": "node", "id": 1924384880, "lat": 40.4438123, "lon": -3.710219}, {"type": "node", "id": 1937730979, "lat": 40.4303021, "lon": -3.7146655}, {"type": "node", "id": 1950481098, "lat": 40.4222064, "lon": -3.6818923, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 1950481100, "lat": 40.4223573, "lon": -3.684563, "tags": {"crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 1950481101, "lat": 40.4230719, "lon": -3.6845013, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481116, "lat": 40.4251981, "lon": -3.6843675, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 1950481121, "lat": 40.4252074, "lon": -3.6865902, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481123, "lat": 40.4252417, "lon": -3.6852238, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1950481125, "lat": 40.4253057, "lon": -3.686474, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481126, "lat": 40.4253744, "lon": -3.6841051, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481127, "lat": 40.4254552, "lon": -3.6865566, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481154, "lat": 40.4262118, "lon": -3.6815476, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1950481156, "lat": 40.4262595, "lon": -3.6825375, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481157, "lat": 40.4262722, "lon": -3.6827992, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481160, "lat": 40.4276024, "lon": -3.6839215, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481161, "lat": 40.4276472, "lon": -3.6826822, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481162, "lat": 40.4277114, "lon": -3.6841219, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481166, "lat": 40.4277595, "lon": -3.6849943, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481168, "lat": 40.4277717, "lon": -3.6852226, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481170, "lat": 40.427881, "lon": -3.6850752, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1950481187, "lat": 40.4289926, "lon": -3.6813336, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481189, "lat": 40.428994, "lon": -3.6838069, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 1950481190, "lat": 40.4290367, "lon": -3.6823081, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 1950481191, "lat": 40.4291278, "lon": -3.6859934, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481193, "lat": 40.4291656, "lon": -3.6850726, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481194, "lat": 40.4292696, "lon": -3.6849139, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481195, "lat": 40.4293093, "lon": -3.685963, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1950481197, "lat": 40.4293518, "lon": -3.6887863, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1963430772, "lat": 40.4263226, "lon": -3.6838444, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1963430773, "lat": 40.4266486, "lon": -3.6876159, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430774, "lat": 40.4278645, "lon": -3.6872992}, {"type": "node", "id": 1963430775, "lat": 40.4278688, "lon": -3.6873875}, {"type": "node", "id": 1963430776, "lat": 40.4278767, "lon": -3.6875468, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 1963430777, "lat": 40.4280242, "lon": -3.6873605, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430778, "lat": 40.4294114, "lon": -3.6871163, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 1963430779, "lat": 40.4302736, "lon": -3.6869475, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1963430780, "lat": 40.4304459, "lon": -3.6866992, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1963430782, "lat": 40.4306565, "lon": -3.6868741, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 1969162855, "lat": 40.4348747, "lon": -3.6893241}, {"type": "node", "id": 1973690383, "lat": 40.4231192, "lon": -3.685513, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690384, "lat": 40.4232094, "lon": -3.6855996, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690386, "lat": 40.4237669, "lon": -3.6844042, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 1973690387, "lat": 40.4237769, "lon": -3.6867815, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690388, "lat": 40.4238213, "lon": -3.6853802, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690389, "lat": 40.4238408, "lon": -3.6857299, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690390, "lat": 40.4238899, "lon": -3.6866088, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690391, "lat": 40.4239078, "lon": -3.6869306, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690392, "lat": 40.423961, "lon": -3.6879647, "tags": {"crossing": "zebra", "highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690393, "lat": 40.4240291, "lon": -3.6867468, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690394, "lat": 40.4260442, "lon": -3.6928008, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690395, "lat": 40.4281928, "lon": -3.6935752, "tags": {"highway": "crossing", "source": "PNOA"}}, {"type": "node", "id": 1973690396, "lat": 40.4293388, "lon": -3.6936181, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1981925767, "lat": 40.4251267, "lon": -3.6853848, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925770, "lat": 40.425396, "lon": -3.6853519, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925776, "lat": 40.426285, "lon": -3.6852573, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925778, "lat": 40.4263403, "lon": -3.684211, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1981925780, "lat": 40.4263428, "lon": -3.6864314, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1981925782, "lat": 40.4264609, "lon": -3.6865347, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925784, "lat": 40.4264916, "lon": -3.6852316, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925787, "lat": 40.4265484, "lon": -3.6863998, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2010"}}, {"type": "node", "id": 1981925789, "lat": 40.429088, "lon": -3.6849411, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes"}}, {"type": "node", "id": 1993774988, "lat": 40.4437214, "lon": -3.7165081}, {"type": "node", "id": 1993774990, "lat": 40.4437214, "lon": -3.716551}, {"type": "node", "id": 1993774992, "lat": 40.4436846, "lon": -3.7165564}, {"type": "node", "id": 1993783531, "lat": 40.4489628, "lon": -3.7134769}, {"type": "node", "id": 1993783534, "lat": 40.4490214, "lon": -3.7130305}, {"type": "node", "id": 1993783539, "lat": 40.44875, "lon": -3.7133149}, {"type": "node", "id": 1993784294, "lat": 40.4490531, "lon": -3.7141373}, {"type": "node", "id": 1993785065, "lat": 40.4489778, "lon": -3.7132177}, {"type": "node", "id": 1993785068, "lat": 40.4490917, "lon": -3.713268}, {"type": "node", "id": 1993785607, "lat": 40.4491815, "lon": -3.713306}, {"type": "node", "id": 1993790380, "lat": 40.45108, "lon": -3.7143576}, {"type": "node", "id": 1993790383, "lat": 40.4515557, "lon": -3.7140934}, {"type": "node", "id": 1993790405, "lat": 40.4511543, "lon": -3.713575}, {"type": "node", "id": 1993790409, "lat": 40.4511696, "lon": -3.7143765}, {"type": "node", "id": 1993790413, "lat": 40.4512843, "lon": -3.7143759}, {"type": "node", "id": 1993790417, "lat": 40.4508446, "lon": -3.7140588}, {"type": "node", "id": 1993790420, "lat": 40.4519221, "lon": -3.7143005}, {"type": "node", "id": 1993790426, "lat": 40.4518217, "lon": -3.7146341}, {"type": "node", "id": 1993790428, "lat": 40.4514492, "lon": -3.7143391}, {"type": "node", "id": 1993790430, "lat": 40.4507042, "lon": -3.7130159}, {"type": "node", "id": 1993790431, "lat": 40.4519693, "lon": -3.7147549}, {"type": "node", "id": 1993790434, "lat": 40.4519588, "lon": -3.714767}, {"type": "node", "id": 1993790437, "lat": 40.4518796, "lon": -3.7147125}, {"type": "node", "id": 1993790441, "lat": 40.4512677, "lon": -3.7127066}, {"type": "node", "id": 1993790445, "lat": 40.4508005, "lon": -3.7133874}, {"type": "node", "id": 1993790449, "lat": 40.4508471, "lon": -3.7139064}, {"type": "node", "id": 1993790452, "lat": 40.4519699, "lon": -3.71443}, {"type": "node", "id": 1993790455, "lat": 40.451196, "lon": -3.7138608}, {"type": "node", "id": 1993790459, "lat": 40.4516869, "lon": -3.7145098}, {"type": "node", "id": 1993790467, "lat": 40.4513028, "lon": -3.7140043}, {"type": "node", "id": 1993790470, "lat": 40.4512176, "lon": -3.7129426}, {"type": "node", "id": 1993790478, "lat": 40.4513197, "lon": -3.7124339}, {"type": "node", "id": 1993790481, "lat": 40.4517764, "lon": -3.7141503}, {"type": "node", "id": 1993790483, "lat": 40.4508517, "lon": -3.7137888}, {"type": "node", "id": 1993790485, "lat": 40.4515568, "lon": -3.7144084}, {"type": "node", "id": 1993790488, "lat": 40.451984, "lon": -3.7146207}, {"type": "node", "id": 1993790490, "lat": 40.4508791, "lon": -3.714091}, {"type": "node", "id": 1993791271, "lat": 40.4505593, "lon": -3.714073}, {"type": "node", "id": 1993791274, "lat": 40.4506649, "lon": -3.714082}, {"type": "node", "id": 1993791868, "lat": 40.4507899, "lon": -3.7135201}, {"type": "node", "id": 1993791871, "lat": 40.4506988, "lon": -3.7137767}, {"type": "node", "id": 1993791874, "lat": 40.4508202, "lon": -3.7134677}, {"type": "node", "id": 1993796499, "lat": 40.4498061, "lon": -3.7132538}, {"type": "node", "id": 1993852772, "lat": 40.4430277, "lon": -3.7212665}, {"type": "node", "id": 1993852773, "lat": 40.4424275, "lon": -3.7223877}, {"type": "node", "id": 1993852774, "lat": 40.4418274, "lon": -3.723671}, {"type": "node", "id": 1993852775, "lat": 40.441585, "lon": -3.7242076}, {"type": "node", "id": 1993852777, "lat": 40.4417172, "lon": -3.7238468}, {"type": "node", "id": 1993852779, "lat": 40.4420749, "lon": -3.7232709}, {"type": "node", "id": 1993852780, "lat": 40.44283, "lon": -3.7216371}, {"type": "node", "id": 1993852782, "lat": 40.4422256, "lon": -3.7229678}, {"type": "node", "id": 1993852784, "lat": 40.4433307, "lon": -3.7208334}, {"type": "node", "id": 1993853730, "lat": 40.4427838, "lon": -3.7217189}, {"type": "node", "id": 1993853733, "lat": 40.4437871, "lon": -3.7225696}, {"type": "node", "id": 1993853736, "lat": 40.4422757, "lon": -3.7213656}, {"type": "node", "id": 1993853752, "lat": 40.4437836, "lon": -3.7226937}, {"type": "node", "id": 1993853754, "lat": 40.4431757, "lon": -3.722047}, {"type": "node", "id": 1993853757, "lat": 40.4430075, "lon": -3.7219068}, {"type": "node", "id": 1993854810, "lat": 40.441824, "lon": -3.724384}, {"type": "node", "id": 1993854812, "lat": 40.4417729, "lon": -3.7237195}, {"type": "node", "id": 2001290825, "lat": 40.44742, "lon": -3.7242329}, {"type": "node", "id": 2001290831, "lat": 40.4462521, "lon": -3.7216144}, {"type": "node", "id": 2001290832, "lat": 40.4479819, "lon": -3.7223407}, {"type": "node", "id": 2001290841, "lat": 40.447597, "lon": -3.7229688}, {"type": "node", "id": 2001290848, "lat": 40.4479364, "lon": -3.7236294}, {"type": "node", "id": 2001290849, "lat": 40.4474771, "lon": -3.7237689}, {"type": "node", "id": 2001290855, "lat": 40.4475218, "lon": -3.7235554}, {"type": "node", "id": 2001290866, "lat": 40.4463426, "lon": -3.7216524}, {"type": "node", "id": 2001290867, "lat": 40.4483, "lon": -3.7224838}, {"type": "node", "id": 2001290872, "lat": 40.4427643, "lon": -3.7226758}, {"type": "node", "id": 2001290875, "lat": 40.4475229, "lon": -3.722604}, {"type": "node", "id": 2001290877, "lat": 40.4475282, "lon": -3.7234953}, {"type": "node", "id": 2001290878, "lat": 40.4478841, "lon": -3.7221939}, {"type": "node", "id": 2001290885, "lat": 40.4476037, "lon": -3.7230474}, {"type": "node", "id": 2001290895, "lat": 40.4475261, "lon": -3.7215748}, {"type": "node", "id": 2001290897, "lat": 40.4475465, "lon": -3.7225968}, {"type": "node", "id": 2001290898, "lat": 40.4476057, "lon": -3.7211457}, {"type": "node", "id": 2001290903, "lat": 40.4475684, "lon": -3.7232313}, {"type": "node", "id": 2001290905, "lat": 40.447941, "lon": -3.7223312}, {"type": "node", "id": 2001290906, "lat": 40.4475527, "lon": -3.7214273}, {"type": "node", "id": 2001290907, "lat": 40.447669, "lon": -3.7225297}, {"type": "node", "id": 2001290925, "lat": 40.4458769, "lon": -3.7215185}, {"type": "node", "id": 2001290928, "lat": 40.4478262, "lon": -3.7221006}, {"type": "node", "id": 2001290929, "lat": 40.4478025, "lon": -3.722423}, {"type": "node", "id": 2001290934, "lat": 40.4477507, "lon": -3.7220576}, {"type": "node", "id": 2001290935, "lat": 40.4478823, "lon": -3.7223415}, {"type": "node", "id": 2001290937, "lat": 40.4457857, "lon": -3.7214984}, {"type": "node", "id": 2001290940, "lat": 40.448116, "lon": -3.7221998}, {"type": "node", "id": 2001290942, "lat": 40.4480932, "lon": -3.7219355}, {"type": "node", "id": 2001290949, "lat": 40.4474833, "lon": -3.7219289}, {"type": "node", "id": 2001290962, "lat": 40.4481141, "lon": -3.7223877}, {"type": "node", "id": 2001290965, "lat": 40.4479936, "lon": -3.7218779}, {"type": "node", "id": 2001290966, "lat": 40.4475527, "lon": -3.7219852}, {"type": "node", "id": 2001290971, "lat": 40.4474629, "lon": -3.721835}, {"type": "node", "id": 2004129474, "lat": 40.4417495, "lon": -3.7266086}, {"type": "node", "id": 2004157540, "lat": 40.4447903, "lon": -3.7229657}, {"type": "node", "id": 2004157541, "lat": 40.4444512, "lon": -3.7244435}, {"type": "node", "id": 2004157542, "lat": 40.4453305, "lon": -3.7253913}, {"type": "node", "id": 2004157544, "lat": 40.444837, "lon": -3.723612}, {"type": "node", "id": 2004157545, "lat": 40.4444634, "lon": -3.724355}, {"type": "node", "id": 2004157547, "lat": 40.4445311, "lon": -3.7245362}, {"type": "node", "id": 2004157549, "lat": 40.4446044, "lon": -3.7235455}, {"type": "node", "id": 2004157550, "lat": 40.4446553, "lon": -3.7235262}, {"type": "node", "id": 2004157552, "lat": 40.4447186, "lon": -3.7235181}, {"type": "node", "id": 2004157553, "lat": 40.4447493, "lon": -3.7235397}, {"type": "node", "id": 2004157557, "lat": 40.4447763, "lon": -3.7245469}, {"type": "node", "id": 2004157561, "lat": 40.4445145, "lon": -3.7235637}, {"type": "node", "id": 2004157564, "lat": 40.444541, "lon": -3.723561}, {"type": "node", "id": 2004157566, "lat": 40.4445512, "lon": -3.7242825}, {"type": "node", "id": 2004157569, "lat": 40.4444901, "lon": -3.7256199, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2004157571, "lat": 40.444786, "lon": -3.7235691}, {"type": "node", "id": 2004157573, "lat": 40.4435368, "lon": -3.7253093, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004157577, "lat": 40.4448128, "lon": -3.7243287}, {"type": "node", "id": 2004157581, "lat": 40.4455466, "lon": -3.7232385, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2004157583, "lat": 40.4446268, "lon": -3.7242964}, {"type": "node", "id": 2004157588, "lat": 40.4452768, "lon": -3.7254718}, {"type": "node", "id": 2004157595, "lat": 40.4442167, "lon": -3.7254359, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2004157596, "lat": 40.4432325, "lon": -3.7253906, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 2004157604, "lat": 40.4449452, "lon": -3.7243603}, {"type": "node", "id": 2004157607, "lat": 40.4444716, "lon": -3.7245009}, {"type": "node", "id": 2004157609, "lat": 40.4447397, "lon": -3.7245711}, {"type": "node", "id": 2004157610, "lat": 40.4429531, "lon": -3.7251977, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004157611, "lat": 40.444737, "lon": -3.7243147}, {"type": "node", "id": 2004157614, "lat": 40.4449782, "lon": -3.7254634}, {"type": "node", "id": 2004157616, "lat": 40.4448715, "lon": -3.7255369}, {"type": "node", "id": 2004157618, "lat": 40.4445002, "lon": -3.7243121}, {"type": "node", "id": 2004157622, "lat": 40.4448799, "lon": -3.7236522}, {"type": "node", "id": 2004177611, "lat": 40.4452636, "lon": -3.7254198}, {"type": "node", "id": 2004177613, "lat": 40.4429427, "lon": -3.7251006}, {"type": "node", "id": 2004177617, "lat": 40.4437068, "lon": -3.7253431}, {"type": "node", "id": 2004177624, "lat": 40.4449702, "lon": -3.7258447}, {"type": "node", "id": 2004177627, "lat": 40.4449588, "lon": -3.726008}, {"type": "node", "id": 2004177629, "lat": 40.4436694, "lon": -3.7252401}, {"type": "node", "id": 2004177631, "lat": 40.4448666, "lon": -3.7266395}, {"type": "node", "id": 2004177634, "lat": 40.4439313, "lon": -3.7248551, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004177640, "lat": 40.4437569, "lon": -3.7247946}, {"type": "node", "id": 2004177656, "lat": 40.4448147, "lon": -3.7256365}, {"type": "node", "id": 2004177658, "lat": 40.4441266, "lon": -3.7248565}, {"type": "node", "id": 2004177661, "lat": 40.4453657, "lon": -3.724591}, {"type": "node", "id": 2004177663, "lat": 40.4449799, "lon": -3.7253635}, {"type": "node", "id": 2004177665, "lat": 40.444839, "lon": -3.72546}, {"type": "node", "id": 2004177666, "lat": 40.4444777, "lon": -3.7253957}, {"type": "node", "id": 2004177668, "lat": 40.4437668, "lon": -3.7248232}, {"type": "node", "id": 2004177670, "lat": 40.4449064, "lon": -3.7254171}, {"type": "node", "id": 2004177673, "lat": 40.4452881, "lon": -3.7253367}, {"type": "node", "id": 2004177675, "lat": 40.4438863, "lon": -3.7252837}, {"type": "node", "id": 2004177678, "lat": 40.4440472, "lon": -3.7253162, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004177680, "lat": 40.4437726, "lon": -3.7246364}, {"type": "node", "id": 2004177683, "lat": 40.4439466, "lon": -3.7247089}, {"type": "node", "id": 2004177684, "lat": 40.4437188, "lon": -3.72525, "tags": {"check_date:crossing": "2023-09-30", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2004177693, "lat": 40.4440381, "lon": -3.7254048}, {"type": "node", "id": 2004177696, "lat": 40.4441654, "lon": -3.7244692}, {"type": "node", "id": 2004177699, "lat": 40.444093, "lon": -3.7248864}, {"type": "node", "id": 2005647264, "lat": 40.4204947, "lon": -3.6872673, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2005647267, "lat": 40.4204173, "lon": -3.6872213}, {"type": "node", "id": 2005647280, "lat": 40.420379, "lon": -3.6871133}, {"type": "node", "id": 2025638795, "lat": 40.4293805, "lon": -3.7060346}, {"type": "node", "id": 2025638801, "lat": 40.4294927, "lon": -3.7061365}, {"type": "node", "id": 2025638803, "lat": 40.4296835, "lon": -3.7054422}, {"type": "node", "id": 2053099673, "lat": 40.4255771, "lon": -3.6910542}, {"type": "node", "id": 2053099675, "lat": 40.425571, "lon": -3.6911508}, {"type": "node", "id": 2053099678, "lat": 40.4218921, "lon": -3.6924999, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2053099684, "lat": 40.4253676, "lon": -3.6898297}, {"type": "node", "id": 2053099686, "lat": 40.4256493, "lon": -3.6908396}, {"type": "node", "id": 2053099688, "lat": 40.4257007, "lon": -3.6908047}, {"type": "node", "id": 2053099692, "lat": 40.4253705, "lon": -3.6895721}, {"type": "node", "id": 2053099694, "lat": 40.4253211, "lon": -3.689883}, {"type": "node", "id": 2053099698, "lat": 40.4232852, "lon": -3.6918775, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2053099701, "lat": 40.425588, "lon": -3.6909334}, {"type": "node", "id": 2053099707, "lat": 40.4246127, "lon": -3.6901807}, {"type": "node", "id": 2053142625, "lat": 40.4358824, "lon": -3.6893212}, {"type": "node", "id": 2053142632, "lat": 40.4458964, "lon": -3.690727}, {"type": "node", "id": 2053142638, "lat": 40.4459468, "lon": -3.6907063}, {"type": "node", "id": 2053142650, "lat": 40.4279961, "lon": -3.690194, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2053142652, "lat": 40.4418153, "lon": -3.6918136}, {"type": "node", "id": 2053142667, "lat": 40.4380412, "lon": -3.691536, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2053142680, "lat": 40.4463662, "lon": -3.6906353}, {"type": "node", "id": 2053142690, "lat": 40.4460045, "lon": -3.6906224}, {"type": "node", "id": 2053142693, "lat": 40.4463449, "lon": -3.6905758}, {"type": "node", "id": 2053142696, "lat": 40.4380656, "lon": -3.6915332, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "bing", "source:date": "2012", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2053142710, "lat": 40.4464653, "lon": -3.690629}, {"type": "node", "id": 2053142713, "lat": 40.4266084, "lon": -3.6906129, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2057627664, "lat": 40.4356235, "lon": -3.7202826}, {"type": "node", "id": 2060837653, "lat": 40.4353909, "lon": -3.6996228, "tags": {"access": "yes", "addr:city": "Madrid", "addr:country": "ES", "addr:housenumber": "4", "addr:postcode": "28010", "addr:street": "Calle de Felipe el Hermoso", "entrance": "main"}}, {"type": "node", "id": 2060837658, "lat": 40.4346976, "lon": -3.7002624, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2060837659, "lat": 40.4369279, "lon": -3.7011362}, {"type": "node", "id": 2080593481, "lat": 40.435006, "lon": -3.719403}, {"type": "node", "id": 2093538983, "lat": 40.4482254, "lon": -3.7275226}, {"type": "node", "id": 2093539010, "lat": 40.4481676, "lon": -3.7275181}, {"type": "node", "id": 2095964613, "lat": 40.4397135, "lon": -3.7015358}, {"type": "node", "id": 2095964614, "lat": 40.4405538, "lon": -3.7014297}, {"type": "node", "id": 2095964615, "lat": 40.4415214, "lon": -3.7039464, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2095964619, "lat": 40.4399743, "lon": -3.7017553}, {"type": "node", "id": 2095964621, "lat": 40.4415214, "lon": -3.704123}, {"type": "node", "id": 2095964623, "lat": 40.4389315, "lon": -3.7019088}, {"type": "node", "id": 2095964625, "lat": 40.4392369, "lon": -3.7005715}, {"type": "node", "id": 2095964627, "lat": 40.4389419, "lon": -3.7023277}, {"type": "node", "id": 2095964629, "lat": 40.4389867, "lon": -3.7017077}, {"type": "node", "id": 2095964634, "lat": 40.440472, "lon": -3.7016788}, {"type": "node", "id": 2095964636, "lat": 40.4400296, "lon": -3.7016907}, {"type": "node", "id": 2095964638, "lat": 40.4408731, "lon": -3.7015477}, {"type": "node", "id": 2095964640, "lat": 40.4391584, "lon": -3.7009107, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2095964643, "lat": 40.4393546, "lon": -3.7016987}, {"type": "node", "id": 2095964645, "lat": 40.4396403, "lon": -3.701716}, {"type": "node", "id": 2095964647, "lat": 40.4415081, "lon": -3.7018741}, {"type": "node", "id": 2095964649, "lat": 40.4395258, "lon": -3.7016349}, {"type": "node", "id": 2160260298, "lat": 40.4464772, "lon": -3.7076756}, {"type": "node", "id": 2160260301, "lat": 40.4468491, "lon": -3.7078474}, {"type": "node", "id": 2160260303, "lat": 40.4469019, "lon": -3.7078543, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2160260306, "lat": 40.4469003, "lon": -3.7079118}, {"type": "node", "id": 2160260308, "lat": 40.4469177, "lon": -3.7078452}, {"type": "node", "id": 2160260312, "lat": 40.447117, "lon": -3.7079902, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2167560248, "lat": 40.451748, "lon": -3.7187473}, {"type": "node", "id": 2239998425, "lat": 40.4203367, "lon": -3.6949644}, {"type": "node", "id": 2239998427, "lat": 40.4203422, "lon": -3.6941446}, {"type": "node", "id": 2239998429, "lat": 40.4203561, "lon": -3.6950099}, {"type": "node", "id": 2239998430, "lat": 40.4203579, "lon": -3.6940997}, {"type": "node", "id": 2239998644, "lat": 40.4215684, "lon": -3.6950492}, {"type": "node", "id": 2239998650, "lat": 40.4215718, "lon": -3.6956609}, {"type": "node", "id": 2239998654, "lat": 40.4216051, "lon": -3.6940434}, {"type": "node", "id": 2239998657, "lat": 40.4216084, "lon": -3.6950495}, {"type": "node", "id": 2239998702, "lat": 40.4217624, "lon": -3.6940459}, {"type": "node", "id": 2239998704, "lat": 40.4217622, "lon": -3.6940785}, {"type": "node", "id": 2239998716, "lat": 40.4217698, "lon": -3.6949976}, {"type": "node", "id": 2239998718, "lat": 40.4217711, "lon": -3.6950504}, {"type": "node", "id": 2239998732, "lat": 40.4218609, "lon": -3.6940407, "tags": {"barrier": "gate"}}, {"type": "node", "id": 2239998744, "lat": 40.4218708, "lon": -3.6950533, "tags": {"barrier": "gate"}}, {"type": "node", "id": 2277540507, "lat": 40.4425864, "lon": -3.7239489}, {"type": "node", "id": 2277540509, "lat": 40.4428668, "lon": -3.7227761, "tags": {"barrier": "gate"}}, {"type": "node", "id": 2277540512, "lat": 40.4428884, "lon": -3.7235669}, {"type": "node", "id": 2277540515, "lat": 40.4429512, "lon": -3.7233979}, {"type": "node", "id": 2277540518, "lat": 40.4429721, "lon": -3.7230218}, {"type": "node", "id": 2277540520, "lat": 40.443188, "lon": -3.724186}, {"type": "node", "id": 2277540523, "lat": 40.4431946, "lon": -3.7242466}, {"type": "node", "id": 2277540526, "lat": 40.4432051, "lon": -3.7240644}, {"type": "node", "id": 2277540528, "lat": 40.4432166, "lon": -3.7242858}, {"type": "node", "id": 2277540530, "lat": 40.4432459, "lon": -3.7240511}, {"type": "node", "id": 2277540534, "lat": 40.4432964, "lon": -3.7233408}, {"type": "node", "id": 2277540538, "lat": 40.4433617, "lon": -3.7233141}, {"type": "node", "id": 2277540541, "lat": 40.4434374, "lon": -3.724319}, {"type": "node", "id": 2277540544, "lat": 40.4434485, "lon": -3.7233158}, {"type": "node", "id": 2277540548, "lat": 40.443454, "lon": -3.7240874}, {"type": "node", "id": 2277540550, "lat": 40.4434799, "lon": -3.7243126}, {"type": "node", "id": 2277540555, "lat": 40.4435071, "lon": -3.7227315}, {"type": "node", "id": 2277540558, "lat": 40.4435119, "lon": -3.7241704}, {"type": "node", "id": 2277540561, "lat": 40.4435132, "lon": -3.7242621}, {"type": "node", "id": 2277540565, "lat": 40.44359, "lon": -3.7233819}, {"type": "node", "id": 2277540701, "lat": 40.4480136, "lon": -3.7088148}, {"type": "node", "id": 2277540728, "lat": 40.4491069, "lon": -3.7159719, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 2277540732, "lat": 40.4497549, "lon": -3.7171171}, {"type": "node", "id": 2277540734, "lat": 40.450281, "lon": -3.7104606}, {"type": "node", "id": 2277540736, "lat": 40.4504574, "lon": -3.7141148}, {"type": "node", "id": 2283339292, "lat": 40.4284894, "lon": -3.7095816}, {"type": "node", "id": 2283339295, "lat": 40.4299727, "lon": -3.7091641, "tags": {"highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 2283339296, "lat": 40.4298058, "lon": -3.7085176, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283339298, "lat": 40.4285451, "lon": -3.7096238}, {"type": "node", "id": 2283339299, "lat": 40.4285741, "lon": -3.7097179}, {"type": "node", "id": 2283339300, "lat": 40.4298947, "lon": -3.7084868, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283361212, "lat": 40.4384808, "lon": -3.7004993, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361213, "lat": 40.4407618, "lon": -3.7008767}, {"type": "node", "id": 2283361214, "lat": 40.4405457, "lon": -3.701009}, {"type": "node", "id": 2283361215, "lat": 40.4404521, "lon": -3.7009677}, {"type": "node", "id": 2283361216, "lat": 40.4406061, "lon": -3.7003652}, {"type": "node", "id": 2283361217, "lat": 40.4340153, "lon": -3.7043512, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361218, "lat": 40.4407505, "lon": -3.7005488}, {"type": "node", "id": 2283361219, "lat": 40.440778, "lon": -3.7004411}, {"type": "node", "id": 2283361221, "lat": 40.433868, "lon": -3.7026769, "tags": {"crossing": "zebra", "highway": "crossing", "source": "Bing"}}, {"type": "node", "id": 2283361222, "lat": 40.4384607, "lon": -3.7000662, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361223, "lat": 40.4341806, "lon": -3.7018469, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 2283361226, "lat": 40.4375243, "lon": -3.6994186}, {"type": "node", "id": 2283361227, "lat": 40.4407062, "lon": -3.7007219}, {"type": "node", "id": 2283361228, "lat": 40.4406279, "lon": -3.7006874}, {"type": "node", "id": 2283361229, "lat": 40.4401416, "lon": -3.7009642, "tags": {"highway": "traffic_signals", "traffic_signals": "emergency"}}, {"type": "node", "id": 2283361230, "lat": 40.4405045, "lon": -3.7007628}, {"type": "node", "id": 2283361231, "lat": 40.4395323, "lon": -3.7007012, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361233, "lat": 40.4387879, "lon": -3.7003762, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361235, "lat": 40.4374427, "lon": -3.6998003}, {"type": "node", "id": 2283361238, "lat": 40.4396689, "lon": -3.7006166, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361239, "lat": 40.440624, "lon": -3.7010435}, {"type": "node", "id": 2283361240, "lat": 40.440836, "lon": -3.7005865}, {"type": "node", "id": 2283361242, "lat": 40.4406997, "lon": -3.7004066}, {"type": "node", "id": 2283361243, "lat": 40.4407095, "lon": -3.7010813}, {"type": "node", "id": 2283361244, "lat": 40.4405981, "lon": -3.7008041}, {"type": "node", "id": 2283361245, "lat": 40.4405786, "lon": -3.7004729}, {"type": "node", "id": 2283361246, "lat": 40.4406722, "lon": -3.7005142}, {"type": "node", "id": 2283361247, "lat": 40.4406763, "lon": -3.700839}, {"type": "node", "id": 2283361248, "lat": 40.4408635, "lon": -3.7004789}, {"type": "node", "id": 2283361249, "lat": 40.4383365, "lon": -3.7001832, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283361250, "lat": 40.4405056, "lon": -3.7011142, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2283386633, "lat": 40.4502789, "lon": -3.7034758, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2283386640, "lat": 40.4490978, "lon": -3.703649, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 2291230717, "lat": 40.4350692, "lon": -3.6984645, "tags": {"railway": "subway_entrance", "source": "survey", "wheelchair": "yes", "wheelchair:description": "Lifts from street to platforms."}}, {"type": "node", "id": 2319054900, "lat": 40.4381535, "lon": -3.7199976}, {"type": "node", "id": 2319054902, "lat": 40.4384571, "lon": -3.7203477}, {"type": "node", "id": 2321219900, "lat": 40.439079, "lon": -3.6891487}, {"type": "node", "id": 2321219901, "lat": 40.43913, "lon": -3.6891847, "tags": {"barrier": "bollard"}}, {"type": "node", "id": 2321219902, "lat": 40.439301, "lon": -3.6895964}, {"type": "node", "id": 2321219904, "lat": 40.4401718, "lon": -3.6899433, "tags": {"barrier": "lift_gate", "motorcar": "yes"}}, {"type": "node", "id": 2321219905, "lat": 40.4406206, "lon": -3.6901949, "tags": {"barrier": "lift_gate", "motorcar": "yes"}}, {"type": "node", "id": 2331169534, "lat": 40.4251901, "lon": -3.7042093}, {"type": "node", "id": 2331169552, "lat": 40.4252905, "lon": -3.7041726}, {"type": "node", "id": 2331169562, "lat": 40.4253615, "lon": -3.7036699}, {"type": "node", "id": 2331169567, "lat": 40.4253551, "lon": -3.7041761}, {"type": "node", "id": 2331169575, "lat": 40.4254153, "lon": -3.7042025}, {"type": "node", "id": 2331169580, "lat": 40.4254686, "lon": -3.704161}, {"type": "node", "id": 2351032610, "lat": 40.4311477, "lon": -3.6868256}, {"type": "node", "id": 2351032614, "lat": 40.4330314, "lon": -3.6861607}, {"type": "node", "id": 2351032617, "lat": 40.4361317, "lon": -3.6832101, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2351032620, "lat": 40.4367605, "lon": -3.6830832}, {"type": "node", "id": 2377017999, "lat": 40.4250957, "lon": -3.6878}, {"type": "node", "id": 2377018002, "lat": 40.4251068, "lon": -3.68791, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 2377018004, "lat": 40.4251217, "lon": -3.6880584}, {"type": "node", "id": 2377018020, "lat": 40.4251895, "lon": -3.6880482}, {"type": "node", "id": 2377018023, "lat": 40.4251979, "lon": -3.6861042, "tags": {"entrance": "yes", "name": "Goya, pares", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2377018029, "lat": 40.425232, "lon": -3.6880686}, {"type": "node", "id": 2377018034, "lat": 40.4252521, "lon": -3.6877752}, {"type": "node", "id": 2377018036, "lat": 40.4252685, "lon": -3.6875847, "tags": {"entrance": "yes", "name": "Goya, pares", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2377018038, "lat": 40.4252873, "lon": -3.6881171}, {"type": "node", "id": 2377018039, "lat": 40.4252916, "lon": -3.6877497}, {"type": "node", "id": 2377018040, "lat": 40.4253248, "lon": -3.6860921}, {"type": "node", "id": 2377018041, "lat": 40.4253872, "lon": -3.6875696}, {"type": "node", "id": 2377018042, "lat": 40.4253939, "lon": -3.6860916, "tags": {"entrance": "yes", "name": "Goya, impares", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2377018043, "lat": 40.425428, "lon": -3.688334}, {"type": "node", "id": 2377018046, "lat": 40.425476, "lon": -3.6875561, "tags": {"entrance": "yes", "name": "Serrano", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2436859012, "lat": 40.4501273, "lon": -3.7093379, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2436859019, "lat": 40.4485315, "lon": -3.7098638}, {"type": "node", "id": 2436859026, "lat": 40.4475849, "lon": -3.7107456, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859052, "lat": 40.4474555, "lon": -3.710688, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859054, "lat": 40.4508618, "lon": -3.7095379, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2436859060, "lat": 40.4475004, "lon": -3.7107822, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859061, "lat": 40.4475461, "lon": -3.7106131, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2436859063, "lat": 40.4476493, "lon": -3.7087976}, {"type": "node", "id": 2436859064, "lat": 40.4502207, "lon": -3.7094981, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 2446887427, "lat": 40.4371863, "lon": -3.7211565}, {"type": "node", "id": 2446887435, "lat": 40.4375699, "lon": -3.7209063}, {"type": "node", "id": 2448104585, "lat": 40.4414226, "lon": -3.72079}, {"type": "node", "id": 2448104587, "lat": 40.4405168, "lon": -3.7209247}, {"type": "node", "id": 2448104588, "lat": 40.4416699, "lon": -3.7209832}, {"type": "node", "id": 2448104589, "lat": 40.4403663, "lon": -3.7212797}, {"type": "node", "id": 2448104590, "lat": 40.4413457, "lon": -3.720292}, {"type": "node", "id": 2448104592, "lat": 40.4418081, "lon": -3.720679}, {"type": "node", "id": 2448104593, "lat": 40.4414898, "lon": -3.7206373, "tags": {"entrance": "yes", "name": "Puerta A"}}, {"type": "node", "id": 2448104598, "lat": 40.4414124, "lon": -3.7208177}, {"type": "node", "id": 2448104599, "lat": 40.4406748, "lon": -3.7207395}, {"type": "node", "id": 2448104600, "lat": 40.4414188, "lon": -3.7208002}, {"type": "node", "id": 2448104602, "lat": 40.4417305, "lon": -3.7208453, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2448104604, "lat": 40.44141, "lon": -3.720156}, {"type": "node", "id": 2448104605, "lat": 40.4416495, "lon": -3.7210317}, {"type": "node", "id": 2448104606, "lat": 40.4400325, "lon": -3.7188289, "tags": {"entrance": "yes", "name": "Puerta G"}}, {"type": "node", "id": 2448104608, "lat": 40.4414053, "lon": -3.7208364}, {"type": "node", "id": 2448104609, "lat": 40.4404127, "lon": -3.7213193}, {"type": "node", "id": 2448104610, "lat": 40.4415708, "lon": -3.7209713, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2448104611, "lat": 40.441594, "lon": -3.7209226, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2448104614, "lat": 40.4417648, "lon": -3.7206427, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2448107792, "lat": 40.439303, "lon": -3.720196, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2448267178, "lat": 40.4417562, "lon": -3.71995}, {"type": "node", "id": 2448267182, "lat": 40.4421228, "lon": -3.7202434, "tags": {"barrier": "gate", "entrance": "yes", "name": "Puerta B"}}, {"type": "node", "id": 2448267187, "lat": 40.4414871, "lon": -3.7190751, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2448267191, "lat": 40.4412617, "lon": -3.7194504}, {"type": "node", "id": 2448267215, "lat": 40.4412004, "lon": -3.7196869, "tags": {"entrance": "yes", "name": "Puerta C"}}, {"type": "node", "id": 2448267220, "lat": 40.4414535, "lon": -3.7190466}, {"type": "node", "id": 2448267224, "lat": 40.4412311, "lon": -3.7194241, "tags": {"entrance": "yes", "name": "Puerta D"}}, {"type": "node", "id": 2448293750, "lat": 40.4405183, "lon": -3.7182711}, {"type": "node", "id": 2448293751, "lat": 40.4417803, "lon": -3.7189147}, {"type": "node", "id": 2448293752, "lat": 40.441928, "lon": -3.7189915}, {"type": "node", "id": 2448293758, "lat": 40.4418595, "lon": -3.7192971, "tags": {"access": "private", "barrier": "lift_gate", "entrance": "yes"}}, {"type": "node", "id": 2448293759, "lat": 40.4417213, "lon": -3.7190794}, {"type": "node", "id": 2448293760, "lat": 40.4411343, "lon": -3.7185781}, {"type": "node", "id": 2448293761, "lat": 40.4412143, "lon": -3.718554}, {"type": "node", "id": 2448293762, "lat": 40.4403845, "lon": -3.7182285}, {"type": "node", "id": 2448293763, "lat": 40.4414504, "lon": -3.7187447}, {"type": "node", "id": 2448293769, "lat": 40.4416831, "lon": -3.719061}, {"type": "node", "id": 2448293770, "lat": 40.4411501, "lon": -3.7185437}, {"type": "node", "id": 2448293771, "lat": 40.440265, "lon": -3.718248}, {"type": "node", "id": 2448293772, "lat": 40.4417554, "lon": -3.7189909}, {"type": "node", "id": 2448293773, "lat": 40.440452, "lon": -3.7182396}, {"type": "node", "id": 2448293782, "lat": 40.4411477, "lon": -3.7186139}, {"type": "node", "id": 2448293783, "lat": 40.4411806, "lon": -3.7185425}, {"type": "node", "id": 2448293784, "lat": 40.440304, "lon": -3.7182289}, {"type": "node", "id": 2448352620, "lat": 40.4422643, "lon": -3.7195208}, {"type": "node", "id": 2448352622, "lat": 40.4430042, "lon": -3.7195422}, {"type": "node", "id": 2448352623, "lat": 40.4425709, "lon": -3.7193123}, {"type": "node", "id": 2448352624, "lat": 40.4422508, "lon": -3.7191384}, {"type": "node", "id": 2448352625, "lat": 40.442388, "lon": -3.7193733}, {"type": "node", "id": 2448352626, "lat": 40.443054, "lon": -3.7195947}, {"type": "node", "id": 2448352627, "lat": 40.4422674, "lon": -3.7194707}, {"type": "node", "id": 2448352628, "lat": 40.4424809, "lon": -3.7194345}, {"type": "node", "id": 2448352629, "lat": 40.4424289, "lon": -3.7195537}, {"type": "node", "id": 2448352630, "lat": 40.4420427, "lon": -3.7190436}, {"type": "node", "id": 2448352631, "lat": 40.442239, "lon": -3.7195188}, {"type": "node", "id": 2448352632, "lat": 40.4430403, "lon": -3.7195554}, {"type": "node", "id": 2448352633, "lat": 40.4428112, "lon": -3.7194324}, {"type": "node", "id": 2448352635, "lat": 40.4425361, "lon": -3.7193602}, {"type": "node", "id": 2448352636, "lat": 40.4420379, "lon": -3.7190812}, {"type": "node", "id": 2448352637, "lat": 40.4418948, "lon": -3.7192313}, {"type": "node", "id": 2448352638, "lat": 40.4422785, "lon": -3.719502}, {"type": "node", "id": 2448352639, "lat": 40.4430348, "lon": -3.7196063}, {"type": "node", "id": 2448352640, "lat": 40.4426886, "lon": -3.71948}, {"type": "node", "id": 2448352641, "lat": 40.4420664, "lon": -3.7190456}, {"type": "node", "id": 2448352643, "lat": 40.4419222, "lon": -3.7191801}, {"type": "node", "id": 2448352644, "lat": 40.4430617, "lon": -3.7195743}, {"type": "node", "id": 2448352645, "lat": 40.4429542, "lon": -3.7195323}, {"type": "node", "id": 2448352646, "lat": 40.4425264, "lon": -3.7194444}, {"type": "node", "id": 2448352648, "lat": 40.4420294, "lon": -3.7190607}, {"type": "node", "id": 2450250433, "lat": 40.4422836, "lon": -3.7197843}, {"type": "node", "id": 2450250434, "lat": 40.4403499, "lon": -3.7182225}, {"type": "node", "id": 2450250435, "lat": 40.4422933, "lon": -3.7199708}, {"type": "node", "id": 2450658326, "lat": 40.4378097, "lon": -3.7208981}, {"type": "node", "id": 2450658327, "lat": 40.4380961, "lon": -3.7213683}, {"type": "node", "id": 2450658329, "lat": 40.4377251, "lon": -3.7213403}, {"type": "node", "id": 2450658330, "lat": 40.4389938, "lon": -3.7214811}, {"type": "node", "id": 2450658332, "lat": 40.4380092, "lon": -3.7212132}, {"type": "node", "id": 2450658333, "lat": 40.4381696, "lon": -3.7213472}, {"type": "node", "id": 2450658334, "lat": 40.4408325, "lon": -3.7220597}, {"type": "node", "id": 2450658336, "lat": 40.439537, "lon": -3.7215344}, {"type": "node", "id": 2450658337, "lat": 40.4386216, "lon": -3.7212928}, {"type": "node", "id": 2450658338, "lat": 40.439123, "lon": -3.7215729}, {"type": "node", "id": 2450658339, "lat": 40.437512, "lon": -3.7213421}, {"type": "node", "id": 2450658340, "lat": 40.438007, "lon": -3.7213094}, {"type": "node", "id": 2450658341, "lat": 40.44108, "lon": -3.7222098}, {"type": "node", "id": 2450658342, "lat": 40.4377888, "lon": -3.7215781}, {"type": "node", "id": 2450658343, "lat": 40.4380746, "lon": -3.7213535}, {"type": "node", "id": 2450658344, "lat": 40.4393752, "lon": -3.7214733}, {"type": "node", "id": 2450658345, "lat": 40.4376666, "lon": -3.721339}, {"type": "node", "id": 2450658346, "lat": 40.4376678, "lon": -3.7211216}, {"type": "node", "id": 2450658347, "lat": 40.4388116, "lon": -3.7213923}, {"type": "node", "id": 2450658348, "lat": 40.4380285, "lon": -3.7211193}, {"type": "node", "id": 2450658349, "lat": 40.4411942, "lon": -3.7221742}, {"type": "node", "id": 2450658350, "lat": 40.4394798, "lon": -3.7216101}, {"type": "node", "id": 2450658351, "lat": 40.4377356, "lon": -3.7211415}, {"type": "node", "id": 2450658352, "lat": 40.4383585, "lon": -3.7212356}, {"type": "node", "id": 2450658353, "lat": 40.4398164, "lon": -3.7211972}, {"type": "node", "id": 2450658354, "lat": 40.4375114, "lon": -3.7212233}, {"type": "node", "id": 2450658355, "lat": 40.4380071, "lon": -3.7213068}, {"type": "node", "id": 2450658356, "lat": 40.4397958, "lon": -3.7212385}, {"type": "node", "id": 2450658357, "lat": 40.439184, "lon": -3.7216841}, {"type": "node", "id": 2450658358, "lat": 40.4380212, "lon": -3.7213849}, {"type": "node", "id": 2450658359, "lat": 40.4409566, "lon": -3.7221634}, {"type": "node", "id": 2452121876, "lat": 40.4392427, "lon": -3.7204604}, {"type": "node", "id": 2452121877, "lat": 40.4392003, "lon": -3.7211035}, {"type": "node", "id": 2452121878, "lat": 40.4389692, "lon": -3.7218824}, {"type": "node", "id": 2452121879, "lat": 40.4389186, "lon": -3.7202313}, {"type": "node", "id": 2452121880, "lat": 40.4391962, "lon": -3.7207929}, {"type": "node", "id": 2452121881, "lat": 40.4391321, "lon": -3.7212875}, {"type": "node", "id": 2452121882, "lat": 40.4391689, "lon": -3.720639}, {"type": "node", "id": 2452121883, "lat": 40.439301, "lon": -3.721906}, {"type": "node", "id": 2452121884, "lat": 40.4389807, "lon": -3.7230257}, {"type": "node", "id": 2452121885, "lat": 40.4392211, "lon": -3.7209317}, {"type": "node", "id": 2452121886, "lat": 40.4390924, "lon": -3.722066}, {"type": "node", "id": 2452121887, "lat": 40.4387489, "lon": -3.7215293}, {"type": "node", "id": 2452121888, "lat": 40.4391464, "lon": -3.7211879}, {"type": "node", "id": 2452121889, "lat": 40.4391251, "lon": -3.7217501}, {"type": "node", "id": 2453487276, "lat": 40.439645, "lon": -3.7201185, "tags": {"entrance": "yes", "name": "Puerta K"}}, {"type": "node", "id": 2453487277, "lat": 40.4394263, "lon": -3.7204873, "tags": {"check_date:crossing": "2023-06-11", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2453487278, "lat": 40.4396154, "lon": -3.7200939}, {"type": "node", "id": 2454250015, "lat": 40.4394899, "lon": -3.72171}, {"type": "node", "id": 2454250017, "lat": 40.4390593, "lon": -3.7220741}, {"type": "node", "id": 2454251085, "lat": 40.4390226, "lon": -3.7211729}, {"type": "node", "id": 2454251086, "lat": 40.4388423, "lon": -3.7210595}, {"type": "node", "id": 2454251087, "lat": 40.4391753, "lon": -3.7211426}, {"type": "node", "id": 2454256444, "lat": 40.4396842, "lon": -3.7220349}, {"type": "node", "id": 2454256445, "lat": 40.4393189, "lon": -3.7224378}, {"type": "node", "id": 2454256447, "lat": 40.4412188, "lon": -3.7220599}, {"type": "node", "id": 2454256448, "lat": 40.4386879, "lon": -3.722618}, {"type": "node", "id": 2454256449, "lat": 40.4400677, "lon": -3.7218428}, {"type": "node", "id": 2454256450, "lat": 40.4399474, "lon": -3.7218614}, {"type": "node", "id": 2454256451, "lat": 40.4398497, "lon": -3.7219402}, {"type": "node", "id": 2454256452, "lat": 40.4389279, "lon": -3.7228887}, {"type": "node", "id": 2454256453, "lat": 40.4388668, "lon": -3.7229697}, {"type": "node", "id": 2454256454, "lat": 40.4383225, "lon": -3.72346}, {"type": "node", "id": 2454256455, "lat": 40.4407221, "lon": -3.7222966}, {"type": "node", "id": 2454256456, "lat": 40.4401827, "lon": -3.7218447}, {"type": "node", "id": 2454256457, "lat": 40.4392268, "lon": -3.7225697}, {"type": "node", "id": 2454256459, "lat": 40.4390821, "lon": -3.7227142}, {"type": "node", "id": 2454256460, "lat": 40.4390117, "lon": -3.7227596}, {"type": "node", "id": 2454256462, "lat": 40.4411302, "lon": -3.7223812}, {"type": "node", "id": 2454256464, "lat": 40.4410061, "lon": -3.7224349}, {"type": "node", "id": 2454256466, "lat": 40.440883, "lon": -3.7223912}, {"type": "node", "id": 2454259793, "lat": 40.4385164, "lon": -3.7230253}, {"type": "node", "id": 2454259802, "lat": 40.4381453, "lon": -3.723109}, {"type": "node", "id": 2454259803, "lat": 40.4387454, "lon": -3.7230785}, {"type": "node", "id": 2454259805, "lat": 40.4385583, "lon": -3.7227357}, {"type": "node", "id": 2454259807, "lat": 40.4383892, "lon": -3.7231369}, {"type": "node", "id": 2454259809, "lat": 40.4382987, "lon": -3.7229716}, {"type": "node", "id": 2454259815, "lat": 40.4382307, "lon": -3.7232782}, {"type": "node", "id": 2454259818, "lat": 40.4386547, "lon": -3.7229039}, {"type": "node", "id": 2454259820, "lat": 40.4384251, "lon": -3.7228567}, {"type": "node", "id": 2454259822, "lat": 40.4384801, "lon": -3.7233162}, {"type": "node", "id": 2454259829, "lat": 40.4387782, "lon": -3.7227955}, {"type": "node", "id": 2454259830, "lat": 40.4386067, "lon": -3.7232026}, {"type": "node", "id": 2454261067, "lat": 40.439348, "lon": -3.7204215}, {"type": "node", "id": 2454261068, "lat": 40.4394051, "lon": -3.7203106, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2454261069, "lat": 40.4395716, "lon": -3.7199253}, {"type": "node", "id": 2454261070, "lat": 40.4395714, "lon": -3.7199811}, {"type": "node", "id": 2454261071, "lat": 40.4394886, "lon": -3.7198757}, {"type": "node", "id": 2454261072, "lat": 40.4395188, "lon": -3.7198734}, {"type": "node", "id": 2454261073, "lat": 40.4395485, "lon": -3.7198874}, {"type": "node", "id": 2454261074, "lat": 40.4394571, "lon": -3.7198852}, {"type": "node", "id": 2454264232, "lat": 40.4377166, "lon": -3.7217132}, {"type": "node", "id": 2454264233, "lat": 40.437727, "lon": -3.7216425}, {"type": "node", "id": 2454264234, "lat": 40.4380437, "lon": -3.7213479}, {"type": "node", "id": 2454264235, "lat": 40.437712, "lon": -3.7216744}, {"type": "node", "id": 2459056915, "lat": 40.4397085, "lon": -3.7193753}, {"type": "node", "id": 2459056916, "lat": 40.4395426, "lon": -3.7195988}, {"type": "node", "id": 2459056917, "lat": 40.4395446, "lon": -3.7195828}, {"type": "node", "id": 2459056918, "lat": 40.439663, "lon": -3.7193371}, {"type": "node", "id": 2459056919, "lat": 40.4399499, "lon": -3.7187729}, {"type": "node", "id": 2459056920, "lat": 40.4400117, "lon": -3.7187568}, {"type": "node", "id": 2459056921, "lat": 40.4400879, "lon": -3.7184699}, {"type": "node", "id": 2459056922, "lat": 40.4395463, "lon": -3.7196296}, {"type": "node", "id": 2459056923, "lat": 40.4395432, "lon": -3.719615}, {"type": "node", "id": 2459056924, "lat": 40.4398089, "lon": -3.7190459}, {"type": "node", "id": 2459056925, "lat": 40.4399183, "lon": -3.718812}, {"type": "node", "id": 2459056926, "lat": 40.4398535, "lon": -3.7190814}, {"type": "node", "id": 2459056927, "lat": 40.4395777, "lon": -3.7196538}, {"type": "node", "id": 2459088434, "lat": 40.438014, "lon": -3.7213467}, {"type": "node", "id": 2459163120, "lat": 40.4398257, "lon": -3.7192698, "tags": {"entrance": "yes", "name": "Urgencias"}}, {"type": "node", "id": 2462922514, "lat": 40.4399337, "lon": -3.718717}, {"type": "node", "id": 2462922515, "lat": 40.4399123, "lon": -3.7187265}, {"type": "node", "id": 2462922516, "lat": 40.4398352, "lon": -3.7187}, {"type": "node", "id": 2462922518, "lat": 40.4397163, "lon": -3.7185913}, {"type": "node", "id": 2462922519, "lat": 40.4394881, "lon": -3.7195847}, {"type": "node", "id": 2462922527, "lat": 40.4397248, "lon": -3.718982}, {"type": "node", "id": 2462922533, "lat": 40.4397155, "lon": -3.7182652}, {"type": "node", "id": 2462922535, "lat": 40.4395806, "lon": -3.719271}, {"type": "node", "id": 2462922537, "lat": 40.4394335, "lon": -3.7195723}, {"type": "node", "id": 2462922539, "lat": 40.4398984, "lon": -3.7187498}, {"type": "node", "id": 2462922543, "lat": 40.4397665, "lon": -3.7190144}, {"type": "node", "id": 2462922545, "lat": 40.4400748, "lon": -3.7182989}, {"type": "node", "id": 2462922547, "lat": 40.439547, "lon": -3.7197253, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2462922549, "lat": 40.4396207, "lon": -3.7193058}, {"type": "node", "id": 2462922551, "lat": 40.4398426, "lon": -3.7182985}, {"type": "node", "id": 2463314693, "lat": 40.4386915, "lon": -3.720307}, {"type": "node", "id": 2463314694, "lat": 40.4387237, "lon": -3.720266}, {"type": "node", "id": 2463314695, "lat": 40.4389494, "lon": -3.719909, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 2463314696, "lat": 40.4399107, "lon": -3.7210087}, {"type": "node", "id": 2463314697, "lat": 40.4386539, "lon": -3.7203164}, {"type": "node", "id": 2463314698, "lat": 40.4389797, "lon": -3.7198729}, {"type": "node", "id": 2463314699, "lat": 40.4390273, "lon": -3.7198469}, {"type": "node", "id": 2466305329, "lat": 40.4404471, "lon": -3.7155504, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466305332, "lat": 40.4406616, "lon": -3.7157906, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2466312888, "lat": 40.4428686, "lon": -3.7122245, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312889, "lat": 40.4423951, "lon": -3.7126875}, {"type": "node", "id": 2466312890, "lat": 40.4426442, "lon": -3.7131165, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2466312891, "lat": 40.4454671, "lon": -3.7116838}, {"type": "node", "id": 2466312892, "lat": 40.4457734, "lon": -3.7104851}, {"type": "node", "id": 2466312893, "lat": 40.444329, "lon": -3.7098345}, {"type": "node", "id": 2466312894, "lat": 40.4441996, "lon": -3.7096566}, {"type": "node", "id": 2466312895, "lat": 40.4462897, "lon": -3.7067003}, {"type": "node", "id": 2466312896, "lat": 40.4424237, "lon": -3.7127782}, {"type": "node", "id": 2466312897, "lat": 40.4461856, "lon": -3.7066386}, {"type": "node", "id": 2466312898, "lat": 40.4424011, "lon": -3.7129132, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312899, "lat": 40.4438899, "lon": -3.7107067, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466312900, "lat": 40.4431385, "lon": -3.7115251, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466312901, "lat": 40.4464486, "lon": -3.7070226}, {"type": "node", "id": 2466312902, "lat": 40.4457119, "lon": -3.7076238, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2466312903, "lat": 40.4426256, "lon": -3.7129016}, {"type": "node", "id": 2466312904, "lat": 40.4423481, "lon": -3.7126124}, {"type": "node", "id": 2466312905, "lat": 40.4460244, "lon": -3.7066493}, {"type": "node", "id": 2466312906, "lat": 40.4423021, "lon": -3.7125737, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689585, "lat": 40.4479543, "lon": -3.6955893, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689592, "lat": 40.4420378, "lon": -3.6859235, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2466689596, "lat": 40.4460106, "lon": -3.6880226}, {"type": "node", "id": 2466689601, "lat": 40.45081, "lon": -3.6952874, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2466689608, "lat": 40.4509586, "lon": -3.6951181, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2466689611, "lat": 40.4460291, "lon": -3.6883759}, {"type": "node", "id": 2466689613, "lat": 40.4418339, "lon": -3.6834663, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466689617, "lat": 40.4431794, "lon": -3.6839083}, {"type": "node", "id": 2466689631, "lat": 40.4458439, "lon": -3.6874739, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2466689651, "lat": 40.448039, "lon": -3.6953927, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2478280851, "lat": 40.436698, "lon": -3.7214385}, {"type": "node", "id": 2478280862, "lat": 40.4364732, "lon": -3.7208157}, {"type": "node", "id": 2478280868, "lat": 40.4365143, "lon": -3.7209184}, {"type": "node", "id": 2478280869, "lat": 40.436745, "lon": -3.7215698}, {"type": "node", "id": 2478280870, "lat": 40.4367884, "lon": -3.7216798}, {"type": "node", "id": 2478280871, "lat": 40.436545, "lon": -3.7210008}, {"type": "node", "id": 2479576398, "lat": 40.43406, "lon": -3.7179121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2480627225, "lat": 40.4363949, "lon": -3.7215972}, {"type": "node", "id": 2480627226, "lat": 40.4365624, "lon": -3.7217721}, {"type": "node", "id": 2480627227, "lat": 40.4361077, "lon": -3.7211876}, {"type": "node", "id": 2480627228, "lat": 40.4365232, "lon": -3.7218175}, {"type": "node", "id": 2480627230, "lat": 40.4361814, "lon": -3.7214249}, {"type": "node", "id": 2480629206, "lat": 40.4340253, "lon": -3.7188251}, {"type": "node", "id": 2480629208, "lat": 40.4340387, "lon": -3.7187159, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 2493539661, "lat": 40.4373325, "lon": -3.7239245}, {"type": "node", "id": 2493539664, "lat": 40.4361376, "lon": -3.7209545, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 2493539665, "lat": 40.4374135, "lon": -3.7237364}, {"type": "node", "id": 2493539670, "lat": 40.4374882, "lon": -3.7238819}, {"type": "node", "id": 2493539671, "lat": 40.4376136, "lon": -3.7240797}, {"type": "node", "id": 2493539678, "lat": 40.437979, "lon": -3.724635}, {"type": "node", "id": 2493539679, "lat": 40.4374022, "lon": -3.7250258}, {"type": "node", "id": 2493539683, "lat": 40.4359315, "lon": -3.7274341, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2493539684, "lat": 40.4360772, "lon": -3.7208601, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 2493539685, "lat": 40.4375237, "lon": -3.723951}, {"type": "node", "id": 2493539693, "lat": 40.4375414, "lon": -3.7250208}, {"type": "node", "id": 2493539694, "lat": 40.4373175, "lon": -3.7236425, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2493539698, "lat": 40.4376768, "lon": -3.7249863}, {"type": "node", "id": 2493539699, "lat": 40.4361966, "lon": -3.7210468, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 2493539704, "lat": 40.4377054, "lon": -3.7242112}, {"type": "node", "id": 2493553178, "lat": 40.4329039, "lon": -3.7069566, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493553179, "lat": 40.433124, "lon": -3.7054438, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 2493553189, "lat": 40.4327368, "lon": -3.707034}, {"type": "node", "id": 2493553207, "lat": 40.4325875, "lon": -3.7070984, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493553208, "lat": 40.4317647, "lon": -3.7073036}, {"type": "node", "id": 2493553209, "lat": 40.4327764, "lon": -3.7071566}, {"type": "node", "id": 2493553212, "lat": 40.4328071, "lon": -3.7071452}, {"type": "node", "id": 2493553217, "lat": 40.4328165, "lon": -3.7070322, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 2493553219, "lat": 40.4325922, "lon": -3.7071838}, {"type": "node", "id": 2493553221, "lat": 40.4325834, "lon": -3.7070231}, {"type": "node", "id": 2493553227, "lat": 40.4328938, "lon": -3.7071826, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493553247, "lat": 40.4327821, "lon": -3.7070111}, {"type": "node", "id": 2493553251, "lat": 40.4327461, "lon": -3.7071439, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 2493613389, "lat": 40.4495608, "lon": -3.7099815}, {"type": "node", "id": 2493613399, "lat": 40.4496469, "lon": -3.7100161, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2493627463, "lat": 40.4470367, "lon": -3.7104906, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2493633627, "lat": 40.4428783, "lon": -3.7125269, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2493633628, "lat": 40.4461462, "lon": -3.7104641, "tags": {"traffic_calming": "hump"}}, {"type": "node", "id": 2493633629, "lat": 40.4466267, "lon": -3.7104386, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2493963663, "lat": 40.4501086, "lon": -3.6887637}, {"type": "node", "id": 2493963671, "lat": 40.4506768, "lon": -3.6886891}, {"type": "node", "id": 2493963716, "lat": 40.4519361, "lon": -3.6885691}, {"type": "node", "id": 2503134757, "lat": 40.4413264, "lon": -3.7223496}, {"type": "node", "id": 2503134759, "lat": 40.4411937, "lon": -3.7221911}, {"type": "node", "id": 2503134762, "lat": 40.441577, "lon": -3.7243218}, {"type": "node", "id": 2503134764, "lat": 40.4417445, "lon": -3.7234446}, {"type": "node", "id": 2503134766, "lat": 40.4416729, "lon": -3.7231827}, {"type": "node", "id": 2503134768, "lat": 40.4415201, "lon": -3.7228591}, {"type": "node", "id": 2506473194, "lat": 40.4202782, "lon": -3.6880674}, {"type": "node", "id": 2506473199, "lat": 40.4205607, "lon": -3.6886534, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 2506590865, "lat": 40.4460709, "lon": -3.6877096}, {"type": "node", "id": 2506590867, "lat": 40.4461188, "lon": -3.6875235}, {"type": "node", "id": 2508927633, "lat": 40.4201066, "lon": -3.6926812, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2508927634, "lat": 40.4199462, "lon": -3.6924652, "tags": {"amenity": "parking_entrance", "name": "Aparcamiento Recoletos"}}, {"type": "node", "id": 2512282982, "lat": 40.4372413, "lon": -3.7213619}, {"type": "node", "id": 2512282983, "lat": 40.4372543, "lon": -3.7219266}, {"type": "node", "id": 2525814068, "lat": 40.4342404, "lon": -3.7144104, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2525814070, "lat": 40.4352793, "lon": -3.7143403, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2525814071, "lat": 40.4377057, "lon": -3.7142354, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814073, "lat": 40.4353658, "lon": -3.7142282, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2525814076, "lat": 40.4374175, "lon": -3.7143151}, {"type": "node", "id": 2525814085, "lat": 40.4365186, "lon": -3.7142617, "tags": {"highway": "crossing"}}, {"type": "node", "id": 2525814094, "lat": 40.4342891, "lon": -3.7144073, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814117, "lat": 40.4330561, "lon": -3.7145423, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814124, "lat": 40.4374149, "lon": -3.7142054}, {"type": "node", "id": 2525814138, "lat": 40.4364143, "lon": -3.7142698, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2525814141, "lat": 40.4353222, "lon": -3.7143382, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2528643105, "lat": 40.4460617, "lon": -3.6909921}, {"type": "node", "id": 2528643108, "lat": 40.4462558, "lon": -3.6910273, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2531862854, "lat": 40.4444317, "lon": -3.7261777, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2533387846, "lat": 40.4524508, "lon": -3.69939, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 2533387853, "lat": 40.4522562, "lon": -3.6965601, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2533399084, "lat": 40.4459957, "lon": -3.6885686}, {"type": "node", "id": 2534882389, "lat": 40.4363364, "lon": -3.7193072}, {"type": "node", "id": 2534882390, "lat": 40.437092, "lon": -3.7195805}, {"type": "node", "id": 2534882391, "lat": 40.4372829, "lon": -3.7195206}, {"type": "node", "id": 2534882392, "lat": 40.4373686, "lon": -3.7195365}, {"type": "node", "id": 2540742104, "lat": 40.4330278, "lon": -3.7117198}, {"type": "node", "id": 2551347562, "lat": 40.4283951, "lon": -3.7133102, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2581269645, "lat": 40.4478329, "lon": -3.7251672}, {"type": "node", "id": 2581269658, "lat": 40.4472621, "lon": -3.7249622}, {"type": "node", "id": 2584038761, "lat": 40.4278867, "lon": -3.7095194}, {"type": "node", "id": 2584038764, "lat": 40.4273472, "lon": -3.7094613, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2584038766, "lat": 40.4273837, "lon": -3.7084846}, {"type": "node", "id": 2584444267, "lat": 40.4350669, "lon": -3.6893247}, {"type": "node", "id": 2584444268, "lat": 40.4350021, "lon": -3.6892793}, {"type": "node", "id": 2584444269, "lat": 40.4348182, "lon": -3.6891754}, {"type": "node", "id": 2584444270, "lat": 40.4349279, "lon": -3.6892357, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2584445035, "lat": 40.4257221, "lon": -3.6899689}, {"type": "node", "id": 2584445036, "lat": 40.4261713, "lon": -3.6898655}, {"type": "node", "id": 2584446944, "lat": 40.4202822, "lon": -3.6922011, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2615210656, "lat": 40.4417295, "lon": -3.6960163}, {"type": "node", "id": 2615463410, "lat": 40.4201673, "lon": -3.6891606}, {"type": "node", "id": 2620197150, "lat": 40.44972, "lon": -3.7178272}, {"type": "node", "id": 2620197152, "lat": 40.4497875, "lon": -3.7178053}, {"type": "node", "id": 2620197153, "lat": 40.4499704, "lon": -3.7174098}, {"type": "node", "id": 2620197155, "lat": 40.449669, "lon": -3.7177923, "tags": {"amenity": "parking_entrance", "maxheight": "3", "parking": "underground"}}, {"type": "node", "id": 2623662123, "lat": 40.451648, "lon": -3.6906635, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 2641385220, "lat": 40.4475949, "lon": -3.6914356}, {"type": "node", "id": 2641385221, "lat": 40.4468218, "lon": -3.6913165}, {"type": "node", "id": 2656162699, "lat": 40.4391938, "lon": -3.7007573}, {"type": "node", "id": 2661689879, "lat": 40.4345018, "lon": -3.7075499}, {"type": "node", "id": 2661689880, "lat": 40.4338999, "lon": -3.7076514}, {"type": "node", "id": 2661763376, "lat": 40.4380207, "lon": -3.7064353}, {"type": "node", "id": 2661763378, "lat": 40.4379865, "lon": -3.7056956}, {"type": "node", "id": 2671594369, "lat": 40.4471697, "lon": -3.6913253}, {"type": "node", "id": 2671594370, "lat": 40.4473229, "lon": -3.6912219}, {"type": "node", "id": 2673302088, "lat": 40.4392245, "lon": -3.7158884, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2673302089, "lat": 40.4397654, "lon": -3.7168077, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2673345634, "lat": 40.4469319, "lon": -3.7050309, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 2679640383, "lat": 40.4355118, "lon": -3.6866882, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2679640384, "lat": 40.4355174, "lon": -3.6865882}, {"type": "node", "id": 2679640385, "lat": 40.4356406, "lon": -3.6864934, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2679640386, "lat": 40.4356558, "lon": -3.6869408}, {"type": "node", "id": 2679640387, "lat": 40.4357104, "lon": -3.6870954}, {"type": "node", "id": 2679640388, "lat": 40.4357478, "lon": -3.6870285, "tags": {"access": "yes", "addr:city": "Madrid", "addr:housenumber": "3", "addr:postcode": "28006", "addr:street": "Calle de los Hermanos B\u00e9cquer", "amenity": "parking", "capacity:charging": "15", "fee": "yes", "layer": "-1", "operator": "Serrano Park I", "parking": "underground"}}, {"type": "node", "id": 2679640389, "lat": 40.4357732, "lon": -3.6869339}, {"type": "node", "id": 2679640390, "lat": 40.4359868, "lon": -3.6872333}, {"type": "node", "id": 2679640391, "lat": 40.4360655, "lon": -3.6873211}, {"type": "node", "id": 2679640392, "lat": 40.4361055, "lon": -3.6875356}, {"type": "node", "id": 2679640393, "lat": 40.4361237, "lon": -3.6872632}, {"type": "node", "id": 2679640394, "lat": 40.4361468, "lon": -3.6876108}, {"type": "node", "id": 2679640395, "lat": 40.4361683, "lon": -3.6873983}, {"type": "node", "id": 2679640396, "lat": 40.436173, "lon": -3.687499}, {"type": "node", "id": 2679640397, "lat": 40.4362629, "lon": -3.687559}, {"type": "node", "id": 2679640416, "lat": 40.4453036, "lon": -3.6848584, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 2684627325, "lat": 40.4461985, "lon": -3.7041122, "tags": {"access": "yes", "addr:city": "Madrid", "addr:housename": "Azafata", "addr:housenumber": "95", "addr:street": "Calle de Bravo Murillo", "amenity": "parking", "fee": "yes", "name": "Azafata", "parking": "underground"}}, {"type": "node", "id": 2685986776, "lat": 40.4275891, "lon": -3.6958572}, {"type": "node", "id": 2685986777, "lat": 40.4276541, "lon": -3.6955838}, {"type": "node", "id": 2685986817, "lat": 40.4278262, "lon": -3.69562}, {"type": "node", "id": 2685986828, "lat": 40.4278333, "lon": -3.6961661}, {"type": "node", "id": 2685986907, "lat": 40.4278957, "lon": -3.6957316}, {"type": "node", "id": 2685986909, "lat": 40.4279343, "lon": -3.6958939}, {"type": "node", "id": 2685986911, "lat": 40.4279486, "lon": -3.696004}, {"type": "node", "id": 2685986913, "lat": 40.4280475, "lon": -3.6957856}, {"type": "node", "id": 2687649521, "lat": 40.4368982, "lon": -3.7028907}, {"type": "node", "id": 2687649522, "lat": 40.4371162, "lon": -3.7025713}, {"type": "node", "id": 2687649523, "lat": 40.4371571, "lon": -3.7028931}, {"type": "node", "id": 2687649524, "lat": 40.4372836, "lon": -3.702728, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2688019415, "lat": 40.4385012, "lon": -3.6842641}, {"type": "node", "id": 2688019416, "lat": 40.4380238, "lon": -3.6849579}, {"type": "node", "id": 2688019417, "lat": 40.43772, "lon": -3.6846888}, {"type": "node", "id": 2688019418, "lat": 40.4376995, "lon": -3.6841934}, {"type": "node", "id": 2688019419, "lat": 40.4376826, "lon": -3.6838412}, {"type": "node", "id": 2688019420, "lat": 40.4377288, "lon": -3.6849337}, {"type": "node", "id": 2688019425, "lat": 40.4382272, "lon": -3.6845402}, {"type": "node", "id": 2688019426, "lat": 40.4383131, "lon": -3.6843814}, {"type": "node", "id": 2688019427, "lat": 40.438822, "lon": -3.6834699}, {"type": "node", "id": 2688019428, "lat": 40.4388906, "lon": -3.683273, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2688334675, "lat": 40.4282543, "lon": -3.6950398}, {"type": "node", "id": 2692394188, "lat": 40.4454894, "lon": -3.7043613, "tags": {"barrier": "gate", "bicycle": "no", "foot": "no"}}, {"type": "node", "id": 2759785958, "lat": 40.4493557, "lon": -3.71686, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "no"}}, {"type": "node", "id": 2759785960, "lat": 40.4493087, "lon": -3.7168788}, {"type": "node", "id": 2759785962, "lat": 40.4492761, "lon": -3.7168976}, {"type": "node", "id": 2759785964, "lat": 40.4492577, "lon": -3.7169405}, {"type": "node", "id": 2759785965, "lat": 40.4492414, "lon": -3.7170129}, {"type": "node", "id": 2759785967, "lat": 40.4492312, "lon": -3.7171202}, {"type": "node", "id": 2759785969, "lat": 40.4491455, "lon": -3.7188837}, {"type": "node", "id": 2759785973, "lat": 40.4490883, "lon": -3.7193284}, {"type": "node", "id": 2759785974, "lat": 40.44917, "lon": -3.7193813}, {"type": "node", "id": 2759785976, "lat": 40.4492092, "lon": -3.7194353}, {"type": "node", "id": 2759785979, "lat": 40.4499415, "lon": -3.7201109}, {"type": "node", "id": 2759785984, "lat": 40.4500517, "lon": -3.7202021}, {"type": "node", "id": 2759785987, "lat": 40.4501442, "lon": -3.7202345}, {"type": "node", "id": 2759785989, "lat": 40.4506798, "lon": -3.719686}, {"type": "node", "id": 2759785993, "lat": 40.4508743, "lon": -3.7195369}, {"type": "node", "id": 2759785995, "lat": 40.45122, "lon": -3.7192816}, {"type": "node", "id": 2759785997, "lat": 40.4513814, "lon": -3.7191171}, {"type": "node", "id": 2759786000, "lat": 40.4516947, "lon": -3.7187455}, {"type": "node", "id": 2759786002, "lat": 40.4513437, "lon": -3.7192389}, {"type": "node", "id": 2759786010, "lat": 40.4510431, "lon": -3.7194394, "tags": {"bus": "yes", "highway": "bus_stop", "name": "Colegio Mayor Alfonso X El Sabio", "operator": "EMT Madrid", "public_transport": "platform", "ref": "3281", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 2759786014, "lat": 40.4515374, "lon": -3.7184494}, {"type": "node", "id": 2759786017, "lat": 40.4517118, "lon": -3.7186331}, {"type": "node", "id": 2759786018, "lat": 40.4517428, "lon": -3.7186453}, {"type": "node", "id": 2759786020, "lat": 40.4517691, "lon": -3.7186433}, {"type": "node", "id": 2759786022, "lat": 40.4517907, "lon": -3.7186087}, {"type": "node", "id": 2759786023, "lat": 40.4518449, "lon": -3.7185295}, {"type": "node", "id": 2759786026, "lat": 40.4519299, "lon": -3.7183912}, {"type": "node", "id": 2759786028, "lat": 40.4520243, "lon": -3.7182063}, {"type": "node", "id": 2759786029, "lat": 40.4521341, "lon": -3.7179481}, {"type": "node", "id": 2759786031, "lat": 40.4522053, "lon": -3.717694}, {"type": "node", "id": 2759786033, "lat": 40.4522687, "lon": -3.7174297}, {"type": "node", "id": 2759786035, "lat": 40.4522718, "lon": -3.7172773}, {"type": "node", "id": 2759786037, "lat": 40.4522362, "lon": -3.7171472}, {"type": "node", "id": 2759786039, "lat": 40.4521697, "lon": -3.7170476}, {"type": "node", "id": 2759786041, "lat": 40.4520614, "lon": -3.7169805}, {"type": "node", "id": 2759786042, "lat": 40.4519686, "lon": -3.7169846}, {"type": "node", "id": 2759786045, "lat": 40.451735, "lon": -3.7170618}, {"type": "node", "id": 2759786047, "lat": 40.4514613, "lon": -3.7171574}, {"type": "node", "id": 2759786048, "lat": 40.4513808, "lon": -3.7171899}, {"type": "node", "id": 2759786050, "lat": 40.4513143, "lon": -3.717198}, {"type": "node", "id": 2759786052, "lat": 40.4512045, "lon": -3.717194}, {"type": "node", "id": 2759786054, "lat": 40.4511194, "lon": -3.7171736}, {"type": "node", "id": 2759786056, "lat": 40.4510467, "lon": -3.7171533}, {"type": "node", "id": 2759786058, "lat": 40.450991, "lon": -3.7171025}, {"type": "node", "id": 2759786059, "lat": 40.450923, "lon": -3.7170374}, {"type": "node", "id": 2759786061, "lat": 40.4508503, "lon": -3.7169439}, {"type": "node", "id": 2759786062, "lat": 40.450776, "lon": -3.716826}, {"type": "node", "id": 2759786065, "lat": 40.4507018, "lon": -3.7167264}, {"type": "node", "id": 2759786067, "lat": 40.4506476, "lon": -3.7166654}, {"type": "node", "id": 2759786068, "lat": 40.4505765, "lon": -3.716637}, {"type": "node", "id": 2759786070, "lat": 40.4505022, "lon": -3.7166289}, {"type": "node", "id": 2759786071, "lat": 40.4504295, "lon": -3.7166634}, {"type": "node", "id": 2759786074, "lat": 40.450363, "lon": -3.7167244}, {"type": "node", "id": 2759786076, "lat": 40.45023, "lon": -3.7169663}, {"type": "node", "id": 2759786077, "lat": 40.450169, "lon": -3.7169741}, {"type": "node", "id": 2759786078, "lat": 40.4503198, "lon": -3.7170983}, {"type": "node", "id": 2759786082, "lat": 40.4515439, "lon": -3.7184558}, {"type": "node", "id": 2759786089, "lat": 40.452176, "lon": -3.7177986}, {"type": "node", "id": 2759786103, "lat": 40.451684, "lon": -3.7170796}, {"type": "node", "id": 2823682506, "lat": 40.4359355, "lon": -3.7197745}, {"type": "node", "id": 2827804125, "lat": 40.4253617, "lon": -3.6881034, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2010", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 2834191514, "lat": 40.4325576, "lon": -3.7192543}, {"type": "node", "id": 2834191515, "lat": 40.4326106, "lon": -3.7192933, "tags": {"barrier": "gate", "military": "checkpoint"}}, {"type": "node", "id": 2834191516, "lat": 40.4329189, "lon": -3.7194995}, {"type": "node", "id": 2846389422, "lat": 40.4392062, "lon": -3.68978, "tags": {"barrier": "lift_gate", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 2846389423, "lat": 40.4391427, "lon": -3.6873972}, {"type": "node", "id": 2846389424, "lat": 40.4392676, "lon": -3.6877229}, {"type": "node", "id": 2846389436, "lat": 40.4394583, "lon": -3.6874363, "tags": {"barrier": "gate", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 2846389449, "lat": 40.4397172, "lon": -3.6875625}, {"type": "node", "id": 2846389464, "lat": 40.4400667, "lon": -3.687878}, {"type": "node", "id": 2846389468, "lat": 40.4400215, "lon": -3.688172}, {"type": "node", "id": 2846389490, "lat": 40.4403568, "lon": -3.688311}, {"type": "node", "id": 2846390803, "lat": 40.4405458, "lon": -3.6881514}, {"type": "node", "id": 2846390823, "lat": 40.4407281, "lon": -3.6882268}, {"type": "node", "id": 2846390857, "lat": 40.4413887, "lon": -3.6861602, "tags": {"barrier": "gate", "bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 2846390859, "lat": 40.4414203, "lon": -3.6867971}, {"type": "node", "id": 2846390861, "lat": 40.4414351, "lon": -3.6870987}, {"type": "node", "id": 2846390862, "lat": 40.4414552, "lon": -3.6875067}, {"type": "node", "id": 2846390863, "lat": 40.4414758, "lon": -3.6879172}, {"type": "node", "id": 2846390864, "lat": 40.4414781, "lon": -3.6880407}, {"type": "node", "id": 2846390868, "lat": 40.4415102, "lon": -3.6881161}, {"type": "node", "id": 2846390871, "lat": 40.4415321, "lon": -3.6881626}, {"type": "node", "id": 2846390872, "lat": 40.4415929, "lon": -3.6876016}, {"type": "node", "id": 2846390874, "lat": 40.4416013, "lon": -3.6877635}, {"type": "node", "id": 2846390880, "lat": 40.4416587, "lon": -3.6867722}, {"type": "node", "id": 2846390883, "lat": 40.4416705, "lon": -3.6870716}, {"type": "node", "id": 2846391015, "lat": 40.4419439, "lon": -3.6883467}, {"type": "node", "id": 2846391016, "lat": 40.4419507, "lon": -3.6879697}, {"type": "node", "id": 2846391018, "lat": 40.4419675, "lon": -3.6882646}, {"type": "node", "id": 2846391054, "lat": 40.4421259, "lon": -3.6886052}, {"type": "node", "id": 2846391065, "lat": 40.4421954, "lon": -3.6887547}, {"type": "node", "id": 2862547695, "lat": 40.4266646, "lon": -3.7041581}, {"type": "node", "id": 2880395983, "lat": 40.42573, "lon": -3.700947, "tags": {"barrier": "gate", "opening_hours": "Tu-Su 10:00-20:00; Mo off; Jan 01,Jan 06,May 01,Dec 24,Dec 25,Dec 31 off"}}, {"type": "node", "id": 2880444978, "lat": 40.4407492, "lon": -3.7002128}, {"type": "node", "id": 2880444985, "lat": 40.4408276, "lon": -3.7002474}, {"type": "node", "id": 2887179137, "lat": 40.4468869, "lon": -3.7009254}, {"type": "node", "id": 2887253640, "lat": 40.4499607, "lon": -3.7033076, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2900420502, "lat": 40.4446995, "lon": -3.7209668}, {"type": "node", "id": 2900420503, "lat": 40.4446302, "lon": -3.7210484}, {"type": "node", "id": 2900420504, "lat": 40.4445405, "lon": -3.721122}, {"type": "node", "id": 2900420505, "lat": 40.4444678, "lon": -3.721187}, {"type": "node", "id": 2900420506, "lat": 40.444392, "lon": -3.7212419}, {"type": "node", "id": 2900420507, "lat": 40.4443038, "lon": -3.7212724}, {"type": "node", "id": 2900420508, "lat": 40.444194, "lon": -3.7212785}, {"type": "node", "id": 2900420509, "lat": 40.4441275, "lon": -3.721248}, {"type": "node", "id": 2900420510, "lat": 40.4440006, "lon": -3.721248}, {"type": "node", "id": 2900420511, "lat": 40.4440921, "lon": -3.7212466}, {"type": "node", "id": 2900420512, "lat": 40.4444987, "lon": -3.7211545}, {"type": "node", "id": 2900420513, "lat": 40.4438089, "lon": -3.7214793}, {"type": "node", "id": 2900420514, "lat": 40.4436753, "lon": -3.7216142}, {"type": "node", "id": 2900420515, "lat": 40.443558, "lon": -3.7217063}, {"type": "node", "id": 2900420516, "lat": 40.44337, "lon": -3.7217556}, {"type": "node", "id": 2900420517, "lat": 40.4432173, "lon": -3.7218425}, {"type": "node", "id": 2900420518, "lat": 40.4431211, "lon": -3.7218774}, {"type": "node", "id": 2900420519, "lat": 40.4427884, "lon": -3.7221106}, {"type": "node", "id": 2900420520, "lat": 40.4426553, "lon": -3.7222276}, {"type": "node", "id": 2900420521, "lat": 40.4425072, "lon": -3.7223141}, {"type": "node", "id": 2900420522, "lat": 40.4416196, "lon": -3.7237791}, {"type": "node", "id": 2900420523, "lat": 40.4414671, "lon": -3.7238346}, {"type": "node", "id": 2900420524, "lat": 40.4413218, "lon": -3.7239147}, {"type": "node", "id": 2910133816, "lat": 40.4244942, "lon": -3.6954885}, {"type": "node", "id": 2915208795, "lat": 40.4304308, "lon": -3.7076321}, {"type": "node", "id": 2915209108, "lat": 40.4307506, "lon": -3.7073084}, {"type": "node", "id": 2915209114, "lat": 40.4315257, "lon": -3.7069571}, {"type": "node", "id": 2915209115, "lat": 40.4316785, "lon": -3.7071183}, {"type": "node", "id": 2915209116, "lat": 40.4316853, "lon": -3.7072062, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2915209117, "lat": 40.4316874, "lon": -3.7071142}, {"type": "node", "id": 2915209118, "lat": 40.4316949, "lon": -3.7072961}, {"type": "node", "id": 2915209129, "lat": 40.4317628, "lon": -3.7072415}, {"type": "node", "id": 2915209137, "lat": 40.432544, "lon": -3.7071502}, {"type": "node", "id": 2915247995, "lat": 40.4308557, "lon": -3.7053487}, {"type": "node", "id": 2915247996, "lat": 40.4310906, "lon": -3.7064239}, {"type": "node", "id": 2916189677, "lat": 40.4472232, "lon": -3.6992883}, {"type": "node", "id": 2946208309, "lat": 40.4248968, "lon": -3.7119881}, {"type": "node", "id": 2946208311, "lat": 40.4253357, "lon": -3.7122989}, {"type": "node", "id": 2946208320, "lat": 40.4255012, "lon": -3.7124195}, {"type": "node", "id": 2946208329, "lat": 40.4255606, "lon": -3.7122449}, {"type": "node", "id": 2946208330, "lat": 40.4255919, "lon": -3.7124842}, {"type": "node", "id": 2946209735, "lat": 40.425791, "lon": -3.712023}, {"type": "node", "id": 2949460867, "lat": 40.4430067, "lon": -3.6946945}, {"type": "node", "id": 2949460868, "lat": 40.443797, "lon": -3.694736}, {"type": "node", "id": 2949460869, "lat": 40.4421246, "lon": -3.6924394}, {"type": "node", "id": 2949460870, "lat": 40.4421855, "lon": -3.6924344}, {"type": "node", "id": 2949460871, "lat": 40.4423351, "lon": -3.6933115}, {"type": "node", "id": 2959128142, "lat": 40.450533, "lon": -3.7217086}, {"type": "node", "id": 2959128144, "lat": 40.4504943, "lon": -3.7209388}, {"type": "node", "id": 2959128148, "lat": 40.4503514, "lon": -3.7211373}, {"type": "node", "id": 2959128149, "lat": 40.4511454, "lon": -3.7222236}, {"type": "node", "id": 2959128150, "lat": 40.4505891, "lon": -3.7211792}, {"type": "node", "id": 2959128151, "lat": 40.4506106, "lon": -3.7209763}, {"type": "node", "id": 2959128153, "lat": 40.45088, "lon": -3.720059}, {"type": "node", "id": 2959128154, "lat": 40.4508025, "lon": -3.719933, "tags": {"barrier": "gate"}}, {"type": "node", "id": 2959128157, "lat": 40.4511931, "lon": -3.7218251}, {"type": "node", "id": 2959128463, "lat": 40.4227885, "lon": -3.6931455}, {"type": "node", "id": 2959128466, "lat": 40.4229604, "lon": -3.6931398}, {"type": "node", "id": 2959128481, "lat": 40.4235037, "lon": -3.6928351, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 2961204204, "lat": 40.4515831, "lon": -3.7188896}, {"type": "node", "id": 2972134285, "lat": 40.4517156, "lon": -3.7032616, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972168636, "lat": 40.4461971, "lon": -3.7039657}, {"type": "node", "id": 2972168637, "lat": 40.4461981, "lon": -3.7040391, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2972891887, "lat": 40.4418854, "lon": -3.7051673}, {"type": "node", "id": 2972891893, "lat": 40.4413313, "lon": -3.7063527, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972891898, "lat": 40.4413712, "lon": -3.7049713}, {"type": "node", "id": 2972891904, "lat": 40.4439621, "lon": -3.7049076}, {"type": "node", "id": 2972891914, "lat": 40.441067, "lon": -3.7049686}, {"type": "node", "id": 2972891919, "lat": 40.4393605, "lon": -3.704192}, {"type": "node", "id": 2972892240, "lat": 40.4450341, "lon": -3.7040109, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2972892243, "lat": 40.4424774, "lon": -3.7052024, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "source": "Bing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972892246, "lat": 40.4412181, "lon": -3.7049686}, {"type": "node", "id": 2972892248, "lat": 40.4419323, "lon": -3.7050427, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972892250, "lat": 40.4421257, "lon": -3.7051162, "tags": {"barrier": "gate"}}, {"type": "node", "id": 2972892254, "lat": 40.4412271, "lon": -3.7053309}, {"type": "node", "id": 2972892256, "lat": 40.4413753, "lon": -3.7051659}, {"type": "node", "id": 2972892276, "lat": 40.4428043, "lon": -3.7051773, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "source": "Bing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972892277, "lat": 40.4410813, "lon": -3.7053333}, {"type": "node", "id": 2972892287, "lat": 40.4412283, "lon": -3.7053789}, {"type": "node", "id": 2972892296, "lat": 40.44177, "lon": -3.7051607, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972892297, "lat": 40.4450506, "lon": -3.7050598}, {"type": "node", "id": 2972892302, "lat": 40.4413773, "lon": -3.7053655}, {"type": "node", "id": 2972892306, "lat": 40.4393617, "lon": -3.7045438}, {"type": "node", "id": 2972941176, "lat": 40.4348977, "lon": -3.7044865, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941183, "lat": 40.4386637, "lon": -3.7039921, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941184, "lat": 40.4371559, "lon": -3.7040819, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941210, "lat": 40.4360232, "lon": -3.7041118, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2972941337, "lat": 40.4361406, "lon": -3.7042853, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941350, "lat": 40.4387929, "lon": -3.7042104, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941369, "lat": 40.4348742, "lon": -3.7041701, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972941375, "lat": 40.4386755, "lon": -3.7043533, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941381, "lat": 40.4350089, "lon": -3.7043217, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 2972941385, "lat": 40.4385479, "lon": -3.7042168, "tags": {"button_operated": "no", "check_date:crossing": "2023-06-11", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2972941408, "lat": 40.4376542, "lon": -3.7043946, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2972941418, "lat": 40.4360298, "lon": -3.7044466, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 2972993211, "lat": 40.4322978, "lon": -3.7051837, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972993213, "lat": 40.4320041, "lon": -3.7049673}, {"type": "node", "id": 2972993217, "lat": 40.432254, "lon": -3.7048378}, {"type": "node", "id": 2972993222, "lat": 40.4334982, "lon": -3.70474}, {"type": "node", "id": 2972993223, "lat": 40.4337966, "lon": -3.7041589}, {"type": "node", "id": 2972993224, "lat": 40.4338431, "lon": -3.7045884}, {"type": "node", "id": 2972993226, "lat": 40.4321488, "lon": -3.7050873}, {"type": "node", "id": 2972993228, "lat": 40.4335982, "lon": -3.70399}, {"type": "node", "id": 2972993229, "lat": 40.4316088, "lon": -3.7051651, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 2972993230, "lat": 40.4337983, "lon": -3.7043186, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 2972993231, "lat": 40.4321146, "lon": -3.7049801, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2972993232, "lat": 40.4314512, "lon": -3.7051286}, {"type": "node", "id": 2972995633, "lat": 40.4338721, "lon": -3.7045303}, {"type": "node", "id": 2972995634, "lat": 40.4320718, "lon": -3.7050178}, {"type": "node", "id": 2972995635, "lat": 40.4336746, "lon": -3.7044824}, {"type": "node", "id": 2972995636, "lat": 40.432118, "lon": -3.7048401}, {"type": "node", "id": 2972995637, "lat": 40.4318345, "lon": -3.7062677}, {"type": "node", "id": 2972995638, "lat": 40.429962, "lon": -3.7057288}, {"type": "node", "id": 2972995639, "lat": 40.4336999, "lon": -3.7047128}, {"type": "node", "id": 2972995640, "lat": 40.4299501, "lon": -3.7056327}, {"type": "node", "id": 2972995642, "lat": 40.4322728, "lon": -3.7048303, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972995643, "lat": 40.4300793, "lon": -3.7056259, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2972995644, "lat": 40.4314891, "lon": -3.7062981}, {"type": "node", "id": 2972995648, "lat": 40.4335425, "lon": -3.7047508, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2972995650, "lat": 40.4337281, "lon": -3.7044465}, {"type": "node", "id": 2972995652, "lat": 40.4339612, "lon": -3.7043528}, {"type": "node", "id": 2972995656, "lat": 40.4319055, "lon": -3.7051314}, {"type": "node", "id": 2973015547, "lat": 40.429315, "lon": -3.7058554, "tags": {"highway": "give_way"}}, {"type": "node", "id": 2973015551, "lat": 40.4280373, "lon": -3.7061114, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2973015552, "lat": 40.4292147, "lon": -3.7059559, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2973015554, "lat": 40.4283683, "lon": -3.7063249, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2973015555, "lat": 40.4292109, "lon": -3.7059153, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2973015613, "lat": 40.4254609, "lon": -3.7074272, "tags": {"name": "Noviciado", "opening_hours": "06:00-21:40", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2973127101, "lat": 40.4280597, "lon": -3.7144792, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3033655161, "lat": 40.4314695, "lon": -3.7167919, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3033655162, "lat": 40.4320046, "lon": -3.7171741, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3050556981, "lat": 40.4266876, "lon": -3.701702}, {"type": "node", "id": 3051148235, "lat": 40.4391685, "lon": -3.6884851}, {"type": "node", "id": 3051151032, "lat": 40.439744, "lon": -3.6887047}, {"type": "node", "id": 3051152633, "lat": 40.4392799, "lon": -3.6884933, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3051152634, "lat": 40.4391789, "lon": -3.6884223}, {"type": "node", "id": 3056667883, "lat": 40.4370236, "lon": -3.7044634}, {"type": "node", "id": 3060843410, "lat": 40.44627, "lon": -3.72669}, {"type": "node", "id": 3068189415, "lat": 40.4518534, "lon": -3.6911904, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 3068279548, "lat": 40.4198363, "lon": -3.6926473, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3070612940, "lat": 40.4435231, "lon": -3.6933782}, {"type": "node", "id": 3070612941, "lat": 40.4435427, "lon": -3.6933919}, {"type": "node", "id": 3070612942, "lat": 40.4436202, "lon": -3.6932636}, {"type": "node", "id": 3070612943, "lat": 40.4436285, "lon": -3.693291}, {"type": "node", "id": 3073306064, "lat": 40.4258406, "lon": -3.6897681}, {"type": "node", "id": 3077638487, "lat": 40.4429961, "lon": -3.6948261}, {"type": "node", "id": 3077638488, "lat": 40.4432783, "lon": -3.694692}, {"type": "node", "id": 3077638489, "lat": 40.4434505, "lon": -3.6945723}, {"type": "node", "id": 3077638490, "lat": 40.4434553, "lon": -3.6947588}, {"type": "node", "id": 3077638491, "lat": 40.4438041, "lon": -3.6949305}, {"type": "node", "id": 3077638492, "lat": 40.4446685, "lon": -3.694496}, {"type": "node", "id": 3077638493, "lat": 40.4446775, "lon": -3.6946688}, {"type": "node", "id": 3077638494, "lat": 40.4489192, "lon": -3.6894053}, {"type": "node", "id": 3078183623, "lat": 40.4495038, "lon": -3.6880936, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3078198914, "lat": 40.4454473, "lon": -3.6860492}, {"type": "node", "id": 3078198915, "lat": 40.4456756, "lon": -3.685748}, {"type": "node", "id": 3078198916, "lat": 40.4456813, "lon": -3.6855027}, {"type": "node", "id": 3078426882, "lat": 40.4426267, "lon": -3.690157}, {"type": "node", "id": 3078426883, "lat": 40.4427138, "lon": -3.6902203}, {"type": "node", "id": 3078426884, "lat": 40.4429593, "lon": -3.6902945}, {"type": "node", "id": 3078426885, "lat": 40.4431787, "lon": -3.6902131}, {"type": "node", "id": 3078426886, "lat": 40.4432597, "lon": -3.6882462, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3078426887, "lat": 40.4434876, "lon": -3.6883316, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3089542102, "lat": 40.4479165, "lon": -3.7277771}, {"type": "node", "id": 3096518228, "lat": 40.4333654, "lon": -3.7046452, "tags": {"name": "Arapiles", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 3096525829, "lat": 40.4331667, "lon": -3.7043393, "tags": {"name": "Fuencarral", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 3096525835, "lat": 40.4331092, "lon": -3.7043403}, {"type": "node", "id": 3096525836, "lat": 40.4331646, "lon": -3.7046379}, {"type": "node", "id": 3096525837, "lat": 40.4332986, "lon": -3.7046247}, {"type": "node", "id": 3096525838, "lat": 40.4333769, "lon": -3.7047355}, {"type": "node", "id": 3096525840, "lat": 40.4334046, "lon": -3.7046981}, {"type": "node", "id": 3096525841, "lat": 40.4334154, "lon": -3.7055542, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3096525842, "lat": 40.4334228, "lon": -3.7042223}, {"type": "node", "id": 3096525843, "lat": 40.433461, "lon": -3.7048128, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3096525844, "lat": 40.4334619, "lon": -3.7043959}, {"type": "node", "id": 3096525845, "lat": 40.4334915, "lon": -3.7040476}, {"type": "node", "id": 3096525856, "lat": 40.4336033, "lon": -3.7039515}, {"type": "node", "id": 3096525871, "lat": 40.4337027, "lon": -3.7039647}, {"type": "node", "id": 3096525872, "lat": 40.4337172, "lon": -3.7057332}, {"type": "node", "id": 3096525873, "lat": 40.4337674, "lon": -3.7040877}, {"type": "node", "id": 3096525874, "lat": 40.4337728, "lon": -3.7056086, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3096525875, "lat": 40.4338073, "lon": -3.7042386}, {"type": "node", "id": 3096525878, "lat": 40.4385925, "lon": -3.7045496}, {"type": "node", "id": 3096525879, "lat": 40.438594, "lon": -3.7044787}, {"type": "node", "id": 3096525880, "lat": 40.4386017, "lon": -3.7048938}, {"type": "node", "id": 3096525882, "lat": 40.4386118, "lon": -3.7051274, "tags": {"access": "yes", "amenity": "parking", "check_date:fee": "2023-06-11", "fee": "yes", "parking": "underground", "surface": "paved"}}, {"type": "node", "id": 3096525883, "lat": 40.4386233, "lon": -3.7053656}, {"type": "node", "id": 3096525884, "lat": 40.4386281, "lon": -3.7063917}, {"type": "node", "id": 3096525885, "lat": 40.438631, "lon": -3.7056126}, {"type": "node", "id": 3096525886, "lat": 40.4386392, "lon": -3.7067657}, {"type": "node", "id": 3096525887, "lat": 40.4386438, "lon": -3.7082095}, {"type": "node", "id": 3096525888, "lat": 40.4386478, "lon": -3.7082895, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3096525889, "lat": 40.438648, "lon": -3.7056814}, {"type": "node", "id": 3096525890, "lat": 40.4386493, "lon": -3.7083698}, {"type": "node", "id": 3096525891, "lat": 40.4386784, "lon": -3.704422}, {"type": "node", "id": 3096525892, "lat": 40.438682, "lon": -3.7083899}, {"type": "node", "id": 3096525893, "lat": 40.4386907, "lon": -3.7081522}, {"type": "node", "id": 3096525894, "lat": 40.4387136, "lon": -3.7057379}, {"type": "node", "id": 3096525895, "lat": 40.4387503, "lon": -3.7067615, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3096525897, "lat": 40.438803, "lon": -3.7083796}, {"type": "node", "id": 3096525900, "lat": 40.4388569, "lon": -3.7097011}, {"type": "node", "id": 3096525905, "lat": 40.4388908, "lon": -3.7045214, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3096525909, "lat": 40.4389707, "lon": -3.7096967}, {"type": "node", "id": 3096525912, "lat": 40.439084, "lon": -3.7097826}, {"type": "node", "id": 3096525913, "lat": 40.4391023, "lon": -3.7099237}, {"type": "node", "id": 3102754264, "lat": 40.4406972, "lon": -3.7234916}, {"type": "node", "id": 3102754265, "lat": 40.4418489, "lon": -3.7245735}, {"type": "node", "id": 3102754266, "lat": 40.4393209, "lon": -3.7228953}, {"type": "node", "id": 3102754267, "lat": 40.4396022, "lon": -3.7232005}, {"type": "node", "id": 3102754268, "lat": 40.4400286, "lon": -3.7233024}, {"type": "node", "id": 3102754269, "lat": 40.4391561, "lon": -3.7227906}, {"type": "node", "id": 3102754270, "lat": 40.4410708, "lon": -3.7237422}, {"type": "node", "id": 3102754271, "lat": 40.4412854, "lon": -3.7239482}, {"type": "node", "id": 3102754272, "lat": 40.441789, "lon": -3.7244999}, {"type": "node", "id": 3102754273, "lat": 40.4417462, "lon": -3.7244693}, {"type": "node", "id": 3102754274, "lat": 40.4390042, "lon": -3.7228238}, {"type": "node", "id": 3102754275, "lat": 40.4405287, "lon": -3.7234255}, {"type": "node", "id": 3108256672, "lat": 40.4459064, "lon": -3.7274248, "tags": {"bicycle": "yes", "button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3108256673, "lat": 40.4459969, "lon": -3.7273032}, {"type": "node", "id": 3108256674, "lat": 40.4459977, "lon": -3.7272692}, {"type": "node", "id": 3108256675, "lat": 40.4460077, "lon": -3.7273383}, {"type": "node", "id": 3108256682, "lat": 40.4483774, "lon": -3.7250577}, {"type": "node", "id": 3135450430, "lat": 40.4461059, "lon": -3.6884419}, {"type": "node", "id": 3135450431, "lat": 40.4476472, "lon": -3.6915254}, {"type": "node", "id": 3135450432, "lat": 40.4461627, "lon": -3.6885783}, {"type": "node", "id": 3135960742, "lat": 40.4491992, "lon": -3.6903782, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3136812043, "lat": 40.4389571, "lon": -3.7181784}, {"type": "node", "id": 3136812044, "lat": 40.4388711, "lon": -3.7180466}, {"type": "node", "id": 3136812045, "lat": 40.4388146, "lon": -3.7180479}, {"type": "node", "id": 3136812051, "lat": 40.4389491, "lon": -3.7181351, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3136816570, "lat": 40.4366511, "lon": -3.7165453, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3136816575, "lat": 40.436218, "lon": -3.7170998}, {"type": "node", "id": 3136816576, "lat": 40.4362238, "lon": -3.7173485}, {"type": "node", "id": 3136816577, "lat": 40.4365387, "lon": -3.7165535, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3136816580, "lat": 40.435882, "lon": -3.7172775}, {"type": "node", "id": 3136816582, "lat": 40.4358873, "lon": -3.7174}, {"type": "node", "id": 3136816583, "lat": 40.4334459, "lon": -3.7162969}, {"type": "node", "id": 3136816587, "lat": 40.436221, "lon": -3.7172286}, {"type": "node", "id": 3136816598, "lat": 40.4358762, "lon": -3.717154}, {"type": "node", "id": 3136816605, "lat": 40.4362058, "lon": -3.7165761}, {"type": "node", "id": 3144095493, "lat": 40.4270344, "lon": -3.6992717, "tags": {"amenity": "parking_entrance", "name": "Parking Barcel\u00f3"}}, {"type": "node", "id": 3144095498, "lat": 40.4262726, "lon": -3.6989076}, {"type": "node", "id": 3144095503, "lat": 40.4267141, "lon": -3.6981874}, {"type": "node", "id": 3144095506, "lat": 40.4269121, "lon": -3.6993806}, {"type": "node", "id": 3161163797, "lat": 40.4227273, "lon": -3.6967738, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 3161269011, "lat": 40.4236891, "lon": -3.6965117}, {"type": "node", "id": 3162003415, "lat": 40.4441167, "lon": -3.6917698, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3162003417, "lat": 40.449379, "lon": -3.7168212, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3163832986, "lat": 40.4239401, "lon": -3.6997382}, {"type": "node", "id": 3167086899, "lat": 40.4276493, "lon": -3.6951791}, {"type": "node", "id": 3167086900, "lat": 40.4279439, "lon": -3.6964887}, {"type": "node", "id": 3167086901, "lat": 40.4280134, "lon": -3.6955606}, {"type": "node", "id": 3167086902, "lat": 40.4280571, "lon": -3.6954299}, {"type": "node", "id": 3167086903, "lat": 40.4282267, "lon": -3.6956677}, {"type": "node", "id": 3167086907, "lat": 40.4411312, "lon": -3.6942038}, {"type": "node", "id": 3167086908, "lat": 40.441267, "lon": -3.6927152}, {"type": "node", "id": 3167086909, "lat": 40.4413489, "lon": -3.6941843}, {"type": "node", "id": 3167086910, "lat": 40.4414533, "lon": -3.6924754}, {"type": "node", "id": 3167086911, "lat": 40.4415415, "lon": -3.6941526}, {"type": "node", "id": 3167086912, "lat": 40.4416944, "lon": -3.6951044, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3167086913, "lat": 40.4418414, "lon": -3.6946841}, {"type": "node", "id": 3167086914, "lat": 40.4418566, "lon": -3.6951018}, {"type": "node", "id": 3196261070, "lat": 40.4457042, "lon": -3.7140262, "tags": {"railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3196261071, "lat": 40.4460361, "lon": -3.7130821, "tags": {"name": "Av. Reina Victoria, impares - Guzm\u00e1n el Bueno", "railway": "subway_entrance"}}, {"type": "node", "id": 3197987492, "lat": 40.4482786, "lon": -3.7140983}, {"type": "node", "id": 3197987493, "lat": 40.4491684, "lon": -3.7144627}, {"type": "node", "id": 3197987495, "lat": 40.4488492, "lon": -3.7143865}, {"type": "node", "id": 3205998419, "lat": 40.4360733, "lon": -3.682011, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3212178930, "lat": 40.435338, "lon": -3.7154734, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3213799200, "lat": 40.4440351, "lon": -3.7112245}, {"type": "node", "id": 3213799203, "lat": 40.4441699, "lon": -3.7110084}, {"type": "node", "id": 3213799204, "lat": 40.4443748, "lon": -3.7120659}, {"type": "node", "id": 3213799205, "lat": 40.4443841, "lon": -3.7122873, "tags": {"access": "permit", "barrier": "gate", "bicycle": "permit", "foot": "permit", "motor_vehicle": "permit"}}, {"type": "node", "id": 3213799206, "lat": 40.4443896, "lon": -3.7124067}, {"type": "node", "id": 3213799210, "lat": 40.4444341, "lon": -3.7109854}, {"type": "node", "id": 3213799213, "lat": 40.444453, "lon": -3.7120074}, {"type": "node", "id": 3213799214, "lat": 40.4444557, "lon": -3.7109447}, {"type": "node", "id": 3213799216, "lat": 40.4444786, "lon": -3.7119366}, {"type": "node", "id": 3213799225, "lat": 40.4446888, "lon": -3.7107263, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3213799226, "lat": 40.4447016, "lon": -3.7109355}, {"type": "node", "id": 3213799228, "lat": 40.4447694, "lon": -3.7122586, "tags": {"access": "permit", "barrier": "gate", "bicycle": "permit", "foot": "permit", "motor_vehicle": "permit"}}, {"type": "node", "id": 3216764227, "lat": 40.4378745, "lon": -3.6850124, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3216764228, "lat": 40.4379008, "lon": -3.6852885, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3216764229, "lat": 40.4378059, "lon": -3.6850024, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3216764230, "lat": 40.4376768, "lon": -3.6850744, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 3221366169, "lat": 40.447193, "lon": -3.6931097, "tags": {"name": "Centro Comercial", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 3221366170, "lat": 40.4494137, "lon": -3.6948584}, {"type": "node", "id": 3221366171, "lat": 40.4495281, "lon": -3.6945667}, {"type": "node", "id": 3221366172, "lat": 40.4495534, "lon": -3.6952417}, {"type": "node", "id": 3221366173, "lat": 40.4495645, "lon": -3.6966304}, {"type": "node", "id": 3221366174, "lat": 40.4495879, "lon": -3.6959223}, {"type": "node", "id": 3221366175, "lat": 40.4496309, "lon": -3.6966175}, {"type": "node", "id": 3222121954, "lat": 40.4444861, "lon": -3.7256546, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3222122279, "lat": 40.4432276, "lon": -3.725441, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3223002879, "lat": 40.4426617, "lon": -3.7261735}, {"type": "node", "id": 3223002881, "lat": 40.442672, "lon": -3.7262331}, {"type": "node", "id": 3223002882, "lat": 40.4426924, "lon": -3.7258633}, {"type": "node", "id": 3223002884, "lat": 40.4427215, "lon": -3.7255694}, {"type": "node", "id": 3223002885, "lat": 40.4427472, "lon": -3.7255084}, {"type": "node", "id": 3223002886, "lat": 40.4427702, "lon": -3.7264124}, {"type": "node", "id": 3223002889, "lat": 40.4427967, "lon": -3.7262643}, {"type": "node", "id": 3223002890, "lat": 40.4428008, "lon": -3.7254393}, {"type": "node", "id": 3223002891, "lat": 40.4428059, "lon": -3.7258809, "tags": {"check_date:crossing": "2023-11-12", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3223002899, "lat": 40.4428689, "lon": -3.7253879}, {"type": "node", "id": 3223002909, "lat": 40.4428823, "lon": -3.7255287}, {"type": "node", "id": 3223002920, "lat": 40.4429091, "lon": -3.7266358}, {"type": "node", "id": 3223002925, "lat": 40.4429307, "lon": -3.7253662}, {"type": "node", "id": 3223002930, "lat": 40.4429633, "lon": -3.7251046}, {"type": "node", "id": 3223002938, "lat": 40.4431559, "lon": -3.725377}, {"type": "node", "id": 3223002945, "lat": 40.4431829, "lon": -3.7266662}, {"type": "node", "id": 3223002950, "lat": 40.4432527, "lon": -3.725987}, {"type": "node", "id": 3223002951, "lat": 40.4432551, "lon": -3.7259636}, {"type": "node", "id": 3223002952, "lat": 40.4433103, "lon": -3.7254257}, {"type": "node", "id": 3223002953, "lat": 40.4433185, "lon": -3.7254054}, {"type": "node", "id": 3223002954, "lat": 40.4433304, "lon": -3.725403}, {"type": "node", "id": 3223005967, "lat": 40.4438631, "lon": -3.7255049}, {"type": "node", "id": 3223005968, "lat": 40.4442049, "lon": -3.7255613}, {"type": "node", "id": 3223005970, "lat": 40.4442249, "lon": -3.725349}, {"type": "node", "id": 3223005971, "lat": 40.4442788, "lon": -3.7268705}, {"type": "node", "id": 3223005973, "lat": 40.4443534, "lon": -3.7261627}, {"type": "node", "id": 3223005974, "lat": 40.4443765, "lon": -3.7262466}, {"type": "node", "id": 3223005975, "lat": 40.4443767, "lon": -3.7262948}, {"type": "node", "id": 3223005976, "lat": 40.4443859, "lon": -3.7261689}, {"type": "node", "id": 3223005980, "lat": 40.4444032, "lon": -3.7255939}, {"type": "node", "id": 3223005982, "lat": 40.4444126, "lon": -3.7256005}, {"type": "node", "id": 3223005983, "lat": 40.4444381, "lon": -3.7256903}, {"type": "node", "id": 3223005984, "lat": 40.4444296, "lon": -3.7256123}, {"type": "node", "id": 3223005985, "lat": 40.4444362, "lon": -3.7256265}, {"type": "node", "id": 3223005986, "lat": 40.4444406, "lon": -3.7256545}, {"type": "node", "id": 3223005992, "lat": 40.4445415, "lon": -3.7256834}, {"type": "node", "id": 3223005993, "lat": 40.4445579, "lon": -3.7256383}, {"type": "node", "id": 3223005994, "lat": 40.4445656, "lon": -3.7256294}, {"type": "node", "id": 3223005995, "lat": 40.4445791, "lon": -3.7256137}, {"type": "node", "id": 3223005996, "lat": 40.4446038, "lon": -3.726858}, {"type": "node", "id": 3223005998, "lat": 40.444611, "lon": -3.7256007}, {"type": "node", "id": 3223006009, "lat": 40.4446363, "lon": -3.7256019}, {"type": "node", "id": 3223006049, "lat": 40.4447885, "lon": -3.7256314}, {"type": "node", "id": 3223006051, "lat": 40.4448025, "lon": -3.7254535}, {"type": "node", "id": 3223006054, "lat": 40.4448382, "lon": -3.725545}, {"type": "node", "id": 3223006055, "lat": 40.4448387, "lon": -3.7256346}, {"type": "node", "id": 3223006056, "lat": 40.4448582, "lon": -3.7256291}, {"type": "node", "id": 3223006058, "lat": 40.444891, "lon": -3.7256038}, {"type": "node", "id": 3223006060, "lat": 40.4449662, "lon": -3.7255489}, {"type": "node", "id": 3223006162, "lat": 40.4449915, "lon": -3.7255402}, {"type": "node", "id": 3223006163, "lat": 40.4451023, "lon": -3.7255643}, {"type": "node", "id": 3223006164, "lat": 40.4452455, "lon": -3.7255865}, {"type": "node", "id": 3223006165, "lat": 40.4453594, "lon": -3.725578}, {"type": "node", "id": 3223006166, "lat": 40.4453869, "lon": -3.7255592}, {"type": "node", "id": 3223006167, "lat": 40.4454195, "lon": -3.7254942}, {"type": "node", "id": 3224859905, "lat": 40.4458115, "lon": -3.7203305}, {"type": "node", "id": 3224859906, "lat": 40.4458295, "lon": -3.7203779}, {"type": "node", "id": 3224859907, "lat": 40.4458401, "lon": -3.7204254}, {"type": "node", "id": 3224859908, "lat": 40.4458491, "lon": -3.7205084}, {"type": "node", "id": 3224859909, "lat": 40.4458747, "lon": -3.7205638}, {"type": "node", "id": 3224859911, "lat": 40.4459168, "lon": -3.7205856}, {"type": "node", "id": 3224859912, "lat": 40.4459815, "lon": -3.7202474}, {"type": "node", "id": 3224859913, "lat": 40.4460779, "lon": -3.7205856}, {"type": "node", "id": 3224859914, "lat": 40.4460824, "lon": -3.7204353}, {"type": "node", "id": 3224859915, "lat": 40.4460914, "lon": -3.7205579}, {"type": "node", "id": 3224859916, "lat": 40.4460944, "lon": -3.7204926}, {"type": "node", "id": 3224859918, "lat": 40.4463367, "lon": -3.7208268}, {"type": "node", "id": 3224859919, "lat": 40.446339, "lon": -3.7197837}, {"type": "node", "id": 3224859920, "lat": 40.4465188, "lon": -3.7202375}, {"type": "node", "id": 3224859921, "lat": 40.4465444, "lon": -3.7206647}, {"type": "node", "id": 3224859923, "lat": 40.4465805, "lon": -3.7205955}, {"type": "node", "id": 3224859924, "lat": 40.446585, "lon": -3.7204452}, {"type": "node", "id": 3224859925, "lat": 40.446591, "lon": -3.7205104}, {"type": "node", "id": 3224859929, "lat": 40.4466444, "lon": -3.7212861}, {"type": "node", "id": 3224859938, "lat": 40.4467129, "lon": -3.7225991}, {"type": "node", "id": 3224859943, "lat": 40.4467904, "lon": -3.7226778}, {"type": "node", "id": 3224859946, "lat": 40.4468159, "lon": -3.7192328}, {"type": "node", "id": 3224859948, "lat": 40.4468541, "lon": -3.7228404}, {"type": "node", "id": 3224859950, "lat": 40.4468659, "lon": -3.7193161}, {"type": "node", "id": 3224865964, "lat": 40.4469146, "lon": -3.7229947}, {"type": "node", "id": 3224865968, "lat": 40.446955, "lon": -3.7193865}, {"type": "node", "id": 3224865969, "lat": 40.4469676, "lon": -3.7210868}, {"type": "node", "id": 3224865975, "lat": 40.4470346, "lon": -3.722411}, {"type": "node", "id": 3224865976, "lat": 40.4470424, "lon": -3.7194275}, {"type": "node", "id": 3224865978, "lat": 40.4470707, "lon": -3.7225064}, {"type": "node", "id": 3224865982, "lat": 40.4471342, "lon": -3.7226693}, {"type": "node", "id": 3224865985, "lat": 40.4471917, "lon": -3.7228167}, {"type": "node", "id": 3224865990, "lat": 40.4473617, "lon": -3.7223284}, {"type": "node", "id": 3224865994, "lat": 40.4473897, "lon": -3.7246197}, {"type": "node", "id": 3224866001, "lat": 40.4474212, "lon": -3.722494}, {"type": "node", "id": 3224866014, "lat": 40.4474723, "lon": -3.7226365}, {"type": "node", "id": 3224866026, "lat": 40.4476295, "lon": -3.7246629}, {"type": "node", "id": 3224866028, "lat": 40.4476694, "lon": -3.7246606}, {"type": "node", "id": 3224866032, "lat": 40.4477187, "lon": -3.7246379}, {"type": "node", "id": 3224866033, "lat": 40.4477638, "lon": -3.7246038}, {"type": "node", "id": 3224866036, "lat": 40.4478339, "lon": -3.7244957}, {"type": "node", "id": 3224866038, "lat": 40.4478512, "lon": -3.7244149}, {"type": "node", "id": 3224866045, "lat": 40.4479543, "lon": -3.7245343}, {"type": "node", "id": 3224866046, "lat": 40.4479629, "lon": -3.7244388}, {"type": "node", "id": 3224866048, "lat": 40.4479683, "lon": -3.7246229}, {"type": "node", "id": 3224866049, "lat": 40.4480074, "lon": -3.7247506}, {"type": "node", "id": 3224866050, "lat": 40.4479967, "lon": -3.7246845}, {"type": "node", "id": 3224866051, "lat": 40.4480452, "lon": -3.7247255}, {"type": "node", "id": 3224866052, "lat": 40.4480876, "lon": -3.7247483}, {"type": "node", "id": 3224866055, "lat": 40.4481188, "lon": -3.7245116}, {"type": "node", "id": 3224866056, "lat": 40.4481206, "lon": -3.7220237}, {"type": "node", "id": 3224866173, "lat": 40.448234, "lon": -3.7225237}, {"type": "node", "id": 3224866175, "lat": 40.4482477, "lon": -3.722457}, {"type": "node", "id": 3224866176, "lat": 40.4482513, "lon": -3.7247767}, {"type": "node", "id": 3224866183, "lat": 40.4482758, "lon": -3.7223267}, {"type": "node", "id": 3224866184, "lat": 40.4483024, "lon": -3.7247835}, {"type": "node", "id": 3224866189, "lat": 40.4483526, "lon": -3.7246493}, {"type": "node", "id": 3224866191, "lat": 40.4483578, "lon": -3.7247653}, {"type": "node", "id": 3224866192, "lat": 40.4483703, "lon": -3.7199138}, {"type": "node", "id": 3224866195, "lat": 40.4483924, "lon": -3.724746}, {"type": "node", "id": 3224866196, "lat": 40.4484015, "lon": -3.721722}, {"type": "node", "id": 3224866198, "lat": 40.4484314, "lon": -3.724705}, {"type": "node", "id": 3224866201, "lat": 40.4484496, "lon": -3.7244979}, {"type": "node", "id": 3224866202, "lat": 40.4484513, "lon": -3.7246561}, {"type": "node", "id": 3224866204, "lat": 40.4484617, "lon": -3.72454}, {"type": "node", "id": 3224866205, "lat": 40.4484626, "lon": -3.7245935}, {"type": "node", "id": 3224866206, "lat": 40.4484684, "lon": -3.7199478}, {"type": "node", "id": 3224866211, "lat": 40.4484978, "lon": -3.7213739}, {"type": "node", "id": 3224866214, "lat": 40.4485278, "lon": -3.7246427}, {"type": "node", "id": 3224866239, "lat": 40.4486664, "lon": -3.7208173}, {"type": "node", "id": 3224866243, "lat": 40.4487457, "lon": -3.7200521}, {"type": "node", "id": 3224866245, "lat": 40.4487779, "lon": -3.7200743}, {"type": "node", "id": 3224866246, "lat": 40.4488073, "lon": -3.7201107}, {"type": "node", "id": 3224866247, "lat": 40.4488269, "lon": -3.7201564}, {"type": "node", "id": 3224866248, "lat": 40.4488296, "lon": -3.72027}, {"type": "node", "id": 3224866249, "lat": 40.4488322, "lon": -3.7202079}, {"type": "node", "id": 3224876493, "lat": 40.4455754, "lon": -3.7242499}, {"type": "node", "id": 3224876494, "lat": 40.4457545, "lon": -3.7240552}, {"type": "node", "id": 3224876497, "lat": 40.446256, "lon": -3.7228651}, {"type": "node", "id": 3224876499, "lat": 40.446319, "lon": -3.7226979}, {"type": "node", "id": 3224876503, "lat": 40.4464662, "lon": -3.7223598}, {"type": "node", "id": 3224876504, "lat": 40.4465143, "lon": -3.7222478}, {"type": "node", "id": 3224876506, "lat": 40.4465283, "lon": -3.7221777}, {"type": "node", "id": 3224893457, "lat": 40.4483729, "lon": -3.7241719}, {"type": "node", "id": 3224893458, "lat": 40.4483741, "lon": -3.7243404}, {"type": "node", "id": 3224893460, "lat": 40.4483901, "lon": -3.724052}, {"type": "node", "id": 3224893961, "lat": 40.4483938, "lon": -3.7243728}, {"type": "node", "id": 3224893963, "lat": 40.4484271, "lon": -3.724389}, {"type": "node", "id": 3224893964, "lat": 40.4484444, "lon": -3.7238819}, {"type": "node", "id": 3224893967, "lat": 40.4484785, "lon": -3.7244016}, {"type": "node", "id": 3224893968, "lat": 40.44849, "lon": -3.7237782}, {"type": "node", "id": 3224893969, "lat": 40.44849, "lon": -3.7240229}, {"type": "node", "id": 3224893988, "lat": 40.4487353, "lon": -3.7236924}, {"type": "node", "id": 3224893989, "lat": 40.4491335, "lon": -3.7217516}, {"type": "node", "id": 3225692035, "lat": 40.4476693, "lon": -3.6946081}, {"type": "node", "id": 3225692036, "lat": 40.4476791, "lon": -3.6944662}, {"type": "node", "id": 3225692037, "lat": 40.4477396, "lon": -3.6946818}, {"type": "node", "id": 3225692038, "lat": 40.4479366, "lon": -3.6944692}, {"type": "node", "id": 3225692043, "lat": 40.4479192, "lon": -3.6945251}, {"type": "node", "id": 3225692044, "lat": 40.4479008, "lon": -3.6945743}, {"type": "node", "id": 3225692052, "lat": 40.4481863, "lon": -3.6946258}, {"type": "node", "id": 3225730033, "lat": 40.4478184, "lon": -3.6918205}, {"type": "node", "id": 3225730034, "lat": 40.4478337, "lon": -3.692093}, {"type": "node", "id": 3225730566, "lat": 40.4484697, "lon": -3.6942651, "tags": {"fixme": "Conectar esta escalera con otros caminos"}}, {"type": "node", "id": 3225747777, "lat": 40.4482656, "lon": -3.6931115}, {"type": "node", "id": 3225747778, "lat": 40.4486355, "lon": -3.6924571}, {"type": "node", "id": 3225747779, "lat": 40.4488188, "lon": -3.6928307}, {"type": "node", "id": 3225747780, "lat": 40.4488544, "lon": -3.6925001}, {"type": "node", "id": 3225747785, "lat": 40.4496393, "lon": -3.6922726}, {"type": "node", "id": 3225747815, "lat": 40.4503825, "lon": -3.6922899}, {"type": "node", "id": 3225747824, "lat": 40.4504873, "lon": -3.6933526}, {"type": "node", "id": 3225747842, "lat": 40.4505411, "lon": -3.6921762}, {"type": "node", "id": 3225747845, "lat": 40.4505453, "lon": -3.6922708}, {"type": "node", "id": 3225747848, "lat": 40.4505553, "lon": -3.6924936}, {"type": "node", "id": 3225747851, "lat": 40.4505934, "lon": -3.6933432}, {"type": "node", "id": 3225747852, "lat": 40.4506473, "lon": -3.6921486}, {"type": "node", "id": 3225747853, "lat": 40.4506491, "lon": -3.6922002}, {"type": "node", "id": 3225747854, "lat": 40.4506554, "lon": -3.6923792}, {"type": "node", "id": 3225747858, "lat": 40.4506591, "lon": -3.6924845}, {"type": "node", "id": 3225748461, "lat": 40.450722, "lon": -3.6921486}, {"type": "node", "id": 3225748464, "lat": 40.4507495, "lon": -3.6933337}, {"type": "node", "id": 3225748471, "lat": 40.4508324, "lon": -3.6934083}, {"type": "node", "id": 3225748472, "lat": 40.4508377, "lon": -3.6935009}, {"type": "node", "id": 3225748473, "lat": 40.4508384, "lon": -3.6935136}, {"type": "node", "id": 3225748476, "lat": 40.4508544, "lon": -3.6941544}, {"type": "node", "id": 3225748477, "lat": 40.4508346, "lon": -3.693809}, {"type": "node", "id": 3225748478, "lat": 40.4508493, "lon": -3.6937042}, {"type": "node", "id": 3225748479, "lat": 40.45085, "lon": -3.6937164}, {"type": "node", "id": 3225748480, "lat": 40.4508529, "lon": -3.6941276}, {"type": "node", "id": 3225748481, "lat": 40.4508552, "lon": -3.693807}, {"type": "node", "id": 3225748482, "lat": 40.4508512, "lon": -3.6940988}, {"type": "node", "id": 3225748483, "lat": 40.4508483, "lon": -3.6940484}, {"type": "node", "id": 3225748484, "lat": 40.4508498, "lon": -3.6940746}, {"type": "node", "id": 3225763279, "lat": 40.4509018, "lon": -3.6919378}, {"type": "node", "id": 3225763611, "lat": 40.4503921, "lon": -3.6924829}, {"type": "node", "id": 3232878637, "lat": 40.4396475, "lon": -3.7256868}, {"type": "node", "id": 3232878651, "lat": 40.4415313, "lon": -3.7248777}, {"type": "node", "id": 3232879762, "lat": 40.4390253, "lon": -3.7202379}, {"type": "node", "id": 3232900922, "lat": 40.438388, "lon": -3.7239168}, {"type": "node", "id": 3232900923, "lat": 40.4385753, "lon": -3.7236054}, {"type": "node", "id": 3232900924, "lat": 40.4387996, "lon": -3.7228376}, {"type": "node", "id": 3232900925, "lat": 40.4389658, "lon": -3.7228303}, {"type": "node", "id": 3232900926, "lat": 40.4390189, "lon": -3.7202872}, {"type": "node", "id": 3232900927, "lat": 40.4390776, "lon": -3.722193}, {"type": "node", "id": 3232900928, "lat": 40.4391158, "lon": -3.7205321}, {"type": "node", "id": 3232900929, "lat": 40.43914, "lon": -3.72231}, {"type": "node", "id": 3232900930, "lat": 40.439222, "lon": -3.7224079}, {"type": "node", "id": 3232900931, "lat": 40.4392481, "lon": -3.7226234}, {"type": "node", "id": 3232900932, "lat": 40.439278, "lon": -3.7224964}, {"type": "node", "id": 3232900933, "lat": 40.4393674, "lon": -3.7219892}, {"type": "node", "id": 3232900934, "lat": 40.4394438, "lon": -3.7220161}, {"type": "node", "id": 3232900935, "lat": 40.4395762, "lon": -3.7220528}, {"type": "node", "id": 3232900936, "lat": 40.4395957, "lon": -3.7221326}, {"type": "node", "id": 3232900937, "lat": 40.4396337, "lon": -3.7224651}, {"type": "node", "id": 3232900938, "lat": 40.4396619, "lon": -3.7214235}, {"type": "node", "id": 3232900939, "lat": 40.4396694, "lon": -3.7226766}, {"type": "node", "id": 3232900940, "lat": 40.4396822, "lon": -3.7232524}, {"type": "node", "id": 3232900941, "lat": 40.4397487, "lon": -3.722915}, {"type": "node", "id": 3232900942, "lat": 40.4398419, "lon": -3.7234471}, {"type": "node", "id": 3232900943, "lat": 40.4398547, "lon": -3.7231164}, {"type": "node", "id": 3232900944, "lat": 40.4399467, "lon": -3.723573}, {"type": "node", "id": 3232900945, "lat": 40.4400221, "lon": -3.7236553}, {"type": "node", "id": 3232900946, "lat": 40.4400412, "lon": -3.7237073}, {"type": "node", "id": 3232900947, "lat": 40.4400642, "lon": -3.72384}, {"type": "node", "id": 3232900948, "lat": 40.4400775, "lon": -3.7239444}, {"type": "node", "id": 3232900949, "lat": 40.4401051, "lon": -3.7239742}, {"type": "node", "id": 3232900950, "lat": 40.4401427, "lon": -3.7223149}, {"type": "node", "id": 3232900951, "lat": 40.4402163, "lon": -3.7233867}, {"type": "node", "id": 3232900952, "lat": 40.4402658, "lon": -3.7224716}, {"type": "node", "id": 3232900953, "lat": 40.4402956, "lon": -3.7218937}, {"type": "node", "id": 3232900954, "lat": 40.4403836, "lon": -3.7234152}, {"type": "node", "id": 3232900955, "lat": 40.4403869, "lon": -3.7226455}, {"type": "node", "id": 3232900956, "lat": 40.4404055, "lon": -3.7219916}, {"type": "node", "id": 3232900957, "lat": 40.4404764, "lon": -3.7227826}, {"type": "node", "id": 3232900958, "lat": 40.4405945, "lon": -3.7234354}, {"type": "node", "id": 3232900959, "lat": 40.4405975, "lon": -3.7229418}, {"type": "node", "id": 3232900960, "lat": 40.4407131, "lon": -3.7230495}, {"type": "node", "id": 3232901561, "lat": 40.4407951, "lon": -3.7231156}, {"type": "node", "id": 3232901562, "lat": 40.440851, "lon": -3.7231573}, {"type": "node", "id": 3232901563, "lat": 40.4408678, "lon": -3.7232601}, {"type": "node", "id": 3232901564, "lat": 40.4409126, "lon": -3.72362}, {"type": "node", "id": 3232901565, "lat": 40.4409255, "lon": -3.7231622}, {"type": "node", "id": 3232901566, "lat": 40.4409423, "lon": -3.723434}, {"type": "node", "id": 3232901567, "lat": 40.4409814, "lon": -3.7235491}, {"type": "node", "id": 3232901568, "lat": 40.4410121, "lon": -3.7236969}, {"type": "node", "id": 3232901569, "lat": 40.4410307, "lon": -3.7257957}, {"type": "node", "id": 3232901570, "lat": 40.4410262, "lon": -3.7231352}, {"type": "node", "id": 3232901571, "lat": 40.4410746, "lon": -3.7225181}, {"type": "node", "id": 3232901572, "lat": 40.4410877, "lon": -3.7226479}, {"type": "node", "id": 3232901573, "lat": 40.4410933, "lon": -3.7257873}, {"type": "node", "id": 3232901574, "lat": 40.4410947, "lon": -3.7223965}, {"type": "node", "id": 3232901575, "lat": 40.4411212, "lon": -3.723101}, {"type": "node", "id": 3232901576, "lat": 40.4411324, "lon": -3.7227997}, {"type": "node", "id": 3232901577, "lat": 40.441138, "lon": -3.7257604}, {"type": "node", "id": 3232901578, "lat": 40.4411548, "lon": -3.7230275}, {"type": "node", "id": 3232901579, "lat": 40.4411622, "lon": -3.7229418}, {"type": "node", "id": 3232901580, "lat": 40.4411728, "lon": -3.7230743}, {"type": "node", "id": 3232901581, "lat": 40.4411745, "lon": -3.7238064}, {"type": "node", "id": 3232901582, "lat": 40.4412163, "lon": -3.7256796}, {"type": "node", "id": 3232901583, "lat": 40.4412349, "lon": -3.7230422}, {"type": "node", "id": 3232901584, "lat": 40.4412595, "lon": -3.7219523}, {"type": "node", "id": 3232901585, "lat": 40.4412852, "lon": -3.7230348}, {"type": "node", "id": 3232901586, "lat": 40.4413113, "lon": -3.725491}, {"type": "node", "id": 3232901587, "lat": 40.4413796, "lon": -3.7225108}, {"type": "node", "id": 3232901588, "lat": 40.4414345, "lon": -3.722677}, {"type": "node", "id": 3232901589, "lat": 40.4415045, "lon": -3.721585}, {"type": "node", "id": 3232901590, "lat": 40.4415054, "lon": -3.7241639}, {"type": "node", "id": 3232901591, "lat": 40.4415383, "lon": -3.7215956}, {"type": "node", "id": 3232901592, "lat": 40.441548, "lon": -3.7229132}, {"type": "node", "id": 3232901593, "lat": 40.4415514, "lon": -3.7242093}, {"type": "node", "id": 3232901594, "lat": 40.4415805, "lon": -3.7242964}, {"type": "node", "id": 3232901595, "lat": 40.4416001, "lon": -3.7215638}, {"type": "node", "id": 3232901596, "lat": 40.4416082, "lon": -3.7230295}, {"type": "node", "id": 3232901597, "lat": 40.4416524, "lon": -3.7228952}, {"type": "node", "id": 3232901598, "lat": 40.4416651, "lon": -3.7243687}, {"type": "node", "id": 3232901599, "lat": 40.4417134, "lon": -3.7244306}, {"type": "node", "id": 3232901600, "lat": 40.4417586, "lon": -3.7228365}, {"type": "node", "id": 3232901601, "lat": 40.4417802, "lon": -3.7214815}, {"type": "node", "id": 3232901602, "lat": 40.4417828, "lon": -3.7241376}, {"type": "node", "id": 3232901603, "lat": 40.4418088, "lon": -3.7242353}, {"type": "node", "id": 3232901604, "lat": 40.4418773, "lon": -3.7214278}, {"type": "node", "id": 3232901605, "lat": 40.4419003, "lon": -3.7227238}, {"type": "node", "id": 3232901606, "lat": 40.4419455, "lon": -3.7235298}, {"type": "node", "id": 3232901607, "lat": 40.4420177, "lon": -3.722643}, {"type": "node", "id": 3232901609, "lat": 40.4420651, "lon": -3.7213842}, {"type": "node", "id": 3232901610, "lat": 40.4420885, "lon": -3.7226038}, {"type": "node", "id": 3232901611, "lat": 40.4418067, "lon": -3.720904}, {"type": "node", "id": 3232901612, "lat": 40.4421777, "lon": -3.7212271}, {"type": "node", "id": 3232901613, "lat": 40.4422227, "lon": -3.7225671}, {"type": "node", "id": 3232901615, "lat": 40.4422531, "lon": -3.7212999}, {"type": "node", "id": 3232901616, "lat": 40.4423456, "lon": -3.7213656}, {"type": "node", "id": 3232901617, "lat": 40.4423675, "lon": -3.7225388}, {"type": "node", "id": 3232901618, "lat": 40.4430642, "lon": -3.721876}, {"type": "node", "id": 3232901619, "lat": 40.4431663, "lon": -3.7211507}, {"type": "node", "id": 3232901620, "lat": 40.4432379, "lon": -3.7210669}, {"type": "node", "id": 3232901621, "lat": 40.443187, "lon": -3.7220564}, {"type": "node", "id": 3232901622, "lat": 40.4434102, "lon": -3.7222451}, {"type": "node", "id": 3232901623, "lat": 40.4436325, "lon": -3.7224259}, {"type": "node", "id": 3232901624, "lat": 40.4439386, "lon": -3.7215275}, {"type": "node", "id": 3232906595, "lat": 40.4429314, "lon": -3.7234836}, {"type": "node", "id": 3232906596, "lat": 40.442943, "lon": -3.7229109}, {"type": "node", "id": 3232907774, "lat": 40.442029, "lon": -3.7248551}, {"type": "node", "id": 3232907775, "lat": 40.4420651, "lon": -3.7248212}, {"type": "node", "id": 3232907776, "lat": 40.4421539, "lon": -3.7247886}, {"type": "node", "id": 3232907777, "lat": 40.4423336, "lon": -3.7248171}, {"type": "node", "id": 3232907778, "lat": 40.4424802, "lon": -3.7249094}, {"type": "node", "id": 3232907779, "lat": 40.4425165, "lon": -3.7245983, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907780, "lat": 40.4425887, "lon": -3.7249899, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907781, "lat": 40.4426211, "lon": -3.7235919, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3232907782, "lat": 40.4427369, "lon": -3.7227217}, {"type": "node", "id": 3232907783, "lat": 40.442789, "lon": -3.7250613}, {"type": "node", "id": 3232907784, "lat": 40.4428159, "lon": -3.7226415}, {"type": "node", "id": 3232931151, "lat": 40.4397912, "lon": -3.7229957}, {"type": "node", "id": 3232931152, "lat": 40.4398321, "lon": -3.7231934}, {"type": "node", "id": 3232931154, "lat": 40.4398855, "lon": -3.7233389}, {"type": "node", "id": 3232931155, "lat": 40.4399256, "lon": -3.7234192}, {"type": "node", "id": 3232931157, "lat": 40.4399839, "lon": -3.7235371}, {"type": "node", "id": 3232931159, "lat": 40.4400173, "lon": -3.7236074}, {"type": "node", "id": 3232931171, "lat": 40.4404044, "lon": -3.7234167}, {"type": "node", "id": 3232931172, "lat": 40.4404994, "lon": -3.7234731}, {"type": "node", "id": 3232931173, "lat": 40.4406885, "lon": -3.7236162}, {"type": "node", "id": 3232931174, "lat": 40.4408355, "lon": -3.7237516}, {"type": "node", "id": 3232931175, "lat": 40.4409424, "lon": -3.7238269}, {"type": "node", "id": 3232931176, "lat": 40.4411372, "lon": -3.7239398}, {"type": "node", "id": 3232931177, "lat": 40.4412155, "lon": -3.723995}, {"type": "node", "id": 3232931179, "lat": 40.4417533, "lon": -3.7265713}, {"type": "node", "id": 3232931180, "lat": 40.4418467, "lon": -3.7266221}, {"type": "node", "id": 3232931181, "lat": 40.4418504, "lon": -3.7265851}, {"type": "node", "id": 3232931182, "lat": 40.4419088, "lon": -3.7250316}, {"type": "node", "id": 3232931183, "lat": 40.4419231, "lon": -3.7249475}, {"type": "node", "id": 3232931184, "lat": 40.4419498, "lon": -3.7248835}, {"type": "node", "id": 3232931185, "lat": 40.4419956, "lon": -3.7248095}, {"type": "node", "id": 3232931186, "lat": 40.4420147, "lon": -3.7250127}, {"type": "node", "id": 3232931187, "lat": 40.4420185, "lon": -3.7247862}, {"type": "node", "id": 3232931188, "lat": 40.442028, "lon": -3.7249617}, {"type": "node", "id": 3232931189, "lat": 40.4420338, "lon": -3.7247706}, {"type": "node", "id": 3232931190, "lat": 40.4420453, "lon": -3.7249187}, {"type": "node", "id": 3232931191, "lat": 40.4420778, "lon": -3.7248823}, {"type": "node", "id": 3232931192, "lat": 40.4420844, "lon": -3.7247418}, {"type": "node", "id": 3232931193, "lat": 40.4421169, "lon": -3.7248559}, {"type": "node", "id": 3232931194, "lat": 40.4421551, "lon": -3.7248459}, {"type": "node", "id": 3232931195, "lat": 40.4421637, "lon": -3.7247255}, {"type": "node", "id": 3232931196, "lat": 40.4422105, "lon": -3.7248484}, {"type": "node", "id": 3232931197, "lat": 40.4422391, "lon": -3.7247355}, {"type": "node", "id": 3232931198, "lat": 40.4422677, "lon": -3.7248585}, {"type": "node", "id": 3232931199, "lat": 40.4423432, "lon": -3.7247581}, {"type": "node", "id": 3232931200, "lat": 40.4423709, "lon": -3.7249024}, {"type": "node", "id": 3232931201, "lat": 40.4423766, "lon": -3.7247531}, {"type": "node", "id": 3232931202, "lat": 40.4424081, "lon": -3.7249262}, {"type": "node", "id": 3232931203, "lat": 40.4424167, "lon": -3.7247292}, {"type": "node", "id": 3232931204, "lat": 40.4424425, "lon": -3.7246954}, {"type": "node", "id": 3232931205, "lat": 40.4424638, "lon": -3.7246482}, {"type": "node", "id": 3232931206, "lat": 40.4424695, "lon": -3.7245889}, {"type": "node", "id": 3232931207, "lat": 40.4425321, "lon": -3.724828}, {"type": "node", "id": 3232931208, "lat": 40.442534, "lon": -3.7248769}, {"type": "node", "id": 3232931210, "lat": 40.44256, "lon": -3.7249211}, {"type": "node", "id": 3232931211, "lat": 40.442554, "lon": -3.7246064}, {"type": "node", "id": 3232931212, "lat": 40.4425764, "lon": -3.7235815}, {"type": "node", "id": 3232931213, "lat": 40.4425932, "lon": -3.7242095}, {"type": "node", "id": 3232931214, "lat": 40.4426151, "lon": -3.724069}, {"type": "node", "id": 3232931215, "lat": 40.4426285, "lon": -3.7240314}, {"type": "node", "id": 3232931216, "lat": 40.4426605, "lon": -3.723601}, {"type": "node", "id": 3232931217, "lat": 40.4426515, "lon": -3.7229052}, {"type": "node", "id": 3232931218, "lat": 40.4426697, "lon": -3.7227384}, {"type": "node", "id": 3232931219, "lat": 40.442682, "lon": -3.7226866}, {"type": "node", "id": 3232931220, "lat": 40.4427125, "lon": -3.7226239}, {"type": "node", "id": 3232931221, "lat": 40.4427602, "lon": -3.7225812}, {"type": "node", "id": 3232931222, "lat": 40.4428013, "lon": -3.7225561}, {"type": "node", "id": 3232931223, "lat": 40.4428338, "lon": -3.7225561}, {"type": "node", "id": 3232931224, "lat": 40.4434486, "lon": -3.7226653}, {"type": "node", "id": 3233003264, "lat": 40.4454101, "lon": -3.725454}, {"type": "node", "id": 3233003265, "lat": 40.4454126, "lon": -3.725394}, {"type": "node", "id": 3233003266, "lat": 40.4455014, "lon": -3.7245374}, {"type": "node", "id": 3233003267, "lat": 40.445528, "lon": -3.7245224}, {"type": "node", "id": 3233003268, "lat": 40.44558, "lon": -3.7245141}, {"type": "node", "id": 3233003269, "lat": 40.4458308, "lon": -3.7274124}, {"type": "node", "id": 3233003270, "lat": 40.445854, "lon": -3.7273837}, {"type": "node", "id": 3233003271, "lat": 40.4458666, "lon": -3.7273552}, {"type": "node", "id": 3233003272, "lat": 40.4458831, "lon": -3.7272953}, {"type": "node", "id": 3233003273, "lat": 40.4459912, "lon": -3.7245678}, {"type": "node", "id": 3233003274, "lat": 40.4460341, "lon": -3.7245753}, {"type": "node", "id": 3233003275, "lat": 40.4460547, "lon": -3.7256158}, {"type": "node", "id": 3233003276, "lat": 40.4460899, "lon": -3.7245924}, {"type": "node", "id": 3233003277, "lat": 40.4461197, "lon": -3.7246166}, {"type": "node", "id": 3233003278, "lat": 40.446142, "lon": -3.7256325}, {"type": "node", "id": 3233003279, "lat": 40.4461416, "lon": -3.7246465}, {"type": "node", "id": 3233003280, "lat": 40.4461552, "lon": -3.7247379}, {"type": "node", "id": 3233003281, "lat": 40.4461558, "lon": -3.7246816}, {"type": "node", "id": 3233005268, "lat": 40.4467382, "lon": -3.7244937}, {"type": "node", "id": 3233005269, "lat": 40.4468584, "lon": -3.7245898}, {"type": "node", "id": 3233009661, "lat": 40.4462904, "lon": -3.7249885}, {"type": "node", "id": 3233009662, "lat": 40.4464722, "lon": -3.7248833}, {"type": "node", "id": 3233009663, "lat": 40.4465251, "lon": -3.7248361}, {"type": "node", "id": 3233009664, "lat": 40.4466036, "lon": -3.724769}, {"type": "node", "id": 3233009665, "lat": 40.4466376, "lon": -3.7245129}, {"type": "node", "id": 3233009666, "lat": 40.4466494, "lon": -3.724561}, {"type": "node", "id": 3233009667, "lat": 40.4466494, "lon": -3.7246951}, {"type": "node", "id": 3233009668, "lat": 40.4466663, "lon": -3.7244613, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 3233009669, "lat": 40.4466647, "lon": -3.7245748, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3233009670, "lat": 40.446669, "lon": -3.7245988}, {"type": "node", "id": 3233009671, "lat": 40.4466703, "lon": -3.7246298}, {"type": "node", "id": 3233009672, "lat": 40.4466761, "lon": -3.7243794}, {"type": "node", "id": 3233009673, "lat": 40.4467645, "lon": -3.724616}, {"type": "node", "id": 3233013127, "lat": 40.4482159, "lon": -3.7271459}, {"type": "node", "id": 3233016400, "lat": 40.4484463, "lon": -3.7255451}, {"type": "node", "id": 3233016401, "lat": 40.4484694, "lon": -3.7251228}, {"type": "node", "id": 3233019463, "lat": 40.446613, "lon": -3.7244377}, {"type": "node", "id": 3233026343, "lat": 40.443957, "lon": -3.7246013, "tags": {"entrance": "main"}}, {"type": "node", "id": 3235382373, "lat": 40.4206012, "lon": -3.6886452, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3245280175, "lat": 40.439472, "lon": -3.702475}, {"type": "node", "id": 3245280176, "lat": 40.4394911, "lon": -3.7037235}, {"type": "node", "id": 3245280178, "lat": 40.4397017, "lon": -3.7017339}, {"type": "node", "id": 3245280181, "lat": 40.4404455, "lon": -3.7014244}, {"type": "node", "id": 3245280184, "lat": 40.4405158, "lon": -3.701698}, {"type": "node", "id": 3245280185, "lat": 40.4406778, "lon": -3.7014648}, {"type": "node", "id": 3245280187, "lat": 40.4407206, "lon": -3.7016911}, {"type": "node", "id": 3245280189, "lat": 40.4407286, "lon": -3.7018057, "tags": {"noexit": "yes"}}, {"type": "node", "id": 3245280192, "lat": 40.441512, "lon": -3.7031815}, {"type": "node", "id": 3245280193, "lat": 40.441539, "lon": -3.7019505}, {"type": "node", "id": 3245280194, "lat": 40.4415749, "lon": -3.7026284}, {"type": "node", "id": 3247246407, "lat": 40.4438245, "lon": -3.6880702, "tags": {"noexit": "yes"}}, {"type": "node", "id": 3247246408, "lat": 40.4438456, "lon": -3.6884171}, {"type": "node", "id": 3247246409, "lat": 40.4439154, "lon": -3.689793}, {"type": "node", "id": 3247246412, "lat": 40.4441278, "lon": -3.6876958}, {"type": "node", "id": 3247246413, "lat": 40.4441627, "lon": -3.6883931}, {"type": "node", "id": 3247246414, "lat": 40.4442233, "lon": -3.6897674}, {"type": "node", "id": 3247246415, "lat": 40.4444147, "lon": -3.6876706}, {"type": "node", "id": 3247246416, "lat": 40.4444376, "lon": -3.6876957}, {"type": "node", "id": 3247246417, "lat": 40.4444654, "lon": -3.6883656}, {"type": "node", "id": 3247246418, "lat": 40.4445485, "lon": -3.6897416}, {"type": "node", "id": 3247246420, "lat": 40.4449145, "lon": -3.6897126}, {"type": "node", "id": 3253320370, "lat": 40.4349612, "lon": -3.7197505}, {"type": "node", "id": 3253320371, "lat": 40.4349689, "lon": -3.719821}, {"type": "node", "id": 3253320372, "lat": 40.4349866, "lon": -3.7196792}, {"type": "node", "id": 3253320373, "lat": 40.4350081, "lon": -3.7196517}, {"type": "node", "id": 3253320374, "lat": 40.4350324, "lon": -3.7196454}, {"type": "node", "id": 3253320375, "lat": 40.4351667, "lon": -3.7196847}, {"type": "node", "id": 3253320376, "lat": 40.4353165, "lon": -3.719775}, {"type": "node", "id": 3253942876, "lat": 40.432429, "lon": -3.7194122}, {"type": "node", "id": 3253942878, "lat": 40.4325058, "lon": -3.7194042}, {"type": "node", "id": 3253942880, "lat": 40.432555, "lon": -3.7194407, "tags": {"barrier": "gate", "military": "checkpoint"}}, {"type": "node", "id": 3253942881, "lat": 40.4325861, "lon": -3.7196349}, {"type": "node", "id": 3253942883, "lat": 40.4325944, "lon": -3.7202644}, {"type": "node", "id": 3253942887, "lat": 40.4327375, "lon": -3.7192134}, {"type": "node", "id": 3253942888, "lat": 40.4328191, "lon": -3.7205718}, {"type": "node", "id": 3253942889, "lat": 40.4328178, "lon": -3.7197383}, {"type": "node", "id": 3253942890, "lat": 40.4328581, "lon": -3.7196428}, {"type": "node", "id": 3253942891, "lat": 40.4328642, "lon": -3.7204619}, {"type": "node", "id": 3253942892, "lat": 40.4328941, "lon": -3.7203884}, {"type": "node", "id": 3253942893, "lat": 40.4329685, "lon": -3.7193825}, {"type": "node", "id": 3253942894, "lat": 40.4330804, "lon": -3.7206202, "tags": {"access": "private", "amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 3253942896, "lat": 40.4335618, "lon": -3.7210954}, {"type": "node", "id": 3253942897, "lat": 40.4335996, "lon": -3.7210971}, {"type": "node", "id": 3253942898, "lat": 40.4336255, "lon": -3.7209047}, {"type": "node", "id": 3253942899, "lat": 40.4336338, "lon": -3.7210759}, {"type": "node", "id": 3253942900, "lat": 40.4336521, "lon": -3.72094}, {"type": "node", "id": 3253942901, "lat": 40.4336568, "lon": -3.7210364}, {"type": "node", "id": 3253942902, "lat": 40.4336634, "lon": -3.7209875}, {"type": "node", "id": 3253942905, "lat": 40.4339663, "lon": -3.7218327, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3257568695, "lat": 40.4307758, "lon": -3.7157862, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258762560, "lat": 40.4394514, "lon": -3.6977111, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766761, "lat": 40.4395226, "lon": -3.6975793, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766762, "lat": 40.4395264, "lon": -3.6976595, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3258766763, "lat": 40.439533, "lon": -3.6977957, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766764, "lat": 40.4394847, "lon": -3.7029566}, {"type": "node", "id": 3258766765, "lat": 40.4396088, "lon": -3.6976978, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3258766766, "lat": 40.440409, "lon": -3.7037552}, {"type": "node", "id": 3258766767, "lat": 40.4404158, "lon": -3.7037355}, {"type": "node", "id": 3258766769, "lat": 40.4404564, "lon": -3.7037024}, {"type": "node", "id": 3258766770, "lat": 40.4404592, "lon": -3.7029117}, {"type": "node", "id": 3258766771, "lat": 40.4404812, "lon": -3.7036965}, {"type": "node", "id": 3258766772, "lat": 40.4405018, "lon": -3.7036986}, {"type": "node", "id": 3258766773, "lat": 40.4405369, "lon": -3.703715}, {"type": "node", "id": 3258766774, "lat": 40.4405501, "lon": -3.7037325}, {"type": "node", "id": 3258766775, "lat": 40.4405567, "lon": -3.6976177, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3258766776, "lat": 40.4406214, "lon": -3.6974977, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258766777, "lat": 40.4406279, "lon": -3.6976377, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3258766778, "lat": 40.4406311, "lon": -3.6977064, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3258766779, "lat": 40.4407191, "lon": -3.697604, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3258766780, "lat": 40.4415488, "lon": -3.702858}, {"type": "node", "id": 3258766781, "lat": 40.441795, "lon": -3.6973617, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3258766782, "lat": 40.4419177, "lon": -3.6975027, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3258766783, "lat": 40.4430463, "lon": -3.6974073, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3267220581, "lat": 40.4258437, "lon": -3.7120014, "tags": {"crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713820, "lat": 40.433042, "lon": -3.6834727, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713822, "lat": 40.4337767, "lon": -3.6834103, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3268713823, "lat": 40.4338117, "lon": -3.681945, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713824, "lat": 40.4338232, "lon": -3.6821748, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713825, "lat": 40.4338761, "lon": -3.6832321, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3268713826, "lat": 40.4338936, "lon": -3.6835862, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3268713828, "lat": 40.4347708, "lon": -3.6833258, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3268713829, "lat": 40.4348649, "lon": -3.6844255, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713830, "lat": 40.4349206, "lon": -3.6854394, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713831, "lat": 40.4349309, "lon": -3.6830656, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713832, "lat": 40.4349376, "lon": -3.6865602, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713833, "lat": 40.4349528, "lon": -3.6835467, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3268713834, "lat": 40.4349903, "lon": -3.6843142, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713835, "lat": 40.4349979, "lon": -3.6863914}, {"type": "node", "id": 3268713836, "lat": 40.4350027, "lon": -3.6845665, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713837, "lat": 40.4350388, "lon": -3.6853049, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713838, "lat": 40.4350509, "lon": -3.6855524, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713839, "lat": 40.4350981, "lon": -3.6864659}, {"type": "node", "id": 3268713840, "lat": 40.435127, "lon": -3.6832955, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713841, "lat": 40.435142, "lon": -3.6844024, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713842, "lat": 40.4351704, "lon": -3.6863738}, {"type": "node", "id": 3268713843, "lat": 40.4351889, "lon": -3.685418, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3268713844, "lat": 40.4352997, "lon": -3.6867143, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3268713845, "lat": 40.4360747, "lon": -3.683215, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3268713846, "lat": 40.4361421, "lon": -3.6834238, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3268713847, "lat": 40.4363312, "lon": -3.6831632}, {"type": "node", "id": 3269790740, "lat": 40.43241, "lon": -3.7007788}, {"type": "node", "id": 3269791070, "lat": 40.4331531, "lon": -3.7011209}, {"type": "node", "id": 3270228361, "lat": 40.4265943, "lon": -3.713019}, {"type": "node", "id": 3270228362, "lat": 40.4268386, "lon": -3.7132891}, {"type": "node", "id": 3274917092, "lat": 40.4460817, "lon": -3.6866234}, {"type": "node", "id": 3274917093, "lat": 40.4464791, "lon": -3.6925687}, {"type": "node", "id": 3274917094, "lat": 40.4464841, "lon": -3.692628}, {"type": "node", "id": 3274917095, "lat": 40.4464929, "lon": -3.6925292}, {"type": "node", "id": 3274917096, "lat": 40.4465004, "lon": -3.6926873}, {"type": "node", "id": 3274917097, "lat": 40.4465217, "lon": -3.6924798}, {"type": "node", "id": 3274917098, "lat": 40.446543, "lon": -3.6927466}, {"type": "node", "id": 3274917099, "lat": 40.4465681, "lon": -3.6924555}, {"type": "node", "id": 3274917100, "lat": 40.4465969, "lon": -3.6927763}, {"type": "node", "id": 3274917101, "lat": 40.4466257, "lon": -3.6979215}, {"type": "node", "id": 3275193116, "lat": 40.4479318, "lon": -3.6837354}, {"type": "node", "id": 3275193117, "lat": 40.4479369, "lon": -3.6860741}, {"type": "node", "id": 3279568933, "lat": 40.4331059, "lon": -3.7044183}, {"type": "node", "id": 3280496565, "lat": 40.4212809, "lon": -3.6884428}, {"type": "node", "id": 3280496566, "lat": 40.4217166, "lon": -3.6883757}, {"type": "node", "id": 3280496567, "lat": 40.4218772, "lon": -3.6883588}, {"type": "node", "id": 3280496568, "lat": 40.4224492, "lon": -3.6882652}, {"type": "node", "id": 3280496569, "lat": 40.4225749, "lon": -3.6882454}, {"type": "node", "id": 3280496570, "lat": 40.4303353, "lon": -3.6868464}, {"type": "node", "id": 3280496571, "lat": 40.4305354, "lon": -3.6867509}, {"type": "node", "id": 3280496572, "lat": 40.432867, "lon": -3.6865578}, {"type": "node", "id": 3293613522, "lat": 40.4339531, "lon": -3.6947779}, {"type": "node", "id": 3293613576, "lat": 40.4455608, "lon": -3.714662}, {"type": "node", "id": 3293613578, "lat": 40.4455871, "lon": -3.7148955}, {"type": "node", "id": 3293613579, "lat": 40.4455946, "lon": -3.7145963}, {"type": "node", "id": 3293613580, "lat": 40.4456175, "lon": -3.7149408}, {"type": "node", "id": 3293613581, "lat": 40.4456567, "lon": -3.7145404}, {"type": "node", "id": 3293613583, "lat": 40.4456662, "lon": -3.7149958}, {"type": "node", "id": 3293613585, "lat": 40.4457121, "lon": -3.7143584}, {"type": "node", "id": 3293613586, "lat": 40.4457229, "lon": -3.715026}, {"type": "node", "id": 3293613589, "lat": 40.4457838, "lon": -3.7150411}, {"type": "node", "id": 3293613591, "lat": 40.4459094, "lon": -3.7150029}, {"type": "node", "id": 3293613593, "lat": 40.4459536, "lon": -3.7149432}, {"type": "node", "id": 3293613594, "lat": 40.4459601, "lon": -3.7146922}, {"type": "node", "id": 3293613595, "lat": 40.4459871, "lon": -3.7147615}, {"type": "node", "id": 3293613596, "lat": 40.4460175, "lon": -3.7144809}, {"type": "node", "id": 3294582986, "lat": 40.4346249, "lon": -3.6987618}, {"type": "node", "id": 3294582987, "lat": 40.4346583, "lon": -3.6987763}, {"type": "node", "id": 3294582989, "lat": 40.4346846, "lon": -3.6988882}, {"type": "node", "id": 3294582990, "lat": 40.4347589, "lon": -3.6990559}, {"type": "node", "id": 3294582991, "lat": 40.4347345, "lon": -3.6984883}, {"type": "node", "id": 3294582992, "lat": 40.4347633, "lon": -3.6990342}, {"type": "node", "id": 3294582993, "lat": 40.4347985, "lon": -3.6984278}, {"type": "node", "id": 3294582994, "lat": 40.43487, "lon": -3.6983886}, {"type": "node", "id": 3294582996, "lat": 40.4349506, "lon": -3.699136}, {"type": "node", "id": 3294582997, "lat": 40.4349582, "lon": -3.6990987}, {"type": "node", "id": 3294583000, "lat": 40.4350216, "lon": -3.699088}, {"type": "node", "id": 3294583002, "lat": 40.4350672, "lon": -3.6984088}, {"type": "node", "id": 3294583003, "lat": 40.4350699, "lon": -3.6983506}, {"type": "node", "id": 3294583005, "lat": 40.4350993, "lon": -3.699031}, {"type": "node", "id": 3294583007, "lat": 40.4351422, "lon": -3.6984968}, {"type": "node", "id": 3294583008, "lat": 40.4351527, "lon": -3.6989704}, {"type": "node", "id": 3294583009, "lat": 40.4351902, "lon": -3.698593}, {"type": "node", "id": 3294583010, "lat": 40.4352115, "lon": -3.6990025}, {"type": "node", "id": 3294583011, "lat": 40.435216, "lon": -3.6987196}, {"type": "node", "id": 3294583012, "lat": 40.4352721, "lon": -3.6987458}, {"type": "node", "id": 3308362987, "lat": 40.43324, "lon": -3.7166699, "tags": {"access": "private", "barrier": "gate", "bicycle": "yes", "foot": "yes", "motorcar": "yes", "motorcycle": "yes"}}, {"type": "node", "id": 3313144502, "lat": 40.4271491, "lon": -3.7142058}, {"type": "node", "id": 3313144504, "lat": 40.4272342, "lon": -3.7140115}, {"type": "node", "id": 3321767697, "lat": 40.450506, "lon": -3.7113241}, {"type": "node", "id": 3321767702, "lat": 40.4509237, "lon": -3.710871, "tags": {"button_operated": "yes", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3321767704, "lat": 40.4513913, "lon": -3.7111698}, {"type": "node", "id": 3323813668, "lat": 40.4196992, "lon": -3.6926831}, {"type": "node", "id": 3323813669, "lat": 40.4226714, "lon": -3.6883249, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 3323948845, "lat": 40.425087, "lon": -3.6902485}, {"type": "node", "id": 3323948846, "lat": 40.425234, "lon": -3.6902106}, {"type": "node", "id": 3323948847, "lat": 40.4252373, "lon": -3.6907128}, {"type": "node", "id": 3323948848, "lat": 40.4253667, "lon": -3.6906621}, {"type": "node", "id": 3323948849, "lat": 40.4254183, "lon": -3.6899007}, {"type": "node", "id": 3345953466, "lat": 40.4327027, "lon": -3.7010005}, {"type": "node", "id": 3345953467, "lat": 40.4324641, "lon": -3.7013962}, {"type": "node", "id": 3345953468, "lat": 40.4328049, "lon": -3.7005169}, {"type": "node", "id": 3347872566, "lat": 40.449976, "lon": -3.6925066}, {"type": "node", "id": 3347872567, "lat": 40.4488117, "lon": -3.6944373}, {"type": "node", "id": 3347872568, "lat": 40.4484793, "lon": -3.6943893}, {"type": "node", "id": 3347872569, "lat": 40.4483338, "lon": -3.695367}, {"type": "node", "id": 3347872570, "lat": 40.449996, "lon": -3.6928794}, {"type": "node", "id": 3347872571, "lat": 40.4497943, "lon": -3.6928905}, {"type": "node", "id": 3347872572, "lat": 40.4492108, "lon": -3.6938715}, {"type": "node", "id": 3347872573, "lat": 40.4494579, "lon": -3.6940783}, {"type": "node", "id": 3347872574, "lat": 40.4500137, "lon": -3.6933239}, {"type": "node", "id": 3347872575, "lat": 40.4499209, "lon": -3.6928835}, {"type": "node", "id": 3347872576, "lat": 40.4500209, "lon": -3.6934727}, {"type": "node", "id": 3347872577, "lat": 40.4474833, "lon": -3.6929261}, {"type": "node", "id": 3347872578, "lat": 40.4497025, "lon": -3.6935412}, {"type": "node", "id": 3347872579, "lat": 40.4504838, "lon": -3.6943274}, {"type": "node", "id": 3347872580, "lat": 40.4499624, "lon": -3.6938109}, {"type": "node", "id": 3347872581, "lat": 40.448831, "lon": -3.6940294}, {"type": "node", "id": 3347872582, "lat": 40.4474574, "lon": -3.6948144}, {"type": "node", "id": 3347872583, "lat": 40.4475226, "lon": -3.6935841}, {"type": "node", "id": 3347872584, "lat": 40.4489706, "lon": -3.6953101}, {"type": "node", "id": 3347872585, "lat": 40.4488065, "lon": -3.6942547}, {"type": "node", "id": 3347872586, "lat": 40.4483245, "lon": -3.6951982}, {"type": "node", "id": 3347872587, "lat": 40.4483132, "lon": -3.6950011}, {"type": "node", "id": 3347872588, "lat": 40.4486108, "lon": -3.69458}, {"type": "node", "id": 3347872590, "lat": 40.4498126, "lon": -3.6940884}, {"type": "node", "id": 3347872591, "lat": 40.4492882, "lon": -3.693045}, {"type": "node", "id": 3347872592, "lat": 40.4483816, "lon": -3.6934665}, {"type": "node", "id": 3347875393, "lat": 40.4489302, "lon": -3.6945971}, {"type": "node", "id": 3347875394, "lat": 40.4485125, "lon": -3.6943378}, {"type": "node", "id": 3347875395, "lat": 40.4499854, "lon": -3.6927151}, {"type": "node", "id": 3347875396, "lat": 40.4478346, "lon": -3.6928883}, {"type": "node", "id": 3347875397, "lat": 40.4491657, "lon": -3.6927608}, {"type": "node", "id": 3347875398, "lat": 40.4497103, "lon": -3.6937004}, {"type": "node", "id": 3347875399, "lat": 40.448786, "lon": -3.6932878}, {"type": "node", "id": 3347875400, "lat": 40.4485085, "lon": -3.6942842}, {"type": "node", "id": 3347875401, "lat": 40.4489607, "lon": -3.6951011}, {"type": "node", "id": 3347875402, "lat": 40.4491942, "lon": -3.6934971}, {"type": "node", "id": 3347875403, "lat": 40.4491841, "lon": -3.693257}, {"type": "node", "id": 3347875404, "lat": 40.4487003, "lon": -3.6932944}, {"type": "node", "id": 3347875405, "lat": 40.4494392, "lon": -3.6926519}, {"type": "node", "id": 3347875406, "lat": 40.4502302, "lon": -3.6943929}, {"type": "node", "id": 3347875407, "lat": 40.4498009, "lon": -3.6930131}, {"type": "node", "id": 3347875408, "lat": 40.4489844, "lon": -3.6925694}, {"type": "node", "id": 3347875409, "lat": 40.4496841, "lon": -3.693155}, {"type": "node", "id": 3347875410, "lat": 40.4494978, "lon": -3.6945497}, {"type": "node", "id": 3347875411, "lat": 40.4486372, "lon": -3.6945182}, {"type": "node", "id": 3347875412, "lat": 40.4489024, "lon": -3.6935224}, {"type": "node", "id": 3347875413, "lat": 40.4491725, "lon": -3.6929353}, {"type": "node", "id": 3347875414, "lat": 40.4494127, "lon": -3.6935661}, {"type": "node", "id": 3347875415, "lat": 40.4495218, "lon": -3.6950441}, {"type": "node", "id": 3347875416, "lat": 40.4494724, "lon": -3.6943536}, {"type": "node", "id": 3347875417, "lat": 40.4489144, "lon": -3.6944953}, {"type": "node", "id": 3347875418, "lat": 40.4489505, "lon": -3.6949202}, {"type": "node", "id": 3347875419, "lat": 40.4487222, "lon": -3.6941875}, {"type": "node", "id": 3347875420, "lat": 40.4497168, "lon": -3.6928948}, {"type": "node", "id": 3347875421, "lat": 40.4500495, "lon": -3.6940669}, {"type": "node", "id": 3347875422, "lat": 40.449827, "lon": -3.6944251}, {"type": "node", "id": 3347875423, "lat": 40.4481841, "lon": -3.6943396}, {"type": "node", "id": 3347875424, "lat": 40.4494445, "lon": -3.6938505}, {"type": "node", "id": 3347875425, "lat": 40.448921, "lon": -3.6938997}, {"type": "node", "id": 3347875426, "lat": 40.4494646, "lon": -3.694179}, {"type": "node", "id": 3347875427, "lat": 40.4499374, "lon": -3.6932577}, {"type": "node", "id": 3347875428, "lat": 40.4494862, "lon": -3.6944516}, {"type": "node", "id": 3347875429, "lat": 40.4488147, "lon": -3.6937613}, {"type": "node", "id": 3347875430, "lat": 40.4482329, "lon": -3.6942466}, {"type": "node", "id": 3347875431, "lat": 40.4498374, "lon": -3.6936862}, {"type": "node", "id": 3347875432, "lat": 40.448162, "lon": -3.6940328}, {"type": "node", "id": 3347875433, "lat": 40.4482945, "lon": -3.6946075}, {"type": "node", "id": 3347875434, "lat": 40.4484349, "lon": -3.6946028}, {"type": "node", "id": 3347875436, "lat": 40.4484034, "lon": -3.6945273}, {"type": "node", "id": 3347875437, "lat": 40.4495321, "lon": -3.6952601}, {"type": "node", "id": 3347875438, "lat": 40.4484184, "lon": -3.694469}, {"type": "node", "id": 3347875439, "lat": 40.4504904, "lon": -3.6943727}, {"type": "node", "id": 3347875442, "lat": 40.4486779, "lon": -3.6934366}, {"type": "node", "id": 3347875443, "lat": 40.4495114, "lon": -3.6948479}, {"type": "node", "id": 3347875444, "lat": 40.4489135, "lon": -3.6937475}, {"type": "node", "id": 3347875445, "lat": 40.4494523, "lon": -3.6939833}, {"type": "node", "id": 3347875446, "lat": 40.4483772, "lon": -3.6933185}, {"type": "node", "id": 3347875447, "lat": 40.4490131, "lon": -3.6932719}, {"type": "node", "id": 3347875448, "lat": 40.4492559, "lon": -3.6938644}, {"type": "node", "id": 3347875449, "lat": 40.4497127, "lon": -3.6927233}, {"type": "node", "id": 3347875450, "lat": 40.4486473, "lon": -3.6932971}, {"type": "node", "id": 3347875451, "lat": 40.4500093, "lon": -3.6932464}, {"type": "node", "id": 3347875452, "lat": 40.4493208, "lon": -3.6937397}, {"type": "node", "id": 3347875453, "lat": 40.4499691, "lon": -3.6939352}, {"type": "node", "id": 3347875454, "lat": 40.4487391, "lon": -3.694319}, {"type": "node", "id": 3347875455, "lat": 40.449031, "lon": -3.6935119}, {"type": "node", "id": 3347875456, "lat": 40.4478836, "lon": -3.6928876}, {"type": "node", "id": 3347875457, "lat": 40.4494373, "lon": -3.6937285}, {"type": "node", "id": 3347875458, "lat": 40.4482149, "lon": -3.6939827}, {"type": "node", "id": 3347875459, "lat": 40.4493902, "lon": -3.6931818}, {"type": "node", "id": 3347875460, "lat": 40.449844, "lon": -3.6938082}, {"type": "node", "id": 3347875461, "lat": 40.4487412, "lon": -3.6943673}, {"type": "node", "id": 3347875462, "lat": 40.449445, "lon": -3.6927359}, {"type": "node", "id": 3347875463, "lat": 40.4493826, "lon": -3.6930373}, {"type": "node", "id": 3357109393, "lat": 40.4452228, "lon": -3.7063788, "tags": {"amenity": "parking_entrance", "name": "Aparcamiento Residentes"}}, {"type": "node", "id": 3357109504, "lat": 40.4446808, "lon": -3.7064054}, {"type": "node", "id": 3357109510, "lat": 40.4452159, "lon": -3.7067182}, {"type": "node", "id": 3357109516, "lat": 40.4452419, "lon": -3.7063593}, {"type": "node", "id": 3357109518, "lat": 40.4452866, "lon": -3.7063552}, {"type": "node", "id": 3357109520, "lat": 40.4453222, "lon": -3.7064217}, {"type": "node", "id": 3374152542, "lat": 40.4270415, "lon": -3.6859505}, {"type": "node", "id": 3374152547, "lat": 40.4270652, "lon": -3.6862221, "tags": {"entrance": "yes"}}, {"type": "node", "id": 3380591995, "lat": 40.4423231, "lon": -3.7048359}, {"type": "node", "id": 3382978629, "lat": 40.4465289, "lon": -3.7181978}, {"type": "node", "id": 3382978630, "lat": 40.4465794, "lon": -3.7180681}, {"type": "node", "id": 3382978631, "lat": 40.4466107, "lon": -3.7179315}, {"type": "node", "id": 3382978634, "lat": 40.4468065, "lon": -3.7179428}, {"type": "node", "id": 3382978635, "lat": 40.4468096, "lon": -3.7179616}, {"type": "node", "id": 3382978636, "lat": 40.4468249, "lon": -3.7179968}, {"type": "node", "id": 3382978637, "lat": 40.4468134, "lon": -3.7182155}, {"type": "node", "id": 3382978638, "lat": 40.4468702, "lon": -3.7181583}, {"type": "node", "id": 3386198916, "lat": 40.4391673, "lon": -3.700877}, {"type": "node", "id": 3389052231, "lat": 40.4477651, "lon": -3.7251172}, {"type": "node", "id": 3390533481, "lat": 40.4482341, "lon": -3.6856916}, {"type": "node", "id": 3412613856, "lat": 40.4298513, "lon": -3.706089, "tags": {"name": "Alberto Aguilera", "railway": "subway_entrance"}}, {"type": "node", "id": 3412613857, "lat": 40.4297064, "lon": -3.705306, "tags": {"name": "Carranza", "opening_hours": "06:00-21:40", "railway": "subway_entrance"}}, {"type": "node", "id": 3412613858, "lat": 40.4296483, "lon": -3.7052708}, {"type": "node", "id": 3412613859, "lat": 40.4298792, "lon": -3.7060313}, {"type": "node", "id": 3418035816, "lat": 40.4212459, "lon": -3.6917927}, {"type": "node", "id": 3418035817, "lat": 40.4212529, "lon": -3.691666, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3418035818, "lat": 40.421275, "lon": -3.6915348}, {"type": "node", "id": 3418035819, "lat": 40.4212942, "lon": -3.6915006}, {"type": "node", "id": 3418035820, "lat": 40.42133, "lon": -3.6913649}, {"type": "node", "id": 3418035821, "lat": 40.4213305, "lon": -3.6912772}, {"type": "node", "id": 3418035822, "lat": 40.4216487, "lon": -3.69104}, {"type": "node", "id": 3418035823, "lat": 40.4221494, "lon": -3.6913773, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035825, "lat": 40.4229153, "lon": -3.6910412, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035826, "lat": 40.4230015, "lon": -3.6913459, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3418035827, "lat": 40.4230765, "lon": -3.6907611, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418035828, "lat": 40.4230656, "lon": -3.6915933}, {"type": "node", "id": 3418035829, "lat": 40.4231245, "lon": -3.69183}, {"type": "node", "id": 3418035834, "lat": 40.4233026, "lon": -3.6905671}, {"type": "node", "id": 3418035836, "lat": 40.4242705, "lon": -3.6901459}, {"type": "node", "id": 3418035837, "lat": 40.4243656, "lon": -3.6900631, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3418035838, "lat": 40.4243849, "lon": -3.6900485, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3418035839, "lat": 40.4244612, "lon": -3.6900022}, {"type": "node", "id": 3418035840, "lat": 40.4248259, "lon": -3.6897391}, {"type": "node", "id": 3418035841, "lat": 40.4252051, "lon": -3.6909762}, {"type": "node", "id": 3418035844, "lat": 40.4254583, "lon": -3.6908526}, {"type": "node", "id": 3418035846, "lat": 40.4256392, "lon": -3.6899212}, {"type": "node", "id": 3418127828, "lat": 40.4281057, "lon": -3.6958565}, {"type": "node", "id": 3418127829, "lat": 40.4281679, "lon": -3.6958238, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127830, "lat": 40.4281731, "lon": -3.6957843, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127832, "lat": 40.4297164, "lon": -3.6962997, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418127834, "lat": 40.4321173, "lon": -3.6975088, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127835, "lat": 40.4322856, "lon": -3.6974719, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127836, "lat": 40.4323416, "lon": -3.6979312, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127837, "lat": 40.4323488, "lon": -3.6978915, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3418127838, "lat": 40.432407, "lon": -3.6973722, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3418127839, "lat": 40.4325799, "lon": -3.6977661}, {"type": "node", "id": 3418127840, "lat": 40.4326345, "lon": -3.6966548}, {"type": "node", "id": 3418222082, "lat": 40.4267903, "lon": -3.6997368, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 3418222083, "lat": 40.4284079, "lon": -3.6901954}, {"type": "node", "id": 3418222084, "lat": 40.4284585, "lon": -3.6905052}, {"type": "node", "id": 3418222085, "lat": 40.4284239, "lon": -3.6901536}, {"type": "node", "id": 3418222086, "lat": 40.4284523, "lon": -3.6903499}, {"type": "node", "id": 3418222088, "lat": 40.4285234, "lon": -3.6899592}, {"type": "node", "id": 3418222089, "lat": 40.4285388, "lon": -3.6900543, "tags": {"addr:housenumber": "17", "addr:street": "Paseo de la Castellana", "barrier": "gate"}}, {"type": "node", "id": 3418222091, "lat": 40.4285432, "lon": -3.6903283}, {"type": "node", "id": 3418224193, "lat": 40.4285423, "lon": -3.6901198}, {"type": "node", "id": 3418224194, "lat": 40.4285463, "lon": -3.6901575}, {"type": "node", "id": 3418224199, "lat": 40.4285646, "lon": -3.6902866}, {"type": "node", "id": 3418224201, "lat": 40.4285719, "lon": -3.6903549}, {"type": "node", "id": 3418224205, "lat": 40.4285835, "lon": -3.6904901}, {"type": "node", "id": 3418224210, "lat": 40.4285946, "lon": -3.6903147}, {"type": "node", "id": 3418224212, "lat": 40.4286299, "lon": -3.6901194}, {"type": "node", "id": 3418224213, "lat": 40.4286554, "lon": -3.6901345}, {"type": "node", "id": 3418224214, "lat": 40.4286888, "lon": -3.6901898}, {"type": "node", "id": 3418224216, "lat": 40.4286867, "lon": -3.6905099}, {"type": "node", "id": 3418224217, "lat": 40.428718, "lon": -3.6904777}, {"type": "node", "id": 3418224225, "lat": 40.4371552, "lon": -3.7043765}, {"type": "node", "id": 3418224234, "lat": 40.4372538, "lon": -3.704378}, {"type": "node", "id": 3419296693, "lat": 40.4378525, "lon": -3.6860586, "tags": {"highway": "traffic_signals", "name": "Mar\u00eda de Molina- Serrano"}}, {"type": "node", "id": 3424799415, "lat": 40.4235509, "lon": -3.6930418, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424799419, "lat": 40.4238946, "lon": -3.6946492}, {"type": "node", "id": 3424799420, "lat": 40.4239101, "lon": -3.6945149}, {"type": "node", "id": 3424799422, "lat": 40.4239365, "lon": -3.6943794}, {"type": "node", "id": 3424799423, "lat": 40.4239538, "lon": -3.6948045}, {"type": "node", "id": 3424799424, "lat": 40.4239406, "lon": -3.694559, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3424799427, "lat": 40.4239947, "lon": -3.6948221, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3424799429, "lat": 40.4240164, "lon": -3.6949119}, {"type": "node", "id": 3424799430, "lat": 40.4240118, "lon": -3.6947624}, {"type": "node", "id": 3424799432, "lat": 40.4240664, "lon": -3.6949512}, {"type": "node", "id": 3424799433, "lat": 40.4240806, "lon": -3.6948806}, {"type": "node", "id": 3424799435, "lat": 40.4241062, "lon": -3.6949276}, {"type": "node", "id": 3424799436, "lat": 40.4241306, "lon": -3.6949868, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3424799437, "lat": 40.4241383, "lon": -3.6948468, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3424801041, "lat": 40.4234117, "lon": -3.6928731, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801042, "lat": 40.4234885, "lon": -3.6927684, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801043, "lat": 40.4236177, "lon": -3.6928785, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801044, "lat": 40.4238131, "lon": -3.694191, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801045, "lat": 40.4239064, "lon": -3.6949526, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3424801046, "lat": 40.4239737, "lon": -3.6943655, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3424801047, "lat": 40.4244176, "lon": -3.6954928, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3424801048, "lat": 40.4244715, "lon": -3.6942892, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3424801049, "lat": 40.4245088, "lon": -3.6955646, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801050, "lat": 40.424639, "lon": -3.6955451, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3424801051, "lat": 40.4249841, "lon": -3.6939025, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424801052, "lat": 40.4250664, "lon": -3.6931662, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424801054, "lat": 40.4257817, "lon": -3.6937396, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424801055, "lat": 40.4258805, "lon": -3.6937923, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3424964317, "lat": 40.4218894, "lon": -3.6923212, "tags": {"highway": "stop"}}, {"type": "node", "id": 3424964318, "lat": 40.4273648, "lon": -3.7017153}, {"type": "node", "id": 3425361815, "lat": 40.4501836, "lon": -3.7202461, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3425361827, "lat": 40.4509948, "lon": -3.7196263, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426608081, "lat": 40.4224596, "lon": -3.6925421}, {"type": "node", "id": 3426608082, "lat": 40.4225181, "lon": -3.6925338}, {"type": "node", "id": 3426732097, "lat": 40.4317812, "lon": -3.6973626}, {"type": "node", "id": 3426732098, "lat": 40.4318123, "lon": -3.6972375}, {"type": "node", "id": 3426732099, "lat": 40.4335977, "lon": -3.6974256}, {"type": "node", "id": 3426732139, "lat": 40.4356449, "lon": -3.6990212, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732142, "lat": 40.4357137, "lon": -3.728349}, {"type": "node", "id": 3426732143, "lat": 40.4357698, "lon": -3.698955, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732145, "lat": 40.4357858, "lon": -3.6992811, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732161, "lat": 40.4360955, "lon": -3.7267059}, {"type": "node", "id": 3426732162, "lat": 40.4360908, "lon": -3.6990843, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732167, "lat": 40.4365876, "lon": -3.6994226, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732169, "lat": 40.436671, "lon": -3.7252255, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732170, "lat": 40.4367105, "lon": -3.6993241, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732171, "lat": 40.4367394, "lon": -3.6996509, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3426732173, "lat": 40.4371519, "lon": -3.7238021}, {"type": "node", "id": 3426732174, "lat": 40.43722, "lon": -3.7238514, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3426732175, "lat": 40.4372362, "lon": -3.7238638, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3426732176, "lat": 40.4372554, "lon": -3.7235953}, {"type": "node", "id": 3426732177, "lat": 40.4372884, "lon": -3.7239017, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3426732178, "lat": 40.4373461, "lon": -3.7235763}, {"type": "node", "id": 3426732179, "lat": 40.4373843, "lon": -3.7235628}, {"type": "node", "id": 3426732183, "lat": 40.4376348, "lon": -3.7239898}, {"type": "node", "id": 3426732184, "lat": 40.4385259, "lon": -3.7252108}, {"type": "node", "id": 3426732186, "lat": 40.4393663, "lon": -3.726336}, {"type": "node", "id": 3426732232, "lat": 40.4456277, "lon": -3.7257532}, {"type": "node", "id": 3426732234, "lat": 40.4458717, "lon": -3.7258905}, {"type": "node", "id": 3426732235, "lat": 40.4458822, "lon": -3.7257989}, {"type": "node", "id": 3426732241, "lat": 40.4460691, "lon": -3.7259267}, {"type": "node", "id": 3426732243, "lat": 40.4461472, "lon": -3.7248077}, {"type": "node", "id": 3426732244, "lat": 40.4472091, "lon": -3.7246798, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426732245, "lat": 40.4473959, "lon": -3.7247122, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426732246, "lat": 40.4479688, "lon": -3.7240991, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 3426800337, "lat": 40.4237035, "lon": -3.6941039, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 3426834960, "lat": 40.440459, "lon": -3.7010958, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3426834961, "lat": 40.4405678, "lon": -3.7011443}, {"type": "node", "id": 3426834962, "lat": 40.4405913, "lon": -3.7010296, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3426834963, "lat": 40.4406679, "lon": -3.7007275, "tags": {"amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 3428307530, "lat": 40.42644, "lon": -3.7007166, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3428425005, "lat": 40.4210209, "lon": -3.692123}, {"type": "node", "id": 3428425006, "lat": 40.4211644, "lon": -3.6919756}, {"type": "node", "id": 3428425007, "lat": 40.4213316, "lon": -3.6918864}, {"type": "node", "id": 3428425008, "lat": 40.4213602, "lon": -3.6918453}, {"type": "node", "id": 3428425009, "lat": 40.4213629, "lon": -3.6918089, "tags": {"amenity": "parking_entrance", "name": "Aparcamiento Recoletos"}}, {"type": "node", "id": 3428425011, "lat": 40.4231775, "lon": -3.6912628, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425012, "lat": 40.4254349, "lon": -3.6898594, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425014, "lat": 40.4256017, "lon": -3.6897439, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425015, "lat": 40.4256336, "lon": -3.6920974, "tags": {"crossing": "marked", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3428425018, "lat": 40.4258159, "lon": -3.6898745, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425019, "lat": 40.4258267, "lon": -3.6899663, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3428425020, "lat": 40.4258664, "lon": -3.6902122}, {"type": "node", "id": 3428476984, "lat": 40.4374902, "lon": -3.6995935}, {"type": "node", "id": 3428476987, "lat": 40.4376458, "lon": -3.6993282, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3429367546, "lat": 40.4200706, "lon": -3.7011589}, {"type": "node", "id": 3429367549, "lat": 40.4200933, "lon": -3.7011556, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3437173834, "lat": 40.4387727, "lon": -3.6834198}, {"type": "node", "id": 3437173844, "lat": 40.4390082, "lon": -3.6833124, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3437173853, "lat": 40.4392126, "lon": -3.6833205, "tags": {"crossing:markings": "yes", "crossing:signals": "no", "highway": "crossing"}}, {"type": "node", "id": 3437178877, "lat": 40.4374774, "lon": -3.6830957, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 3437178878, "lat": 40.4376158, "lon": -3.6833528, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3437178880, "lat": 40.4377325, "lon": -3.6833478, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3438347287, "lat": 40.4256085, "lon": -3.6908827}, {"type": "node", "id": 3439683026, "lat": 40.4351757, "lon": -3.7192341, "tags": {"entrance": "yes", "name": "Terminal de autobuses (isla 2)", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3439683027, "lat": 40.4355095, "lon": -3.7189449, "tags": {"entrance": "yes", "name": "Terminal de autobuses (isla 3)", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3439683028, "lat": 40.4355076, "lon": -3.7187953}, {"type": "node", "id": 3439683029, "lat": 40.4355309, "lon": -3.7188443}, {"type": "node", "id": 3439683030, "lat": 40.4355349, "lon": -3.7188707}, {"type": "node", "id": 3440492577, "lat": 40.4472248, "lon": -3.6931071}, {"type": "node", "id": 3440492578, "lat": 40.4472265, "lon": -3.6931477}, {"type": "node", "id": 3440541875, "lat": 40.4479027, "lon": -3.6930319}, {"type": "node", "id": 3441195977, "lat": 40.4245565, "lon": -3.6897546}, {"type": "node", "id": 3441196008, "lat": 40.424764, "lon": -3.6898315}, {"type": "node", "id": 3441196011, "lat": 40.4248016, "lon": -3.6898119}, {"type": "node", "id": 3445124868, "lat": 40.4502885, "lon": -3.7101291}, {"type": "node", "id": 3445429881, "lat": 40.4446707, "lon": -3.685554}, {"type": "node", "id": 3445429882, "lat": 40.4446988, "lon": -3.6853163}, {"type": "node", "id": 3445429883, "lat": 40.4447016, "lon": -3.6855353}, {"type": "node", "id": 3445429884, "lat": 40.4447187, "lon": -3.6860364}, {"type": "node", "id": 3445429886, "lat": 40.444934, "lon": -3.6861139}, {"type": "node", "id": 3445429887, "lat": 40.4446, "lon": -3.6851787}, {"type": "node", "id": 3445429888, "lat": 40.444879, "lon": -3.686202}, {"type": "node", "id": 3445429889, "lat": 40.4446712, "lon": -3.6858005}, {"type": "node", "id": 3445429890, "lat": 40.4447138, "lon": -3.6858415}, {"type": "node", "id": 3450371632, "lat": 40.4330424, "lon": -3.6879849}, {"type": "node", "id": 3451212106, "lat": 40.4421724, "lon": -3.6927099}, {"type": "node", "id": 3451212107, "lat": 40.4422054, "lon": -3.6925666}, {"type": "node", "id": 3451212108, "lat": 40.4422015, "lon": -3.6933234}, {"type": "node", "id": 3451212109, "lat": 40.4423061, "lon": -3.692699}, {"type": "node", "id": 3451212110, "lat": 40.4426752, "lon": -3.6932885, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212111, "lat": 40.4426861, "lon": -3.6934729, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212112, "lat": 40.4433359, "lon": -3.6934253, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212113, "lat": 40.4433289, "lon": -3.6932391, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212131, "lat": 40.44379, "lon": -3.6932004, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212134, "lat": 40.4437921, "lon": -3.693391, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212142, "lat": 40.4444245, "lon": -3.6932513}, {"type": "node", "id": 3451212143, "lat": 40.444428, "lon": -3.6932184}, {"type": "node", "id": 3451212144, "lat": 40.444429, "lon": -3.693284}, {"type": "node", "id": 3451212145, "lat": 40.4444391, "lon": -3.6931885}, {"type": "node", "id": 3451212146, "lat": 40.444441, "lon": -3.6933133}, {"type": "node", "id": 3451212147, "lat": 40.4444566, "lon": -3.6931605}, {"type": "node", "id": 3451212148, "lat": 40.4444624, "lon": -3.6933442}, {"type": "node", "id": 3451212149, "lat": 40.4444788, "lon": -3.6931594, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212150, "lat": 40.4444886, "lon": -3.6933421, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212151, "lat": 40.4445188, "lon": -3.6931566}, {"type": "node", "id": 3451212152, "lat": 40.444525, "lon": -3.6933392}, {"type": "node", "id": 3451212153, "lat": 40.444539, "lon": -3.6931883}, {"type": "node", "id": 3451212154, "lat": 40.4445446, "lon": -3.6932996}, {"type": "node", "id": 3451212155, "lat": 40.4445507, "lon": -3.6932238}, {"type": "node", "id": 3451212156, "lat": 40.4445526, "lon": -3.6932624}, {"type": "node", "id": 3451212159, "lat": 40.4450187, "lon": -3.692431, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212160, "lat": 40.4450289, "lon": -3.6921802}, {"type": "node", "id": 3451212161, "lat": 40.4450428, "lon": -3.6930337, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212162, "lat": 40.4450693, "lon": -3.6921609}, {"type": "node", "id": 3451212168, "lat": 40.4451562, "lon": -3.6924186, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212169, "lat": 40.4451824, "lon": -3.6930167, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212170, "lat": 40.4451136, "lon": -3.6932933, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212171, "lat": 40.4452145, "lon": -3.692152, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212172, "lat": 40.4452226, "lon": -3.692307, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212173, "lat": 40.4451087, "lon": -3.6931198, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212178, "lat": 40.4452589, "lon": -3.6933376, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451212182, "lat": 40.4453275, "lon": -3.6944108}, {"type": "node", "id": 3451212185, "lat": 40.4453829, "lon": -3.6944248}, {"type": "node", "id": 3451250598, "lat": 40.4456733, "lon": -3.6921156, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250600, "lat": 40.4456789, "lon": -3.6922745, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250601, "lat": 40.4456849, "lon": -3.69323, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250603, "lat": 40.4457058, "lon": -3.693072, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250617, "lat": 40.4457441, "lon": -3.6921994}, {"type": "node", "id": 3451250624, "lat": 40.4457555, "lon": -3.6923788, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250631, "lat": 40.4457722, "lon": -3.6928416, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250632, "lat": 40.4457899, "lon": -3.6932912, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451250635, "lat": 40.445803, "lon": -3.6943881}, {"type": "node", "id": 3451250642, "lat": 40.4458306, "lon": -3.6943495}, {"type": "node", "id": 3451273034, "lat": 40.4426911, "lon": -3.6935742}, {"type": "node", "id": 3451273035, "lat": 40.4433379, "lon": -3.693479}, {"type": "node", "id": 3451273038, "lat": 40.4433322, "lon": -3.6933258}, {"type": "node", "id": 3451273041, "lat": 40.4437909, "lon": -3.6932839}, {"type": "node", "id": 3451273042, "lat": 40.4437915, "lon": -3.6933316}, {"type": "node", "id": 3451273043, "lat": 40.4437927, "lon": -3.6934446}, {"type": "node", "id": 3451273045, "lat": 40.4444912, "lon": -3.6934148}, {"type": "node", "id": 3451273051, "lat": 40.4449562, "lon": -3.6920691}, {"type": "node", "id": 3451273053, "lat": 40.4451153, "lon": -3.6933551}, {"type": "node", "id": 3451273054, "lat": 40.4452094, "lon": -3.6920549}, {"type": "node", "id": 3451273055, "lat": 40.4452281, "lon": -3.692412}, {"type": "node", "id": 3451273057, "lat": 40.4452648, "lon": -3.692051}, {"type": "node", "id": 3451273058, "lat": 40.4452653, "lon": -3.6918339}, {"type": "node", "id": 3451273059, "lat": 40.4452772, "lon": -3.6920051}, {"type": "node", "id": 3451273060, "lat": 40.4452785, "lon": -3.692033}, {"type": "node", "id": 3451273061, "lat": 40.445335, "lon": -3.6933207}, {"type": "node", "id": 3451273062, "lat": 40.4453655, "lon": -3.6933223}, {"type": "node", "id": 3451273064, "lat": 40.4455788, "lon": -3.6944113, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3451273066, "lat": 40.4455983, "lon": -3.6918951}, {"type": "node", "id": 3451273067, "lat": 40.445602, "lon": -3.6920083}, {"type": "node", "id": 3451273068, "lat": 40.4456095, "lon": -3.6920395}, {"type": "node", "id": 3451273069, "lat": 40.4456282, "lon": -3.692051}, {"type": "node", "id": 3451273070, "lat": 40.4456713, "lon": -3.6920595}, {"type": "node", "id": 3451273071, "lat": 40.4456828, "lon": -3.6923832}, {"type": "node", "id": 3451273072, "lat": 40.4457017, "lon": -3.6928468}, {"type": "node", "id": 3451273073, "lat": 40.4456879, "lon": -3.6933061}, {"type": "node", "id": 3451273074, "lat": 40.4458299, "lon": -3.6920417}, {"type": "node", "id": 3451273076, "lat": 40.4458475, "lon": -3.6923731}, {"type": "node", "id": 3451273077, "lat": 40.445872, "lon": -3.6928344}, {"type": "node", "id": 3451273078, "lat": 40.4458921, "lon": -3.693274}, {"type": "node", "id": 3451273079, "lat": 40.4459174, "lon": -3.6937973}, {"type": "node", "id": 3451286539, "lat": 40.4426725, "lon": -3.6932425}, {"type": "node", "id": 3451286543, "lat": 40.4433261, "lon": -3.6931637}, {"type": "node", "id": 3451286545, "lat": 40.443394, "lon": -3.6926253}, {"type": "node", "id": 3451287538, "lat": 40.4436625, "lon": -3.692601}, {"type": "node", "id": 3451287545, "lat": 40.4437895, "lon": -3.6931582}, {"type": "node", "id": 3451287549, "lat": 40.4444759, "lon": -3.6931056}, {"type": "node", "id": 3451287556, "lat": 40.4449495, "lon": -3.6924372}, {"type": "node", "id": 3451287559, "lat": 40.4449726, "lon": -3.6930416}, {"type": "node", "id": 3451680108, "lat": 40.4425511, "lon": -3.6943213}, {"type": "node", "id": 3451680109, "lat": 40.4425605, "lon": -3.6945368}, {"type": "node", "id": 3452092473, "lat": 40.4463521, "lon": -3.6906178}, {"type": "node", "id": 3452157951, "lat": 40.4517234, "lon": -3.718706, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3452165785, "lat": 40.4468377, "lon": -3.7249397}, {"type": "node", "id": 3452165787, "lat": 40.4469699, "lon": -3.7248798}, {"type": "node", "id": 3452165788, "lat": 40.4470028, "lon": -3.7249537}, {"type": "node", "id": 3452165789, "lat": 40.4470479, "lon": -3.7248513}, {"type": "node", "id": 3452165790, "lat": 40.4471241, "lon": -3.7248687}, {"type": "node", "id": 3452165791, "lat": 40.4472088, "lon": -3.7248752}, {"type": "node", "id": 3452165792, "lat": 40.4473234, "lon": -3.7249036}, {"type": "node", "id": 3452166793, "lat": 40.4473591, "lon": -3.7248807}, {"type": "node", "id": 3452166794, "lat": 40.4474836, "lon": -3.7249374}, {"type": "node", "id": 3452166795, "lat": 40.447545, "lon": -3.724956}, {"type": "node", "id": 3452166796, "lat": 40.4475699, "lon": -3.724956}, {"type": "node", "id": 3452166797, "lat": 40.4476231, "lon": -3.724944}, {"type": "node", "id": 3452166798, "lat": 40.4476488, "lon": -3.7249581}, {"type": "node", "id": 3452166799, "lat": 40.4476554, "lon": -3.7249963}, {"type": "node", "id": 3452166800, "lat": 40.4476712, "lon": -3.7250171}, {"type": "node", "id": 3452166801, "lat": 40.4476986, "lon": -3.7250127}, {"type": "node", "id": 3452166802, "lat": 40.4477169, "lon": -3.7249778}, {"type": "node", "id": 3452166805, "lat": 40.4478223, "lon": -3.7250072}, {"type": "node", "id": 3452166806, "lat": 40.4480755, "lon": -3.7250541}, {"type": "node", "id": 3452166807, "lat": 40.4480996, "lon": -3.7250901}, {"type": "node", "id": 3452275287, "lat": 40.450094, "lon": -3.7103361}, {"type": "node", "id": 3452544028, "lat": 40.4467828, "lon": -3.699327, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3455857323, "lat": 40.4482172, "lon": -3.7144511}, {"type": "node", "id": 3455857324, "lat": 40.4482516, "lon": -3.7144419}, {"type": "node", "id": 3455857325, "lat": 40.4482834, "lon": -3.714422}, {"type": "node", "id": 3455857326, "lat": 40.4483096, "lon": -3.7141303}, {"type": "node", "id": 3455857327, "lat": 40.4483105, "lon": -3.7143926}, {"type": "node", "id": 3455857328, "lat": 40.4483314, "lon": -3.7143555}, {"type": "node", "id": 3455857329, "lat": 40.4483328, "lon": -3.714172}, {"type": "node", "id": 3455857330, "lat": 40.4483449, "lon": -3.7143128}, {"type": "node", "id": 3455857331, "lat": 40.448346, "lon": -3.7142171}, {"type": "node", "id": 3455857332, "lat": 40.4483501, "lon": -3.714265}, {"type": "node", "id": 3455857334, "lat": 40.4484269, "lon": -3.7138406}, {"type": "node", "id": 3455857335, "lat": 40.4484841, "lon": -3.7134983}, {"type": "node", "id": 3455857340, "lat": 40.4486613, "lon": -3.713218}, {"type": "node", "id": 3455857342, "lat": 40.4486933, "lon": -3.7131673}, {"type": "node", "id": 3455857344, "lat": 40.4487296, "lon": -3.713698}, {"type": "node", "id": 3455857345, "lat": 40.4487297, "lon": -3.7137635}, {"type": "node", "id": 3455857346, "lat": 40.4487339, "lon": -3.7131441}, {"type": "node", "id": 3455857347, "lat": 40.4487374, "lon": -3.7136333}, {"type": "node", "id": 3455857348, "lat": 40.4487377, "lon": -3.7138281}, {"type": "node", "id": 3455857351, "lat": 40.4487529, "lon": -3.7135711}, {"type": "node", "id": 3455857352, "lat": 40.4487533, "lon": -3.7138903}, {"type": "node", "id": 3455857353, "lat": 40.4487672, "lon": -3.7131359}, {"type": "node", "id": 3455857356, "lat": 40.4487758, "lon": -3.7135129}, {"type": "node", "id": 3455857357, "lat": 40.4487791, "lon": -3.7139543}, {"type": "node", "id": 3455857360, "lat": 40.4488053, "lon": -3.7134602}, {"type": "node", "id": 3455857361, "lat": 40.4488131, "lon": -3.7140113}, {"type": "node", "id": 3455857363, "lat": 40.4488307, "lon": -3.7131509}, {"type": "node", "id": 3455857365, "lat": 40.4488409, "lon": -3.7134143}, {"type": "node", "id": 3455857367, "lat": 40.4488541, "lon": -3.7140597}, {"type": "node", "id": 3455857373, "lat": 40.4489009, "lon": -3.7140978}, {"type": "node", "id": 3455857374, "lat": 40.4489093, "lon": -3.7135313}, {"type": "node", "id": 3455857375, "lat": 40.4489179, "lon": -3.7134964}, {"type": "node", "id": 3455857376, "lat": 40.4489194, "lon": -3.7135656}, {"type": "node", "id": 3455857377, "lat": 40.4489304, "lon": -3.713482}, {"type": "node", "id": 3455857379, "lat": 40.4489437, "lon": -3.7135839}, {"type": "node", "id": 3455857380, "lat": 40.4489452, "lon": -3.7133452}, {"type": "node", "id": 3455857381, "lat": 40.4489462, "lon": -3.7134751}, {"type": "node", "id": 3455857383, "lat": 40.4489521, "lon": -3.7141246}, {"type": "node", "id": 3455857384, "lat": 40.4489642, "lon": -3.7137402}, {"type": "node", "id": 3455857385, "lat": 40.4489655, "lon": -3.7137035}, {"type": "node", "id": 3455857386, "lat": 40.4489713, "lon": -3.713578}, {"type": "node", "id": 3455857387, "lat": 40.4489764, "lon": -3.7136695}, {"type": "node", "id": 3455857388, "lat": 40.4489773, "lon": -3.7137859}, {"type": "node", "id": 3455857390, "lat": 40.4489832, "lon": -3.7134943}, {"type": "node", "id": 3455857391, "lat": 40.4489883, "lon": -3.7135551}, {"type": "node", "id": 3455857392, "lat": 40.4489928, "lon": -3.7135237}, {"type": "node", "id": 3455857394, "lat": 40.4489955, "lon": -3.7136426}, {"type": "node", "id": 3455857396, "lat": 40.4490048, "lon": -3.7138187}, {"type": "node", "id": 3455857397, "lat": 40.4490061, "lon": -3.7141392}, {"type": "node", "id": 3455857402, "lat": 40.4490308, "lon": -3.713623}, {"type": "node", "id": 3455857404, "lat": 40.4490406, "lon": -3.7138318}, {"type": "node", "id": 3455857407, "lat": 40.4490689, "lon": -3.7136271}, {"type": "node", "id": 3455857408, "lat": 40.449077, "lon": -3.7138223}, {"type": "node", "id": 3455857410, "lat": 40.4491013, "lon": -3.713654}, {"type": "node", "id": 3455857412, "lat": 40.4491062, "lon": -3.7137921}, {"type": "node", "id": 3455857414, "lat": 40.4491204, "lon": -3.7136976}, {"type": "node", "id": 3455857416, "lat": 40.4491219, "lon": -3.7137479}, {"type": "node", "id": 3457902036, "lat": 40.4453169, "lon": -3.6885398}, {"type": "node", "id": 3457902037, "lat": 40.445329, "lon": -3.688934}, {"type": "node", "id": 3457902040, "lat": 40.4456625, "lon": -3.6885215}, {"type": "node", "id": 3457902041, "lat": 40.4456779, "lon": -3.6889155}, {"type": "node", "id": 3457902042, "lat": 40.4457124, "lon": -3.6897959}, {"type": "node", "id": 3457902044, "lat": 40.4459514, "lon": -3.6865793}, {"type": "node", "id": 3457902046, "lat": 40.445976, "lon": -3.6872108}, {"type": "node", "id": 3457902047, "lat": 40.4459977, "lon": -3.6884861}, {"type": "node", "id": 3457902049, "lat": 40.4464894, "lon": -3.6978897}, {"type": "node", "id": 3463139548, "lat": 40.4510704, "lon": -3.6933954}, {"type": "node", "id": 3463139549, "lat": 40.451079, "lon": -3.6935459}, {"type": "node", "id": 3463139550, "lat": 40.4510815, "lon": -3.6935887}, {"type": "node", "id": 3463139557, "lat": 40.4510915, "lon": -3.6937643}, {"type": "node", "id": 3463139914, "lat": 40.4514238, "lon": -3.6937881}, {"type": "node", "id": 3463244168, "lat": 40.4505717, "lon": -3.6924922}, {"type": "node", "id": 3463244169, "lat": 40.4505863, "lon": -3.6924909}, {"type": "node", "id": 3463244170, "lat": 40.4506843, "lon": -3.692193}, {"type": "node", "id": 3463244171, "lat": 40.450724, "lon": -3.6921891}, {"type": "node", "id": 3463244172, "lat": 40.450746, "lon": -3.6932723}, {"type": "node", "id": 3463244173, "lat": 40.4507542, "lon": -3.693416}, {"type": "node", "id": 3463244174, "lat": 40.4507517, "lon": -3.6921863}, {"type": "node", "id": 3463244175, "lat": 40.4507567, "lon": -3.6922742}, {"type": "node", "id": 3463244176, "lat": 40.4507732, "lon": -3.6925624}, {"type": "node", "id": 3463244177, "lat": 40.4508042, "lon": -3.6924319}, {"type": "node", "id": 3463244178, "lat": 40.4508093, "lon": -3.6923867}, {"type": "node", "id": 3463244179, "lat": 40.4508129, "lon": -3.6924762}, {"type": "node", "id": 3463244180, "lat": 40.4508274, "lon": -3.6923476}, {"type": "node", "id": 3463244181, "lat": 40.4508286, "lon": -3.6934087}, {"type": "node", "id": 3463244182, "lat": 40.450834, "lon": -3.6925126}, {"type": "node", "id": 3463244183, "lat": 40.4508648, "lon": -3.6943365}, {"type": "node", "id": 3463244184, "lat": 40.4508557, "lon": -3.6923209}, {"type": "node", "id": 3463244185, "lat": 40.4508701, "lon": -3.6944293}, {"type": "node", "id": 3463244186, "lat": 40.4508642, "lon": -3.6925353}, {"type": "node", "id": 3463244187, "lat": 40.4508896, "lon": -3.6923108}, {"type": "node", "id": 3463244189, "lat": 40.4514536, "lon": -3.6937852}, {"type": "node", "id": 3463244190, "lat": 40.4508988, "lon": -3.6925407}, {"type": "node", "id": 3463244191, "lat": 40.4514793, "lon": -3.694235}, {"type": "node", "id": 3463244195, "lat": 40.4509227, "lon": -3.6923182}, {"type": "node", "id": 3463244196, "lat": 40.4509311, "lon": -3.6925287}, {"type": "node", "id": 3463244199, "lat": 40.4514321, "lon": -3.6942396}, {"type": "node", "id": 3463244201, "lat": 40.4509512, "lon": -3.6923415}, {"type": "node", "id": 3463244202, "lat": 40.4509576, "lon": -3.6925017}, {"type": "node", "id": 3463244205, "lat": 40.450971, "lon": -3.6923771}, {"type": "node", "id": 3463244206, "lat": 40.4509745, "lon": -3.6924635}, {"type": "node", "id": 3463244207, "lat": 40.4509792, "lon": -3.6924199}, {"type": "node", "id": 3463244209, "lat": 40.4513493, "lon": -3.6942478}, {"type": "node", "id": 3463244212, "lat": 40.4510214, "lon": -3.6925379}, {"type": "node", "id": 3463244219, "lat": 40.4510623, "lon": -3.6942762}, {"type": "node", "id": 3463244221, "lat": 40.4510699, "lon": -3.6944096}, {"type": "node", "id": 3470996667, "lat": 40.4355765, "lon": -3.7198086}, {"type": "node", "id": 3470996668, "lat": 40.4356469, "lon": -3.719695}, {"type": "node", "id": 3470996669, "lat": 40.4357417, "lon": -3.7196393}, {"type": "node", "id": 3470996670, "lat": 40.4357672, "lon": -3.719523}, {"type": "node", "id": 3470996671, "lat": 40.4358366, "lon": -3.7195403}, {"type": "node", "id": 3471276060, "lat": 40.4297363, "lon": -3.7194799, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3471276061, "lat": 40.4302438, "lon": -3.7175947}, {"type": "node", "id": 3471276062, "lat": 40.4321272, "lon": -3.7203144, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3471276063, "lat": 40.4336023, "lon": -3.7213585}, {"type": "node", "id": 3471365915, "lat": 40.4293076, "lon": -3.7201665, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3471365921, "lat": 40.4293948, "lon": -3.7202552, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3471365928, "lat": 40.4294791, "lon": -3.7205313, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3472111968, "lat": 40.4490693, "lon": -3.7163095}, {"type": "node", "id": 3472111969, "lat": 40.4490946, "lon": -3.7164167}, {"type": "node", "id": 3472111970, "lat": 40.4491695, "lon": -3.7164841}, {"type": "node", "id": 3472111971, "lat": 40.449163, "lon": -3.7161456}, {"type": "node", "id": 3472111972, "lat": 40.4492509, "lon": -3.716149}, {"type": "node", "id": 3474118926, "lat": 40.432717, "lon": -3.701562}, {"type": "node", "id": 3474118936, "lat": 40.4328159, "lon": -3.7015592}, {"type": "node", "id": 3474118939, "lat": 40.4329112, "lon": -3.7015246}, {"type": "node", "id": 3474119018, "lat": 40.433582, "lon": -3.6979391}, {"type": "node", "id": 3474142009, "lat": 40.4481003, "lon": -3.72422}, {"type": "node", "id": 3474142010, "lat": 40.4481327, "lon": -3.7239722}, {"type": "node", "id": 3474142011, "lat": 40.448158, "lon": -3.7238724}, {"type": "node", "id": 3474142013, "lat": 40.4488073, "lon": -3.7234902}, {"type": "node", "id": 3474142018, "lat": 40.4489989, "lon": -3.7234599}, {"type": "node", "id": 3474142019, "lat": 40.4490421, "lon": -3.7234315}, {"type": "node", "id": 3474142024, "lat": 40.4491308, "lon": -3.7233448}, {"type": "node", "id": 3474142027, "lat": 40.449205, "lon": -3.7232568}, {"type": "node", "id": 3474142029, "lat": 40.4492462, "lon": -3.7231864}, {"type": "node", "id": 3474142032, "lat": 40.4492864, "lon": -3.7231607}, {"type": "node", "id": 3474142033, "lat": 40.4493214, "lon": -3.7231228}, {"type": "node", "id": 3474142036, "lat": 40.4493692, "lon": -3.7230323}, {"type": "node", "id": 3474142038, "lat": 40.4493962, "lon": -3.7229806}, {"type": "node", "id": 3474142040, "lat": 40.4494122, "lon": -3.7229308}, {"type": "node", "id": 3474142041, "lat": 40.4494261, "lon": -3.7228829}, {"type": "node", "id": 3474142043, "lat": 40.4494377, "lon": -3.7228494}, {"type": "node", "id": 3474142046, "lat": 40.4494953, "lon": -3.7228302}, {"type": "node", "id": 3474142068, "lat": 40.4503055, "lon": -3.7225912}, {"type": "node", "id": 3474142070, "lat": 40.4503229, "lon": -3.7222476, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3474142071, "lat": 40.4503348, "lon": -3.7216761}, {"type": "node", "id": 3474142077, "lat": 40.450385, "lon": -3.7211432}, {"type": "node", "id": 3474142079, "lat": 40.4504396, "lon": -3.720946}, {"type": "node", "id": 3474142080, "lat": 40.450444, "lon": -3.7207626}, {"type": "node", "id": 3474142082, "lat": 40.4504632, "lon": -3.7206579}, {"type": "node", "id": 3474142083, "lat": 40.4505061, "lon": -3.7205221}, {"type": "node", "id": 3474142085, "lat": 40.4505534, "lon": -3.7204441}, {"type": "node", "id": 3474142088, "lat": 40.4506067, "lon": -3.7203885}, {"type": "node", "id": 3474142089, "lat": 40.4506099, "lon": -3.7181197}, {"type": "node", "id": 3474142091, "lat": 40.450644, "lon": -3.720369}, {"type": "node", "id": 3474142095, "lat": 40.4506913, "lon": -3.7203668}, {"type": "node", "id": 3474142097, "lat": 40.45075, "lon": -3.720596}, {"type": "node", "id": 3474142100, "lat": 40.4508049, "lon": -3.7204224}, {"type": "node", "id": 3474142103, "lat": 40.4508403, "lon": -3.7199944}, {"type": "node", "id": 3474142105, "lat": 40.4508523, "lon": -3.7176083}, {"type": "node", "id": 3474142106, "lat": 40.4508759, "lon": -3.7201976}, {"type": "node", "id": 3474142107, "lat": 40.4508798, "lon": -3.7201108}, {"type": "node", "id": 3474142109, "lat": 40.4509006, "lon": -3.7183938, "tags": {"noexit": "yes"}}, {"type": "node", "id": 3474142111, "lat": 40.4509188, "lon": -3.7183534}, {"type": "node", "id": 3474142122, "lat": 40.4511262, "lon": -3.7223636}, {"type": "node", "id": 3474142124, "lat": 40.4511286, "lon": -3.7222999}, {"type": "node", "id": 3474142125, "lat": 40.4511538, "lon": -3.7178333}, {"type": "node", "id": 3474142126, "lat": 40.4511572, "lon": -3.7224001}, {"type": "node", "id": 3474142128, "lat": 40.4511912, "lon": -3.7177504}, {"type": "node", "id": 3474142130, "lat": 40.4514268, "lon": -3.7179446}, {"type": "node", "id": 3474142131, "lat": 40.4515161, "lon": -3.7224366}, {"type": "node", "id": 3474142132, "lat": 40.4515511, "lon": -3.722422}, {"type": "node", "id": 3484491402, "lat": 40.4523368, "lon": -3.7074809, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3508651596, "lat": 40.4381586, "lon": -3.7011761, "tags": {"entrance": "main"}}, {"type": "node", "id": 3509180946, "lat": 40.42695, "lon": -3.7127644}, {"type": "node", "id": 3509180948, "lat": 40.42696, "lon": -3.7128642}, {"type": "node", "id": 3509180957, "lat": 40.4270409, "lon": -3.7130296}, {"type": "node", "id": 3509180965, "lat": 40.4273183, "lon": -3.712066}, {"type": "node", "id": 3509180968, "lat": 40.4273359, "lon": -3.7120973}, {"type": "node", "id": 3509180969, "lat": 40.4273474, "lon": -3.7121031}, {"type": "node", "id": 3509180971, "lat": 40.4273606, "lon": -3.7120498}, {"type": "node", "id": 3509180972, "lat": 40.4273606, "lon": -3.7120973}, {"type": "node", "id": 3509180974, "lat": 40.4273773, "lon": -3.7120834}, {"type": "node", "id": 3509180975, "lat": 40.427383, "lon": -3.7120452}, {"type": "node", "id": 3509180986, "lat": 40.4276701, "lon": -3.7118343}, {"type": "node", "id": 3509180988, "lat": 40.4277129, "lon": -3.7129845}, {"type": "node", "id": 3509180989, "lat": 40.4277133, "lon": -3.7130036}, {"type": "node", "id": 3509180990, "lat": 40.4277181, "lon": -3.712973}, {"type": "node", "id": 3509180991, "lat": 40.4277221, "lon": -3.7130233}, {"type": "node", "id": 3509181093, "lat": 40.4277274, "lon": -3.7129637}, {"type": "node", "id": 3509181094, "lat": 40.4277455, "lon": -3.7130094}, {"type": "node", "id": 3509181095, "lat": 40.42775, "lon": -3.7120221}, {"type": "node", "id": 3509181096, "lat": 40.4277625, "lon": -3.7129691}, {"type": "node", "id": 3509181097, "lat": 40.4277679, "lon": -3.7129955}, {"type": "node", "id": 3509181101, "lat": 40.427964, "lon": -3.7125252}, {"type": "node", "id": 3509181103, "lat": 40.4279805, "lon": -3.7121265}, {"type": "node", "id": 3509181111, "lat": 40.4280162, "lon": -3.7120961}, {"type": "node", "id": 3509181115, "lat": 40.4280312, "lon": -3.7120883}, {"type": "node", "id": 3509181118, "lat": 40.4280395, "lon": -3.7122745}, {"type": "node", "id": 3509181121, "lat": 40.4280452, "lon": -3.7120867}, {"type": "node", "id": 3509181122, "lat": 40.4280456, "lon": -3.7127613}, {"type": "node", "id": 3509181130, "lat": 40.4280577, "lon": -3.7120903}, {"type": "node", "id": 3509181131, "lat": 40.42806, "lon": -3.7127507}, {"type": "node", "id": 3509181135, "lat": 40.4280686, "lon": -3.7120981}, {"type": "node", "id": 3509181138, "lat": 40.4280793, "lon": -3.7122508}, {"type": "node", "id": 3509181141, "lat": 40.4280851, "lon": -3.712141}, {"type": "node", "id": 3509181149, "lat": 40.4280922, "lon": -3.7122389}, {"type": "node", "id": 3509181152, "lat": 40.4280994, "lon": -3.7122278}, {"type": "node", "id": 3509181153, "lat": 40.4281006, "lon": -3.7124277}, {"type": "node", "id": 3509181155, "lat": 40.4281031, "lon": -3.7121877}, {"type": "node", "id": 3509181156, "lat": 40.4281041, "lon": -3.7122098}, {"type": "node", "id": 3509181162, "lat": 40.4281323, "lon": -3.7114209}, {"type": "node", "id": 3509181163, "lat": 40.4281409, "lon": -3.712399}, {"type": "node", "id": 3509181166, "lat": 40.4281847, "lon": -3.7120692}, {"type": "node", "id": 3509181170, "lat": 40.4282158, "lon": -3.7131813}, {"type": "node", "id": 3509181172, "lat": 40.428252, "lon": -3.7120206}, {"type": "node", "id": 3509181174, "lat": 40.4282784, "lon": -3.7121589}, {"type": "node", "id": 3509181178, "lat": 40.4283229, "lon": -3.7122725}, {"type": "node", "id": 3509181179, "lat": 40.4284077, "lon": -3.7130496}, {"type": "node", "id": 3509181181, "lat": 40.4284531, "lon": -3.7123275}, {"type": "node", "id": 3509181193, "lat": 40.4284956, "lon": -3.7122963}, {"type": "node", "id": 3509181194, "lat": 40.4284968, "lon": -3.71243}, {"type": "node", "id": 3509181210, "lat": 40.4285731, "lon": -3.7122394}, {"type": "node", "id": 3509224888, "lat": 40.4277672, "lon": -3.7120625}, {"type": "node", "id": 3509224889, "lat": 40.4279116, "lon": -3.7119633}, {"type": "node", "id": 3509224891, "lat": 40.4279521, "lon": -3.7119355}, {"type": "node", "id": 3509225596, "lat": 40.4280203, "lon": -3.7120939}, {"type": "node", "id": 3509225601, "lat": 40.4281093, "lon": -3.7118275}, {"type": "node", "id": 3523904351, "lat": 40.42634, "lon": -3.6989576}, {"type": "node", "id": 3523904352, "lat": 40.4268071, "lon": -3.6993078}, {"type": "node", "id": 3523936294, "lat": 40.432223, "lon": -3.7048846}, {"type": "node", "id": 3524215759, "lat": 40.4443517, "lon": -3.719879}, {"type": "node", "id": 3527075365, "lat": 40.437345, "lon": -3.7210698}, {"type": "node", "id": 3527075367, "lat": 40.4374538, "lon": -3.7212929}, {"type": "node", "id": 3527075368, "lat": 40.4374625, "lon": -3.7214216}, {"type": "node", "id": 3527075369, "lat": 40.4374669, "lon": -3.7211184}, {"type": "node", "id": 3527075370, "lat": 40.4375263, "lon": -3.7217875}, {"type": "node", "id": 3527075371, "lat": 40.4375039, "lon": -3.7209482}, {"type": "node", "id": 3527075372, "lat": 40.4375431, "lon": -3.720821}, {"type": "node", "id": 3527075373, "lat": 40.437591, "lon": -3.7207237}, {"type": "node", "id": 3527075374, "lat": 40.4379989, "lon": -3.7196882}, {"type": "node", "id": 3527075375, "lat": 40.4380418, "lon": -3.7197623}, {"type": "node", "id": 3527075376, "lat": 40.4380655, "lon": -3.7199988}, {"type": "node", "id": 3527075377, "lat": 40.4380709, "lon": -3.7198472}, {"type": "node", "id": 3527075378, "lat": 40.4380727, "lon": -3.719954}, {"type": "node", "id": 3527091669, "lat": 40.4367893, "lon": -3.7213553}, {"type": "node", "id": 3527091671, "lat": 40.4368046, "lon": -3.721426}, {"type": "node", "id": 3527091674, "lat": 40.436821, "lon": -3.7214732}, {"type": "node", "id": 3527091679, "lat": 40.437043, "lon": -3.7218951}, {"type": "node", "id": 3527091684, "lat": 40.4371629, "lon": -3.7211647}, {"type": "node", "id": 3527091688, "lat": 40.4372063, "lon": -3.7212716}, {"type": "node", "id": 3527091691, "lat": 40.4372123, "lon": -3.7216985}, {"type": "node", "id": 3527091793, "lat": 40.4372176, "lon": -3.721841}, {"type": "node", "id": 3527091794, "lat": 40.4372217, "lon": -3.721352}, {"type": "node", "id": 3527091795, "lat": 40.437228, "lon": -3.7215259}, {"type": "node", "id": 3527091796, "lat": 40.4372281, "lon": -3.7217534}, {"type": "node", "id": 3527091797, "lat": 40.4372301, "lon": -3.7214246}, {"type": "node", "id": 3527091798, "lat": 40.4372345, "lon": -3.7218528}, {"type": "node", "id": 3527091801, "lat": 40.4372447, "lon": -3.7219396}, {"type": "node", "id": 3527091807, "lat": 40.4372726, "lon": -3.7221824}, {"type": "node", "id": 3527091809, "lat": 40.4372895, "lon": -3.7221693}, {"type": "node", "id": 3527091810, "lat": 40.4372964, "lon": -3.7223523}, {"type": "node", "id": 3527091811, "lat": 40.4372974, "lon": -3.7220417}, {"type": "node", "id": 3527091812, "lat": 40.4373025, "lon": -3.722415}, {"type": "node", "id": 3527091813, "lat": 40.43731, "lon": -3.7224091}, {"type": "node", "id": 3527091814, "lat": 40.4373218, "lon": -3.7223998}, {"type": "node", "id": 3527091815, "lat": 40.4373249, "lon": -3.7224599}, {"type": "node", "id": 3527091816, "lat": 40.4373372, "lon": -3.7224271}, {"type": "node", "id": 3527091817, "lat": 40.4373593, "lon": -3.7221725}, {"type": "node", "id": 3527091818, "lat": 40.4373634, "lon": -3.7221593}, {"type": "node", "id": 3527091820, "lat": 40.4374003, "lon": -3.722329}, {"type": "node", "id": 3527091821, "lat": 40.4374132, "lon": -3.7223179}, {"type": "node", "id": 3527091822, "lat": 40.4374278, "lon": -3.7223053}, {"type": "node", "id": 3527091823, "lat": 40.4374527, "lon": -3.7225474}, {"type": "node", "id": 3527091824, "lat": 40.4374665, "lon": -3.7225302}, {"type": "node", "id": 3527091825, "lat": 40.4374849, "lon": -3.7227759}, {"type": "node", "id": 3527091827, "lat": 40.4375412, "lon": -3.7219802}, {"type": "node", "id": 3527091828, "lat": 40.4376545, "lon": -3.7230873}, {"type": "node", "id": 3527091831, "lat": 40.4376836, "lon": -3.7228012}, {"type": "node", "id": 3527091832, "lat": 40.4377012, "lon": -3.7222977}, {"type": "node", "id": 3527091834, "lat": 40.4377412, "lon": -3.7223776}, {"type": "node", "id": 3527091836, "lat": 40.437782, "lon": -3.722418}, {"type": "node", "id": 3527091837, "lat": 40.4378636, "lon": -3.7234466}, {"type": "node", "id": 3527091839, "lat": 40.4379823, "lon": -3.7236396}, {"type": "node", "id": 3527091840, "lat": 40.4379911, "lon": -3.7233586}, {"type": "node", "id": 3527091842, "lat": 40.4381281, "lon": -3.7238541}, {"type": "node", "id": 3527091844, "lat": 40.4382287, "lon": -3.7237454}, {"type": "node", "id": 3527091847, "lat": 40.4383055, "lon": -3.7241044}, {"type": "node", "id": 3527091848, "lat": 40.4383356, "lon": -3.7239137}, {"type": "node", "id": 3527091849, "lat": 40.4383883, "lon": -3.723986}, {"type": "node", "id": 3527091850, "lat": 40.4383969, "lon": -3.7237365}, {"type": "node", "id": 3527091852, "lat": 40.43843, "lon": -3.7238469}, {"type": "node", "id": 3527091855, "lat": 40.4387709, "lon": -3.7244818}, {"type": "node", "id": 3527091858, "lat": 40.4392578, "lon": -3.7251201}, {"type": "node", "id": 3527091860, "lat": 40.4394193, "lon": -3.7253489}, {"type": "node", "id": 3527091861, "lat": 40.4395361, "lon": -3.7255187}, {"type": "node", "id": 3527091865, "lat": 40.439616, "lon": -3.7258201}, {"type": "node", "id": 3527091868, "lat": 40.4396598, "lon": -3.725866}, {"type": "node", "id": 3527091869, "lat": 40.4396789, "lon": -3.7258077}, {"type": "node", "id": 3536931755, "lat": 40.4322118, "lon": -3.7048228}, {"type": "node", "id": 3552759908, "lat": 40.4371169, "lon": -3.6861664, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3552759909, "lat": 40.4368102, "lon": -3.686192, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3567203700, "lat": 40.4327365, "lon": -3.7197355}, {"type": "node", "id": 3567203702, "lat": 40.4327524, "lon": -3.7196945}, {"type": "node", "id": 3567226101, "lat": 40.4326883, "lon": -3.7200432}, {"type": "node", "id": 3567226102, "lat": 40.4327339, "lon": -3.7199358}, {"type": "node", "id": 3567226103, "lat": 40.4327445, "lon": -3.7203742}, {"type": "node", "id": 3567226104, "lat": 40.432778, "lon": -3.7203988}, {"type": "node", "id": 3567234599, "lat": 40.4366006, "lon": -3.7207375}, {"type": "node", "id": 3567234600, "lat": 40.4357187, "lon": -3.719025}, {"type": "node", "id": 3567234601, "lat": 40.435736, "lon": -3.7191135}, {"type": "node", "id": 3567234602, "lat": 40.436572, "lon": -3.720708}, {"type": "node", "id": 3567320802, "lat": 40.4413082, "lon": -3.7217979}, {"type": "node", "id": 3567320803, "lat": 40.4413316, "lon": -3.7217584}, {"type": "node", "id": 3567320804, "lat": 40.4413209, "lon": -3.7217805}, {"type": "node", "id": 3567320805, "lat": 40.4412847, "lon": -3.7218221}, {"type": "node", "id": 3567320806, "lat": 40.4411071, "lon": -3.7218744}, {"type": "node", "id": 3567480241, "lat": 40.4430382, "lon": -3.6846384}, {"type": "node", "id": 3567546250, "lat": 40.4331193, "lon": -3.6869121}, {"type": "node", "id": 3567546251, "lat": 40.4331437, "lon": -3.6875658, "tags": {"name": "Aranzadi & Bendrihem Abogadas de familia"}}, {"type": "node", "id": 3567546252, "lat": 40.4328687, "lon": -3.6867247}, {"type": "node", "id": 3567546253, "lat": 40.4328763, "lon": -3.6869618}, {"type": "node", "id": 3567546254, "lat": 40.4329215, "lon": -3.6875802}, {"type": "node", "id": 3574220195, "lat": 40.447054, "lon": -3.724954}, {"type": "node", "id": 3574220196, "lat": 40.4470858, "lon": -3.7248507}, {"type": "node", "id": 3575366930, "lat": 40.4396443, "lon": -3.7179617}, {"type": "node", "id": 3575366931, "lat": 40.4396455, "lon": -3.7189603, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3575366932, "lat": 40.4397281, "lon": -3.7180485}, {"type": "node", "id": 3575366933, "lat": 40.4397891, "lon": -3.7186569}, {"type": "node", "id": 3575366934, "lat": 40.43979, "lon": -3.7181392}, {"type": "node", "id": 3575366935, "lat": 40.4398119, "lon": -3.717763}, {"type": "node", "id": 3575366936, "lat": 40.439822, "lon": -3.7185862}, {"type": "node", "id": 3575366937, "lat": 40.4398292, "lon": -3.7182197}, {"type": "node", "id": 3575366938, "lat": 40.439847, "lon": -3.7184824}, {"type": "node", "id": 3575366939, "lat": 40.4398527, "lon": -3.7183964}, {"type": "node", "id": 3575366940, "lat": 40.4399601, "lon": -3.7178014}, {"type": "node", "id": 3575366941, "lat": 40.4399295, "lon": -3.7182739}, {"type": "node", "id": 3575366942, "lat": 40.4399857, "lon": -3.7183076}, {"type": "node", "id": 3575366943, "lat": 40.4400269, "lon": -3.7178348, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3575366944, "lat": 40.4400794, "lon": -3.7178534}, {"type": "node", "id": 3575366945, "lat": 40.4402592, "lon": -3.717949}, {"type": "node", "id": 3575366946, "lat": 40.440534, "lon": -3.7180984}, {"type": "node", "id": 3575366947, "lat": 40.4408067, "lon": -3.7182368}, {"type": "node", "id": 3575366949, "lat": 40.4413276, "lon": -3.7185098}, {"type": "node", "id": 3575366950, "lat": 40.4416257, "lon": -3.7186759}, {"type": "node", "id": 3575366951, "lat": 40.4421686, "lon": -3.7189634}, {"type": "node", "id": 3575366952, "lat": 40.4431558, "lon": -3.7194933}, {"type": "node", "id": 3575366953, "lat": 40.4432945, "lon": -3.719569}, {"type": "node", "id": 3575366954, "lat": 40.4433511, "lon": -3.7196177}, {"type": "node", "id": 3575366955, "lat": 40.4433831, "lon": -3.7196925}, {"type": "node", "id": 3575366956, "lat": 40.4434019, "lon": -3.7197756}, {"type": "node", "id": 3575366957, "lat": 40.4434392, "lon": -3.7196857, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3575366958, "lat": 40.4434642, "lon": -3.7206643}, {"type": "node", "id": 3575366959, "lat": 40.4434746, "lon": -3.7206889}, {"type": "node", "id": 3575366960, "lat": 40.4434892, "lon": -3.7200826}, {"type": "node", "id": 3575366961, "lat": 40.4434913, "lon": -3.7206985}, {"type": "node", "id": 3575366962, "lat": 40.4434999, "lon": -3.7197475}, {"type": "node", "id": 3575366963, "lat": 40.4435006, "lon": -3.7199389}, {"type": "node", "id": 3575366964, "lat": 40.4435897, "lon": -3.7198327}, {"type": "node", "id": 3575366965, "lat": 40.4436341, "lon": -3.720856}, {"type": "node", "id": 3575366966, "lat": 40.4436466, "lon": -3.7198694}, {"type": "node", "id": 3575366967, "lat": 40.4436922, "lon": -3.7194424, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3575366968, "lat": 40.4437174, "lon": -3.7198982}, {"type": "node", "id": 3575366969, "lat": 40.4438162, "lon": -3.7199126}, {"type": "node", "id": 3575366970, "lat": 40.4438486, "lon": -3.7207564, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 3575366971, "lat": 40.4438619, "lon": -3.7226823}, {"type": "node", "id": 3575366972, "lat": 40.443914, "lon": -3.7209007}, {"type": "node", "id": 3575366973, "lat": 40.4439172, "lon": -3.7221929}, {"type": "node", "id": 3575366974, "lat": 40.4439491, "lon": -3.7220614}, {"type": "node", "id": 3575366975, "lat": 40.4439439, "lon": -3.7209155}, {"type": "node", "id": 3575366976, "lat": 40.4439537, "lon": -3.7215282}, {"type": "node", "id": 3575366977, "lat": 40.4439598, "lon": -3.721252}, {"type": "node", "id": 3575366978, "lat": 40.4439598, "lon": -3.7215957}, {"type": "node", "id": 3575366979, "lat": 40.4439739, "lon": -3.7209759}, {"type": "node", "id": 3575366980, "lat": 40.443978, "lon": -3.7210227}, {"type": "node", "id": 3575366981, "lat": 40.44398, "lon": -3.7217118}, {"type": "node", "id": 3575366982, "lat": 40.4439852, "lon": -3.7199293}, {"type": "node", "id": 3575366983, "lat": 40.4439928, "lon": -3.7218573}, {"type": "node", "id": 3575366984, "lat": 40.4439992, "lon": -3.7218041}, {"type": "node", "id": 3575366985, "lat": 40.4441111, "lon": -3.7207916}, {"type": "node", "id": 3575366986, "lat": 40.4441385, "lon": -3.7209458}, {"type": "node", "id": 3575366987, "lat": 40.4443848, "lon": -3.7199722}, {"type": "node", "id": 3575366989, "lat": 40.4446323, "lon": -3.721026}, {"type": "node", "id": 3575366990, "lat": 40.4449919, "lon": -3.7210814}, {"type": "node", "id": 3575366991, "lat": 40.4448772, "lon": -3.7200097}, {"type": "node", "id": 3575366992, "lat": 40.4449792, "lon": -3.720007}, {"type": "node", "id": 3575367193, "lat": 40.4450383, "lon": -3.7199977}, {"type": "node", "id": 3575367194, "lat": 40.4450648, "lon": -3.7198118}, {"type": "node", "id": 3575367195, "lat": 40.4450893, "lon": -3.7211108, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3575367196, "lat": 40.445126, "lon": -3.7199588}, {"type": "node", "id": 3575367197, "lat": 40.4451264, "lon": -3.7211319}, {"type": "node", "id": 3575367198, "lat": 40.4451779, "lon": -3.7209802, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 3575367199, "lat": 40.4451869, "lon": -3.7211147}, {"type": "node", "id": 3575367200, "lat": 40.4452014, "lon": -3.7199079}, {"type": "node", "id": 3575367201, "lat": 40.4452534, "lon": -3.7198905}, {"type": "node", "id": 3575367202, "lat": 40.4452523, "lon": -3.7211125}, {"type": "node", "id": 3575367203, "lat": 40.4453054, "lon": -3.7198878}, {"type": "node", "id": 3575367205, "lat": 40.4453616, "lon": -3.7210299}, {"type": "node", "id": 3575367206, "lat": 40.4453804, "lon": -3.7211226}, {"type": "node", "id": 3575367207, "lat": 40.4453907, "lon": -3.7210295}, {"type": "node", "id": 3575367208, "lat": 40.4453982, "lon": -3.7198436}, {"type": "node", "id": 3575367209, "lat": 40.4454194, "lon": -3.721012}, {"type": "node", "id": 3575367210, "lat": 40.4454485, "lon": -3.7209846}, {"type": "node", "id": 3575367211, "lat": 40.4454573, "lon": -3.7198061}, {"type": "node", "id": 3575367212, "lat": 40.4454766, "lon": -3.7209435}, {"type": "node", "id": 3575367213, "lat": 40.4454871, "lon": -3.7208819}, {"type": "node", "id": 3575367214, "lat": 40.4454911, "lon": -3.721074}, {"type": "node", "id": 3575367215, "lat": 40.4454985, "lon": -3.720808}, {"type": "node", "id": 3575367216, "lat": 40.4455144, "lon": -3.7197592}, {"type": "node", "id": 3575367217, "lat": 40.4455684, "lon": -3.7196976}, {"type": "node", "id": 3575367218, "lat": 40.4456112, "lon": -3.7196346}, {"type": "node", "id": 3575367219, "lat": 40.4456428, "lon": -3.7195395}, {"type": "node", "id": 3575367220, "lat": 40.4456652, "lon": -3.7194404}, {"type": "node", "id": 3575367221, "lat": 40.4456867, "lon": -3.7193855}, {"type": "node", "id": 3575367222, "lat": 40.4459853, "lon": -3.7190814}, {"type": "node", "id": 3575367223, "lat": 40.4464247, "lon": -3.7186206}, {"type": "node", "id": 3575367224, "lat": 40.4466673, "lon": -3.7183433}, {"type": "node", "id": 3575367225, "lat": 40.4466882, "lon": -3.7183406}, {"type": "node", "id": 3575367226, "lat": 40.4467075, "lon": -3.7183761}, {"type": "node", "id": 3575367227, "lat": 40.4467295, "lon": -3.7185858}, {"type": "node", "id": 3575367228, "lat": 40.4467479, "lon": -3.719072}, {"type": "node", "id": 3575367229, "lat": 40.446756, "lon": -3.7187974}, {"type": "node", "id": 3575367230, "lat": 40.446757, "lon": -3.7189635}, {"type": "node", "id": 3575370943, "lat": 40.4437145, "lon": -3.7228396}, {"type": "node", "id": 3575370944, "lat": 40.4438091, "lon": -3.7228545}, {"type": "node", "id": 3575370945, "lat": 40.4438132, "lon": -3.7227815, "tags": {"check_date:crossing": "2023-09-30", "crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3575370946, "lat": 40.4438167, "lon": -3.7227182}, {"type": "node", "id": 3575370947, "lat": 40.443845, "lon": -3.7227168}, {"type": "node", "id": 3575370948, "lat": 40.4438689, "lon": -3.7228639}, {"type": "node", "id": 3575370949, "lat": 40.4438896, "lon": -3.7229254}, {"type": "node", "id": 3575370950, "lat": 40.443945, "lon": -3.7229411}, {"type": "node", "id": 3575370951, "lat": 40.4439527, "lon": -3.7227325}, {"type": "node", "id": 3575370952, "lat": 40.4439798, "lon": -3.7227511}, {"type": "node", "id": 3575370953, "lat": 40.4444488, "lon": -3.7230296}, {"type": "node", "id": 3575370954, "lat": 40.4461177, "lon": -3.7231554}, {"type": "node", "id": 3575370955, "lat": 40.446146, "lon": -3.7231426}, {"type": "node", "id": 3575378535, "lat": 40.4390268, "lon": -3.720131, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3575378536, "lat": 40.439042, "lon": -3.7201895}, {"type": "node", "id": 3575378537, "lat": 40.4390817, "lon": -3.7202854}, {"type": "node", "id": 3575378538, "lat": 40.4390906, "lon": -3.7201025}, {"type": "node", "id": 3575378539, "lat": 40.4391602, "lon": -3.7203836}, {"type": "node", "id": 3575378540, "lat": 40.4393875, "lon": -3.7205792}, {"type": "node", "id": 3575378541, "lat": 40.4393954, "lon": -3.7203295}, {"type": "node", "id": 3575378542, "lat": 40.4394681, "lon": -3.7204004}, {"type": "node", "id": 3575378543, "lat": 40.4394901, "lon": -3.7204513}, {"type": "node", "id": 3575378544, "lat": 40.4395193, "lon": -3.7204823}, {"type": "node", "id": 3575378545, "lat": 40.4398187, "lon": -3.7209332}, {"type": "node", "id": 3575378546, "lat": 40.4398585, "lon": -3.7208516, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3575378547, "lat": 40.4398887, "lon": -3.7207897}, {"type": "node", "id": 3575378548, "lat": 40.4403953, "lon": -3.7212113}, {"type": "node", "id": 3575378549, "lat": 40.4404423, "lon": -3.7212538}, {"type": "node", "id": 3575378550, "lat": 40.4408024, "lon": -3.7215794}, {"type": "node", "id": 3575378551, "lat": 40.4409653, "lon": -3.721907}, {"type": "node", "id": 3575378552, "lat": 40.4410138, "lon": -3.7217567}, {"type": "node", "id": 3575378553, "lat": 40.4410394, "lon": -3.7219557}, {"type": "node", "id": 3575378554, "lat": 40.4410779, "lon": -3.7217914}, {"type": "node", "id": 3575378555, "lat": 40.4410842, "lon": -3.7219708}, {"type": "node", "id": 3575378556, "lat": 40.4411393, "lon": -3.7218038}, {"type": "node", "id": 3575378557, "lat": 40.4411519, "lon": -3.7219725}, {"type": "node", "id": 3575378558, "lat": 40.4411751, "lon": -3.7218}, {"type": "node", "id": 3575378559, "lat": 40.4412184, "lon": -3.7219557}, {"type": "node", "id": 3575378560, "lat": 40.4412344, "lon": -3.7218565}, {"type": "node", "id": 3575378561, "lat": 40.441249, "lon": -3.7217517}, {"type": "node", "id": 3575378562, "lat": 40.4412925, "lon": -3.7219271}, {"type": "node", "id": 3575378563, "lat": 40.4412959, "lon": -3.7216984}, {"type": "node", "id": 3575378564, "lat": 40.4413478, "lon": -3.7215844}, {"type": "node", "id": 3575378565, "lat": 40.44135, "lon": -3.7218767}, {"type": "node", "id": 3575378566, "lat": 40.4414254, "lon": -3.7217491}, {"type": "node", "id": 3575378567, "lat": 40.4415792, "lon": -3.7210322, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3575378568, "lat": 40.4416807, "lon": -3.7208071}, {"type": "node", "id": 3575378569, "lat": 40.4417742, "lon": -3.7205531}, {"type": "node", "id": 3575378570, "lat": 40.4417986, "lon": -3.7208963}, {"type": "node", "id": 3575378571, "lat": 40.4418252, "lon": -3.7208423}, {"type": "node", "id": 3575378572, "lat": 40.4418809, "lon": -3.7207393}, {"type": "node", "id": 3575378573, "lat": 40.4418993, "lon": -3.7205187}, {"type": "node", "id": 3575378574, "lat": 40.4419846, "lon": -3.7206608}, {"type": "node", "id": 3575378575, "lat": 40.4419651, "lon": -3.7204822}, {"type": "node", "id": 3575378576, "lat": 40.442053, "lon": -3.7206433}, {"type": "node", "id": 3575378577, "lat": 40.4421131, "lon": -3.7206453}, {"type": "node", "id": 3575378578, "lat": 40.4421384, "lon": -3.7204813, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 3575378579, "lat": 40.4424453, "lon": -3.7205316}, {"type": "node", "id": 3575378580, "lat": 40.4425463, "lon": -3.7205568}, {"type": "node", "id": 3575378581, "lat": 40.4428837, "lon": -3.7207701}, {"type": "node", "id": 3575378582, "lat": 40.4433744, "lon": -3.7206794}, {"type": "node", "id": 3575383403, "lat": 40.4412649, "lon": -3.7219378}, {"type": "node", "id": 3575383405, "lat": 40.4414983, "lon": -3.7215804}, {"type": "node", "id": 3575383406, "lat": 40.443624, "lon": -3.7208709}, {"type": "node", "id": 3575526156, "lat": 40.4476148, "lon": -3.7210322}, {"type": "node", "id": 3575526157, "lat": 40.4476519, "lon": -3.7209638}, {"type": "node", "id": 3575526159, "lat": 40.4477096, "lon": -3.7209345}, {"type": "node", "id": 3575526160, "lat": 40.4477728, "lon": -3.7209394}, {"type": "node", "id": 3575526161, "lat": 40.4480089, "lon": -3.7210224}, {"type": "node", "id": 3575526165, "lat": 40.4482126, "lon": -3.7197344}, {"type": "node", "id": 3578396506, "lat": 40.4492286, "lon": -3.7166287}, {"type": "node", "id": 3578396507, "lat": 40.4492347, "lon": -3.7166527}, {"type": "node", "id": 3578396508, "lat": 40.4492416, "lon": -3.7165922}, {"type": "node", "id": 3578396509, "lat": 40.4493034, "lon": -3.7165407}, {"type": "node", "id": 3578396510, "lat": 40.4493382, "lon": -3.7165133}, {"type": "node", "id": 3578396511, "lat": 40.4493608, "lon": -3.7164745}, {"type": "node", "id": 3578396512, "lat": 40.4493799, "lon": -3.7164299}, {"type": "node", "id": 3578396513, "lat": 40.4493869, "lon": -3.7163864}, {"type": "node", "id": 3578396514, "lat": 40.4493895, "lon": -3.7163282}, {"type": "node", "id": 3578396515, "lat": 40.4493956, "lon": -3.7162527}, {"type": "node", "id": 3578396516, "lat": 40.4494147, "lon": -3.7161327, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3578396517, "lat": 40.4494217, "lon": -3.7162196}, {"type": "node", "id": 3578396518, "lat": 40.4494495, "lon": -3.7161922}, {"type": "node", "id": 3578396527, "lat": 40.4495721, "lon": -3.7160676}, {"type": "node", "id": 3578396535, "lat": 40.4496565, "lon": -3.7169728}, {"type": "node", "id": 3578396536, "lat": 40.44966, "lon": -3.7159681}, {"type": "node", "id": 3578396549, "lat": 40.4496904, "lon": -3.7169979}, {"type": "node", "id": 3578396560, "lat": 40.4497287, "lon": -3.7170105}, {"type": "node", "id": 3578396564, "lat": 40.4497396, "lon": -3.7170636}, {"type": "node", "id": 3578396576, "lat": 40.4497874, "lon": -3.7157841}, {"type": "node", "id": 3578396580, "lat": 40.449793, "lon": -3.7170173}, {"type": "node", "id": 3578396997, "lat": 40.4498452, "lon": -3.7170139}, {"type": "node", "id": 3578397002, "lat": 40.4498518, "lon": -3.7156698}, {"type": "node", "id": 3578397014, "lat": 40.4498835, "lon": -3.717066}, {"type": "node", "id": 3578397018, "lat": 40.4498983, "lon": -3.7170059}, {"type": "node", "id": 3578397024, "lat": 40.4499583, "lon": -3.7169922}, {"type": "node", "id": 3578397032, "lat": 40.4500235, "lon": -3.7169613}, {"type": "node", "id": 3578397038, "lat": 40.4500622, "lon": -3.7152064}, {"type": "node", "id": 3578397040, "lat": 40.4500931, "lon": -3.7169179}, {"type": "node", "id": 3578397044, "lat": 40.4501412, "lon": -3.716931}, {"type": "node", "id": 3578397046, "lat": 40.4501636, "lon": -3.7168436}, {"type": "node", "id": 3578397047, "lat": 40.450227, "lon": -3.7167465}, {"type": "node", "id": 3578397050, "lat": 40.4503197, "lon": -3.7146485}, {"type": "node", "id": 3578397051, "lat": 40.4503505, "lon": -3.7164722}, {"type": "node", "id": 3578397052, "lat": 40.4503862, "lon": -3.7163693}, {"type": "node", "id": 3578397053, "lat": 40.4503899, "lon": -3.7144861}, {"type": "node", "id": 3578397054, "lat": 40.4503966, "lon": -3.7162927}, {"type": "node", "id": 3578397055, "lat": 40.450401, "lon": -3.7161944}, {"type": "node", "id": 3578397056, "lat": 40.4504053, "lon": -3.7160859}, {"type": "node", "id": 3578397057, "lat": 40.4504088, "lon": -3.7159544}, {"type": "node", "id": 3578397058, "lat": 40.4503948, "lon": -3.7164319, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3578397059, "lat": 40.4504262, "lon": -3.7158333}, {"type": "node", "id": 3578397060, "lat": 40.4504301, "lon": -3.7163952}, {"type": "node", "id": 3578397061, "lat": 40.4504285, "lon": -3.71631}, {"type": "node", "id": 3578397062, "lat": 40.45046, "lon": -3.7165548}, {"type": "node", "id": 3578397063, "lat": 40.450446, "lon": -3.7164914}, {"type": "node", "id": 3578397064, "lat": 40.4504427, "lon": -3.7157441}, {"type": "node", "id": 3578397065, "lat": 40.4504432, "lon": -3.7162433, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397066, "lat": 40.4504557, "lon": -3.7143148}, {"type": "node", "id": 3578397067, "lat": 40.4504597, "lon": -3.7162428, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397069, "lat": 40.4504636, "lon": -3.7156813}, {"type": "node", "id": 3578397070, "lat": 40.4504653, "lon": -3.7158675}, {"type": "node", "id": 3578397071, "lat": 40.4504733, "lon": -3.7162425, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3578397072, "lat": 40.450485, "lon": -3.7164865, "tags": {"highway": "stop"}}, {"type": "node", "id": 3578397073, "lat": 40.4505034, "lon": -3.7163128}, {"type": "node", "id": 3578397074, "lat": 40.4505295, "lon": -3.7140679}, {"type": "node", "id": 3578397075, "lat": 40.4505393, "lon": -3.7140352}, {"type": "node", "id": 3578397076, "lat": 40.4505619, "lon": -3.7139192}, {"type": "node", "id": 3578397077, "lat": 40.4506687, "lon": -3.7129508}, {"type": "node", "id": 3578397078, "lat": 40.4506759, "lon": -3.712886}, {"type": "node", "id": 3578397079, "lat": 40.450722, "lon": -3.7126049}, {"type": "node", "id": 3578397080, "lat": 40.4508272, "lon": -3.7120986}, {"type": "node", "id": 3578397081, "lat": 40.4509333, "lon": -3.7142354}, {"type": "node", "id": 3578397082, "lat": 40.4509751, "lon": -3.7142935}, {"type": "node", "id": 3578397083, "lat": 40.4510231, "lon": -3.7143345}, {"type": "node", "id": 3578397084, "lat": 40.4510438, "lon": -3.7111659}, {"type": "node", "id": 3578397085, "lat": 40.4510672, "lon": -3.7111191}, {"type": "node", "id": 3578397086, "lat": 40.4510925, "lon": -3.7111122}, {"type": "node", "id": 3578397087, "lat": 40.451161, "lon": -3.7134512}, {"type": "node", "id": 3578397088, "lat": 40.4511757, "lon": -3.7137814}, {"type": "node", "id": 3578397089, "lat": 40.4512435, "lon": -3.7143806}, {"type": "node", "id": 3578397090, "lat": 40.4513075, "lon": -3.7125188}, {"type": "node", "id": 3578397091, "lat": 40.4513298, "lon": -3.7112565}, {"type": "node", "id": 3578397092, "lat": 40.4513818, "lon": -3.7140407}, {"type": "node", "id": 3578397093, "lat": 40.4514793, "lon": -3.7143573}, {"type": "node", "id": 3578397094, "lat": 40.4518178, "lon": -3.7115717}, {"type": "node", "id": 3578397095, "lat": 40.4518274, "lon": -3.7141821}, {"type": "node", "id": 3578397096, "lat": 40.4519115, "lon": -3.7147598}, {"type": "node", "id": 3578397097, "lat": 40.4519295, "lon": -3.7147707}, {"type": "node", "id": 3578397098, "lat": 40.4520493, "lon": -3.7117159}, {"type": "node", "id": 3578397099, "lat": 40.4521667, "lon": -3.7118153}, {"type": "node", "id": 3578397100, "lat": 40.4522784, "lon": -3.7119391}, {"type": "node", "id": 3578397101, "lat": 40.4523381, "lon": -3.7120372}, {"type": "node", "id": 3578422044, "lat": 40.4461849, "lon": -3.7228974}, {"type": "node", "id": 3578422045, "lat": 40.4466695, "lon": -3.724288}, {"type": "node", "id": 3578422046, "lat": 40.4467144, "lon": -3.7243624}, {"type": "node", "id": 3578422047, "lat": 40.446763, "lon": -3.7244403}, {"type": "node", "id": 3578422048, "lat": 40.4468313, "lon": -3.7245029}, {"type": "node", "id": 3578422049, "lat": 40.4468897, "lon": -3.7245289}, {"type": "node", "id": 3578422050, "lat": 40.4469752, "lon": -3.7246936}, {"type": "node", "id": 3578422051, "lat": 40.4469787, "lon": -3.7246398, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3578422052, "lat": 40.4469847, "lon": -3.7245467}, {"type": "node", "id": 3578422053, "lat": 40.4471548, "lon": -3.7245785}, {"type": "node", "id": 3578422054, "lat": 40.4476985, "lon": -3.7247167, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3578456356, "lat": 40.4508169, "lon": -3.7165182}, {"type": "node", "id": 3587032526, "lat": 40.4217057, "lon": -3.6910468}, {"type": "node", "id": 3587032527, "lat": 40.4217877, "lon": -3.6911221}, {"type": "node", "id": 3587032528, "lat": 40.4218496, "lon": -3.6912644}, {"type": "node", "id": 3587032529, "lat": 40.4218868, "lon": -3.6913538}, {"type": "node", "id": 3587032530, "lat": 40.4219002, "lon": -3.6913824, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3587032531, "lat": 40.4219221, "lon": -3.6914818}, {"type": "node", "id": 3594139290, "lat": 40.4356881, "lon": -3.7182414}, {"type": "node", "id": 3594825872, "lat": 40.4425799, "lon": -3.7250565}, {"type": "node", "id": 3594825874, "lat": 40.4425948, "lon": -3.7249432}, {"type": "node", "id": 3594825876, "lat": 40.4426449, "lon": -3.7240066}, {"type": "node", "id": 3594825877, "lat": 40.4426646, "lon": -3.7239942}, {"type": "node", "id": 3594825878, "lat": 40.4426906, "lon": -3.7239932}, {"type": "node", "id": 3594825879, "lat": 40.4427083, "lon": -3.7249585}, {"type": "node", "id": 3594825882, "lat": 40.4427592, "lon": -3.7249645}, {"type": "node", "id": 3594825884, "lat": 40.4428094, "lon": -3.7249818}, {"type": "node", "id": 3594825885, "lat": 40.4428511, "lon": -3.7250295}, {"type": "node", "id": 3594825887, "lat": 40.4429005, "lon": -3.7251025}, {"type": "node", "id": 3594825889, "lat": 40.4429183, "lon": -3.7251137}, {"type": "node", "id": 3594827094, "lat": 40.4429888, "lon": -3.7240138, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3594827096, "lat": 40.4430496, "lon": -3.7240699}, {"type": "node", "id": 3594827099, "lat": 40.4431939, "lon": -3.7241054}, {"type": "node", "id": 3594827105, "lat": 40.4434973, "lon": -3.7241201}, {"type": "node", "id": 3594827106, "lat": 40.4435315, "lon": -3.723335}, {"type": "node", "id": 3594827118, "lat": 40.4444608, "lon": -3.7229656}, {"type": "node", "id": 3594827119, "lat": 40.444503, "lon": -3.7229757}, {"type": "node", "id": 3594827120, "lat": 40.4445158, "lon": -3.7230412}, {"type": "node", "id": 3594827127, "lat": 40.4447255, "lon": -3.7230782}, {"type": "node", "id": 3594827132, "lat": 40.4448499, "lon": -3.7230985}, {"type": "node", "id": 3594827137, "lat": 40.4450338, "lon": -3.7231331}, {"type": "node", "id": 3594827138, "lat": 40.4450376, "lon": -3.7230673}, {"type": "node", "id": 3594827139, "lat": 40.4450839, "lon": -3.7230788}, {"type": "node", "id": 3594827140, "lat": 40.4450926, "lon": -3.7231479}, {"type": "node", "id": 3594827145, "lat": 40.4451455, "lon": -3.7243979, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3594827152, "lat": 40.4453604, "lon": -3.7243399}, {"type": "node", "id": 3594827153, "lat": 40.4453904, "lon": -3.7242906}, {"type": "node", "id": 3594827154, "lat": 40.4453946, "lon": -3.724253}, {"type": "node", "id": 3594827155, "lat": 40.4454392, "lon": -3.7232087}, {"type": "node", "id": 3594827156, "lat": 40.4454743, "lon": -3.7243613}, {"type": "node", "id": 3594827157, "lat": 40.4454858, "lon": -3.7242573}, {"type": "node", "id": 3594827158, "lat": 40.4454943, "lon": -3.7232251}, {"type": "node", "id": 3594827159, "lat": 40.4454993, "lon": -3.7243843}, {"type": "node", "id": 3594827160, "lat": 40.4455043, "lon": -3.7232514}, {"type": "node", "id": 3594827161, "lat": 40.4455969, "lon": -3.7232514}, {"type": "node", "id": 3594827162, "lat": 40.4456132, "lon": -3.7232153}, {"type": "node", "id": 3594827163, "lat": 40.4456419, "lon": -3.7231939}, {"type": "node", "id": 3594827164, "lat": 40.4456645, "lon": -3.723189}, {"type": "node", "id": 3594827165, "lat": 40.4462227, "lon": -3.7232852}, {"type": "node", "id": 3594842608, "lat": 40.4302967, "lon": -3.7158689}, {"type": "node", "id": 3594842609, "lat": 40.430669, "lon": -3.7155453}, {"type": "node", "id": 3594842610, "lat": 40.4315599, "lon": -3.7170652}, {"type": "node", "id": 3594842613, "lat": 40.4334418, "lon": -3.7184397}, {"type": "node", "id": 3594842615, "lat": 40.4334559, "lon": -3.7184614}, {"type": "node", "id": 3594842616, "lat": 40.4334654, "lon": -3.7185512}, {"type": "node", "id": 3594842617, "lat": 40.4334827, "lon": -3.7186043}, {"type": "node", "id": 3594842619, "lat": 40.4338, "lon": -3.7188203}, {"type": "node", "id": 3594842627, "lat": 40.4346399, "lon": -3.7189205}, {"type": "node", "id": 3594864819, "lat": 40.436088, "lon": -3.7212968}, {"type": "node", "id": 3594864826, "lat": 40.4364519, "lon": -3.7207636}, {"type": "node", "id": 3594864844, "lat": 40.435691, "lon": -3.7212435}, {"type": "node", "id": 3594887595, "lat": 40.4378279, "lon": -3.7238359}, {"type": "node", "id": 3601013261, "lat": 40.4418018, "lon": -3.7266159, "tags": {"bicycle": "yes", "check_date:crossing": "2023-10-25", "crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3601013268, "lat": 40.444249, "lon": -3.7271532}, {"type": "node", "id": 3601013269, "lat": 40.4442619, "lon": -3.7270313}, {"type": "node", "id": 3601039775, "lat": 40.4472098, "lon": -3.7249644}, {"type": "node", "id": 3606795767, "lat": 40.4260043, "lon": -3.7127796}, {"type": "node", "id": 3606795768, "lat": 40.4269101, "lon": -3.7134231}, {"type": "node", "id": 3627050621, "lat": 40.4327038, "lon": -3.6866345}, {"type": "node", "id": 3627050622, "lat": 40.432708, "lon": -3.6867352, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627050623, "lat": 40.4329877, "lon": -3.6868829, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627050624, "lat": 40.433084, "lon": -3.6905216, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3627050625, "lat": 40.4331164, "lon": -3.6868725}, {"type": "node", "id": 3627050626, "lat": 40.4331428, "lon": -3.6901063, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3627050627, "lat": 40.4331785, "lon": -3.686605}, {"type": "node", "id": 3627050628, "lat": 40.433184, "lon": -3.6867007, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3627507752, "lat": 40.4360097, "lon": -3.6807045, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3627507753, "lat": 40.436062, "lon": -3.6817782, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3629636196, "lat": 40.4339405, "lon": -3.6984288, "tags": {"name": "Sagunto", "railway": "subway_entrance", "source": "survey", "wheelchair": "no", "wheelchair:description": "This entrance has steps. Lift access to station available to North."}}, {"type": "node", "id": 3629636197, "lat": 40.4350065, "lon": -3.6988675}, {"type": "node", "id": 3632136772, "lat": 40.4518122, "lon": -3.6885809, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3633377316, "lat": 40.4380815, "lon": -3.719725}, {"type": "node", "id": 3633377320, "lat": 40.4384587, "lon": -3.7191454}, {"type": "node", "id": 3633377321, "lat": 40.4384784, "lon": -3.7191655}, {"type": "node", "id": 3633377325, "lat": 40.4385248, "lon": -3.7191904}, {"type": "node", "id": 3633377328, "lat": 40.4385512, "lon": -3.7191788}, {"type": "node", "id": 3633377332, "lat": 40.4386071, "lon": -3.7191083, "tags": {"access": "customers", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 3633377340, "lat": 40.4390404, "lon": -3.7182409}, {"type": "node", "id": 3633377341, "lat": 40.4390622, "lon": -3.7182032}, {"type": "node", "id": 3633377342, "lat": 40.439077, "lon": -3.7182366, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 3633377344, "lat": 40.4390942, "lon": -3.7199307}, {"type": "node", "id": 3633377345, "lat": 40.4391335, "lon": -3.7181041}, {"type": "node", "id": 3633377346, "lat": 40.4392644, "lon": -3.7180877, "tags": {"access": "customers", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 3633377349, "lat": 40.4402297, "lon": -3.7177713}, {"type": "node", "id": 3633377350, "lat": 40.4418329, "lon": -3.719348}, {"type": "node", "id": 3636842772, "lat": 40.4518021, "lon": -3.6883672, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3644754710, "lat": 40.4278174, "lon": -3.7153594}, {"type": "node", "id": 3646907642, "lat": 40.43291, "lon": -3.723973}, {"type": "node", "id": 3659320548, "lat": 40.4485527, "lon": -3.7037312}, {"type": "node", "id": 3661952072, "lat": 40.4323724, "lon": -3.7008613}, {"type": "node", "id": 3661952073, "lat": 40.4325613, "lon": -3.7004502}, {"type": "node", "id": 3661952075, "lat": 40.4329159, "lon": -3.7005256}, {"type": "node", "id": 3661952077, "lat": 40.4331272, "lon": -3.7007508}, {"type": "node", "id": 3661952078, "lat": 40.4331513, "lon": -3.7012209}, {"type": "node", "id": 3661955226, "lat": 40.43489, "lon": -3.6993257}, {"type": "node", "id": 3663308736, "lat": 40.439118, "lon": -3.7140957, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3663308739, "lat": 40.4409958, "lon": -3.7139741, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308740, "lat": 40.4410563, "lon": -3.7139702, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3663308741, "lat": 40.4410879, "lon": -3.7138832}, {"type": "node", "id": 3663308742, "lat": 40.4411274, "lon": -3.7140295}, {"type": "node", "id": 3663308743, "lat": 40.4413018, "lon": -3.7135336, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308744, "lat": 40.4413612, "lon": -3.7136472}, {"type": "node", "id": 3663308746, "lat": 40.4414766, "lon": -3.7137779, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 3663308748, "lat": 40.4422997, "lon": -3.7125278}, {"type": "node", "id": 3663308749, "lat": 40.4423085, "lon": -3.7126836}, {"type": "node", "id": 3663308751, "lat": 40.4423447, "lon": -3.712818}, {"type": "node", "id": 3663308752, "lat": 40.442347, "lon": -3.7127358}, {"type": "node", "id": 3663308754, "lat": 40.4425036, "lon": -3.7124947}, {"type": "node", "id": 3663308755, "lat": 40.4425603, "lon": -3.7131228}, {"type": "node", "id": 3663308756, "lat": 40.4426924, "lon": -3.7127926}, {"type": "node", "id": 3663308757, "lat": 40.442705, "lon": -3.7131137}, {"type": "node", "id": 3663308758, "lat": 40.4427625, "lon": -3.7121055}, {"type": "node", "id": 3663308759, "lat": 40.4427765, "lon": -3.7126322}, {"type": "node", "id": 3663308760, "lat": 40.4428209, "lon": -3.7126322}, {"type": "node", "id": 3663308761, "lat": 40.4429822, "lon": -3.7123519}, {"type": "node", "id": 3663308762, "lat": 40.4431113, "lon": -3.7115064, "tags": {"barrier": "gate"}}, {"type": "node", "id": 3663308763, "lat": 40.4437104, "lon": -3.7106054, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663308764, "lat": 40.4437447, "lon": -3.7140209, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308765, "lat": 40.443753, "lon": -3.7141852, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 3663308767, "lat": 40.4437925, "lon": -3.7103582, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663308768, "lat": 40.4447818, "lon": -3.7125196, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308769, "lat": 40.4448494, "lon": -3.7139628, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663308770, "lat": 40.4457956, "lon": -3.7139662, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3663324548, "lat": 40.4441363, "lon": -3.7101377, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3663324553, "lat": 40.4453913, "lon": -3.7084079, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3663324554, "lat": 40.4467536, "lon": -3.7050527, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3667369103, "lat": 40.4371045, "lon": -3.7209953}, {"type": "node", "id": 3667374363, "lat": 40.4368307, "lon": -3.7204965}, {"type": "node", "id": 3667374364, "lat": 40.4359898, "lon": -3.7190601}, {"type": "node", "id": 3667374366, "lat": 40.4360633, "lon": -3.7191111}, {"type": "node", "id": 3667374371, "lat": 40.4357146, "lon": -3.7188999}, {"type": "node", "id": 3667374373, "lat": 40.4361528, "lon": -3.719229}, {"type": "node", "id": 3667374374, "lat": 40.4360468, "lon": -3.7191433}, {"type": "node", "id": 3667374377, "lat": 40.4360985, "lon": -3.7191929}, {"type": "node", "id": 3667374379, "lat": 40.435977, "lon": -3.7190949}, {"type": "node", "id": 3667374381, "lat": 40.4361321, "lon": -3.719246}, {"type": "node", "id": 3667374382, "lat": 40.4361164, "lon": -3.7191701}, {"type": "node", "id": 3675302630, "lat": 40.4393261, "lon": -3.6906487, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3675303745, "lat": 40.4380062, "lon": -3.6928887, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3675303746, "lat": 40.4380831, "lon": -3.6945681, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303747, "lat": 40.4381173, "lon": -3.6929536, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303748, "lat": 40.4382013, "lon": -3.6946915, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303749, "lat": 40.4382326, "lon": -3.6928876, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3675303750, "lat": 40.438326, "lon": -3.6945475, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3684260031, "lat": 40.4373796, "lon": -3.7232545}, {"type": "node", "id": 3684260033, "lat": 40.4375835, "lon": -3.7237627}, {"type": "node", "id": 3684260040, "lat": 40.4376837, "lon": -3.7238494}, {"type": "node", "id": 3684260046, "lat": 40.4377474, "lon": -3.7239844}, {"type": "node", "id": 3700823165, "lat": 40.4333144, "lon": -3.7183532}, {"type": "node", "id": 3708287453, "lat": 40.4327342, "lon": -3.7071295}, {"type": "node", "id": 3708287454, "lat": 40.4327454, "lon": -3.7070242}, {"type": "node", "id": 3708287455, "lat": 40.4328193, "lon": -3.7071314}, {"type": "node", "id": 3712863646, "lat": 40.4411054, "lon": -3.6948014}, {"type": "node", "id": 3712863647, "lat": 40.4412966, "lon": -3.6947855}, {"type": "node", "id": 3712863648, "lat": 40.4410964, "lon": -3.6945855}, {"type": "node", "id": 3712863649, "lat": 40.4411929, "lon": -3.6945802}, {"type": "node", "id": 3750568824, "lat": 40.4382123, "lon": -3.6906042}, {"type": "node", "id": 3750569725, "lat": 40.4381541, "lon": -3.6904889}, {"type": "node", "id": 3750600821, "lat": 40.4378675, "lon": -3.6903503}, {"type": "node", "id": 3750600822, "lat": 40.4381432, "lon": -3.6907845, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3750603026, "lat": 40.4380971, "lon": -3.6908492}, {"type": "node", "id": 3750603028, "lat": 40.437834, "lon": -3.6903811}, {"type": "node", "id": 3769069722, "lat": 40.4348031, "lon": -3.7195623}, {"type": "node", "id": 3769069723, "lat": 40.4349656, "lon": -3.7196694}, {"type": "node", "id": 3802946094, "lat": 40.4469707, "lon": -3.7033263}, {"type": "node", "id": 3802946095, "lat": 40.4469712, "lon": -3.7079369, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946098, "lat": 40.4469836, "lon": -3.7042663}, {"type": "node", "id": 3802946100, "lat": 40.4470008, "lon": -3.7033917}, {"type": "node", "id": 3802946104, "lat": 40.4470365, "lon": -3.7079607, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946105, "lat": 40.4470412, "lon": -3.7045492}, {"type": "node", "id": 3802946106, "lat": 40.4470404, "lon": -3.7086188, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946109, "lat": 40.4470828, "lon": -3.7036273, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3802946112, "lat": 40.4470908, "lon": -3.7042302}, {"type": "node", "id": 3802946114, "lat": 40.447119, "lon": -3.7086148, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946115, "lat": 40.4471273, "lon": -3.7087916}, {"type": "node", "id": 3802946116, "lat": 40.4471332, "lon": -3.7085381}, {"type": "node", "id": 3802946117, "lat": 40.4471513, "lon": -3.7036886}, {"type": "node", "id": 3802946118, "lat": 40.4471903, "lon": -3.7080205, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3802946119, "lat": 40.4471798, "lon": -3.7083419, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802946120, "lat": 40.447182, "lon": -3.7041276}, {"type": "node", "id": 3802946121, "lat": 40.4471843, "lon": -3.7084114}, {"type": "node", "id": 3802946122, "lat": 40.4472258, "lon": -3.7038678}, {"type": "node", "id": 3802946123, "lat": 40.4472512, "lon": -3.703513}, {"type": "node", "id": 3802946124, "lat": 40.4472581, "lon": -3.7034595}, {"type": "node", "id": 3802946125, "lat": 40.4472684, "lon": -3.7083805}, {"type": "node", "id": 3802946126, "lat": 40.4473592, "lon": -3.704191}, {"type": "node", "id": 3802946127, "lat": 40.4473813, "lon": -3.7037551}, {"type": "node", "id": 3802946128, "lat": 40.4474176, "lon": -3.7040373}, {"type": "node", "id": 3802946129, "lat": 40.447469, "lon": -3.7040287}, {"type": "node", "id": 3802946130, "lat": 40.4474444, "lon": -3.7037485}, {"type": "node", "id": 3802947037, "lat": 40.4465069, "lon": -3.7040885}, {"type": "node", "id": 3802947039, "lat": 40.4465629, "lon": -3.7038126}, {"type": "node", "id": 3802947040, "lat": 40.4465697, "lon": -3.7040875}, {"type": "node", "id": 3802947041, "lat": 40.4465997, "lon": -3.7036648}, {"type": "node", "id": 3802947042, "lat": 40.4466724, "lon": -3.7035706}, {"type": "node", "id": 3802947043, "lat": 40.4466632, "lon": -3.7033459}, {"type": "node", "id": 3802947044, "lat": 40.4467204, "lon": -3.7039463}, {"type": "node", "id": 3802947046, "lat": 40.4467272, "lon": -3.7038527, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3802947047, "lat": 40.4467312, "lon": -3.7044078}, {"type": "node", "id": 3802947048, "lat": 40.4467364, "lon": -3.7038136}, {"type": "node", "id": 3802947050, "lat": 40.4467436, "lon": -3.7040717}, {"type": "node", "id": 3802947052, "lat": 40.4467391, "lon": -3.7033389}, {"type": "node", "id": 3802947055, "lat": 40.4467822, "lon": -3.7037121}, {"type": "node", "id": 3802947057, "lat": 40.4467943, "lon": -3.7041676}, {"type": "node", "id": 3802947060, "lat": 40.4468224, "lon": -3.7033359}, {"type": "node", "id": 3802947062, "lat": 40.4468373, "lon": -3.7036492}, {"type": "node", "id": 3802947068, "lat": 40.4468571, "lon": -3.7031343}, {"type": "node", "id": 3802947070, "lat": 40.4468637, "lon": -3.7032691}, {"type": "node", "id": 3802947071, "lat": 40.4468692, "lon": -3.7036263}, {"type": "node", "id": 3802947075, "lat": 40.4468807, "lon": -3.7033321}, {"type": "node", "id": 3802947078, "lat": 40.4469009, "lon": -3.7042519}, {"type": "node", "id": 3802947082, "lat": 40.4469387, "lon": -3.7035994}, {"type": "node", "id": 3802947085, "lat": 40.4469667, "lon": -3.7044121}, {"type": "node", "id": 3841500019, "lat": 40.4412972, "lon": -3.6880829}, {"type": "node", "id": 3842361694, "lat": 40.424649, "lon": -3.7032692}, {"type": "node", "id": 3842361695, "lat": 40.4245858, "lon": -3.7033315}, {"type": "node", "id": 3842495979, "lat": 40.4266234, "lon": -3.703778}, {"type": "node", "id": 3842495980, "lat": 40.4266376, "lon": -3.7039137}, {"type": "node", "id": 3842495988, "lat": 40.4266536, "lon": -3.7040731}, {"type": "node", "id": 3849464159, "lat": 40.4271053, "lon": -3.7044992}, {"type": "node", "id": 3849464160, "lat": 40.4270253, "lon": -3.7045132}, {"type": "node", "id": 3849464161, "lat": 40.4271691, "lon": -3.70449}, {"type": "node", "id": 3849464209, "lat": 40.4272964, "lon": -3.7042405}, {"type": "node", "id": 3849464222, "lat": 40.4272778, "lon": -3.704071}, {"type": "node", "id": 3883232008, "lat": 40.4358175, "lon": -3.6999291}, {"type": "node", "id": 3883232009, "lat": 40.4367845, "lon": -3.7001475}, {"type": "node", "id": 3895225707, "lat": 40.4513572, "lon": -3.6912736}, {"type": "node", "id": 3918709945, "lat": 40.4407122, "lon": -3.6798041}, {"type": "node", "id": 3927556254, "lat": 40.4303406, "lon": -3.7200412, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556255, "lat": 40.4303661, "lon": -3.7174964, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556256, "lat": 40.4304025, "lon": -3.7200372, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556757, "lat": 40.430424, "lon": -3.7199854, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556758, "lat": 40.430437, "lon": -3.7201294, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556759, "lat": 40.4307582, "lon": -3.719093, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556760, "lat": 40.4308138, "lon": -3.7190467, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556761, "lat": 40.430851, "lon": -3.7191744, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556763, "lat": 40.4309638, "lon": -3.7207385, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927556764, "lat": 40.4310335, "lon": -3.7206856, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556765, "lat": 40.4310602, "lon": -3.7207103, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556766, "lat": 40.4311475, "lon": -3.718105, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556767, "lat": 40.431228, "lon": -3.7180493, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556768, "lat": 40.4312286, "lon": -3.7181682, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927556769, "lat": 40.4312556, "lon": -3.7181892, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927556770, "lat": 40.431371, "lon": -3.7197786, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556771, "lat": 40.4313698, "lon": -3.7196315, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556772, "lat": 40.4314737, "lon": -3.7197218, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556773, "lat": 40.4317953, "lon": -3.7186095, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556774, "lat": 40.4318115, "lon": -3.718741, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927556775, "lat": 40.4319018, "lon": -3.7186925, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927591428, "lat": 40.4465769, "lon": -3.7036413, "tags": {"name": "Santa Engracia", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 3927597013, "lat": 40.4245719, "lon": -3.698148, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597014, "lat": 40.4245755, "lon": -3.6981179, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927597015, "lat": 40.4247427, "lon": -3.698017, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927597016, "lat": 40.4247529, "lon": -3.6980449, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597017, "lat": 40.4247591, "lon": -3.698062, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 3927597018, "lat": 40.424983, "lon": -3.6978298, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927597019, "lat": 40.4250224, "lon": -3.6977306, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927597020, "lat": 40.4250371, "lon": -3.6977614, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3927640950, "lat": 40.422775, "lon": -3.7077024, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3927640954, "lat": 40.4255055, "lon": -3.6922109, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3936892050, "lat": 40.4272907, "lon": -3.7210579}, {"type": "node", "id": 3936892051, "lat": 40.4279381, "lon": -3.7213409}, {"type": "node", "id": 3946882542, "lat": 40.4261359, "lon": -3.6925571}, {"type": "node", "id": 3946882543, "lat": 40.4260558, "lon": -3.692628}, {"type": "node", "id": 3946934257, "lat": 40.4364623, "lon": -3.7216289}, {"type": "node", "id": 3946934258, "lat": 40.4353704, "lon": -3.7198388}, {"type": "node", "id": 3946934259, "lat": 40.4354156, "lon": -3.7198986}, {"type": "node", "id": 3946934260, "lat": 40.4351092, "lon": -3.7196592}, {"type": "node", "id": 3946934261, "lat": 40.4350711, "lon": -3.7196473}, {"type": "node", "id": 3951439714, "lat": 40.4512321, "lon": -3.7106192}, {"type": "node", "id": 3951439717, "lat": 40.4502562, "lon": -3.7102057, "tags": {"barrier": "block"}}, {"type": "node", "id": 3951439718, "lat": 40.4507561, "lon": -3.7105262}, {"type": "node", "id": 3951439719, "lat": 40.4509593, "lon": -3.7104841}, {"type": "node", "id": 3951439721, "lat": 40.4512697, "lon": -3.7104121}, {"type": "node", "id": 3951439723, "lat": 40.4499344, "lon": -3.7100886}, {"type": "node", "id": 3951439724, "lat": 40.4499812, "lon": -3.7100588}, {"type": "node", "id": 3951439725, "lat": 40.4500297, "lon": -3.7100609}, {"type": "node", "id": 3951439726, "lat": 40.4513429, "lon": -3.7104019}, {"type": "node", "id": 3951439727, "lat": 40.4503495, "lon": -3.7102677}, {"type": "node", "id": 3951439728, "lat": 40.45038, "lon": -3.7101874}, {"type": "node", "id": 3951439729, "lat": 40.4504124, "lon": -3.7101117}, {"type": "node", "id": 3951439730, "lat": 40.4511599, "lon": -3.7107816, "tags": {"bicycle": "yes", "foot": "yes"}}, {"type": "node", "id": 3951449119, "lat": 40.451966, "lon": -3.7112862}, {"type": "node", "id": 3951449126, "lat": 40.4515677, "lon": -3.7110425}, {"type": "node", "id": 3951449128, "lat": 40.4521936, "lon": -3.7118452}, {"type": "node", "id": 3951449148, "lat": 40.4516713, "lon": -3.7103995}, {"type": "node", "id": 3951449149, "lat": 40.4517256, "lon": -3.7103345}, {"type": "node", "id": 3951449150, "lat": 40.4518274, "lon": -3.7100749}, {"type": "node", "id": 3951449151, "lat": 40.4517336, "lon": -3.7100226}, {"type": "node", "id": 3951449152, "lat": 40.4504196, "lon": -3.7100948}, {"type": "node", "id": 3951455564, "lat": 40.4521716, "lon": -3.7095517, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436601, "lat": 40.4489834, "lon": -3.7163341}, {"type": "node", "id": 3964436602, "lat": 40.4489978, "lon": -3.7162859}, {"type": "node", "id": 3964436603, "lat": 40.4490252, "lon": -3.7163831, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436604, "lat": 40.4490114, "lon": -3.7162248}, {"type": "node", "id": 3964436605, "lat": 40.4490269, "lon": -3.7159716}, {"type": "node", "id": 3964436606, "lat": 40.4490154, "lon": -3.7161127}, {"type": "node", "id": 3964436607, "lat": 40.4490758, "lon": -3.7164637}, {"type": "node", "id": 3964436608, "lat": 40.4490915, "lon": -3.7166664}, {"type": "node", "id": 3964436609, "lat": 40.4491171, "lon": -3.716731}, {"type": "node", "id": 3964436610, "lat": 40.449123, "lon": -3.7168511, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 3964436611, "lat": 40.4491239, "lon": -3.7164985, "tags": {"crossing:island": "yes"}}, {"type": "node", "id": 3964436612, "lat": 40.4491574, "lon": -3.7159729}, {"type": "node", "id": 3964436613, "lat": 40.4491642, "lon": -3.7160143}, {"type": "node", "id": 3964436614, "lat": 40.4491926, "lon": -3.7168712, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436615, "lat": 40.4491964, "lon": -3.7165519, "tags": {"crossing": "uncontrolled", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 3964436616, "lat": 40.4492006, "lon": -3.7160659}, {"type": "node", "id": 3964436617, "lat": 40.4492802, "lon": -3.7160917}, {"type": "node", "id": 3964436618, "lat": 40.4493333, "lon": -3.7160892}, {"type": "node", "id": 3964436619, "lat": 40.4493745, "lon": -3.7160646}, {"type": "node", "id": 3968353125, "lat": 40.4269491, "lon": -3.7134156, "tags": {"elevator": "yes", "highway": "elevator", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3970983758, "lat": 40.4368122, "lon": -3.7210589}, {"type": "node", "id": 3970983759, "lat": 40.4368432, "lon": -3.7209943}, {"type": "node", "id": 3970983761, "lat": 40.437725, "lon": -3.7185317}, {"type": "node", "id": 3970983762, "lat": 40.4377484, "lon": -3.718536}, {"type": "node", "id": 3970983765, "lat": 40.4378845, "lon": -3.7184689}, {"type": "node", "id": 3970983766, "lat": 40.4380392, "lon": -3.7187334}, {"type": "node", "id": 3970983769, "lat": 40.4388044, "lon": -3.717593}, {"type": "node", "id": 3970983770, "lat": 40.4388941, "lon": -3.7180084}, {"type": "node", "id": 3970983771, "lat": 40.4389117, "lon": -3.7174329}, {"type": "node", "id": 3971000863, "lat": 40.4367789, "lon": -3.7212776}, {"type": "node", "id": 3971000864, "lat": 40.4372839, "lon": -3.7220433}, {"type": "node", "id": 3971000865, "lat": 40.4372915, "lon": -3.7205854}, {"type": "node", "id": 3971000867, "lat": 40.4374587, "lon": -3.7204113}, {"type": "node", "id": 3971000869, "lat": 40.4377896, "lon": -3.7180077}, {"type": "node", "id": 3971000871, "lat": 40.4378775, "lon": -3.7201519}, {"type": "node", "id": 3971000872, "lat": 40.4379794, "lon": -3.719678}, {"type": "node", "id": 3971000958, "lat": 40.4367202, "lon": -3.7187057}, {"type": "node", "id": 3971000959, "lat": 40.4367697, "lon": -3.7189699}, {"type": "node", "id": 3971000962, "lat": 40.4367745, "lon": -3.7181816}, {"type": "node", "id": 3971000963, "lat": 40.4367797, "lon": -3.7212309}, {"type": "node", "id": 3971000964, "lat": 40.4367865, "lon": -3.7211444}, {"type": "node", "id": 3971000968, "lat": 40.4370248, "lon": -3.7208158}, {"type": "node", "id": 3971000969, "lat": 40.4370393, "lon": -3.7195317}, {"type": "node", "id": 3971000970, "lat": 40.4378402, "lon": -3.7185395}, {"type": "node", "id": 3971000971, "lat": 40.4378456, "lon": -3.7202044}, {"type": "node", "id": 3971000973, "lat": 40.4378603, "lon": -3.7201801}, {"type": "node", "id": 3971000974, "lat": 40.437867, "lon": -3.7183526}, {"type": "node", "id": 3971000975, "lat": 40.4378781, "lon": -3.718493}, {"type": "node", "id": 3971000976, "lat": 40.4378878, "lon": -3.7184094}, {"type": "node", "id": 3971000977, "lat": 40.4378884, "lon": -3.7184392}, {"type": "node", "id": 3971000978, "lat": 40.4379343, "lon": -3.7177187}, {"type": "node", "id": 3971001057, "lat": 40.4368969, "lon": -3.7209287}, {"type": "node", "id": 3971001058, "lat": 40.4377272, "lon": -3.720031}, {"type": "node", "id": 3971001059, "lat": 40.4377759, "lon": -3.718546}, {"type": "node", "id": 3971001061, "lat": 40.4377973, "lon": -3.7185511}, {"type": "node", "id": 3971001063, "lat": 40.4378239, "lon": -3.7183211}, {"type": "node", "id": 3971001064, "lat": 40.437847, "lon": -3.7183358}, {"type": "node", "id": 3971001065, "lat": 40.4378822, "lon": -3.7183818}, {"type": "node", "id": 3971001066, "lat": 40.4378962, "lon": -3.7202575}, {"type": "node", "id": 3971001067, "lat": 40.4379231, "lon": -3.7176843}, {"type": "node", "id": 3971001068, "lat": 40.4379296, "lon": -3.7202065}, {"type": "node", "id": 3971001069, "lat": 40.4379538, "lon": -3.7196936}, {"type": "node", "id": 3971001070, "lat": 40.4379666, "lon": -3.7196828}, {"type": "node", "id": 3971001071, "lat": 40.4379703, "lon": -3.7177337}, {"type": "node", "id": 3971001081, "lat": 40.4393308, "lon": -3.7170741, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3971001158, "lat": 40.4378198, "lon": -3.7185494}, {"type": "node", "id": 3971001159, "lat": 40.4378656, "lon": -3.7185158}, {"type": "node", "id": 3971001257, "lat": 40.4376313, "lon": -3.7201737}, {"type": "node", "id": 3971001258, "lat": 40.4377252, "lon": -3.7180182, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3971001358, "lat": 40.4381082, "lon": -3.7179525}, {"type": "node", "id": 3971001359, "lat": 40.4389759, "lon": -3.7180949}, {"type": "node", "id": 3971001363, "lat": 40.4391324, "lon": -3.7170878, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3971001368, "lat": 40.4392381, "lon": -3.7170815, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3971975769, "lat": 40.4502274, "lon": -3.6984033, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975770, "lat": 40.4503183, "lon": -3.6982823, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975771, "lat": 40.4509005, "lon": -3.6982285, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975772, "lat": 40.4509681, "lon": -3.6981321, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975773, "lat": 40.4510534, "lon": -3.6995447, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3971975774, "lat": 40.4511237, "lon": -3.6982084, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 3971975775, "lat": 40.4511681, "lon": -3.699727, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3971975776, "lat": 40.451269, "lon": -3.6996226, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3971975777, "lat": 40.4513465, "lon": -3.6981865}, {"type": "node", "id": 3971975778, "lat": 40.4514316, "lon": -3.6995895}, {"type": "node", "id": 3971975779, "lat": 40.4516031, "lon": -3.6981624}, {"type": "node", "id": 3971975780, "lat": 40.451681, "lon": -3.6995373}, {"type": "node", "id": 3971975781, "lat": 40.4518332, "lon": -3.6981407}, {"type": "node", "id": 3971975782, "lat": 40.4519083, "lon": -3.6994855}, {"type": "node", "id": 3971975783, "lat": 40.4520897, "lon": -3.6981166}, {"type": "node", "id": 3971975784, "lat": 40.4521255, "lon": -3.6994498}, {"type": "node", "id": 3971975785, "lat": 40.452353, "lon": -3.6980918, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 3999479563, "lat": 40.449842, "lon": -3.7101632}, {"type": "node", "id": 4014645040, "lat": 40.4458799, "lon": -3.714423}, {"type": "node", "id": 4014645041, "lat": 40.4463712, "lon": -3.7122791, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4016402391, "lat": 40.4293828, "lon": -3.689361}, {"type": "node", "id": 4062386147, "lat": 40.4243717, "lon": -3.7021136}, {"type": "node", "id": 4062386148, "lat": 40.4243352, "lon": -3.7020665}, {"type": "node", "id": 4062386149, "lat": 40.4240797, "lon": -3.7021691, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 4062386151, "lat": 40.4243496, "lon": -3.7020999}, {"type": "node", "id": 4062425597, "lat": 40.4238471, "lon": -3.70215}, {"type": "node", "id": 4062425598, "lat": 40.4238924, "lon": -3.7021822}, {"type": "node", "id": 4062425600, "lat": 40.42387, "lon": -3.7021744}, {"type": "node", "id": 4080737331, "lat": 40.4342395, "lon": -3.7190122}, {"type": "node", "id": 4086238784, "lat": 40.4412628, "lon": -3.7142648, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 4086238785, "lat": 40.4410985, "lon": -3.7140621}, {"type": "node", "id": 4103639922, "lat": 40.4367372, "lon": -3.6978781, "tags": {"amenity": "bicycle_parking", "bicycle_parking": "stands", "capacity": "10", "covered": "no", "operator": "Ayuntamiento de Madrid"}}, {"type": "node", "id": 4108431398, "lat": 40.4423017, "lon": -3.7198759}, {"type": "node", "id": 4108431399, "lat": 40.4423033, "lon": -3.719922}, {"type": "node", "id": 4108431403, "lat": 40.4452191, "lon": -3.7211183}, {"type": "node", "id": 4108431404, "lat": 40.4453863, "lon": -3.7212132}, {"type": "node", "id": 4108431405, "lat": 40.4454457, "lon": -3.7210635}, {"type": "node", "id": 4108431406, "lat": 40.4454739, "lon": -3.7212993}, {"type": "node", "id": 4108431407, "lat": 40.4455657, "lon": -3.7214158}, {"type": "node", "id": 4108431408, "lat": 40.4473589, "lon": -3.7247058}, {"type": "node", "id": 4108431409, "lat": 40.4473746, "lon": -3.7245841, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4108443945, "lat": 40.4315255, "lon": -3.7074005, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 4109163310, "lat": 40.4338845, "lon": -3.6834011}, {"type": "node", "id": 4110020824, "lat": 40.429074, "lon": -3.7150373}, {"type": "node", "id": 4110020825, "lat": 40.4290899, "lon": -3.715166}, {"type": "node", "id": 4110020844, "lat": 40.4296889, "lon": -3.7154183}, {"type": "node", "id": 4110020845, "lat": 40.4296904, "lon": -3.7153667}, {"type": "node", "id": 4110020852, "lat": 40.4303104, "lon": -3.7141658}, {"type": "node", "id": 4110020854, "lat": 40.4303041, "lon": -3.7158537}, {"type": "node", "id": 4110020856, "lat": 40.4303215, "lon": -3.7161973}, {"type": "node", "id": 4110020861, "lat": 40.430425, "lon": -3.7159273}, {"type": "node", "id": 4110020865, "lat": 40.4307323, "lon": -3.715907}, {"type": "node", "id": 4110020866, "lat": 40.4307339, "lon": -3.7158853}, {"type": "node", "id": 4110020867, "lat": 40.4307371, "lon": -3.7159422}, {"type": "node", "id": 4110020868, "lat": 40.4307507, "lon": -3.7158702}, {"type": "node", "id": 4110020869, "lat": 40.4307549, "lon": -3.7161757}, {"type": "node", "id": 4110020870, "lat": 40.430768, "lon": -3.7161949}, {"type": "node", "id": 4110020871, "lat": 40.4307711, "lon": -3.715864}, {"type": "node", "id": 4110020874, "lat": 40.4318201, "lon": -3.7157952}, {"type": "node", "id": 4110020875, "lat": 40.4318384, "lon": -3.7158158}, {"type": "node", "id": 4110020876, "lat": 40.4318415, "lon": -3.7158509}, {"type": "node", "id": 4110020878, "lat": 40.4318705, "lon": -3.7167994}, {"type": "node", "id": 4110020879, "lat": 40.4318822, "lon": -3.7167673}, {"type": "node", "id": 4110068970, "lat": 40.4217583, "lon": -3.7080474}, {"type": "node", "id": 4110093642, "lat": 40.4264557, "lon": -3.7131003, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4110107772, "lat": 40.4245097, "lon": -3.711616}, {"type": "node", "id": 4110107773, "lat": 40.4245189, "lon": -3.7115555}, {"type": "node", "id": 4110107774, "lat": 40.4245199, "lon": -3.711667}, {"type": "node", "id": 4110107775, "lat": 40.4245342, "lon": -3.7117059}, {"type": "node", "id": 4110107776, "lat": 40.4245822, "lon": -3.7117421}, {"type": "node", "id": 4110107777, "lat": 40.4247704, "lon": -3.7118881}, {"type": "node", "id": 4124433458, "lat": 40.4507976, "lon": -3.7243994}, {"type": "node", "id": 4124433466, "lat": 40.4508272, "lon": -3.724388}, {"type": "node", "id": 4124433467, "lat": 40.4508491, "lon": -3.7243686}, {"type": "node", "id": 4124433468, "lat": 40.4508629, "lon": -3.7243297}, {"type": "node", "id": 4124433471, "lat": 40.4508828, "lon": -3.724268}, {"type": "node", "id": 4124433473, "lat": 40.4509088, "lon": -3.7242177}, {"type": "node", "id": 4124433474, "lat": 40.4509425, "lon": -3.7241654}, {"type": "node", "id": 4124433475, "lat": 40.4509833, "lon": -3.7241148}, {"type": "node", "id": 4124433476, "lat": 40.4510249, "lon": -3.7240705}, {"type": "node", "id": 4124433477, "lat": 40.4510844, "lon": -3.7240212}, {"type": "node", "id": 4124433478, "lat": 40.451205, "lon": -3.7239173}, {"type": "node", "id": 4124433479, "lat": 40.451303, "lon": -3.7238284}, {"type": "node", "id": 4124433480, "lat": 40.4513908, "lon": -3.7237533}, {"type": "node", "id": 4124433481, "lat": 40.4514964, "lon": -3.7236594}, {"type": "node", "id": 4124433482, "lat": 40.4516556, "lon": -3.723524}, {"type": "node", "id": 4131264320, "lat": 40.4432904, "lon": -3.7254006, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131264328, "lat": 40.4435245, "lon": -3.7254402}, {"type": "node", "id": 4131264329, "lat": 40.4435293, "lon": -3.7253893, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131264330, "lat": 40.4435456, "lon": -3.7252163}, {"type": "node", "id": 4131264338, "lat": 40.4438687, "lon": -3.725452, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131264347, "lat": 40.4442093, "lon": -3.725515}, {"type": "node", "id": 4131264360, "lat": 40.4444374, "lon": -3.7262223}, {"type": "node", "id": 4131264361, "lat": 40.4444436, "lon": -3.7256116}, {"type": "node", "id": 4131264363, "lat": 40.4444815, "lon": -3.7262646}, {"type": "node", "id": 4131264374, "lat": 40.4445789, "lon": -3.7268899}, {"type": "node", "id": 4131272649, "lat": 40.4461271, "lon": -3.7256296, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131272655, "lat": 40.4462198, "lon": -3.7251184}, {"type": "node", "id": 4131272660, "lat": 40.4467571, "lon": -3.7247685, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "yes"}}, {"type": "node", "id": 4131272665, "lat": 40.4469767, "lon": -3.7246698, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131272677, "lat": 40.4478403, "lon": -3.7246297, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4131272686, "lat": 40.447895, "lon": -3.7245579}, {"type": "node", "id": 4131272700, "lat": 40.4479649, "lon": -3.7247108}, {"type": "node", "id": 4131272767, "lat": 40.4485505, "lon": -3.7216705}, {"type": "node", "id": 4131272770, "lat": 40.4486209, "lon": -3.7215417}, {"type": "node", "id": 4131272771, "lat": 40.4486581, "lon": -3.7215306}, {"type": "node", "id": 4131272773, "lat": 40.4486946, "lon": -3.7215008}, {"type": "node", "id": 4131272774, "lat": 40.4487252, "lon": -3.7214421}, {"type": "node", "id": 4131272776, "lat": 40.4487484, "lon": -3.7214676}, {"type": "node", "id": 4131272777, "lat": 40.4487604, "lon": -3.721357}, {"type": "node", "id": 4131272778, "lat": 40.4487764, "lon": -3.7200019}, {"type": "node", "id": 4131272779, "lat": 40.4488149, "lon": -3.7200107}, {"type": "node", "id": 4131272780, "lat": 40.4488723, "lon": -3.719997}, {"type": "node", "id": 4131272781, "lat": 40.4489209, "lon": -3.7201483}, {"type": "node", "id": 4131272784, "lat": 40.448927, "lon": -3.7199509}, {"type": "node", "id": 4131272785, "lat": 40.4489561, "lon": -3.7200203}, {"type": "node", "id": 4131272788, "lat": 40.4490454, "lon": -3.7197323}, {"type": "node", "id": 4131272789, "lat": 40.4490594, "lon": -3.7196508}, {"type": "node", "id": 4131272790, "lat": 40.4490724, "lon": -3.7195706}, {"type": "node", "id": 4131272791, "lat": 40.4490851, "lon": -3.7194383}, {"type": "node", "id": 4131272792, "lat": 40.4491288, "lon": -3.7212386}, {"type": "node", "id": 4131272793, "lat": 40.4491827, "lon": -3.7184707}, {"type": "node", "id": 4131272794, "lat": 40.449231, "lon": -3.7144758, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 4131272795, "lat": 40.4492693, "lon": -3.7147799}, {"type": "node", "id": 4131272796, "lat": 40.4494665, "lon": -3.7131079}, {"type": "node", "id": 4131272798, "lat": 40.4495171, "lon": -3.7210059}, {"type": "node", "id": 4131272799, "lat": 40.4496005, "lon": -3.7116952}, {"type": "node", "id": 4131272800, "lat": 40.4496301, "lon": -3.7113586}, {"type": "node", "id": 4131272801, "lat": 40.4496487, "lon": -3.7111572}, {"type": "node", "id": 4131272802, "lat": 40.4496621, "lon": -3.7111139}, {"type": "node", "id": 4131272803, "lat": 40.449687, "lon": -3.7110986}, {"type": "node", "id": 4131272804, "lat": 40.4497513, "lon": -3.7157162}, {"type": "node", "id": 4131272805, "lat": 40.4504156, "lon": -3.7111424}, {"type": "node", "id": 4131272806, "lat": 40.4504255, "lon": -3.7111588}, {"type": "node", "id": 4131286424, "lat": 40.4445109, "lon": -3.7260131}, {"type": "node", "id": 4131286425, "lat": 40.4445144, "lon": -3.7260302}, {"type": "node", "id": 4131286426, "lat": 40.4445305, "lon": -3.7260537}, {"type": "node", "id": 4131286427, "lat": 40.4445475, "lon": -3.7260628}, {"type": "node", "id": 4131286429, "lat": 40.4446886, "lon": -3.7259048}, {"type": "node", "id": 4131286431, "lat": 40.4446896, "lon": -3.7259345}, {"type": "node", "id": 4131286432, "lat": 40.4446959, "lon": -3.7258823}, {"type": "node", "id": 4131286433, "lat": 40.4447009, "lon": -3.7259614}, {"type": "node", "id": 4131286434, "lat": 40.4447107, "lon": -3.7258651}, {"type": "node", "id": 4131286435, "lat": 40.4447177, "lon": -3.7259771}, {"type": "node", "id": 4131286436, "lat": 40.4447216, "lon": -3.7258603}, {"type": "node", "id": 4131286438, "lat": 40.4447386, "lon": -3.7259825}, {"type": "node", "id": 4131286439, "lat": 40.4447396, "lon": -3.7260951}, {"type": "node", "id": 4131286443, "lat": 40.4447503, "lon": -3.7260917}, {"type": "node", "id": 4131286446, "lat": 40.444757, "lon": -3.7259914}, {"type": "node", "id": 4131286447, "lat": 40.4447607, "lon": -3.7260819}, {"type": "node", "id": 4131286450, "lat": 40.4447699, "lon": -3.726066}, {"type": "node", "id": 4131286451, "lat": 40.444772, "lon": -3.7260128}, {"type": "node", "id": 4131286452, "lat": 40.4447749, "lon": -3.7260482}, {"type": "node", "id": 4131286453, "lat": 40.4447755, "lon": -3.7260311}, {"type": "node", "id": 4131286457, "lat": 40.444799, "lon": -3.7258657}, {"type": "node", "id": 4131286470, "lat": 40.4449023, "lon": -3.7258574}, {"type": "node", "id": 4131286471, "lat": 40.4449605, "lon": -3.7258243}, {"type": "node", "id": 4134036587, "lat": 40.4428912, "lon": -3.7257083}, {"type": "node", "id": 4134040190, "lat": 40.4428929, "lon": -3.7257348}, {"type": "node", "id": 4134040192, "lat": 40.4428937, "lon": -3.7256932}, {"type": "node", "id": 4134040198, "lat": 40.4429019, "lon": -3.7257532}, {"type": "node", "id": 4134040201, "lat": 40.4429057, "lon": -3.7256724}, {"type": "node", "id": 4134040206, "lat": 40.4429162, "lon": -3.7257646}, {"type": "node", "id": 4134040208, "lat": 40.4429167, "lon": -3.7256631}, {"type": "node", "id": 4134040213, "lat": 40.4429333, "lon": -3.7257703}, {"type": "node", "id": 4134040214, "lat": 40.442935, "lon": -3.7256597}, {"type": "node", "id": 4134040216, "lat": 40.4429406, "lon": -3.7252915}, {"type": "node", "id": 4134040217, "lat": 40.4429423, "lon": -3.7252793, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 4134040218, "lat": 40.4429488, "lon": -3.7253814}, {"type": "node", "id": 4134040219, "lat": 40.4429575, "lon": -3.7256604}, {"type": "node", "id": 4134040220, "lat": 40.4429726, "lon": -3.7256543}, {"type": "node", "id": 4134040222, "lat": 40.4429848, "lon": -3.7256382}, {"type": "node", "id": 4134040224, "lat": 40.4429917, "lon": -3.7256185}, {"type": "node", "id": 4134040225, "lat": 40.4430167, "lon": -3.7253928}, {"type": "node", "id": 4134040227, "lat": 40.4430976, "lon": -3.7257992}, {"type": "node", "id": 4134040232, "lat": 40.4431091, "lon": -3.7257928}, {"type": "node", "id": 4134040239, "lat": 40.4431216, "lon": -3.7253261}, {"type": "node", "id": 4134040247, "lat": 40.4431392, "lon": -3.7253355}, {"type": "node", "id": 4134040251, "lat": 40.4431535, "lon": -3.7253566}, {"type": "node", "id": 4134040254, "lat": 40.4431749, "lon": -3.7253807, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4134042364, "lat": 40.4427744, "lon": -3.7251576}, {"type": "node", "id": 4134042365, "lat": 40.4427973, "lon": -3.7251873}, {"type": "node", "id": 4134042366, "lat": 40.4428289, "lon": -3.7252389}, {"type": "node", "id": 4134042367, "lat": 40.4428631, "lon": -3.7252731}, {"type": "node", "id": 4134045993, "lat": 40.4272235, "lon": -3.6989699, "tags": {"amenity": "parking", "layer": "-1", "name": "Barcel\u00f3", "parking": "underground"}}, {"type": "node", "id": 4134046207, "lat": 40.4271433, "lon": -3.6988513}, {"type": "node", "id": 4134046208, "lat": 40.427162, "lon": -3.6989761}, {"type": "node", "id": 4134046209, "lat": 40.4271975, "lon": -3.6988334, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4134046210, "lat": 40.4273333, "lon": -3.6992155}, {"type": "node", "id": 4134046211, "lat": 40.4273878, "lon": -3.699195}, {"type": "node", "id": 4134046212, "lat": 40.4274026, "lon": -3.6991255}, {"type": "node", "id": 4134046213, "lat": 40.4274109, "lon": -3.6992856, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4134046214, "lat": 40.4274408, "lon": -3.6992257}, {"type": "node", "id": 4134046215, "lat": 40.42747, "lon": -3.6991659}, {"type": "node", "id": 4134046216, "lat": 40.4276238, "lon": -3.6993168}, {"type": "node", "id": 4134046217, "lat": 40.4276311, "lon": -3.6992016}, {"type": "node", "id": 4134118721, "lat": 40.4445605, "lon": -3.7256288}, {"type": "node", "id": 4134118728, "lat": 40.4447896, "lon": -3.7256172, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4140937589, "lat": 40.4205354, "lon": -3.6885008}, {"type": "node", "id": 4140937593, "lat": 40.4202515, "lon": -3.6894465, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4140937600, "lat": 40.4205474, "lon": -3.6885566}, {"type": "node", "id": 4146472733, "lat": 40.450802, "lon": -3.6913229}, {"type": "node", "id": 4149512201, "lat": 40.4474438, "lon": -3.6922605}, {"type": "node", "id": 4150446789, "lat": 40.4509094, "lon": -3.6920072}, {"type": "node", "id": 4153824136, "lat": 40.4318797, "lon": -3.7169698, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4153824137, "lat": 40.4319781, "lon": -3.7170112}, {"type": "node", "id": 4153824138, "lat": 40.4319815, "lon": -3.7170447}, {"type": "node", "id": 4153824139, "lat": 40.4319826, "lon": -3.7169609}, {"type": "node", "id": 4153824140, "lat": 40.4319915, "lon": -3.7169325}, {"type": "node", "id": 4153824141, "lat": 40.4319915, "lon": -3.7170681}, {"type": "node", "id": 4153824142, "lat": 40.4320155, "lon": -3.7169252}, {"type": "node", "id": 4153824143, "lat": 40.4320309, "lon": -3.7170999, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4153842592, "lat": 40.4382533, "lon": -3.719911, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 4153842594, "lat": 40.4391183, "lon": -3.7201751}, {"type": "node", "id": 4157306543, "lat": 40.433132, "lon": -3.723468}, {"type": "node", "id": 4157306544, "lat": 40.4328425, "lon": -3.7208179}, {"type": "node", "id": 4161771901, "lat": 40.4460656, "lon": -3.7256179, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4161771983, "lat": 40.4479349, "lon": -3.7250281}, {"type": "node", "id": 4161783641, "lat": 40.4417846, "lon": -3.7267299}, {"type": "node", "id": 4161783652, "lat": 40.4418913, "lon": -3.7246102}, {"type": "node", "id": 4161783660, "lat": 40.4419403, "lon": -3.7246585}, {"type": "node", "id": 4161783667, "lat": 40.441975, "lon": -3.7247195}, {"type": "node", "id": 4161784431, "lat": 40.4423761, "lon": -3.7248228}, {"type": "node", "id": 4161784447, "lat": 40.4424835, "lon": -3.7245924, "tags": {"kerb": "no", "tactile_paving": "no"}}, {"type": "node", "id": 4161784448, "lat": 40.4425011, "lon": -3.7247075}, {"type": "node", "id": 4161784451, "lat": 40.4425892, "lon": -3.7235845, "tags": {"kerb": "no", "tactile_paving": "no"}}, {"type": "node", "id": 4161795768, "lat": 40.4380219, "lon": -3.7245698}, {"type": "node", "id": 4161795769, "lat": 40.438073, "lon": -3.7246381}, {"type": "node", "id": 4169858405, "lat": 40.4282252, "lon": -3.6957245}, {"type": "node", "id": 4169858408, "lat": 40.4307016, "lon": -3.6970441}, {"type": "node", "id": 4169858409, "lat": 40.4307409, "lon": -3.696877, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4169858410, "lat": 40.4307693, "lon": -3.6967667}, {"type": "node", "id": 4169858411, "lat": 40.4321098, "lon": -3.6976542}, {"type": "node", "id": 4169858412, "lat": 40.4321464, "lon": -3.6975216, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4169858413, "lat": 40.4321825, "lon": -3.6973907, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945199, "lat": 40.4363277, "lon": -3.6872346, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945200, "lat": 40.4362958, "lon": -3.6865797, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4172945201, "lat": 40.4362814, "lon": -3.6862851, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945202, "lat": 40.4362408, "lon": -3.6854509, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945203, "lat": 40.4362296, "lon": -3.6852197, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4172945204, "lat": 40.4361909, "lon": -3.684426, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4172945205, "lat": 40.4361804, "lon": -3.6842097, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4172945206, "lat": 40.4361219, "lon": -3.6830096, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4172945207, "lat": 40.4360014, "lon": -3.6805339, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4178663199, "lat": 40.4330378, "lon": -3.7181602}, {"type": "node", "id": 4178663201, "lat": 40.4332565, "lon": -3.7183117}, {"type": "node", "id": 4179348730, "lat": 40.4350709, "lon": -3.7190514}, {"type": "node", "id": 4179348734, "lat": 40.4351406, "lon": -3.7190135}, {"type": "node", "id": 4179348737, "lat": 40.4377552, "lon": -3.7180945, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4179348738, "lat": 40.4366616, "lon": -3.7183063, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4179348739, "lat": 40.4354004, "lon": -3.7187875}, {"type": "node", "id": 4179348744, "lat": 40.4352346, "lon": -3.7189485}, {"type": "node", "id": 4179548215, "lat": 40.438298, "lon": -3.6984142, "tags": {"name": "Jos\u00e9 Abascal - Alonso Cano", "railway": "subway_entrance"}}, {"type": "node", "id": 4179548216, "lat": 40.4383353, "lon": -3.6990046, "tags": {"highway": "elevator", "railway": "subway_entrance"}}, {"type": "node", "id": 4179548217, "lat": 40.4382924, "lon": -3.6983367}, {"type": "node", "id": 4179548218, "lat": 40.4383215, "lon": -3.6988547}, {"type": "node", "id": 4179550393, "lat": 40.4383879, "lon": -3.7041166, "tags": {"name": "Bravo Murillo pares", "railway": "subway_entrance", "wikidata": "Q191987", "wikipedia": "es:Metro de Madrid"}}, {"type": "node", "id": 4179550394, "lat": 40.4382715, "lon": -3.7043365}, {"type": "node", "id": 4179550395, "lat": 40.4383174, "lon": -3.7041166}, {"type": "node", "id": 4179570123, "lat": 40.4453447, "lon": -3.7026541, "tags": {"name": "Maudes", "opening_hours": "06:00-21:40", "railway": "subway_entrance", "wikidata": "Q191987", "wikipedia": "es:Metro de Madrid"}}, {"type": "node", "id": 4179570124, "lat": 40.4453401, "lon": -3.7025729}, {"type": "node", "id": 4179570125, "lat": 40.4465138, "lon": -3.703615}, {"type": "node", "id": 4179570126, "lat": 40.4467138, "lon": -3.7042866}, {"type": "node", "id": 4179570127, "lat": 40.446893, "lon": -3.7045657}, {"type": "node", "id": 4179570128, "lat": 40.4473701, "lon": -3.7040598}, {"type": "node", "id": 4179587976, "lat": 40.4255046, "lon": -3.7074135}, {"type": "node", "id": 4184539389, "lat": 40.4328514, "lon": -3.6854931, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4184539390, "lat": 40.4328134, "lon": -3.6847097, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4184539391, "lat": 40.4328019, "lon": -3.6844713, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4184539392, "lat": 40.4328154, "lon": -3.68323}, {"type": "node", "id": 4184539393, "lat": 40.4327664, "lon": -3.6837392, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4184539394, "lat": 40.4327245, "lon": -3.6837413}, {"type": "node", "id": 4184539395, "lat": 40.4326628, "lon": -3.6836533}, {"type": "node", "id": 4184539396, "lat": 40.4326563, "lon": -3.683508, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4184539397, "lat": 40.4326491, "lon": -3.6833618}, {"type": "node", "id": 4184539398, "lat": 40.4327052, "lon": -3.6833225}, {"type": "node", "id": 4184539399, "lat": 40.4327082, "lon": -3.683234}, {"type": "node", "id": 4184539400, "lat": 40.4327419, "lon": -3.6832332, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4190852714, "lat": 40.4267865, "lon": -3.6913877, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4193837454, "lat": 40.4335721, "lon": -3.7217444}, {"type": "node", "id": 4193837482, "lat": 40.4329085, "lon": -3.7228264}, {"type": "node", "id": 4193838263, "lat": 40.4333455, "lon": -3.7225169}, {"type": "node", "id": 4193838289, "lat": 40.4330609, "lon": -3.7229415}, {"type": "node", "id": 4193838292, "lat": 40.4328279, "lon": -3.7211862}, {"type": "node", "id": 4197170915, "lat": 40.433107, "lon": -3.7228488}, {"type": "node", "id": 4197170916, "lat": 40.4334206, "lon": -3.7230961}, {"type": "node", "id": 4202134078, "lat": 40.4265876, "lon": -3.6934779}, {"type": "node", "id": 4203412903, "lat": 40.430173, "lon": -3.7173339, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4203412904, "lat": 40.4304715, "lon": -3.7164114}, {"type": "node", "id": 4203412905, "lat": 40.4304981, "lon": -3.7163289}, {"type": "node", "id": 4206082204, "lat": 40.447703, "lon": -3.6838749, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4206086994, "lat": 40.4352957, "lon": -3.6865283}, {"type": "node", "id": 4208190799, "lat": 40.4436303, "lon": -3.6909519, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4208913662, "lat": 40.4372374, "lon": -3.7169062}, {"type": "node", "id": 4208913672, "lat": 40.4369886, "lon": -3.7172803}, {"type": "node", "id": 4208913676, "lat": 40.4372574, "lon": -3.7172558}, {"type": "node", "id": 4208913680, "lat": 40.437276, "lon": -3.7175804}, {"type": "node", "id": 4208916603, "lat": 40.4369697, "lon": -3.7169271}, {"type": "node", "id": 4208916610, "lat": 40.4368823, "lon": -3.717638}, {"type": "node", "id": 4208916614, "lat": 40.4365841, "lon": -3.716923}, {"type": "node", "id": 4208916647, "lat": 40.4368565, "lon": -3.7172954}, {"type": "node", "id": 4211592127, "lat": 40.4361166, "lon": -3.7025049, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4213142634, "lat": 40.4225567, "lon": -3.6912385}, {"type": "node", "id": 4213142637, "lat": 40.4214172, "lon": -3.6917386}, {"type": "node", "id": 4213142638, "lat": 40.4215666, "lon": -3.692363}, {"type": "node", "id": 4213142639, "lat": 40.4217474, "lon": -3.6922781, "tags": {"name": "Recoletos", "railway": "subway_entrance", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4213142643, "lat": 40.4231085, "lon": -3.6910055}, {"type": "node", "id": 4213142644, "lat": 40.4233327, "lon": -3.6909794, "tags": {"name": "Recoletos", "railway": "subway_entrance", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4213142645, "lat": 40.4233967, "lon": -3.6907314}, {"type": "node", "id": 4213142646, "lat": 40.4234483, "lon": -3.6909291}, {"type": "node", "id": 4213142665, "lat": 40.424535, "lon": -3.689957}, {"type": "node", "id": 4213142666, "lat": 40.4245579, "lon": -3.6900361}, {"type": "node", "id": 4213142667, "lat": 40.424588, "lon": -3.6901651}, {"type": "node", "id": 4213142668, "lat": 40.4245771, "lon": -3.6901222}, {"type": "node", "id": 4213142669, "lat": 40.4248535, "lon": -3.6911406}, {"type": "node", "id": 4213142670, "lat": 40.4250262, "lon": -3.691086}, {"type": "node", "id": 4213142671, "lat": 40.4250661, "lon": -3.6910888}, {"type": "node", "id": 4213142672, "lat": 40.4251125, "lon": -3.6911084}, {"type": "node", "id": 4213142673, "lat": 40.4251594, "lon": -3.6911588}, {"type": "node", "id": 4213142674, "lat": 40.4252031, "lon": -3.6912261}, {"type": "node", "id": 4220073058, "lat": 40.4239206, "lon": -3.6880242}, {"type": "node", "id": 4220073059, "lat": 40.4240014, "lon": -3.6880113}, {"type": "node", "id": 4225207889, "lat": 40.4265035, "lon": -3.6878051, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing"}}, {"type": "node", "id": 4229127178, "lat": 40.434089, "lon": -3.7016493, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 4233944620, "lat": 40.4277552, "lon": -3.7203556}, {"type": "node", "id": 4233944621, "lat": 40.4281907, "lon": -3.719388}, {"type": "node", "id": 4233944622, "lat": 40.427678, "lon": -3.7202827}, {"type": "node", "id": 4233944623, "lat": 40.4281097, "lon": -3.7193132}, {"type": "node", "id": 4234036249, "lat": 40.4328311, "lon": -3.7176766, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4234036250, "lat": 40.4330035, "lon": -3.7181882, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4234097903, "lat": 40.4376102, "lon": -3.6993309}, {"type": "node", "id": 4234097904, "lat": 40.4376714, "lon": -3.6993282}, {"type": "node", "id": 4234097905, "lat": 40.4376789, "lon": -3.6993359}, {"type": "node", "id": 4234097906, "lat": 40.4383175, "lon": -3.6992865}, {"type": "node", "id": 4234097907, "lat": 40.4375092, "lon": -3.698683}, {"type": "node", "id": 4234126267, "lat": 40.4268818, "lon": -3.7195022}, {"type": "node", "id": 4234171259, "lat": 40.4256665, "lon": -3.7166754, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4237239311, "lat": 40.4470683, "lon": -3.7058141, "tags": {"crossing": "zebra", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4237239312, "lat": 40.447109, "lon": -3.7058088}, {"type": "node", "id": 4237239313, "lat": 40.4470372, "lon": -3.7058178}, {"type": "node", "id": 4237239314, "lat": 40.4470498, "lon": -3.7054563, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4237239318, "lat": 40.4468016, "lon": -3.7058508, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4237264571, "lat": 40.4277837, "lon": -3.6963016}, {"type": "node", "id": 4242179816, "lat": 40.4259927, "lon": -3.714826, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4242179828, "lat": 40.4259896, "lon": -3.7149235, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4244157681, "lat": 40.4315488, "lon": -3.6834014, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4245283126, "lat": 40.4298505, "lon": -3.7182875, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4245283127, "lat": 40.4298951, "lon": -3.7182184}, {"type": "node", "id": 4249550724, "lat": 40.4321319, "lon": -3.7201274, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4249577921, "lat": 40.4347384, "lon": -3.7115216, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4251839614, "lat": 40.449592, "lon": -3.6983528, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4255508682, "lat": 40.4488937, "lon": -3.71122, "tags": {"natural": "tree"}}, {"type": "node", "id": 4255514048, "lat": 40.4301886, "lon": -3.7106578}, {"type": "node", "id": 4255514049, "lat": 40.4299501, "lon": -3.7106874}, {"type": "node", "id": 4255514050, "lat": 40.4300808, "lon": -3.711893}, {"type": "node", "id": 4255551361, "lat": 40.430684, "lon": -3.693508, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4257948304, "lat": 40.4437599, "lon": -3.7194851}, {"type": "node", "id": 4257948305, "lat": 40.4436131, "lon": -3.7193864}, {"type": "node", "id": 4257948306, "lat": 40.4437774, "lon": -3.7196868}, {"type": "node", "id": 4257948307, "lat": 40.4440147, "lon": -3.7197298}, {"type": "node", "id": 4257948308, "lat": 40.443815, "lon": -3.7196936}, {"type": "node", "id": 4257948309, "lat": 40.4437921, "lon": -3.7199091}, {"type": "node", "id": 4260523374, "lat": 40.4390126, "lon": -3.7164515}, {"type": "node", "id": 4260523375, "lat": 40.4390091, "lon": -3.7163209}, {"type": "node", "id": 4260545532, "lat": 40.449282, "lon": -3.7130376, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4260545533, "lat": 40.4492741, "lon": -3.7130982}, {"type": "node", "id": 4260545534, "lat": 40.44929, "lon": -3.7129789}, {"type": "node", "id": 4260545535, "lat": 40.4487441, "lon": -3.7127574}, {"type": "node", "id": 4260643621, "lat": 40.4375752, "lon": -3.7130615}, {"type": "node", "id": 4260643622, "lat": 40.4364781, "lon": -3.713136}, {"type": "node", "id": 4260643623, "lat": 40.4364725, "lon": -3.7129473}, {"type": "node", "id": 4260707791, "lat": 40.4250418, "lon": -3.7007932, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4260707792, "lat": 40.42503, "lon": -3.7008586}, {"type": "node", "id": 4260707793, "lat": 40.4250501, "lon": -3.7007457}, {"type": "node", "id": 4260707794, "lat": 40.4249426, "lon": -3.7006785, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 4260707795, "lat": 40.4249105, "lon": -3.7006706}, {"type": "node", "id": 4260707796, "lat": 40.4249763, "lon": -3.7006858}, {"type": "node", "id": 4260707806, "lat": 40.4254622, "lon": -3.7008557}, {"type": "node", "id": 4260707807, "lat": 40.4253626, "lon": -3.7008055}, {"type": "node", "id": 4260707808, "lat": 40.4256298, "lon": -3.7002338}, {"type": "node", "id": 4260707809, "lat": 40.4253115, "lon": -3.7008375}, {"type": "node", "id": 4260707810, "lat": 40.4249931, "lon": -3.7007227}, {"type": "node", "id": 4260707811, "lat": 40.4249749, "lon": -3.7006734}, {"type": "node", "id": 4260707812, "lat": 40.4252668, "lon": -3.7000316}, {"type": "node", "id": 4260707813, "lat": 40.4252135, "lon": -3.6999978}, {"type": "node", "id": 4260707814, "lat": 40.425285, "lon": -3.7000453}, {"type": "node", "id": 4260707815, "lat": 40.4256051, "lon": -3.7002867}, {"type": "node", "id": 4260707816, "lat": 40.4255908, "lon": -3.7002769}, {"type": "node", "id": 4264320243, "lat": 40.4376229, "lon": -3.6831067}, {"type": "node", "id": 4269562177, "lat": 40.427689, "lon": -3.6850943, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4269562178, "lat": 40.4276931, "lon": -3.6851775}, {"type": "node", "id": 4269562179, "lat": 40.4276861, "lon": -3.6850427}, {"type": "node", "id": 4269562180, "lat": 40.4264888, "lon": -3.685185}, {"type": "node", "id": 4269623495, "lat": 40.4480238, "lon": -3.6851802, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "kerb": "lowered"}}, {"type": "node", "id": 4269894873, "lat": 40.4456205, "lon": -3.7233132}, {"type": "node", "id": 4269894874, "lat": 40.4456586, "lon": -3.7233847}, {"type": "node", "id": 4269894875, "lat": 40.4457025, "lon": -3.7234767}, {"type": "node", "id": 4269894876, "lat": 40.4457562, "lon": -3.7235807}, {"type": "node", "id": 4269894877, "lat": 40.4458021, "lon": -3.7236411}, {"type": "node", "id": 4269894878, "lat": 40.445853, "lon": -3.7237014}, {"type": "node", "id": 4269894879, "lat": 40.4459391, "lon": -3.7237783}, {"type": "node", "id": 4269894880, "lat": 40.4460022, "lon": -3.7238584}, {"type": "node", "id": 4269894881, "lat": 40.4462086, "lon": -3.724151}, {"type": "node", "id": 4269894882, "lat": 40.4462644, "lon": -3.7242132}, {"type": "node", "id": 4269894883, "lat": 40.4463082, "lon": -3.7242466}, {"type": "node", "id": 4269894884, "lat": 40.4463676, "lon": -3.7242745}, {"type": "node", "id": 4269894885, "lat": 40.4464086, "lon": -3.724294}, {"type": "node", "id": 4269894886, "lat": 40.4464588, "lon": -3.7243126}, {"type": "node", "id": 4269894887, "lat": 40.4465146, "lon": -3.7243516}, {"type": "node", "id": 4269894888, "lat": 40.4465584, "lon": -3.7243939}, {"type": "node", "id": 4270693565, "lat": 40.4427348, "lon": -3.7237612, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4270693566, "lat": 40.4434931, "lon": -3.7228716, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4270693567, "lat": 40.4447719, "lon": -3.7231073, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4270791877, "lat": 40.4377465, "lon": -3.6880762, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4270791881, "lat": 40.4377526, "lon": -3.6881863}, {"type": "node", "id": 4270791882, "lat": 40.4377396, "lon": -3.6879786}, {"type": "node", "id": 4270791883, "lat": 40.4372965, "lon": -3.6882344}, {"type": "node", "id": 4270791884, "lat": 40.4377695, "lon": -3.6879606}, {"type": "node", "id": 4270791885, "lat": 40.4377542, "lon": -3.6876465}, {"type": "node", "id": 4273925936, "lat": 40.4395559, "lon": -3.711067, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4273925938, "lat": 40.4391517, "lon": -3.7122815}, {"type": "node", "id": 4273925939, "lat": 40.4396209, "lon": -3.7109827}, {"type": "node", "id": 4273925940, "lat": 40.4390363, "lon": -3.7110284}, {"type": "node", "id": 4277489482, "lat": 40.4348329, "lon": -3.7041704}, {"type": "node", "id": 4277489483, "lat": 40.4349427, "lon": -3.7041674}, {"type": "node", "id": 4277489484, "lat": 40.4347788, "lon": -3.7030594}, {"type": "node", "id": 4277498385, "lat": 40.4488184, "lon": -3.711321, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4277498386, "lat": 40.4487595, "lon": -3.7112987}, {"type": "node", "id": 4277498387, "lat": 40.4488734, "lon": -3.7113442}, {"type": "node", "id": 4277498388, "lat": 40.4487741, "lon": -3.7117412}, {"type": "node", "id": 4277498389, "lat": 40.4490568, "lon": -3.7114153}, {"type": "node", "id": 4277504642, "lat": 40.4438386, "lon": -3.7140439}, {"type": "node", "id": 4277504647, "lat": 40.444456, "lon": -3.7139997}, {"type": "node", "id": 4277504648, "lat": 40.4438105, "lon": -3.7135222}, {"type": "node", "id": 4278276590, "lat": 40.4363365, "lon": -3.7100279}, {"type": "node", "id": 4278276591, "lat": 40.4363513, "lon": -3.7102155}, {"type": "node", "id": 4278276592, "lat": 40.4374411, "lon": -3.7101404}, {"type": "node", "id": 4280384800, "lat": 40.4354401, "lon": -3.7154665, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4280384801, "lat": 40.4353667, "lon": -3.7155697}, {"type": "node", "id": 4280384802, "lat": 40.4354754, "lon": -3.715563}, {"type": "node", "id": 4280384803, "lat": 40.4354911, "lon": -3.7155438}, {"type": "node", "id": 4280384804, "lat": 40.4354915, "lon": -3.7154007}, {"type": "node", "id": 4280384805, "lat": 40.4354686, "lon": -3.7153697}, {"type": "node", "id": 4280384806, "lat": 40.4353555, "lon": -3.7153751}, {"type": "node", "id": 4280384807, "lat": 40.4353398, "lon": -3.7155471}, {"type": "node", "id": 4280384808, "lat": 40.4353358, "lon": -3.7154029}, {"type": "node", "id": 4280390198, "lat": 40.4272508, "lon": -3.7139717, "tags": {"crossing": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4280781514, "lat": 40.4509699, "lon": -3.6952641}, {"type": "node", "id": 4280781515, "lat": 40.4509478, "lon": -3.6949828}, {"type": "node", "id": 4280781516, "lat": 40.450913, "lon": -3.6952865}, {"type": "node", "id": 4280781517, "lat": 40.4506937, "lon": -3.6952969}, {"type": "node", "id": 4280781526, "lat": 40.4509249, "lon": -3.6955644}, {"type": "node", "id": 4280781527, "lat": 40.4512371, "lon": -3.6952412}, {"type": "node", "id": 4280822366, "lat": 40.4483725, "lon": -3.7036037, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4280822367, "lat": 40.4483432, "lon": -3.7036083}, {"type": "node", "id": 4280822368, "lat": 40.4483976, "lon": -3.7036006}, {"type": "node", "id": 4280822372, "lat": 40.4486146, "lon": -3.7035688}, {"type": "node", "id": 4280822373, "lat": 40.4483905, "lon": -3.7034253}, {"type": "node", "id": 4280901956, "lat": 40.4228821, "lon": -3.6855847}, {"type": "node", "id": 4280901957, "lat": 40.4226438, "lon": -3.6856101}, {"type": "node", "id": 4283399300, "lat": 40.4294515, "lon": -3.7203096}, {"type": "node", "id": 4283399301, "lat": 40.4294434, "lon": -3.7205906}, {"type": "node", "id": 4283399302, "lat": 40.4295196, "lon": -3.7204638}, {"type": "node", "id": 4283399304, "lat": 40.4294294, "lon": -3.7203743}, {"type": "node", "id": 4285281349, "lat": 40.4255593, "lon": -3.7136759, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4285281350, "lat": 40.4256826, "lon": -3.7137203, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4288632349, "lat": 40.4439021, "lon": -3.7106883, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4299253659, "lat": 40.4510425, "lon": -3.6973884}, {"type": "node", "id": 4299253660, "lat": 40.4510154, "lon": -3.6967816}, {"type": "node", "id": 4299253661, "lat": 40.4509015, "lon": -3.6967939, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4299253662, "lat": 40.4508136, "lon": -3.6968007}, {"type": "node", "id": 4302598231, "lat": 40.4493022, "lon": -3.7144938}, {"type": "node", "id": 4302767564, "lat": 40.4325984, "lon": -3.713438}, {"type": "node", "id": 4302767565, "lat": 40.4327924, "lon": -3.7134248}, {"type": "node", "id": 4307136108, "lat": 40.438571, "lon": -3.6993941}, {"type": "node", "id": 4307136109, "lat": 40.4385676, "lon": -3.6993203, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4307136110, "lat": 40.4385649, "lon": -3.6992622}, {"type": "node", "id": 4307136111, "lat": 40.4391401, "lon": -3.6993407}, {"type": "node", "id": 4307191007, "lat": 40.4340616, "lon": -3.6890827}, {"type": "node", "id": 4307191008, "lat": 40.4341764, "lon": -3.6890917}, {"type": "node", "id": 4307191009, "lat": 40.4340404, "lon": -3.689043}, {"type": "node", "id": 4307191010, "lat": 40.4332615, "lon": -3.6889048}, {"type": "node", "id": 4307191011, "lat": 40.4332054, "lon": -3.6889692}, {"type": "node", "id": 4307191012, "lat": 40.4334561, "lon": -3.6889393}, {"type": "node", "id": 4307191013, "lat": 40.4335318, "lon": -3.6890815}, {"type": "node", "id": 4307191014, "lat": 40.4338384, "lon": -3.6891314}, {"type": "node", "id": 4307191015, "lat": 40.4339487, "lon": -3.6890267}, {"type": "node", "id": 4307191016, "lat": 40.4331205, "lon": -3.6890849, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4307191017, "lat": 40.4331971, "lon": -3.6890917}, {"type": "node", "id": 4307191020, "lat": 40.434083, "lon": -3.6891459}, {"type": "node", "id": 4307191021, "lat": 40.4340607, "lon": -3.6895233}, {"type": "node", "id": 4307191022, "lat": 40.4331448, "lon": -3.6896244}, {"type": "node", "id": 4307222126, "lat": 40.4451184, "lon": -3.698856}, {"type": "node", "id": 4307222127, "lat": 40.4451114, "lon": -3.6987209}, {"type": "node", "id": 4307222130, "lat": 40.4452195, "lon": -3.6986702}, {"type": "node", "id": 4307222131, "lat": 40.4451235, "lon": -3.6986743}, {"type": "node", "id": 4307222144, "lat": 40.4443988, "lon": -3.6987794}, {"type": "node", "id": 4307222145, "lat": 40.445076, "lon": -3.6977856}, {"type": "node", "id": 4307227337, "lat": 40.4221858, "lon": -3.6909284}, {"type": "node", "id": 4307227338, "lat": 40.4218523, "lon": -3.6901468}, {"type": "node", "id": 4307324521, "lat": 40.4355049, "lon": -3.7167293}, {"type": "node", "id": 4307324522, "lat": 40.4354015, "lon": -3.716729}, {"type": "node", "id": 4307324523, "lat": 40.435542, "lon": -3.7167008}, {"type": "node", "id": 4307324524, "lat": 40.4355389, "lon": -3.7165687}, {"type": "node", "id": 4307340621, "lat": 40.4273898, "lon": -3.7160491, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4307340622, "lat": 40.4273104, "lon": -3.7160751, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4307340623, "lat": 40.4273315, "lon": -3.7160929, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4309747785, "lat": 40.4199796, "lon": -3.6956444, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309788689, "lat": 40.4218502, "lon": -3.692155}, {"type": "node", "id": 4309826936, "lat": 40.4210551, "lon": -3.695659, "tags": {"crossing": "marked", "crossing:markings": "yes", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826943, "lat": 40.4218555, "lon": -3.6956546, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826952, "lat": 40.4219348, "lon": -3.6955586, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826954, "lat": 40.4219975, "lon": -3.6956507, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812548, "lat": 40.4390709, "lon": -3.7122091}, {"type": "node", "id": 4311812549, "lat": 40.4390801, "lon": -3.7122526}, {"type": "node", "id": 4311812550, "lat": 40.4390924, "lon": -3.7122728}, {"type": "node", "id": 4311812551, "lat": 40.4391148, "lon": -3.712284}, {"type": "node", "id": 4311812552, "lat": 40.4391842, "lon": -3.7123026, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4311812553, "lat": 40.4392407, "lon": -3.7127216}, {"type": "node", "id": 4311812554, "lat": 40.4393493, "lon": -3.7124099}, {"type": "node", "id": 4311812558, "lat": 40.4399514, "lon": -3.7103992, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812564, "lat": 40.4400093, "lon": -3.7106189}, {"type": "node", "id": 4311812567, "lat": 40.4400338, "lon": -3.7105494, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812568, "lat": 40.4400424, "lon": -3.710459}, {"type": "node", "id": 4311812571, "lat": 40.4400509, "lon": -3.7105005}, {"type": "node", "id": 4311812574, "lat": 40.4401045, "lon": -3.7093613}, {"type": "node", "id": 4311812576, "lat": 40.440126, "lon": -3.7094324}, {"type": "node", "id": 4311812580, "lat": 40.4401768, "lon": -3.7094739, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4311812587, "lat": 40.4402346, "lon": -3.7095002}, {"type": "node", "id": 4311812596, "lat": 40.4402964, "lon": -3.7094811}, {"type": "node", "id": 4311812601, "lat": 40.4403328, "lon": -3.7108162}, {"type": "node", "id": 4311812602, "lat": 40.440352, "lon": -3.7107504}, {"type": "node", "id": 4311812606, "lat": 40.4403996, "lon": -3.7106347, "tags": {"access": "customers", "amenity": "parking_entrance", "source": "survey"}}, {"type": "node", "id": 4311812611, "lat": 40.4404406, "lon": -3.7115265}, {"type": "node", "id": 4311812616, "lat": 40.4405569, "lon": -3.7109558}, {"type": "node", "id": 4311812619, "lat": 40.4406255, "lon": -3.7110264, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4311812620, "lat": 40.4406316, "lon": -3.7109912}, {"type": "node", "id": 4311985760, "lat": 40.4300531, "lon": -3.7184768, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4311985761, "lat": 40.4300676, "lon": -3.7184234}, {"type": "node", "id": 4311985762, "lat": 40.4300353, "lon": -3.7185324}, {"type": "node", "id": 4311985763, "lat": 40.429907, "lon": -3.7189392}, {"type": "node", "id": 4311995394, "lat": 40.4231077, "lon": -3.6955167, "tags": {"crossing": "zebra", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4311995395, "lat": 40.423103, "lon": -3.6955444, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4313763685, "lat": 40.4450291, "lon": -3.6968563}, {"type": "node", "id": 4313763686, "lat": 40.4450214, "lon": -3.6966683}, {"type": "node", "id": 4316800036, "lat": 40.4391867, "lon": -3.6849719, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4316800038, "lat": 40.4394146, "lon": -3.6849735}, {"type": "node", "id": 4316800079, "lat": 40.44049, "lon": -3.6830529, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4324546703, "lat": 40.4317786, "lon": -3.7186469}, {"type": "node", "id": 4324546704, "lat": 40.4318341, "lon": -3.7185315}, {"type": "node", "id": 4324546705, "lat": 40.4318525, "lon": -3.7187695}, {"type": "node", "id": 4324546706, "lat": 40.4317708, "lon": -3.7187091}, {"type": "node", "id": 4324546707, "lat": 40.4318826, "lon": -3.7187366}, {"type": "node", "id": 4324546708, "lat": 40.4319244, "lon": -3.7186418}, {"type": "node", "id": 4324546709, "lat": 40.4318801, "lon": -3.7186755, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4324546710, "lat": 40.4317622, "lon": -3.7189834}, {"type": "node", "id": 4324546711, "lat": 40.4318709, "lon": -3.7187279}, {"type": "node", "id": 4324546712, "lat": 40.4321082, "lon": -3.718915}, {"type": "node", "id": 4324546713, "lat": 40.4317147, "lon": -3.7188342}, {"type": "node", "id": 4324546714, "lat": 40.4315973, "lon": -3.7185083}, {"type": "node", "id": 4324546715, "lat": 40.4317043, "lon": -3.7184654}, {"type": "node", "id": 4324546716, "lat": 40.4318008, "lon": -3.7185432}, {"type": "node", "id": 4324546717, "lat": 40.4319452, "lon": -3.718289}, {"type": "node", "id": 4327543828, "lat": 40.4313547, "lon": -3.7238542}, {"type": "node", "id": 4327543829, "lat": 40.4315328, "lon": -3.7234224}, {"type": "node", "id": 4331642398, "lat": 40.4293229, "lon": -3.7023862}, {"type": "node", "id": 4331642399, "lat": 40.4295525, "lon": -3.7024863}, {"type": "node", "id": 4335298559, "lat": 40.4313241, "lon": -3.695017}, {"type": "node", "id": 4335298560, "lat": 40.43118, "lon": -3.6935542}, {"type": "node", "id": 4346458223, "lat": 40.4306436, "lon": -3.7165116, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4346459674, "lat": 40.4266387, "lon": -3.6875281}, {"type": "node", "id": 4346484128, "lat": 40.4268609, "lon": -3.7169209, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4349725679, "lat": 40.4303339, "lon": -3.6884326, "tags": {"access": "yes", "amenity": "parking_entrance", "covered": "yes", "fee": "yes", "lit": "yes", "name": "Serranopark II", "opening_hours": "24/7", "parking": "underground", "supervised": "yes"}}, {"type": "node", "id": 4349725680, "lat": 40.4303686, "lon": -3.6884326, "tags": {"access": "yes", "amenity": "parking_entrance", "covered": "yes", "fee": "yes", "lit": "yes", "name": "Serranopark II", "opening_hours": "24/7", "parking": "underground", "smoothness": "excellent", "supervised": "yes", "surface": "concrete"}}, {"type": "node", "id": 4349725681, "lat": 40.4302645, "lon": -3.6887165}, {"type": "node", "id": 4349725686, "lat": 40.4302961, "lon": -3.6885895}, {"type": "node", "id": 4349725688, "lat": 40.4303063, "lon": -3.6886243}, {"type": "node", "id": 4349727289, "lat": 40.4303074, "lon": -3.6885506}, {"type": "node", "id": 4349727294, "lat": 40.4303217, "lon": -3.688509}, {"type": "node", "id": 4349727295, "lat": 40.4303308, "lon": -3.6884634}, {"type": "node", "id": 4349727296, "lat": 40.4303308, "lon": -3.6885908}, {"type": "node", "id": 4349727302, "lat": 40.4303502, "lon": -3.6885439}, {"type": "node", "id": 4349727304, "lat": 40.4303625, "lon": -3.6884822}, {"type": "node", "id": 4349802632, "lat": 40.4294442, "lon": -3.6886402, "tags": {"access": "yes", "amenity": "parking_entrance", "covered": "yes", "fee": "yes", "lit": "yes", "name": "Serranopark II exit", "opening_hours": "24/7", "parking": "underground", "supervised": "yes"}}, {"type": "node", "id": 4349802633, "lat": 40.4294871, "lon": -3.6886322, "tags": {"access": "yes", "amenity": "parking_entrance", "covered": "yes", "fee": "yes", "lit": "yes", "name": "Serranopark II exit", "opening_hours": "24/7", "parking": "underground", "supervised": "yes"}}, {"type": "node", "id": 4349802634, "lat": 40.4305082, "lon": -3.68789, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "lit": "yes", "name": "Serranopark II exit", "opening_hours": "24/7", "smoothness": "excellent", "supervised": "yes", "surface": "concrete"}}, {"type": "node", "id": 4349802635, "lat": 40.4304873, "lon": -3.6874491, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "lit": "yes", "name": "Serranopark II", "opening_hours": "24/7", "smoothness": "excellent", "supervised": "yes", "surface": "concrete"}}, {"type": "node", "id": 4349802641, "lat": 40.4294493, "lon": -3.6886778}, {"type": "node", "id": 4349802643, "lat": 40.4294631, "lon": -3.6885611}, {"type": "node", "id": 4349802645, "lat": 40.4294646, "lon": -3.6887368}, {"type": "node", "id": 4349802649, "lat": 40.42948, "lon": -3.688781}, {"type": "node", "id": 4349802653, "lat": 40.4294973, "lon": -3.688667}, {"type": "node", "id": 4349802655, "lat": 40.4295055, "lon": -3.6888092}, {"type": "node", "id": 4349802656, "lat": 40.4295075, "lon": -3.6887059}, {"type": "node", "id": 4349802660, "lat": 40.4295198, "lon": -3.6887421}, {"type": "node", "id": 4349802662, "lat": 40.4295249, "lon": -3.6888213}, {"type": "node", "id": 4349802663, "lat": 40.429532, "lon": -3.6887716}, {"type": "node", "id": 4349802667, "lat": 40.4295583, "lon": -3.6889083}, {"type": "node", "id": 4349802669, "lat": 40.4299797, "lon": -3.6884404}, {"type": "node", "id": 4349802670, "lat": 40.4303441, "lon": -3.688368}, {"type": "node", "id": 4349802672, "lat": 40.430429, "lon": -3.6871165, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 4349802673, "lat": 40.4304638, "lon": -3.6878357}, {"type": "node", "id": 4349802676, "lat": 40.4304878, "lon": -3.6874693}, {"type": "node", "id": 4349802678, "lat": 40.4305036, "lon": -3.688493, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4349802679, "lat": 40.4304965, "lon": -3.6876064}, {"type": "node", "id": 4349802680, "lat": 40.430498, "lon": -3.6877874}, {"type": "node", "id": 4349802681, "lat": 40.430499, "lon": -3.6877291}, {"type": "node", "id": 4349802682, "lat": 40.4304995, "lon": -3.6876868}, {"type": "node", "id": 4349802687, "lat": 40.4305189, "lon": -3.6871052, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 4349802688, "lat": 40.4305194, "lon": -3.6881391}, {"type": "node", "id": 4349802790, "lat": 40.4305245, "lon": -3.6881877}, {"type": "node", "id": 4349802792, "lat": 40.4305358, "lon": -3.6884191}, {"type": "node", "id": 4356759578, "lat": 40.4470969, "lon": -3.7101122, "tags": {"name": "Los Vascos", "opening_hours": "06:00-21:40", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 4356759579, "lat": 40.44712, "lon": -3.7100221, "tags": {"name": "Reina Victoria, pares", "opening_hours": "06:00-21:40", "railway": "subway_entrance"}}, {"type": "node", "id": 4386417608, "lat": 40.4318809, "lon": -3.7167389}, {"type": "node", "id": 4386417609, "lat": 40.4319266, "lon": -3.716736, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4386417610, "lat": 40.4319763, "lon": -3.7167328}, {"type": "node", "id": 4386417611, "lat": 40.4320059, "lon": -3.7168603, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4386417612, "lat": 40.4320046, "lon": -3.7167832}, {"type": "node", "id": 4386417614, "lat": 40.4322104, "lon": -3.7167721}, {"type": "node", "id": 4386417615, "lat": 40.4319794, "lon": -3.716784}, {"type": "node", "id": 4386419253, "lat": 40.4330317, "lon": -3.7168571}, {"type": "node", "id": 4393276534, "lat": 40.4391988, "lon": -3.6894935}, {"type": "node", "id": 4393276535, "lat": 40.439234, "lon": -3.6896282}, {"type": "node", "id": 4393276539, "lat": 40.4392816, "lon": -3.6905653}, {"type": "node", "id": 4393276540, "lat": 40.4392259, "lon": -3.6896938}, {"type": "node", "id": 4393276541, "lat": 40.4391802, "lon": -3.6895305}, {"type": "node", "id": 4393276542, "lat": 40.439125, "lon": -3.6893888}, {"type": "node", "id": 4409649633, "lat": 40.4506585, "lon": -3.6901959}, {"type": "node", "id": 4409649634, "lat": 40.450957, "lon": -3.6901705}, {"type": "node", "id": 4409649635, "lat": 40.4509493, "lon": -3.6900424}, {"type": "node", "id": 4409649636, "lat": 40.4506693, "lon": -3.6896714}, {"type": "node", "id": 4409649637, "lat": 40.4509559, "lon": -3.6901523}, {"type": "node", "id": 4412200928, "lat": 40.4348293, "lon": -3.7028705, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4412200929, "lat": 40.4349107, "lon": -3.7029855, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4412200930, "lat": 40.4370053, "lon": -3.6996063}, {"type": "node", "id": 4412200931, "lat": 40.4383206, "lon": -3.6993424, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4414949437, "lat": 40.432983, "lon": -3.7238176}, {"type": "node", "id": 4414949438, "lat": 40.4329327, "lon": -3.7239907}, {"type": "node", "id": 4414949439, "lat": 40.4326936, "lon": -3.7237689}, {"type": "node", "id": 4414962255, "lat": 40.4493497, "lon": -3.716193, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4414962275, "lat": 40.4490948, "lon": -3.7162101}, {"type": "node", "id": 4414962276, "lat": 40.4492893, "lon": -3.7161786}, {"type": "node", "id": 4414962277, "lat": 40.4492589, "lon": -3.7164739}, {"type": "node", "id": 4414962284, "lat": 40.4493945, "lon": -3.716774}, {"type": "node", "id": 4414966126, "lat": 40.4504811, "lon": -3.7163608}, {"type": "node", "id": 4416531498, "lat": 40.4350391, "lon": -3.6912651, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416531499, "lat": 40.4350808, "lon": -3.6901511, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4416531500, "lat": 40.4351526, "lon": -3.6914415, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416531501, "lat": 40.4351615, "lon": -3.6911085, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "yes"}}, {"type": "node", "id": 4416531502, "lat": 40.4352882, "lon": -3.6912606, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4416570440, "lat": 40.4337914, "lon": -3.705933}, {"type": "node", "id": 4416570441, "lat": 40.4337975, "lon": -3.7060202}, {"type": "node", "id": 4416845740, "lat": 40.4334856, "lon": -3.708807, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4416845741, "lat": 40.4338506, "lon": -3.7086931, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4416845742, "lat": 40.4339601, "lon": -3.7085801, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4416845743, "lat": 40.4339735, "lon": -3.7087925, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4417323879, "lat": 40.434413, "lon": -3.7075698}, {"type": "node", "id": 4417323880, "lat": 40.4344531, "lon": -3.7075608}, {"type": "node", "id": 4417346834, "lat": 40.4342833, "lon": -3.7075988}, {"type": "node", "id": 4417379976, "lat": 40.434125, "lon": -3.7184402}, {"type": "node", "id": 4417379979, "lat": 40.4342639, "lon": -3.7185384}, {"type": "node", "id": 4417386079, "lat": 40.4363654, "lon": -3.7196802}, {"type": "node", "id": 4417386080, "lat": 40.4363862, "lon": -3.7196653}, {"type": "node", "id": 4417386081, "lat": 40.4364348, "lon": -3.7196306, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4417386082, "lat": 40.4364767, "lon": -3.7196007, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4417386085, "lat": 40.4366763, "lon": -3.7199228, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4417393060, "lat": 40.4361697, "lon": -3.718957, "tags": {"barrier": "entrance"}}, {"type": "node", "id": 4417393063, "lat": 40.4364048, "lon": -3.7193512}, {"type": "node", "id": 4417393064, "lat": 40.4364073, "lon": -3.7193297}, {"type": "node", "id": 4417393065, "lat": 40.4364175, "lon": -3.7193103}, {"type": "node", "id": 4417393081, "lat": 40.436511, "lon": -3.7195759}, {"type": "node", "id": 4417393086, "lat": 40.4366209, "lon": -3.7207523}, {"type": "node", "id": 4417393088, "lat": 40.4366283, "lon": -3.7198239}, {"type": "node", "id": 4417396194, "lat": 40.4366556, "lon": -3.7207497}, {"type": "node", "id": 4417396196, "lat": 40.436685, "lon": -3.7191015}, {"type": "node", "id": 4417396197, "lat": 40.4366909, "lon": -3.7207262}, {"type": "node", "id": 4417396198, "lat": 40.4367011, "lon": -3.7199738}, {"type": "node", "id": 4417396200, "lat": 40.4367021, "lon": -3.7190888}, {"type": "node", "id": 4417396204, "lat": 40.4367243, "lon": -3.7190832}, {"type": "node", "id": 4417396207, "lat": 40.4367476, "lon": -3.7190885}, {"type": "node", "id": 4417396210, "lat": 40.4367625, "lon": -3.7190988}, {"type": "node", "id": 4417396217, "lat": 40.4368665, "lon": -3.7209659}, {"type": "node", "id": 4417396218, "lat": 40.4368766, "lon": -3.7205559}, {"type": "node", "id": 4417396223, "lat": 40.436894, "lon": -3.7210018}, {"type": "node", "id": 4417396224, "lat": 40.436919, "lon": -3.721036}, {"type": "node", "id": 4417396226, "lat": 40.4369466, "lon": -3.7210809}, {"type": "node", "id": 4417396231, "lat": 40.4369585, "lon": -3.7195758}, {"type": "node", "id": 4417396232, "lat": 40.4369647, "lon": -3.7195584}, {"type": "node", "id": 4417396233, "lat": 40.4369672, "lon": -3.7195342}, {"type": "node", "id": 4417396234, "lat": 40.4369711, "lon": -3.7211124}, {"type": "node", "id": 4417396235, "lat": 40.436993, "lon": -3.7197458}, {"type": "node", "id": 4417396236, "lat": 40.4370007, "lon": -3.7211372}, {"type": "node", "id": 4417396237, "lat": 40.437041, "lon": -3.7203996}, {"type": "node", "id": 4417396238, "lat": 40.4370486, "lon": -3.7211607}, {"type": "node", "id": 4417396240, "lat": 40.4370545, "lon": -3.7195457}, {"type": "node", "id": 4417396242, "lat": 40.4370696, "lon": -3.7195514}, {"type": "node", "id": 4417396244, "lat": 40.4370839, "lon": -3.7195514}, {"type": "node", "id": 4417396246, "lat": 40.4370984, "lon": -3.719546}, {"type": "node", "id": 4417396248, "lat": 40.437126, "lon": -3.7195239}, {"type": "node", "id": 4417396249, "lat": 40.4371425, "lon": -3.7212036}, {"type": "node", "id": 4417396251, "lat": 40.437166, "lon": -3.7196084}, {"type": "node", "id": 4417396252, "lat": 40.4371676, "lon": -3.719501}, {"type": "node", "id": 4417396253, "lat": 40.4371954, "lon": -3.7212447}, {"type": "node", "id": 4417396254, "lat": 40.4372012, "lon": -3.7195896}, {"type": "node", "id": 4417396256, "lat": 40.4372191, "lon": -3.7194829}, {"type": "node", "id": 4417396257, "lat": 40.4372247, "lon": -3.7202146}, {"type": "node", "id": 4417396258, "lat": 40.4372349, "lon": -3.7195306}, {"type": "node", "id": 4417396259, "lat": 40.4372395, "lon": -3.7195755}, {"type": "node", "id": 4417396262, "lat": 40.4372742, "lon": -3.7194725}, {"type": "node", "id": 4417396264, "lat": 40.4372916, "lon": -3.7195641}, {"type": "node", "id": 4417396266, "lat": 40.4373304, "lon": -3.7195252}, {"type": "node", "id": 4417396267, "lat": 40.4373304, "lon": -3.7195661}, {"type": "node", "id": 4417396268, "lat": 40.4373401, "lon": -3.7194756}, {"type": "node", "id": 4417396271, "lat": 40.4373666, "lon": -3.7195802}, {"type": "node", "id": 4417396272, "lat": 40.4373666, "lon": -3.720061}, {"type": "node", "id": 4417396275, "lat": 40.4374033, "lon": -3.7196044}, {"type": "node", "id": 4417396277, "lat": 40.437412, "lon": -3.7195581}, {"type": "node", "id": 4417396278, "lat": 40.4374217, "lon": -3.7195064}, {"type": "node", "id": 4417396279, "lat": 40.4374447, "lon": -3.7196432}, {"type": "node", "id": 4417396280, "lat": 40.4374529, "lon": -3.7195265}, {"type": "node", "id": 4417396285, "lat": 40.4375483, "lon": -3.7197009, "tags": {"barrier": "entrance"}}, {"type": "node", "id": 4417396286, "lat": 40.437498, "lon": -3.7195678}, {"type": "node", "id": 4417396287, "lat": 40.437561, "lon": -3.719829}, {"type": "node", "id": 4417396288, "lat": 40.4375708, "lon": -3.7198155}, {"type": "node", "id": 4417396289, "lat": 40.4375997, "lon": -3.7197754}, {"type": "node", "id": 4417396290, "lat": 40.4376272, "lon": -3.7197374}, {"type": "node", "id": 4417396291, "lat": 40.4388305, "lon": -3.7179437}, {"type": "node", "id": 4417396391, "lat": 40.4365496, "lon": -3.7208292, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4422722024, "lat": 40.4368761, "lon": -3.7026699}, {"type": "node", "id": 4422722031, "lat": 40.4369998, "lon": -3.702448}, {"type": "node", "id": 4422722048, "lat": 40.4371566, "lon": -3.702618}, {"type": "node", "id": 4422726760, "lat": 40.4383633, "lon": -3.6994703}, {"type": "node", "id": 4422726761, "lat": 40.438371, "lon": -3.6996701}, {"type": "node", "id": 4422726762, "lat": 40.4383797, "lon": -3.699713}, {"type": "node", "id": 4422726764, "lat": 40.4383899, "lon": -3.6997533}, {"type": "node", "id": 4422726766, "lat": 40.4384072, "lon": -3.6997962}, {"type": "node", "id": 4422726767, "lat": 40.4384504, "lon": -3.699868}, {"type": "node", "id": 4428044482, "lat": 40.4329071, "lon": -3.717738}, {"type": "node", "id": 4428052194, "lat": 40.4329561, "lon": -3.7177635}, {"type": "node", "id": 4428052198, "lat": 40.4329793, "lon": -3.7177504}, {"type": "node", "id": 4428052200, "lat": 40.4329936, "lon": -3.7177196}, {"type": "node", "id": 4428052201, "lat": 40.4329988, "lon": -3.7177639}, {"type": "node", "id": 4428052202, "lat": 40.4329997, "lon": -3.7176895}, {"type": "node", "id": 4428052204, "lat": 40.43302, "lon": -3.7181477}, {"type": "node", "id": 4428052205, "lat": 40.4330202, "lon": -3.7175112}, {"type": "node", "id": 4428052209, "lat": 40.4330436, "lon": -3.7171129}, {"type": "node", "id": 4428052210, "lat": 40.4330436, "lon": -3.7172309}, {"type": "node", "id": 4428052212, "lat": 40.4330498, "lon": -3.7167146}, {"type": "node", "id": 4428052213, "lat": 40.4330539, "lon": -3.7168835}, {"type": "node", "id": 4428052214, "lat": 40.4330549, "lon": -3.7169466}, {"type": "node", "id": 4428052237, "lat": 40.4331177, "lon": -3.717846, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 4428052239, "lat": 40.4331258, "lon": -3.7172359}, {"type": "node", "id": 4428052242, "lat": 40.4331392, "lon": -3.7178608, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 4428052252, "lat": 40.4332917, "lon": -3.7174814}, {"type": "node", "id": 4428052255, "lat": 40.433307, "lon": -3.7174727}, {"type": "node", "id": 4428052258, "lat": 40.4333178, "lon": -3.7174774}, {"type": "node", "id": 4428052259, "lat": 40.4333322, "lon": -3.7174876}, {"type": "node", "id": 4428052263, "lat": 40.4334021, "lon": -3.7173416}, {"type": "node", "id": 4428052264, "lat": 40.4334215, "lon": -3.718079, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4428052266, "lat": 40.4334683, "lon": -3.7181127}, {"type": "node", "id": 4428052268, "lat": 40.433633, "lon": -3.7177002}, {"type": "node", "id": 4428052271, "lat": 40.4339963, "lon": -3.7184937}, {"type": "node", "id": 4428052276, "lat": 40.4340297, "lon": -3.7184127}, {"type": "node", "id": 4428052277, "lat": 40.4340424, "lon": -3.7183819}, {"type": "node", "id": 4428052278, "lat": 40.434051, "lon": -3.7184281, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4428052280, "lat": 40.4341491, "lon": -3.7181236}, {"type": "node", "id": 4428052281, "lat": 40.434164, "lon": -3.7180876}, {"type": "node", "id": 4428052284, "lat": 40.4343011, "lon": -3.7187097}, {"type": "node", "id": 4428052285, "lat": 40.4343054, "lon": -3.7186756}, {"type": "node", "id": 4428052286, "lat": 40.4343255, "lon": -3.7186268}, {"type": "node", "id": 4428052287, "lat": 40.4343402, "lon": -3.7185923}, {"type": "node", "id": 4428052288, "lat": 40.434447, "lon": -3.7183361}, {"type": "node", "id": 4428052389, "lat": 40.4344569, "lon": -3.7183102}, {"type": "node", "id": 4428052390, "lat": 40.4345279, "lon": -3.7181281}, {"type": "node", "id": 4428052391, "lat": 40.4346062, "lon": -3.7189199}, {"type": "node", "id": 4428052392, "lat": 40.4346208, "lon": -3.7189539}, {"type": "node", "id": 4428052393, "lat": 40.4346927, "lon": -3.7184845}, {"type": "node", "id": 4428052394, "lat": 40.4347269, "lon": -3.7185073}, {"type": "node", "id": 4428052395, "lat": 40.4347499, "lon": -3.7190384}, {"type": "node", "id": 4428052396, "lat": 40.4347892, "lon": -3.7185311}, {"type": "node", "id": 4428052397, "lat": 40.4349979, "lon": -3.7185127}, {"type": "node", "id": 4428052398, "lat": 40.4354093, "lon": -3.7181911}, {"type": "node", "id": 4428052399, "lat": 40.4354165, "lon": -3.7184255}, {"type": "node", "id": 4428052400, "lat": 40.4354317, "lon": -3.718428}, {"type": "node", "id": 4428052401, "lat": 40.435441, "lon": -3.7184295}, {"type": "node", "id": 4431658905, "lat": 40.4350318, "lon": -3.7056805, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4431658918, "lat": 40.4355073, "lon": -3.6948428, "tags": {"amenity": "vending_machine", "currency:EUR": "yes", "operator": "Ayuntamiento de Madrid", "payment:cash": "yes", "payment:mastercard": "yes", "payment:visa": "yes", "payment:visa_debit": "yes", "payment:visa_electron": "yes", "vending": "parking_tickets"}}, {"type": "node", "id": 4431660197, "lat": 40.4405487, "lon": -3.7108679}, {"type": "node", "id": 4431660198, "lat": 40.4407504, "lon": -3.711034}, {"type": "node", "id": 4431660199, "lat": 40.4409108, "lon": -3.7110693}, {"type": "node", "id": 4431660200, "lat": 40.4409269, "lon": -3.7110045}, {"type": "node", "id": 4431660201, "lat": 40.4410506, "lon": -3.7111081}, {"type": "node", "id": 4431660202, "lat": 40.4410901, "lon": -3.711054}, {"type": "node", "id": 4431660203, "lat": 40.4411214, "lon": -3.7111482}, {"type": "node", "id": 4431660204, "lat": 40.4411851, "lon": -3.7111882}, {"type": "node", "id": 4431660205, "lat": 40.4414513, "lon": -3.7114296}, {"type": "node", "id": 4431660206, "lat": 40.4414746, "lon": -3.7115686}, {"type": "node", "id": 4431660207, "lat": 40.4414818, "lon": -3.7113676, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4431660208, "lat": 40.4415362, "lon": -3.7116156, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4436330707, "lat": 40.4479277, "lon": -3.7083167}, {"type": "node", "id": 4436330708, "lat": 40.4478858, "lon": -3.7082936}, {"type": "node", "id": 4436330709, "lat": 40.4478997, "lon": -3.708253}, {"type": "node", "id": 4436330710, "lat": 40.4478909, "lon": -3.7082389}, {"type": "node", "id": 4436330716, "lat": 40.4477076, "lon": -3.7084905}, {"type": "node", "id": 4436330717, "lat": 40.4475862, "lon": -3.7084231}, {"type": "node", "id": 4436330721, "lat": 40.4477332, "lon": -3.7085382}, {"type": "node", "id": 4436330723, "lat": 40.4479569, "lon": -3.7086793}, {"type": "node", "id": 4437536352, "lat": 40.4331524, "lon": -3.7157127}, {"type": "node", "id": 4437536354, "lat": 40.4331647, "lon": -3.716624}, {"type": "node", "id": 4437536355, "lat": 40.4331728, "lon": -3.7156973}, {"type": "node", "id": 4437536356, "lat": 40.4331769, "lon": -3.7166615}, {"type": "node", "id": 4437536357, "lat": 40.4331994, "lon": -3.7166863}, {"type": "node", "id": 4437536360, "lat": 40.4332218, "lon": -3.7167028}, {"type": "node", "id": 4437536369, "lat": 40.4332463, "lon": -3.7167098}, {"type": "node", "id": 4437536675, "lat": 40.4343192, "lon": -3.7156249}, {"type": "node", "id": 4437536679, "lat": 40.4343386, "lon": -3.7156369}, {"type": "node", "id": 4437536681, "lat": 40.4343523, "lon": -3.715657}, {"type": "node", "id": 4437536682, "lat": 40.434361, "lon": -3.7156792}, {"type": "node", "id": 4437536683, "lat": 40.4343804, "lon": -3.7166334}, {"type": "node", "id": 4437536684, "lat": 40.4344039, "lon": -3.7166213}, {"type": "node", "id": 4437536685, "lat": 40.4344161, "lon": -3.7166032}, {"type": "node", "id": 4437536686, "lat": 40.4344187, "lon": -3.7165811}, {"type": "node", "id": 4437576917, "lat": 40.4351077, "lon": -3.7102035, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4437576918, "lat": 40.4351918, "lon": -3.7100999, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4437576919, "lat": 40.4352025, "lon": -3.7103251, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576920, "lat": 40.4352425, "lon": -3.7113164, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576921, "lat": 40.4352465, "lon": -3.7131539, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576922, "lat": 40.4353118, "lon": -3.7114155, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437576923, "lat": 40.4353155, "lon": -3.7130437, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4437657599, "lat": 40.4292663, "lon": -3.7166065, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4437657600, "lat": 40.4293, "lon": -3.7166897, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4437657601, "lat": 40.4292635, "lon": -3.7166628}, {"type": "node", "id": 4437657602, "lat": 40.4293485, "lon": -3.7167254}, {"type": "node", "id": 4437657603, "lat": 40.4292549, "lon": -3.7166277}, {"type": "node", "id": 4437657604, "lat": 40.4292926, "lon": -3.7165432}, {"type": "node", "id": 4437657605, "lat": 40.4291227, "lon": -3.7169892}, {"type": "node", "id": 4437657606, "lat": 40.4292727, "lon": -3.7166413}, {"type": "node", "id": 4437657607, "lat": 40.4290742, "lon": -3.7164867}, {"type": "node", "id": 4439143643, "lat": 40.4480304, "lon": -3.697125, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4439143644, "lat": 40.4479544, "lon": -3.6971304}, {"type": "node", "id": 4439143645, "lat": 40.4481143, "lon": -3.6971202}, {"type": "node", "id": 4439143646, "lat": 40.4481389, "lon": -3.6975605}, {"type": "node", "id": 4439143647, "lat": 40.4481874, "lon": -3.6969676, "tags": {"check_date:tactile_paving": "2023-07-07", "crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4439143648, "lat": 40.4481904, "lon": -3.6970433}, {"type": "node", "id": 4439143649, "lat": 40.4481823, "lon": -3.696869}, {"type": "node", "id": 4439143654, "lat": 40.4481108, "lon": -3.6970513}, {"type": "node", "id": 4439143655, "lat": 40.4485323, "lon": -3.6970071}, {"type": "node", "id": 4452608798, "lat": 40.4488027, "lon": -3.6893404}, {"type": "node", "id": 4452608819, "lat": 40.4488286, "lon": -3.6894356}, {"type": "node", "id": 4452608820, "lat": 40.4489123, "lon": -3.6892237}, {"type": "node", "id": 4452608821, "lat": 40.448895, "lon": -3.6895885}, {"type": "node", "id": 4452608822, "lat": 40.4487725, "lon": -3.6894369}, {"type": "node", "id": 4452608823, "lat": 40.4484653, "lon": -3.6896958}, {"type": "node", "id": 4456608446, "lat": 40.4319397, "lon": -3.7243836}, {"type": "node", "id": 4456608447, "lat": 40.4319225, "lon": -3.7245667, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4456617454, "lat": 40.4264981, "lon": -3.6889397, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4456617457, "lat": 40.4257304, "lon": -3.6891596, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4456617460, "lat": 40.4256444, "lon": -3.6891845, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4456746613, "lat": 40.4375266, "lon": -3.72229}, {"type": "node", "id": 4456746614, "lat": 40.4375383, "lon": -3.7222795}, {"type": "node", "id": 4456746615, "lat": 40.4375663, "lon": -3.7222692}, {"type": "node", "id": 4456746616, "lat": 40.4375872, "lon": -3.7226103}, {"type": "node", "id": 4456746617, "lat": 40.4375807, "lon": -3.7222555}, {"type": "node", "id": 4456746618, "lat": 40.4375878, "lon": -3.7223558}, {"type": "node", "id": 4456746619, "lat": 40.4375998, "lon": -3.7222329}, {"type": "node", "id": 4456746620, "lat": 40.437602, "lon": -3.7223553}, {"type": "node", "id": 4456746621, "lat": 40.4376263, "lon": -3.7225463}, {"type": "node", "id": 4456746622, "lat": 40.4376157, "lon": -3.722218}, {"type": "node", "id": 4456746623, "lat": 40.4376212, "lon": -3.7223181}, {"type": "node", "id": 4456746624, "lat": 40.4376227, "lon": -3.7221418}, {"type": "node", "id": 4456746625, "lat": 40.4376357, "lon": -3.7223091}, {"type": "node", "id": 4456746626, "lat": 40.4377231, "lon": -3.7223905}, {"type": "node", "id": 4457193354, "lat": 40.4307656, "lon": -3.7165296}, {"type": "node", "id": 4457193355, "lat": 40.4308584, "lon": -3.7162607, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4457193356, "lat": 40.4307239, "lon": -3.7165033}, {"type": "node", "id": 4461268759, "lat": 40.4494795, "lon": -3.7056444}, {"type": "node", "id": 4461268763, "lat": 40.4490258, "lon": -3.7054586}, {"type": "node", "id": 4461493483, "lat": 40.4273513, "lon": -3.6933067}, {"type": "node", "id": 4461493484, "lat": 40.4273068, "lon": -3.6923008}, {"type": "node", "id": 4466748455, "lat": 40.4361635, "lon": -3.6843896}, {"type": "node", "id": 4466748456, "lat": 40.435668, "lon": -3.6844316}, {"type": "node", "id": 4467070251, "lat": 40.425619, "lon": -3.6906381}, {"type": "node", "id": 4467070262, "lat": 40.4258527, "lon": -3.6907418}, {"type": "node", "id": 4467070263, "lat": 40.4260967, "lon": -3.6906721}, {"type": "node", "id": 4467080337, "lat": 40.4374648, "lon": -3.6985937, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4467080338, "lat": 40.4374372, "lon": -3.698603}, {"type": "node", "id": 4467080339, "lat": 40.4374951, "lon": -3.6985836}, {"type": "node", "id": 4467080341, "lat": 40.4374376, "lon": -3.6986161}, {"type": "node", "id": 4467080343, "lat": 40.4374443, "lon": -3.6986452, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4467080344, "lat": 40.4374535, "lon": -3.6986846}, {"type": "node", "id": 4467081599, "lat": 40.4358581, "lon": -3.7143712}, {"type": "node", "id": 4467081600, "lat": 40.4360926, "lon": -3.7143588}, {"type": "node", "id": 4467082435, "lat": 40.4292901, "lon": -3.6885735}, {"type": "node", "id": 4467082436, "lat": 40.4292458, "lon": -3.6878532}, {"type": "node", "id": 4470285254, "lat": 40.4318199, "lon": -3.714561, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4470285255, "lat": 40.4318863, "lon": -3.7156751, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4470285256, "lat": 40.4319048, "lon": -3.7146554}, {"type": "node", "id": 4470285257, "lat": 40.4319109, "lon": -3.7146393}, {"type": "node", "id": 4470285258, "lat": 40.4319257, "lon": -3.7146272}, {"type": "node", "id": 4470285259, "lat": 40.4319354, "lon": -3.7155848}, {"type": "node", "id": 4470285260, "lat": 40.431941, "lon": -3.7156062}, {"type": "node", "id": 4470285261, "lat": 40.4319436, "lon": -3.7158148}, {"type": "node", "id": 4470285262, "lat": 40.4319528, "lon": -3.7156284}, {"type": "node", "id": 4470285263, "lat": 40.4319533, "lon": -3.715796}, {"type": "node", "id": 4470285264, "lat": 40.431964, "lon": -3.7156337}, {"type": "node", "id": 4470285265, "lat": 40.4319728, "lon": -3.7157884}, {"type": "node", "id": 4470285266, "lat": 40.4319941, "lon": -3.7156357}, {"type": "node", "id": 4470285267, "lat": 40.4329511, "lon": -3.7145595}, {"type": "node", "id": 4470285268, "lat": 40.4329751, "lon": -3.7145629}, {"type": "node", "id": 4470285269, "lat": 40.4329914, "lon": -3.7145823}, {"type": "node", "id": 4470285270, "lat": 40.4329991, "lon": -3.7145951}, {"type": "node", "id": 4470285271, "lat": 40.4330011, "lon": -3.7143845}, {"type": "node", "id": 4470285272, "lat": 40.4330073, "lon": -3.7155674}, {"type": "node", "id": 4470285273, "lat": 40.4330113, "lon": -3.7157222}, {"type": "node", "id": 4470285274, "lat": 40.4330215, "lon": -3.7155566}, {"type": "node", "id": 4470285275, "lat": 40.4330241, "lon": -3.7157269}, {"type": "node", "id": 4470285276, "lat": 40.4330318, "lon": -3.7155352}, {"type": "node", "id": 4470285277, "lat": 40.4330338, "lon": -3.7157477}, {"type": "node", "id": 4470285278, "lat": 40.4330496, "lon": -3.714381, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4470285279, "lat": 40.4330626, "lon": -3.7166698}, {"type": "node", "id": 4470285280, "lat": 40.4330634, "lon": -3.7166945}, {"type": "node", "id": 4470285281, "lat": 40.4330869, "lon": -3.7143784}, {"type": "node", "id": 4470285282, "lat": 40.4330943, "lon": -3.7168917, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4470285283, "lat": 40.4331068, "lon": -3.7145857}, {"type": "node", "id": 4470285284, "lat": 40.433116, "lon": -3.7145602}, {"type": "node", "id": 4470285285, "lat": 40.4331313, "lon": -3.7144227}, {"type": "node", "id": 4470285286, "lat": 40.4331341, "lon": -3.714482, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 4470285287, "lat": 40.4331369, "lon": -3.7145414}, {"type": "node", "id": 4470285288, "lat": 40.4331389, "lon": -3.7155298}, {"type": "node", "id": 4470297989, "lat": 40.4331419, "lon": -3.7157343}, {"type": "node", "id": 4470297990, "lat": 40.4331451, "lon": -3.7155533}, {"type": "node", "id": 4470297991, "lat": 40.4331537, "lon": -3.7155633}, {"type": "node", "id": 4470297992, "lat": 40.433167, "lon": -3.7155714}, {"type": "node", "id": 4470297993, "lat": 40.4331706, "lon": -3.7169071}, {"type": "node", "id": 4470297994, "lat": 40.433231, "lon": -3.7167054}, {"type": "node", "id": 4470297995, "lat": 40.4332313, "lon": -3.716842}, {"type": "node", "id": 4470297996, "lat": 40.4342562, "lon": -3.7144804}, {"type": "node", "id": 4470297997, "lat": 40.4342781, "lon": -3.7144884}, {"type": "node", "id": 4470297998, "lat": 40.4342904, "lon": -3.7145072}, {"type": "node", "id": 4470297999, "lat": 40.4343266, "lon": -3.7154828}, {"type": "node", "id": 4470298000, "lat": 40.4343414, "lon": -3.7154734}, {"type": "node", "id": 4470298001, "lat": 40.4343482, "lon": -3.7154247}, {"type": "node", "id": 4470298002, "lat": 40.4343501, "lon": -3.7154553}, {"type": "node", "id": 4470298003, "lat": 40.434445, "lon": -3.7154124}, {"type": "node", "id": 4470312824, "lat": 40.4333618, "lon": -3.7145291}, {"type": "node", "id": 4470312825, "lat": 40.4333959, "lon": -3.7155539}, {"type": "node", "id": 4470312826, "lat": 40.4334803, "lon": -3.7145227}, {"type": "node", "id": 4470312827, "lat": 40.4335202, "lon": -3.7155444}, {"type": "node", "id": 4470312828, "lat": 40.433904, "lon": -3.7144996}, {"type": "node", "id": 4470312829, "lat": 40.4339365, "lon": -3.7155126}, {"type": "node", "id": 4470312830, "lat": 40.4340357, "lon": -3.7144924}, {"type": "node", "id": 4470312831, "lat": 40.4341041, "lon": -3.7154998}, {"type": "node", "id": 4470447677, "lat": 40.4375319, "lon": -3.7222821}, {"type": "node", "id": 4470447679, "lat": 40.4375659, "lon": -3.722261}, {"type": "node", "id": 4470447680, "lat": 40.437573, "lon": -3.722256}, {"type": "node", "id": 4470447681, "lat": 40.4375944, "lon": -3.7223619}, {"type": "node", "id": 4470447682, "lat": 40.4375985, "lon": -3.7222224}, {"type": "node", "id": 4470447683, "lat": 40.4376016, "lon": -3.7223465}, {"type": "node", "id": 4470447684, "lat": 40.4376054, "lon": -3.7222144}, {"type": "node", "id": 4470447685, "lat": 40.4376082, "lon": -3.7225759}, {"type": "node", "id": 4470447686, "lat": 40.4376279, "lon": -3.7223217}, {"type": "node", "id": 4470447687, "lat": 40.437635, "lon": -3.7223146}, {"type": "node", "id": 4470449592, "lat": 40.438075, "lon": -3.7229739}, {"type": "node", "id": 4470449595, "lat": 40.438495, "lon": -3.7243558}, {"type": "node", "id": 4470449596, "lat": 40.4385818, "lon": -3.7222593}, {"type": "node", "id": 4470449599, "lat": 40.4386737, "lon": -3.7224424}, {"type": "node", "id": 4470449600, "lat": 40.4386778, "lon": -3.7245946}, {"type": "node", "id": 4470449612, "lat": 40.4397329, "lon": -3.7258388}, {"type": "node", "id": 4470449614, "lat": 40.4397717, "lon": -3.7258538, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4470476663, "lat": 40.435111, "lon": -3.7236577}, {"type": "node", "id": 4470476664, "lat": 40.4353458, "lon": -3.7231387}, {"type": "node", "id": 4470476665, "lat": 40.4353693, "lon": -3.7215409}, {"type": "node", "id": 4470476666, "lat": 40.4353703, "lon": -3.7229436}, {"type": "node", "id": 4470476667, "lat": 40.4353718, "lon": -3.7229698}, {"type": "node", "id": 4470476669, "lat": 40.4357276, "lon": -3.7213477}, {"type": "node", "id": 4470476670, "lat": 40.4357408, "lon": -3.7214376}, {"type": "node", "id": 4470476671, "lat": 40.4357541, "lon": -3.7215502}, {"type": "node", "id": 4470479422, "lat": 40.437594, "lon": -3.7218767}, {"type": "node", "id": 4470479423, "lat": 40.437768, "lon": -3.720574}, {"type": "node", "id": 4470479424, "lat": 40.437991, "lon": -3.7226647}, {"type": "node", "id": 4470479425, "lat": 40.4380227, "lon": -3.7227156}, {"type": "node", "id": 4470479426, "lat": 40.4380656, "lon": -3.7227478}, {"type": "node", "id": 4470479427, "lat": 40.4380952, "lon": -3.7197423}, {"type": "node", "id": 4470479428, "lat": 40.4381033, "lon": -3.720071}, {"type": "node", "id": 4470479429, "lat": 40.4381043, "lon": -3.7198758, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 4470479430, "lat": 40.43811, "lon": -3.7199744}, {"type": "node", "id": 4470479431, "lat": 40.4381115, "lon": -3.7227572}, {"type": "node", "id": 4470479432, "lat": 40.4381151, "lon": -3.7209856}, {"type": "node", "id": 4470479433, "lat": 40.4381416, "lon": -3.7209883}, {"type": "node", "id": 4470479434, "lat": 40.4381579, "lon": -3.7199181, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 4470479435, "lat": 40.4381707, "lon": -3.7209776}, {"type": "node", "id": 4470479436, "lat": 40.4381982, "lon": -3.7209521}, {"type": "node", "id": 4470479437, "lat": 40.4384846, "lon": -3.7203955}, {"type": "node", "id": 4470479438, "lat": 40.4384881, "lon": -3.7205363}, {"type": "node", "id": 4470479439, "lat": 40.4384948, "lon": -3.7204465}, {"type": "node", "id": 4470479440, "lat": 40.4384963, "lon": -3.7204834}, {"type": "node", "id": 4470512290, "lat": 40.4250284, "lon": -3.6841336, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4470512291, "lat": 40.4250338, "lon": -3.6842761}, {"type": "node", "id": 4470512296, "lat": 40.4251, "lon": -3.6843749}, {"type": "node", "id": 4470512298, "lat": 40.42488, "lon": -3.6842896}, {"type": "node", "id": 4470512299, "lat": 40.4250964, "lon": -3.684336}, {"type": "node", "id": 4470512300, "lat": 40.4251138, "lon": -3.6846323}, {"type": "node", "id": 4470526573, "lat": 40.4492127, "lon": -3.6895362}, {"type": "node", "id": 4470526574, "lat": 40.4495124, "lon": -3.6891606}, {"type": "node", "id": 4470531972, "lat": 40.4460344, "lon": -3.7172204}, {"type": "node", "id": 4470531973, "lat": 40.4459293, "lon": -3.717198}, {"type": "node", "id": 4470531974, "lat": 40.4457191, "lon": -3.7171256}, {"type": "node", "id": 4470531975, "lat": 40.4451771, "lon": -3.7169258}, {"type": "node", "id": 4485511526, "lat": 40.4374581, "lon": -3.7080459}, {"type": "node", "id": 4485511527, "lat": 40.4374621, "lon": -3.7088411}, {"type": "node", "id": 4485511528, "lat": 40.4374724, "lon": -3.7082779}, {"type": "node", "id": 4485511529, "lat": 40.4374912, "lon": -3.7085011}, {"type": "node", "id": 4485511530, "lat": 40.4374928, "lon": -3.7082993}, {"type": "node", "id": 4485511531, "lat": 40.4374938, "lon": -3.708534}, {"type": "node", "id": 4485511532, "lat": 40.4375061, "lon": -3.7084777}, {"type": "node", "id": 4485511533, "lat": 40.4375076, "lon": -3.7088383}, {"type": "node", "id": 4485511534, "lat": 40.4375459, "lon": -3.7084737}, {"type": "node", "id": 4485511535, "lat": 40.4375561, "lon": -3.7099046}, {"type": "node", "id": 4485511536, "lat": 40.4375647, "lon": -3.7099241}, {"type": "node", "id": 4485511537, "lat": 40.4378919, "lon": -3.7088143}, {"type": "node", "id": 4485511538, "lat": 40.4387585, "lon": -3.709855}, {"type": "node", "id": 4490265351, "lat": 40.4378103, "lon": -3.7165224, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4490265352, "lat": 40.4378569, "lon": -3.7165595}, {"type": "node", "id": 4490265355, "lat": 40.4378707, "lon": -3.7165661}, {"type": "node", "id": 4490265356, "lat": 40.4378789, "lon": -3.7165466}, {"type": "node", "id": 4490265358, "lat": 40.4378937, "lon": -3.7165312}, {"type": "node", "id": 4490265360, "lat": 40.437897, "lon": -3.717722, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 4490265363, "lat": 40.437912, "lon": -3.7165285}, {"type": "node", "id": 4490265365, "lat": 40.4387253, "lon": -3.7176322, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4490265372, "lat": 40.4388863, "lon": -3.7174914}, {"type": "node", "id": 4490265790, "lat": 40.4390109, "lon": -3.7164103, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4490265791, "lat": 40.4390195, "lon": -3.7171099}, {"type": "node", "id": 4490265794, "lat": 40.4390393, "lon": -3.7164848}, {"type": "node", "id": 4490265795, "lat": 40.4390484, "lon": -3.7170901}, {"type": "node", "id": 4490265799, "lat": 40.4390573, "lon": -3.7170428}, {"type": "node", "id": 4490265803, "lat": 40.4390674, "lon": -3.7170925, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4490265809, "lat": 40.4391415, "lon": -3.7164152}, {"type": "node", "id": 4490265810, "lat": 40.4392109, "lon": -3.7164943}, {"type": "node", "id": 4498622025, "lat": 40.4448826, "lon": -3.7147922, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4498622026, "lat": 40.4448795, "lon": -3.7147335, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4498622027, "lat": 40.4449202, "lon": -3.7147302}, {"type": "node", "id": 4498622028, "lat": 40.4448314, "lon": -3.7147356}, {"type": "node", "id": 4498622034, "lat": 40.4448565, "lon": -3.7141519, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4498622035, "lat": 40.4448942, "lon": -3.7141475}, {"type": "node", "id": 4498622036, "lat": 40.4448013, "lon": -3.7141582}, {"type": "node", "id": 4498622037, "lat": 40.4449334, "lon": -3.7140506, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4498622038, "lat": 40.4449375, "lon": -3.7141019}, {"type": "node", "id": 4498622039, "lat": 40.4449263, "lon": -3.7139624}, {"type": "node", "id": 4498622046, "lat": 40.4453041, "lon": -3.7140857}, {"type": "node", "id": 4498622047, "lat": 40.4448922, "lon": -3.714104}, {"type": "node", "id": 4498622048, "lat": 40.445318, "lon": -3.7147036}, {"type": "node", "id": 4499335098, "lat": 40.4493586, "lon": -3.6990591}, {"type": "node", "id": 4499335099, "lat": 40.4495301, "lon": -3.6990404}, {"type": "node", "id": 4499335100, "lat": 40.4495546, "lon": -3.6989907}, {"type": "node", "id": 4499335101, "lat": 40.4495454, "lon": -3.6987949}, {"type": "node", "id": 4499335102, "lat": 40.4495734, "lon": -3.6989898, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4499335103, "lat": 40.4495964, "lon": -3.6989887}, {"type": "node", "id": 4499335104, "lat": 40.4495304, "lon": -3.6990711}, {"type": "node", "id": 4499335105, "lat": 40.4495306, "lon": -3.6990955}, {"type": "node", "id": 4500945111, "lat": 40.4290264, "lon": -3.7151263}, {"type": "node", "id": 4500945116, "lat": 40.4290511, "lon": -3.713749}, {"type": "node", "id": 4500945119, "lat": 40.4291082, "lon": -3.7150291}, {"type": "node", "id": 4500945124, "lat": 40.4291806, "lon": -3.7136782}, {"type": "node", "id": 4500945125, "lat": 40.4292051, "lon": -3.7145348}, {"type": "node", "id": 4500945128, "lat": 40.4292202, "lon": -3.7145696, "tags": {"entrance": "yes", "wheelchair": "no"}}, {"type": "node", "id": 4500945136, "lat": 40.4293187, "lon": -3.7140065}, {"type": "node", "id": 4500945137, "lat": 40.4293278, "lon": -3.7141422}, {"type": "node", "id": 4500945143, "lat": 40.4294215, "lon": -3.7143628}, {"type": "node", "id": 4506829281, "lat": 40.4411242, "lon": -3.7150684}, {"type": "node", "id": 4506829282, "lat": 40.4410047, "lon": -3.7152428}, {"type": "node", "id": 4513989459, "lat": 40.4507905, "lon": -3.720045}, {"type": "node", "id": 4513989460, "lat": 40.4506581, "lon": -3.720152}, {"type": "node", "id": 4513989461, "lat": 40.4505749, "lon": -3.7202212}, {"type": "node", "id": 4513989462, "lat": 40.4505087, "lon": -3.7202658}, {"type": "node", "id": 4513989463, "lat": 40.4504273, "lon": -3.7202903}, {"type": "node", "id": 4513989464, "lat": 40.4503695, "lon": -3.7203015}, {"type": "node", "id": 4513989465, "lat": 40.4502694, "lon": -3.7204666}, {"type": "node", "id": 4513989466, "lat": 40.4501947, "lon": -3.7205848}, {"type": "node", "id": 4513989467, "lat": 40.4501285, "lon": -3.7206852}, {"type": "node", "id": 4513989468, "lat": 40.4500794, "lon": -3.7209074}, {"type": "node", "id": 4513989469, "lat": 40.4500331, "lon": -3.7210325}, {"type": "node", "id": 4519526434, "lat": 40.4428231, "lon": -3.7190196, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4519701693, "lat": 40.4417698, "lon": -3.7264051}, {"type": "node", "id": 4519701696, "lat": 40.4411644, "lon": -3.7257331}, {"type": "node", "id": 4519701704, "lat": 40.4375738, "lon": -3.7218145}, {"type": "node", "id": 4519701705, "lat": 40.4375111, "lon": -3.721899}, {"type": "node", "id": 4519701706, "lat": 40.4374907, "lon": -3.7218098}, {"type": "node", "id": 4519701707, "lat": 40.4389835, "lon": -3.7176859}, {"type": "node", "id": 4519701708, "lat": 40.43925, "lon": -3.7172919}, {"type": "node", "id": 4519701709, "lat": 40.4391784, "lon": -3.7172897}, {"type": "node", "id": 4519701710, "lat": 40.4391097, "lon": -3.717316}, {"type": "node", "id": 4519701711, "lat": 40.4390493, "lon": -3.7173691}, {"type": "node", "id": 4519701712, "lat": 40.4390036, "lon": -3.7174451}, {"type": "node", "id": 4519701713, "lat": 40.438978, "lon": -3.717536}, {"type": "node", "id": 4519701714, "lat": 40.439045, "lon": -3.7178186}, {"type": "node", "id": 4519701715, "lat": 40.439101, "lon": -3.7178714}, {"type": "node", "id": 4519701716, "lat": 40.439379, "lon": -3.7173825}, {"type": "node", "id": 4519701717, "lat": 40.4394428, "lon": -3.7176332}, {"type": "node", "id": 4519701718, "lat": 40.4394381, "lon": -3.7175252}, {"type": "node", "id": 4519701719, "lat": 40.4394199, "lon": -3.7177341}, {"type": "node", "id": 4519701720, "lat": 40.4391814, "lon": -3.7179038}, {"type": "node", "id": 4519701721, "lat": 40.4392801, "lon": -3.7178914}, {"type": "node", "id": 4519701722, "lat": 40.4393662, "lon": -3.7178268}, {"type": "node", "id": 4525351433, "lat": 40.4325216, "lon": -3.7056365}, {"type": "node", "id": 4533916401, "lat": 40.4506434, "lon": -3.7153392}, {"type": "node", "id": 4536011529, "lat": 40.4389853, "lon": -3.7099355, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011530, "lat": 40.4388699, "lon": -3.7100481, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011531, "lat": 40.4387467, "lon": -3.7099388, "tags": {"crossing": "traffic_signals", "crossing_ref": "pelican", "highway": "crossing"}}, {"type": "node", "id": 4536011532, "lat": 40.4373551, "lon": -3.7083991, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011533, "lat": 40.4374458, "lon": -3.7085012, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011534, "lat": 40.4374379, "lon": -3.708297, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011535, "lat": 40.4374432, "lon": -3.7084539, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011536, "lat": 40.437559, "lon": -3.710035, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4536011537, "lat": 40.4378035, "lon": -3.7153062, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011538, "lat": 40.4376548, "lon": -3.7131171, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4536011539, "lat": 40.4374798, "lon": -3.7112334, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4536011540, "lat": 40.4375656, "lon": -3.711128, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4536011541, "lat": 40.4375739, "lon": -3.7113359, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4536011542, "lat": 40.437637, "lon": -3.7112202, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4536011543, "lat": 40.4377376, "lon": -3.7164721, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4536011544, "lat": 40.4378152, "lon": -3.7154211}, {"type": "node", "id": 4536011545, "lat": 40.4378224, "lon": -3.7153916}, {"type": "node", "id": 4536011546, "lat": 40.4378387, "lon": -3.7153728}, {"type": "node", "id": 4536011547, "lat": 40.4389441, "lon": -3.7153017}, {"type": "node", "id": 4536011548, "lat": 40.4389748, "lon": -3.7153258}, {"type": "node", "id": 4536011549, "lat": 40.438987, "lon": -3.7153527}, {"type": "node", "id": 4536011550, "lat": 40.4390187, "lon": -3.7163035}, {"type": "node", "id": 4536011551, "lat": 40.4378989, "lon": -3.7164014}, {"type": "node", "id": 4536011552, "lat": 40.4378734, "lon": -3.7163867}, {"type": "node", "id": 4536011553, "lat": 40.437855, "lon": -3.7163558}, {"type": "node", "id": 4536011554, "lat": 40.4390095, "lon": -3.7163558, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4536011555, "lat": 40.4378336, "lon": -3.7152461}, {"type": "node", "id": 4536011556, "lat": 40.4378173, "lon": -3.7152333}, {"type": "node", "id": 4536011557, "lat": 40.437806, "lon": -3.7152092}, {"type": "node", "id": 4536011558, "lat": 40.437755, "lon": -3.7142905}, {"type": "node", "id": 4536011559, "lat": 40.4377632, "lon": -3.7142677}, {"type": "node", "id": 4536011560, "lat": 40.4377866, "lon": -3.7142516}, {"type": "node", "id": 4536011561, "lat": 40.4389023, "lon": -3.7141779}, {"type": "node", "id": 4536011562, "lat": 40.4389299, "lon": -3.7141953}, {"type": "node", "id": 4536011563, "lat": 40.4389452, "lon": -3.7142181}, {"type": "node", "id": 4536011564, "lat": 40.4389717, "lon": -3.7151542}, {"type": "node", "id": 4536011565, "lat": 40.4377203, "lon": -3.7130406}, {"type": "node", "id": 4536011566, "lat": 40.4377387, "lon": -3.7130339}, {"type": "node", "id": 4536011567, "lat": 40.4388559, "lon": -3.7129675}, {"type": "node", "id": 4536011568, "lat": 40.4388727, "lon": -3.7129782}, {"type": "node", "id": 4536011569, "lat": 40.4388798, "lon": -3.7130071}, {"type": "node", "id": 4536011570, "lat": 40.438934, "lon": -3.7140113}, {"type": "node", "id": 4536011571, "lat": 40.4389064, "lon": -3.7140303}, {"type": "node", "id": 4536011572, "lat": 40.4388758, "lon": -3.7140411}, {"type": "node", "id": 4536011573, "lat": 40.4377815, "lon": -3.7141175}, {"type": "node", "id": 4536011574, "lat": 40.4377601, "lon": -3.7141068}, {"type": "node", "id": 4536011575, "lat": 40.4377499, "lon": -3.714084}, {"type": "node", "id": 4536011576, "lat": 40.4377019, "lon": -3.7130768}, {"type": "node", "id": 4536011577, "lat": 40.4388298, "lon": -3.7127818}, {"type": "node", "id": 4536011578, "lat": 40.4377193, "lon": -3.7128663}, {"type": "node", "id": 4536011579, "lat": 40.4376978, "lon": -3.7128515}, {"type": "node", "id": 4536011580, "lat": 40.4376897, "lon": -3.712826}, {"type": "node", "id": 4536011582, "lat": 40.4376283, "lon": -3.7113031}, {"type": "node", "id": 4536011583, "lat": 40.43764, "lon": -3.7112923}, {"type": "node", "id": 4536011584, "lat": 40.4387716, "lon": -3.7112006}, {"type": "node", "id": 4536011585, "lat": 40.4387982, "lon": -3.711214}, {"type": "node", "id": 4536011586, "lat": 40.4388053, "lon": -3.7112395}, {"type": "node", "id": 4536011587, "lat": 40.4388543, "lon": -3.712763}, {"type": "node", "id": 4536011588, "lat": 40.4387727, "lon": -3.7110504}, {"type": "node", "id": 4536013989, "lat": 40.4376474, "lon": -3.711145}, {"type": "node", "id": 4536013990, "lat": 40.4376238, "lon": -3.7111379}, {"type": "node", "id": 4536013991, "lat": 40.43761, "lon": -3.7111082}, {"type": "node", "id": 4536013992, "lat": 40.4375668, "lon": -3.7101961}, {"type": "node", "id": 4536013993, "lat": 40.4375723, "lon": -3.7101586}, {"type": "node", "id": 4536013994, "lat": 40.4375948, "lon": -3.7101371}, {"type": "node", "id": 4536013995, "lat": 40.4387461, "lon": -3.7100486}, {"type": "node", "id": 4536013996, "lat": 40.4387594, "lon": -3.710058}, {"type": "node", "id": 4536013997, "lat": 40.4387982, "lon": -3.7110209}, {"type": "node", "id": 4536044166, "lat": 40.4388472, "lon": -3.7180386}, {"type": "node", "id": 4536044167, "lat": 40.4393681, "lon": -3.7195149}, {"type": "node", "id": 4536044168, "lat": 40.439537, "lon": -3.7191768, "tags": {"barrier": "kerb", "kerb": "lowered", "wheelchair": "yes"}}, {"type": "node", "id": 4536044169, "lat": 40.4391932, "lon": -3.7198855}, {"type": "node", "id": 4536044170, "lat": 40.4391728, "lon": -3.7199552}, {"type": "node", "id": 4536044171, "lat": 40.4391728, "lon": -3.7200424}, {"type": "node", "id": 4536044172, "lat": 40.4391912, "lon": -3.7201135}, {"type": "node", "id": 4536044173, "lat": 40.4392869, "lon": -3.7202282}, {"type": "node", "id": 4536044174, "lat": 40.4390546, "lon": -3.7197695}, {"type": "node", "id": 4536044175, "lat": 40.4390812, "lon": -3.7197453}, {"type": "node", "id": 4536044176, "lat": 40.4396548, "lon": -3.7185745}, {"type": "node", "id": 4536044177, "lat": 40.4396824, "lon": -3.7184874}, {"type": "node", "id": 4536044179, "lat": 40.4396701, "lon": -3.7183559}, {"type": "node", "id": 4536044180, "lat": 40.4396477, "lon": -3.7183171}, {"type": "node", "id": 4536044181, "lat": 40.4386346, "lon": -3.7189368}, {"type": "node", "id": 4536044182, "lat": 40.4385932, "lon": -3.7188889}, {"type": "node", "id": 4536044183, "lat": 40.4386093, "lon": -3.7189075, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4536044184, "lat": 40.4386977, "lon": -3.7190096}, {"type": "node", "id": 4536044185, "lat": 40.4385573, "lon": -3.7188473}, {"type": "node", "id": 4536044186, "lat": 40.4380029, "lon": -3.719695}, {"type": "node", "id": 4536044187, "lat": 40.4380331, "lon": -3.7196563, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4536044188, "lat": 40.438082, "lon": -3.7195935}, {"type": "node", "id": 4536045389, "lat": 40.4381051, "lon": -3.7196104}, {"type": "node", "id": 4536045390, "lat": 40.4380873, "lon": -3.719601}, {"type": "node", "id": 4536045391, "lat": 40.4380714, "lon": -3.7195782}, {"type": "node", "id": 4536045392, "lat": 40.4380699, "lon": -3.7195621}, {"type": "node", "id": 4536045394, "lat": 40.4387548, "lon": -3.7185576}, {"type": "node", "id": 4536099177, "lat": 40.4347846, "lon": -3.7182927}, {"type": "node", "id": 4536099178, "lat": 40.4347509, "lon": -3.7182846}, {"type": "node", "id": 4536099179, "lat": 40.4343743, "lon": -3.7180111}, {"type": "node", "id": 4536099180, "lat": 40.4343661, "lon": -3.7179789}, {"type": "node", "id": 4536099181, "lat": 40.4345386, "lon": -3.7167584}, {"type": "node", "id": 4536099182, "lat": 40.4353654, "lon": -3.7167155}, {"type": "node", "id": 4536099183, "lat": 40.4354216, "lon": -3.716788}, {"type": "node", "id": 4536099184, "lat": 40.4354726, "lon": -3.7181666}, {"type": "node", "id": 4536099185, "lat": 40.4354573, "lon": -3.7181814}, {"type": "node", "id": 4536099186, "lat": 40.4354359, "lon": -3.7181894}, {"type": "node", "id": 4536099187, "lat": 40.4354743, "lon": -3.7181411}, {"type": "node", "id": 4536099188, "lat": 40.4356384, "lon": -3.7181231}, {"type": "node", "id": 4536104689, "lat": 40.4356704, "lon": -3.7183779}, {"type": "node", "id": 4536104690, "lat": 40.4366516, "lon": -3.7166257}, {"type": "node", "id": 4536104691, "lat": 40.4377213, "lon": -3.7165493}, {"type": "node", "id": 4536104692, "lat": 40.4377478, "lon": -3.7165614}, {"type": "node", "id": 4536104693, "lat": 40.4377621, "lon": -3.7165801}, {"type": "node", "id": 4536104694, "lat": 40.4378152, "lon": -3.7177161}, {"type": "node", "id": 4536104695, "lat": 40.437804, "lon": -3.7177442}, {"type": "node", "id": 4536104696, "lat": 40.4377897, "lon": -3.7177617}, {"type": "node", "id": 4536104697, "lat": 40.4367552, "lon": -3.7179226}, {"type": "node", "id": 4536104698, "lat": 40.4367348, "lon": -3.7179186}, {"type": "node", "id": 4536104699, "lat": 40.4367159, "lon": -3.7179052}, {"type": "node", "id": 4536104700, "lat": 40.4366934, "lon": -3.7178689}, {"type": "node", "id": 4536104701, "lat": 40.436624, "lon": -3.7166499}, {"type": "node", "id": 4536104702, "lat": 40.4364944, "lon": -3.7166418}, {"type": "node", "id": 4536104703, "lat": 40.4365199, "lon": -3.7166539}, {"type": "node", "id": 4536104704, "lat": 40.4365862, "lon": -3.7179199}, {"type": "node", "id": 4536104705, "lat": 40.436573, "lon": -3.7179508}, {"type": "node", "id": 4536104706, "lat": 40.4365566, "lon": -3.7179682}, {"type": "node", "id": 4536104707, "lat": 40.4356186, "lon": -3.7181264}, {"type": "node", "id": 4536104708, "lat": 40.435568, "lon": -3.7181304}, {"type": "node", "id": 4536146127, "lat": 40.4366404, "lon": -3.7169186}, {"type": "node", "id": 4546196064, "lat": 40.4436054, "lon": -3.6932415}, {"type": "node", "id": 4547336037, "lat": 40.4374452, "lon": -3.6962839}, {"type": "node", "id": 4547336038, "lat": 40.4367562, "lon": -3.6963148}, {"type": "node", "id": 4547336039, "lat": 40.4367298, "lon": -3.6962908}, {"type": "node", "id": 4547336040, "lat": 40.4367215, "lon": -3.6955436}, {"type": "node", "id": 4547336041, "lat": 40.4367607, "lon": -3.6964094, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4547336042, "lat": 40.4367623, "lon": -3.6964626}, {"type": "node", "id": 4547336043, "lat": 40.4366696, "lon": -3.6963592, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4547336052, "lat": 40.4366699, "lon": -3.6962924, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4547336053, "lat": 40.4366305, "lon": -3.6962935}, {"type": "node", "id": 4547724398, "lat": 40.4465055, "lon": -3.6948833}, {"type": "node", "id": 4547724401, "lat": 40.4464752, "lon": -3.6953815, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4547724402, "lat": 40.446524, "lon": -3.6953851, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4547724403, "lat": 40.4465538, "lon": -3.6950526, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4547724404, "lat": 40.4466246, "lon": -3.6950018}, {"type": "node", "id": 4547724405, "lat": 40.4468064, "lon": -3.6950058}, {"type": "node", "id": 4548286961, "lat": 40.4511463, "lon": -3.717123}, {"type": "node", "id": 4548286962, "lat": 40.4510162, "lon": -3.7170505}, {"type": "node", "id": 4548286970, "lat": 40.4511068, "lon": -3.7171069}, {"type": "node", "id": 4548286971, "lat": 40.451064, "lon": -3.7170841}, {"type": "node", "id": 4548286972, "lat": 40.4503882, "lon": -3.7165936}, {"type": "node", "id": 4548286973, "lat": 40.4493163, "lon": -3.7168039}, {"type": "node", "id": 4548286974, "lat": 40.4492713, "lon": -3.7168061}, {"type": "node", "id": 4548286975, "lat": 40.4505198, "lon": -3.7137872}, {"type": "node", "id": 4548387389, "lat": 40.4376078, "lon": -3.7130867, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548387402, "lat": 40.436517, "lon": -3.7142042}, {"type": "node", "id": 4548387404, "lat": 40.4364948, "lon": -3.7141699}, {"type": "node", "id": 4548387410, "lat": 40.4364767, "lon": -3.7130994}, {"type": "node", "id": 4548387428, "lat": 40.4374157, "lon": -3.714239}, {"type": "node", "id": 4548387441, "lat": 40.4376844, "lon": -3.7152823}, {"type": "node", "id": 4548405594, "lat": 40.4378481, "lon": -3.7177251, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 4548405595, "lat": 40.4378106, "lon": -3.7177277}, {"type": "node", "id": 4548405596, "lat": 40.4366026, "lon": -3.717918}, {"type": "node", "id": 4548405597, "lat": 40.4366843, "lon": -3.7179088}, {"type": "node", "id": 4548405598, "lat": 40.4365822, "lon": -3.7166515}, {"type": "node", "id": 4548405599, "lat": 40.4365532, "lon": -3.7166526}, {"type": "node", "id": 4548405600, "lat": 40.4366509, "lon": -3.7165162}, {"type": "node", "id": 4548405601, "lat": 40.4366513, "lon": -3.7165819}, {"type": "node", "id": 4548405602, "lat": 40.4365931, "lon": -3.7154474}, {"type": "node", "id": 4548405603, "lat": 40.4365885, "lon": -3.7153643}, {"type": "node", "id": 4548405604, "lat": 40.4365862, "lon": -3.7153234}, {"type": "node", "id": 4548405605, "lat": 40.4365937, "lon": -3.7154722}, {"type": "node", "id": 4548405606, "lat": 40.4375882, "lon": -3.7128416}, {"type": "node", "id": 4548405607, "lat": 40.4376142, "lon": -3.7128409}, {"type": "node", "id": 4548405608, "lat": 40.4376775, "lon": -3.7128395}, {"type": "node", "id": 4548405609, "lat": 40.4376939, "lon": -3.7128391}, {"type": "node", "id": 4548405610, "lat": 40.4364278, "lon": -3.7141759}, {"type": "node", "id": 4548405611, "lat": 40.4364041, "lon": -3.714178}, {"type": "node", "id": 4548405612, "lat": 40.436401, "lon": -3.7143586}, {"type": "node", "id": 4548405613, "lat": 40.4364373, "lon": -3.7143567, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548405614, "lat": 40.4364705, "lon": -3.7143549, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 4548405615, "lat": 40.4365163, "lon": -3.7141759}, {"type": "node", "id": 4548405616, "lat": 40.4365194, "lon": -3.7142982}, {"type": "node", "id": 4548405617, "lat": 40.4364628, "lon": -3.713144}, {"type": "node", "id": 4548405618, "lat": 40.4364551, "lon": -3.7131614}, {"type": "node", "id": 4548405619, "lat": 40.4364813, "lon": -3.7136749}, {"type": "node", "id": 4548405620, "lat": 40.4365031, "lon": -3.7141505}, {"type": "node", "id": 4548405621, "lat": 40.4365103, "lon": -3.7141686}, {"type": "node", "id": 4548405622, "lat": 40.4365251, "lon": -3.7141867}, {"type": "node", "id": 4548405623, "lat": 40.4365414, "lon": -3.7141954}, {"type": "node", "id": 4548405624, "lat": 40.4376193, "lon": -3.7135927}, {"type": "node", "id": 4548405625, "lat": 40.4375984, "lon": -3.7131218}, {"type": "node", "id": 4548405626, "lat": 40.4375922, "lon": -3.7130883}, {"type": "node", "id": 4548405627, "lat": 40.4377076, "lon": -3.7130561}, {"type": "node", "id": 4548405628, "lat": 40.4376917, "lon": -3.7130779, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548405629, "lat": 40.4377265, "lon": -3.7140946}, {"type": "node", "id": 4548405630, "lat": 40.4377826, "lon": -3.7141472}, {"type": "node", "id": 4548405631, "lat": 40.4377852, "lon": -3.7142141}, {"type": "node", "id": 4548405632, "lat": 40.4376323, "lon": -3.7142255}, {"type": "node", "id": 4548405633, "lat": 40.4376295, "lon": -3.7141468}, {"type": "node", "id": 4548405634, "lat": 40.4376285, "lon": -3.714119}, {"type": "node", "id": 4548405635, "lat": 40.4376423, "lon": -3.7141029}, {"type": "node", "id": 4548405636, "lat": 40.4376754, "lon": -3.7140996}, {"type": "node", "id": 4548405637, "lat": 40.4377535, "lon": -3.714092}, {"type": "node", "id": 4548405638, "lat": 40.4377339, "lon": -3.714292, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 4548405639, "lat": 40.4376875, "lon": -3.7142953, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 4548405640, "lat": 40.4376563, "lon": -3.7142975}, {"type": "node", "id": 4548405641, "lat": 40.4377363, "lon": -3.7164229}, {"type": "node", "id": 4548405642, "lat": 40.4377389, "lon": -3.7165228}, {"type": "node", "id": 4548405643, "lat": 40.4377397, "lon": -3.7165577}, {"type": "node", "id": 4548405644, "lat": 40.4376896, "lon": -3.7153706}, {"type": "node", "id": 4548405645, "lat": 40.4376775, "lon": -3.7153923}, {"type": "node", "id": 4548405646, "lat": 40.4378349, "lon": -3.7152776}, {"type": "node", "id": 4548405647, "lat": 40.4378374, "lon": -3.7153413}, {"type": "node", "id": 4548405648, "lat": 40.4377785, "lon": -3.7152114}, {"type": "node", "id": 4548405649, "lat": 40.4376969, "lon": -3.7152179}, {"type": "node", "id": 4548405650, "lat": 40.4377146, "lon": -3.7152165}, {"type": "node", "id": 4548405651, "lat": 40.4377883, "lon": -3.715409}, {"type": "node", "id": 4548405652, "lat": 40.4377225, "lon": -3.7154138}, {"type": "node", "id": 4548405653, "lat": 40.4376953, "lon": -3.7154158}, {"type": "node", "id": 4548405654, "lat": 40.4378187, "lon": -3.7154068}, {"type": "node", "id": 4548405655, "lat": 40.4378337, "lon": -3.7163748}, {"type": "node", "id": 4548405656, "lat": 40.4377705, "lon": -3.7163802}, {"type": "node", "id": 4548405657, "lat": 40.4377388, "lon": -3.716383}, {"type": "node", "id": 4548405658, "lat": 40.4378647, "lon": -3.7163721}, {"type": "node", "id": 4548405659, "lat": 40.437776, "lon": -3.7165609}, {"type": "node", "id": 4548405660, "lat": 40.4378738, "lon": -3.7165587}, {"type": "node", "id": 4548405661, "lat": 40.4377357, "lon": -3.7163962}, {"type": "node", "id": 4548405662, "lat": 40.4377224, "lon": -3.7164055}, {"type": "node", "id": 4548405663, "lat": 40.4366506, "lon": -3.7164806}, {"type": "node", "id": 4548405664, "lat": 40.4366322, "lon": -3.7164672}, {"type": "node", "id": 4548405665, "lat": 40.4366149, "lon": -3.7164471}, {"type": "node", "id": 4548405666, "lat": 40.4365736, "lon": -3.7155151}, {"type": "node", "id": 4548405667, "lat": 40.4365836, "lon": -3.7154833}, {"type": "node", "id": 4548405668, "lat": 40.4366089, "lon": -3.7154653}, {"type": "node", "id": 4548405669, "lat": 40.4376601, "lon": -3.7153863}, {"type": "node", "id": 4548405670, "lat": 40.4376918, "lon": -3.7154071}, {"type": "node", "id": 4548405671, "lat": 40.437702, "lon": -3.7154292}, {"type": "node", "id": 4548405672, "lat": 40.4377408, "lon": -3.7163747}, {"type": "node", "id": 4548405673, "lat": 40.4365761, "lon": -3.7153179}, {"type": "node", "id": 4548405674, "lat": 40.4366006, "lon": -3.7153313}, {"type": "node", "id": 4548405675, "lat": 40.4373815, "lon": -3.7152777}, {"type": "node", "id": 4548405676, "lat": 40.4374141, "lon": -3.7152897}, {"type": "node", "id": 4548405677, "lat": 40.437654, "lon": -3.715275}, {"type": "node", "id": 4548405678, "lat": 40.4376836, "lon": -3.7152696}, {"type": "node", "id": 4548405679, "lat": 40.4376979, "lon": -3.7152401}, {"type": "node", "id": 4548405680, "lat": 40.437656, "lon": -3.7142906}, {"type": "node", "id": 4548405681, "lat": 40.437652, "lon": -3.7142692}, {"type": "node", "id": 4548405682, "lat": 40.4376336, "lon": -3.7142611}, {"type": "node", "id": 4548405683, "lat": 40.4365659, "lon": -3.7143335}, {"type": "node", "id": 4548405684, "lat": 40.4365368, "lon": -3.7143382}, {"type": "node", "id": 4548405685, "lat": 40.4365211, "lon": -3.7143522}, {"type": "node", "id": 4548405686, "lat": 40.4365138, "lon": -3.7143912}, {"type": "node", "id": 4548405687, "lat": 40.4365639, "lon": -3.7152897}, {"type": "node", "id": 4548425533, "lat": 40.4396087, "lon": -3.718013, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425534, "lat": 40.4395532, "lon": -3.7180882, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425535, "lat": 40.4397142, "lon": -3.7177082, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425536, "lat": 40.4394866, "lon": -3.717075}, {"type": "node", "id": 4548425537, "lat": 40.4396135, "lon": -3.7172074}, {"type": "node", "id": 4548425538, "lat": 40.4387461, "lon": -3.7178199, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4548425705, "lat": 40.4391212, "lon": -3.7167637}, {"type": "node", "id": 4548425706, "lat": 40.4390514, "lon": -3.7153785, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425707, "lat": 40.4390996, "lon": -3.7153739, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425708, "lat": 40.4391734, "lon": -3.7153669, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425709, "lat": 40.4392332, "lon": -3.7153613}, {"type": "node", "id": 4548425711, "lat": 40.4389881, "lon": -3.7153845}, {"type": "node", "id": 4548425712, "lat": 40.4390699, "lon": -3.7161341, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425713, "lat": 40.4392058, "lon": -3.7161262, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425716, "lat": 40.4391297, "lon": -3.7161281, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425717, "lat": 40.4390133, "lon": -3.7161416}, {"type": "node", "id": 4548425718, "lat": 40.4390372, "lon": -3.7150997, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425719, "lat": 40.4390855, "lon": -3.715093, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425720, "lat": 40.4392172, "lon": -3.7150801}, {"type": "node", "id": 4548425722, "lat": 40.4391621, "lon": -3.7150847, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425723, "lat": 40.4389706, "lon": -3.7151146}, {"type": "node", "id": 4548425734, "lat": 40.4388786, "lon": -3.7128938}, {"type": "node", "id": 4548425735, "lat": 40.4389015, "lon": -3.7128852}, {"type": "node", "id": 4548425736, "lat": 40.4390062, "lon": -3.7129807, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425737, "lat": 40.4389529, "lon": -3.7129727, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425739, "lat": 40.4390427, "lon": -3.712986}, {"type": "node", "id": 4548425740, "lat": 40.439078, "lon": -3.7129732, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425741, "lat": 40.4391307, "lon": -3.712951, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425742, "lat": 40.4391722, "lon": -3.7129331}, {"type": "node", "id": 4548425744, "lat": 40.4389912, "lon": -3.7140076, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425745, "lat": 40.4390457, "lon": -3.714004, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425746, "lat": 40.4390761, "lon": -3.714002}, {"type": "node", "id": 4548425747, "lat": 40.4390881, "lon": -3.7139666}, {"type": "node", "id": 4548425748, "lat": 40.4391184, "lon": -3.713965, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425750, "lat": 40.4390029, "lon": -3.7142385, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425751, "lat": 40.4390556, "lon": -3.7142326, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425752, "lat": 40.439127, "lon": -3.7142236, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425754, "lat": 40.4389459, "lon": -3.7142432}, {"type": "node", "id": 4548425756, "lat": 40.4389378, "lon": -3.7140816, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425757, "lat": 40.4389405, "lon": -3.7141319, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425758, "lat": 40.4389432, "lon": -3.7152535, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425759, "lat": 40.4389568, "lon": -3.7152027, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548425760, "lat": 40.4389291, "lon": -3.7153027}, {"type": "node", "id": 4548435329, "lat": 40.4390318, "lon": -3.7112306}, {"type": "node", "id": 4548435330, "lat": 40.4388733, "lon": -3.7122231, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435331, "lat": 40.4390158, "lon": -3.712213, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435332, "lat": 40.438837, "lon": -3.7122256}, {"type": "node", "id": 4548435333, "lat": 40.4389483, "lon": -3.7122178, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435334, "lat": 40.4392414, "lon": -3.7127559, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435335, "lat": 40.4396083, "lon": -3.7110188}, {"type": "node", "id": 4548435336, "lat": 40.4395673, "lon": -3.7111342}, {"type": "node", "id": 4548435337, "lat": 40.4392046, "lon": -3.7123158, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435338, "lat": 40.4392693, "lon": -3.7123579, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435339, "lat": 40.4393127, "lon": -3.7123861, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435340, "lat": 40.4391701, "lon": -3.7122934, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435341, "lat": 40.4390458, "lon": -3.7122109, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4548435342, "lat": 40.439151, "lon": -3.7123435}, {"type": "node", "id": 4548435343, "lat": 40.4390928, "lon": -3.7123448}, {"type": "node", "id": 4548435344, "lat": 40.438958, "lon": -3.7124803}, {"type": "node", "id": 4548435346, "lat": 40.4387951, "lon": -3.7111488}, {"type": "node", "id": 4548451512, "lat": 40.4375891, "lon": -3.7099803}, {"type": "node", "id": 4548451513, "lat": 40.4375935, "lon": -3.7101024}, {"type": "node", "id": 4548451514, "lat": 40.4375066, "lon": -3.7101714}, {"type": "node", "id": 4548451515, "lat": 40.4375575, "lon": -3.7101693}, {"type": "node", "id": 4548451516, "lat": 40.4374706, "lon": -3.7101729}, {"type": "node", "id": 4548451517, "lat": 40.4375277, "lon": -3.7101706, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548451518, "lat": 40.4375695, "lon": -3.7101688}, {"type": "node", "id": 4548451519, "lat": 40.4375875, "lon": -3.709935}, {"type": "node", "id": 4548451520, "lat": 40.437591, "lon": -3.7100328, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548451521, "lat": 40.4374375, "lon": -3.7100422, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4548451522, "lat": 40.4376355, "lon": -3.7111867}, {"type": "node", "id": 4548451523, "lat": 40.4376383, "lon": -3.7112511}, {"type": "node", "id": 4548451524, "lat": 40.4376334, "lon": -3.7111439}, {"type": "node", "id": 4548454344, "lat": 40.4389071, "lon": -3.7107909}, {"type": "node", "id": 4548454345, "lat": 40.4388715, "lon": -3.7108514}, {"type": "node", "id": 4548454346, "lat": 40.4388831, "lon": -3.710365}, {"type": "node", "id": 4548454347, "lat": 40.4389485, "lon": -3.7106241}, {"type": "node", "id": 4548454348, "lat": 40.4389811, "lon": -3.7108577}, {"type": "node", "id": 4548454349, "lat": 40.4388242, "lon": -3.7111207, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4548454350, "lat": 40.4387922, "lon": -3.7110855}, {"type": "node", "id": 4548454351, "lat": 40.4387896, "lon": -3.7110309}, {"type": "node", "id": 4548454352, "lat": 40.4388129, "lon": -3.7100531, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548454353, "lat": 40.4389633, "lon": -3.7100393, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4548454354, "lat": 40.4389911, "lon": -3.7100368}, {"type": "node", "id": 4548454355, "lat": 40.4387469, "lon": -3.7099026}, {"type": "node", "id": 4548454356, "lat": 40.4387465, "lon": -3.7099722}, {"type": "node", "id": 4548454357, "lat": 40.4387471, "lon": -3.7098558}, {"type": "node", "id": 4549582481, "lat": 40.4374584, "lon": -3.7222796}, {"type": "node", "id": 4549584294, "lat": 40.4359245, "lon": -3.7190221}, {"type": "node", "id": 4549584295, "lat": 40.4359293, "lon": -3.719}, {"type": "node", "id": 4549584296, "lat": 40.4359609, "lon": -3.7188539, "tags": {"barrier": "gate"}}, {"type": "node", "id": 4549584297, "lat": 40.4359633, "lon": -3.7188429}, {"type": "node", "id": 4549584298, "lat": 40.4359159, "lon": -3.7190614}, {"type": "node", "id": 4549589307, "lat": 40.4365975, "lon": -3.7208133}, {"type": "node", "id": 4549589308, "lat": 40.436644, "lon": -3.7208162, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4549589312, "lat": 40.4355103, "lon": -3.718443, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549589314, "lat": 40.4356661, "lon": -3.7183421, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549589319, "lat": 40.4356262, "lon": -3.7184402, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549589325, "lat": 40.4365842, "lon": -3.7207674, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549591265, "lat": 40.4356426, "lon": -3.7181547, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549591266, "lat": 40.4367585, "lon": -3.7179664, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 4549591267, "lat": 40.4367728, "lon": -3.7181586}, {"type": "node", "id": 4549591268, "lat": 40.4366556, "lon": -3.7182024}, {"type": "node", "id": 4549603071, "lat": 40.4354072, "lon": -3.7188889, "tags": {"entrance": "yes", "highway": "elevator", "level": "0.5;0;-1;-2"}}, {"type": "node", "id": 4549603072, "lat": 40.4346338, "lon": -3.7194547, "tags": {"entrance": "yes", "highway": "elevator", "level": "0;-1;-2", "railway": "subway_entrance", "ref": "Ascensor", "wheelchair": "yes"}}, {"type": "node", "id": 4549603314, "lat": 40.4354254, "lon": -3.7183585, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4549835129, "lat": 40.4388369, "lon": -3.7179497}, {"type": "node", "id": 4549842346, "lat": 40.4390934, "lon": -3.718072}, {"type": "node", "id": 4549845080, "lat": 40.4362167, "lon": -3.7198209}, {"type": "node", "id": 4549845081, "lat": 40.4361373, "lon": -3.7198789}, {"type": "node", "id": 4549845082, "lat": 40.4366531, "lon": -3.7181753}, {"type": "node", "id": 4558946111, "lat": 40.4453298, "lon": -3.7196347}, {"type": "node", "id": 4558946112, "lat": 40.4453134, "lon": -3.7196028}, {"type": "node", "id": 4558946113, "lat": 40.4453148, "lon": -3.7194911}, {"type": "node", "id": 4558946114, "lat": 40.4453958, "lon": -3.719423}, {"type": "node", "id": 4558946115, "lat": 40.4454261, "lon": -3.7194276}, {"type": "node", "id": 4558946116, "lat": 40.4454537, "lon": -3.7194444}, {"type": "node", "id": 4558946117, "lat": 40.4454759, "lon": -3.7194718}, {"type": "node", "id": 4558946118, "lat": 40.445305, "lon": -3.719566, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4558946119, "lat": 40.4454905, "lon": -3.719507}, {"type": "node", "id": 4558946120, "lat": 40.4454356, "lon": -3.7196659}, {"type": "node", "id": 4558946121, "lat": 40.4453485, "lon": -3.7194426}, {"type": "node", "id": 4558946122, "lat": 40.4453775, "lon": -3.7194264}, {"type": "node", "id": 4558946123, "lat": 40.445325, "lon": -3.7194703}, {"type": "node", "id": 4558946124, "lat": 40.4454303, "lon": -3.7193842}, {"type": "node", "id": 4558946125, "lat": 40.4454959, "lon": -3.7195464, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4558946126, "lat": 40.4454917, "lon": -3.7195861}, {"type": "node", "id": 4558946127, "lat": 40.4453055, "lon": -3.7195276}, {"type": "node", "id": 4558946128, "lat": 40.4444884, "lon": -3.7186875}, {"type": "node", "id": 4575761998, "lat": 40.4378507, "lon": -3.6832276}, {"type": "node", "id": 4575761999, "lat": 40.4378149, "lon": -3.6832306}, {"type": "node", "id": 4575762000, "lat": 40.4377814, "lon": -3.6832818}, {"type": "node", "id": 4575762001, "lat": 40.4377825, "lon": -3.6833429}, {"type": "node", "id": 4575762002, "lat": 40.4378189, "lon": -3.6840719}, {"type": "node", "id": 4575762003, "lat": 40.4378411, "lon": -3.6840954}, {"type": "node", "id": 4575762004, "lat": 40.4383486, "lon": -3.6840575}, {"type": "node", "id": 4575762005, "lat": 40.4383723, "lon": -3.6840469}, {"type": "node", "id": 4575762006, "lat": 40.4387848, "lon": -3.6833099}, {"type": "node", "id": 4575762007, "lat": 40.4388379, "lon": -3.6832075}, {"type": "node", "id": 4575762008, "lat": 40.4388194, "lon": -3.6831544}, {"type": "node", "id": 4575762009, "lat": 40.4388414, "lon": -3.683165}, {"type": "node", "id": 4575762319, "lat": 40.4378364, "lon": -3.6842611}, {"type": "node", "id": 4575762320, "lat": 40.437842, "lon": -3.6841723, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762321, "lat": 40.4382446, "lon": -3.6842763}, {"type": "node", "id": 4575762322, "lat": 40.4379248, "lon": -3.6848441}, {"type": "node", "id": 4575762323, "lat": 40.4379069, "lon": -3.6848562}, {"type": "node", "id": 4575762324, "lat": 40.4378873, "lon": -3.6848555}, {"type": "node", "id": 4575762325, "lat": 40.4378696, "lon": -3.6848498}, {"type": "node", "id": 4575762326, "lat": 40.4378593, "lon": -3.6848361}, {"type": "node", "id": 4575762327, "lat": 40.4378535, "lon": -3.6848107}, {"type": "node", "id": 4575762328, "lat": 40.4378324, "lon": -3.6842866}, {"type": "node", "id": 4575762329, "lat": 40.4378428, "lon": -3.6842471}, {"type": "node", "id": 4575762330, "lat": 40.4378558, "lon": -3.6842357}, {"type": "node", "id": 4575762331, "lat": 40.4382207, "lon": -3.6842149}, {"type": "node", "id": 4575762332, "lat": 40.4382443, "lon": -3.6842437}, {"type": "node", "id": 4575762333, "lat": 40.4383021, "lon": -3.6841402, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762334, "lat": 40.4377316, "lon": -3.6853034}, {"type": "node", "id": 4575762335, "lat": 40.4377738, "lon": -3.686241}, {"type": "node", "id": 4575762336, "lat": 40.4377944, "lon": -3.6856317}, {"type": "node", "id": 4575762337, "lat": 40.4378021, "lon": -3.6858784}, {"type": "node", "id": 4575762338, "lat": 40.4378038, "lon": -3.6861196}, {"type": "node", "id": 4575762339, "lat": 40.4377985, "lon": -3.6848324}, {"type": "node", "id": 4575762340, "lat": 40.4378281, "lon": -3.684868}, {"type": "node", "id": 4575762341, "lat": 40.4378564, "lon": -3.6848885}, {"type": "node", "id": 4575762342, "lat": 40.4379031, "lon": -3.6848976, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4575762343, "lat": 40.4379424, "lon": -3.6848934}, {"type": "node", "id": 4575801317, "lat": 40.4329583, "lon": -3.6847, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801318, "lat": 40.4328893, "lon": -3.6847045}, {"type": "node", "id": 4575801319, "lat": 40.4329462, "lon": -3.6844585, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801320, "lat": 40.4328782, "lon": -3.6844646}, {"type": "node", "id": 4575801321, "lat": 40.4329821, "lon": -3.6904165}, {"type": "node", "id": 4575801322, "lat": 40.4331915, "lon": -3.6868308, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801323, "lat": 40.4331366, "lon": -3.6868376}, {"type": "node", "id": 4575801324, "lat": 40.43285, "lon": -3.6868554}, {"type": "node", "id": 4575801325, "lat": 40.4327117, "lon": -3.6868648, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801326, "lat": 40.432874, "lon": -3.6868922}, {"type": "node", "id": 4575801327, "lat": 40.4329898, "lon": -3.6869117}, {"type": "node", "id": 4575801328, "lat": 40.4329392, "lon": -3.6856339}, {"type": "node", "id": 4575801329, "lat": 40.4330051, "lon": -3.6856354}, {"type": "node", "id": 4575801330, "lat": 40.4329767, "lon": -3.6856612}, {"type": "node", "id": 4575801331, "lat": 40.4329505, "lon": -3.6857003}, {"type": "node", "id": 4575801332, "lat": 40.432954, "lon": -3.6863475, "tags": {"access": "yes", "addr:city": "Madrid", "addr:housenumber": "4b", "addr:postcode": "28006", "addr:street": "Calle de Juan Bravo", "amenity": "parking", "capacity:charging": "15", "fee": "yes", "layer": "-1", "name": "Serranopark Juan Bravo", "operator": "Serrano Park I", "parking": "underground"}}, {"type": "node", "id": 4575801333, "lat": 40.4329375, "lon": -3.685766}, {"type": "node", "id": 4575801334, "lat": 40.4329202, "lon": -3.6857058}, {"type": "node", "id": 4575801335, "lat": 40.4328994, "lon": -3.6856683}, {"type": "node", "id": 4575801336, "lat": 40.4328583, "lon": -3.6856387}, {"type": "node", "id": 4575801337, "lat": 40.4329973, "lon": -3.68548, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4575801338, "lat": 40.4329253, "lon": -3.6854865}, {"type": "node", "id": 4576234299, "lat": 40.4277202, "lon": -3.6849987}, {"type": "node", "id": 4576234300, "lat": 40.4276772, "lon": -3.6841258}, {"type": "node", "id": 4576234301, "lat": 40.427645, "lon": -3.6840799}, {"type": "node", "id": 4576234302, "lat": 40.4276082, "lon": -3.6840831}, {"type": "node", "id": 4576234303, "lat": 40.4264221, "lon": -3.6841781}, {"type": "node", "id": 4576234304, "lat": 40.4263937, "lon": -3.6842077}, {"type": "node", "id": 4576234305, "lat": 40.4264389, "lon": -3.685146}, {"type": "node", "id": 4576234306, "lat": 40.4264757, "lon": -3.6851856}, {"type": "node", "id": 4576234312, "lat": 40.4268995, "lon": -3.6839794}, {"type": "node", "id": 4576234313, "lat": 40.4270605, "lon": -3.6840691}, {"type": "node", "id": 4576234314, "lat": 40.4271401, "lon": -3.6840891}, {"type": "node", "id": 4576234315, "lat": 40.4272743, "lon": -3.6840818, "tags": {"amenity": "parking_entrance", "fee": "yes", "maxheight": "1.9", "name": "Vel\u00e1zquez - Ayala", "parking": "underground"}}, {"type": "node", "id": 4576234331, "lat": 40.4255704, "lon": -3.6877057}, {"type": "node", "id": 4576234338, "lat": 40.4240352, "lon": -3.686826}, {"type": "node", "id": 4576234342, "lat": 40.4253531, "lon": -3.6898638}, {"type": "node", "id": 4576234343, "lat": 40.4253764, "lon": -3.6897883}, {"type": "node", "id": 4576234345, "lat": 40.4241687, "lon": -3.687979}, {"type": "node", "id": 4576234346, "lat": 40.4241972, "lon": -3.6882433}, {"type": "node", "id": 4576234350, "lat": 40.4239876, "lon": -3.6879983}, {"type": "node", "id": 4576234351, "lat": 40.4239317, "lon": -3.6880062}, {"type": "node", "id": 4576234358, "lat": 40.4217604, "lon": -3.6871709, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234359, "lat": 40.4217016, "lon": -3.687085, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234360, "lat": 40.4212243, "lon": -3.6872295}, {"type": "node", "id": 4576234361, "lat": 40.4217057, "lon": -3.687164}, {"type": "node", "id": 4576234362, "lat": 40.4217201, "lon": -3.6871751}, {"type": "node", "id": 4576234363, "lat": 40.4217722, "lon": -3.6882787}, {"type": "node", "id": 4576234364, "lat": 40.4217613, "lon": -3.6883004}, {"type": "node", "id": 4576234365, "lat": 40.4212695, "lon": -3.6883754}, {"type": "node", "id": 4576234366, "lat": 40.421243, "lon": -3.6883891}, {"type": "node", "id": 4576234367, "lat": 40.4211179, "lon": -3.6883848}, {"type": "node", "id": 4576234368, "lat": 40.4211316, "lon": -3.6883986}, {"type": "node", "id": 4576234369, "lat": 40.4212598, "lon": -3.6884297}, {"type": "node", "id": 4576234370, "lat": 40.421185, "lon": -3.6884363}, {"type": "node", "id": 4576234371, "lat": 40.4211316, "lon": -3.6884461}, {"type": "node", "id": 4576234372, "lat": 40.4211992, "lon": -3.6872583}, {"type": "node", "id": 4576234373, "lat": 40.421238, "lon": -3.6883402}, {"type": "node", "id": 4576234374, "lat": 40.4212601, "lon": -3.6883645}, {"type": "node", "id": 4576234375, "lat": 40.4213375, "lon": -3.6883666}, {"type": "node", "id": 4576234376, "lat": 40.4213427, "lon": -3.6884333}, {"type": "node", "id": 4576234377, "lat": 40.4213504, "lon": -3.6885254, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4576234380, "lat": 40.4211412, "lon": -3.6883524}, {"type": "node", "id": 4576234381, "lat": 40.4210986, "lon": -3.6884115}, {"type": "node", "id": 4576234382, "lat": 40.4204291, "lon": -3.6873713}, {"type": "node", "id": 4576234383, "lat": 40.4204444, "lon": -3.6873465}, {"type": "node", "id": 4576234384, "lat": 40.4204572, "lon": -3.6873391}, {"type": "node", "id": 4576234385, "lat": 40.420495, "lon": -3.6873343}, {"type": "node", "id": 4576234386, "lat": 40.421092, "lon": -3.6872678}, {"type": "node", "id": 4576234387, "lat": 40.4210787, "lon": -3.6872535}, {"type": "node", "id": 4576234821, "lat": 40.4210757, "lon": -3.6871884, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234822, "lat": 40.4212195, "lon": -3.6871651, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234823, "lat": 40.421152, "lon": -3.6872625, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234824, "lat": 40.4211399, "lon": -3.6870764, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234825, "lat": 40.4210836, "lon": -3.685826}, {"type": "node", "id": 4576234826, "lat": 40.4210225, "lon": -3.6858777}, {"type": "node", "id": 4576234827, "lat": 40.4210748, "lon": -3.6858883, "tags": {"highway": "give_way", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576234828, "lat": 40.4211029, "lon": -3.6859527, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 4576288156, "lat": 40.4479662, "lon": -3.7148912}, {"type": "node", "id": 4576288157, "lat": 40.4481158, "lon": -3.7147783}, {"type": "node", "id": 4576288158, "lat": 40.4481605, "lon": -3.715396}, {"type": "node", "id": 4576288159, "lat": 40.4478117, "lon": -3.7145288}, {"type": "node", "id": 4576288160, "lat": 40.4476006, "lon": -3.7144395}, {"type": "node", "id": 4576291395, "lat": 40.4364777, "lon": -3.6902559, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4576291396, "lat": 40.4364347, "lon": -3.6902299}, {"type": "node", "id": 4576291397, "lat": 40.4365522, "lon": -3.6902955}, {"type": "node", "id": 4576291398, "lat": 40.4364521, "lon": -3.6906583}, {"type": "node", "id": 4576291399, "lat": 40.4364327, "lon": -3.6901836}, {"type": "node", "id": 4576291400, "lat": 40.436398, "lon": -3.6901232}, {"type": "node", "id": 4576291401, "lat": 40.4359172, "lon": -3.6897893}, {"type": "node", "id": 4583258813, "lat": 40.4354853, "lon": -3.7167269}, {"type": "node", "id": 4583258814, "lat": 40.4354266, "lon": -3.7167282}, {"type": "node", "id": 4583258815, "lat": 40.4355396, "lon": -3.7165956}, {"type": "node", "id": 4583258816, "lat": 40.4355408, "lon": -3.71665}, {"type": "node", "id": 4583258817, "lat": 40.4362077, "lon": -3.7166596}, {"type": "node", "id": 4583258818, "lat": 40.4364896, "lon": -3.7165318}, {"type": "node", "id": 4583258819, "lat": 40.4364921, "lon": -3.7165888}, {"type": "node", "id": 4583258820, "lat": 40.4364878, "lon": -3.716489}, {"type": "node", "id": 4583258873, "lat": 40.4364307, "lon": -3.7154808}, {"type": "node", "id": 4583258874, "lat": 40.4364537, "lon": -3.715501}, {"type": "node", "id": 4583258875, "lat": 40.4364634, "lon": -3.7155248}, {"type": "node", "id": 4583258876, "lat": 40.4365067, "lon": -3.7164522}, {"type": "node", "id": 4583258877, "lat": 40.4364969, "lon": -3.7164797}, {"type": "node", "id": 4583258878, "lat": 40.4364781, "lon": -3.7164989}, {"type": "node", "id": 4583258879, "lat": 40.4355176, "lon": -3.7165383}, {"type": "node", "id": 4583258880, "lat": 40.43551, "lon": -3.7165182}, {"type": "node", "id": 4583270505, "lat": 40.4365429, "lon": -3.7164505}, {"type": "node", "id": 4583270506, "lat": 40.436572, "lon": -3.7164491}, {"type": "node", "id": 4583282626, "lat": 40.4399776, "lon": -3.7187302, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 4583282663, "lat": 40.4394974, "lon": -3.7180148}, {"type": "node", "id": 4583282671, "lat": 40.4392682, "lon": -3.7180098}, {"type": "node", "id": 4583282673, "lat": 40.4390178, "lon": -3.7181394}, {"type": "node", "id": 4583282677, "lat": 40.4376079, "lon": -3.7197872}, {"type": "node", "id": 4583284263, "lat": 40.4390559, "lon": -3.7129954}, {"type": "node", "id": 4583287789, "lat": 40.4366522, "lon": -3.7169187}, {"type": "node", "id": 4583287791, "lat": 40.4366411, "lon": -3.7169513}, {"type": "node", "id": 4583287794, "lat": 40.4366377, "lon": -3.7168916}, {"type": "node", "id": 4591425746, "lat": 40.4358908, "lon": -3.6999427, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4591425747, "lat": 40.4366971, "lon": -3.7001306, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4591902758, "lat": 40.4331761, "lon": -3.7118577}, {"type": "node", "id": 4591902759, "lat": 40.4331588, "lon": -3.7119113}, {"type": "node", "id": 4591902760, "lat": 40.4331557, "lon": -3.7119529}, {"type": "node", "id": 4591902761, "lat": 40.4331761, "lon": -3.7120012}, {"type": "node", "id": 4591902762, "lat": 40.4331516, "lon": -3.7120562}, {"type": "node", "id": 4591902763, "lat": 40.4331996, "lon": -3.712032}, {"type": "node", "id": 4591902764, "lat": 40.4332435, "lon": -3.7120481}, {"type": "node", "id": 4591902765, "lat": 40.4332935, "lon": -3.7120226}, {"type": "node", "id": 4591902766, "lat": 40.4333435, "lon": -3.7120374}, {"type": "node", "id": 4591902767, "lat": 40.4333149, "lon": -3.7119931}, {"type": "node", "id": 4591902768, "lat": 40.4333282, "lon": -3.7119569}, {"type": "node", "id": 4591902769, "lat": 40.4333282, "lon": -3.7119234}, {"type": "node", "id": 4591902770, "lat": 40.4333119, "lon": -3.7118657}, {"type": "node", "id": 4591902771, "lat": 40.4332721, "lon": -3.7118322}, {"type": "node", "id": 4591902772, "lat": 40.433218, "lon": -3.7118335}, {"type": "node", "id": 4591902773, "lat": 40.4333435, "lon": -3.7118268}, {"type": "node", "id": 4591902774, "lat": 40.4333803, "lon": -3.7117946}, {"type": "node", "id": 4591902775, "lat": 40.4334078, "lon": -3.7117692}, {"type": "node", "id": 4591902776, "lat": 40.4334221, "lon": -3.7117276}, {"type": "node", "id": 4591902777, "lat": 40.4334203, "lon": -3.7116628}, {"type": "node", "id": 4591902895, "lat": 40.4333205, "lon": -3.7120394}, {"type": "node", "id": 4591902896, "lat": 40.4333359, "lon": -3.7120139}, {"type": "node", "id": 4591902897, "lat": 40.4331792, "lon": -3.7120448}, {"type": "node", "id": 4591902898, "lat": 40.4331628, "lon": -3.712026}, {"type": "node", "id": 4591902899, "lat": 40.4332399, "lon": -3.7118288}, {"type": "node", "id": 4591902900, "lat": 40.4330897, "lon": -3.7117834}, {"type": "node", "id": 4591902901, "lat": 40.4332226, "lon": -3.7120414}, {"type": "node", "id": 4595952174, "lat": 40.4378233, "lon": -3.6870308}, {"type": "node", "id": 4599011690, "lat": 40.4286958, "lon": -3.7196576}, {"type": "node", "id": 4599011691, "lat": 40.4282473, "lon": -3.7192329}, {"type": "node", "id": 4599011692, "lat": 40.4283658, "lon": -3.718971}, {"type": "node", "id": 4599011693, "lat": 40.4282738, "lon": -3.7191743}, {"type": "node", "id": 4599011694, "lat": 40.4281898, "lon": -3.7191158}, {"type": "node", "id": 4603975784, "lat": 40.4263855, "lon": -3.6851482, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4603975785, "lat": 40.426349, "lon": -3.6851501}, {"type": "node", "id": 4604349217, "lat": 40.4395461, "lon": -3.6902985}, {"type": "node", "id": 4604349218, "lat": 40.4394142, "lon": -3.6901041}, {"type": "node", "id": 4604349219, "lat": 40.4392847, "lon": -3.6900858}, {"type": "node", "id": 4626597047, "lat": 40.4328944, "lon": -3.6908131, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597048, "lat": 40.4328487, "lon": -3.6908106}, {"type": "node", "id": 4626597049, "lat": 40.4328699, "lon": -3.6902396}, {"type": "node", "id": 4626597050, "lat": 40.4328454, "lon": -3.6908981}, {"type": "node", "id": 4626597051, "lat": 40.433204, "lon": -3.6909882}, {"type": "node", "id": 4626597052, "lat": 40.4331858, "lon": -3.6910101}, {"type": "node", "id": 4626597053, "lat": 40.4327805, "lon": -3.6909831}, {"type": "node", "id": 4626597054, "lat": 40.4327576, "lon": -3.6909799}, {"type": "node", "id": 4626597055, "lat": 40.4329223, "lon": -3.6910793}, {"type": "node", "id": 4626597056, "lat": 40.4328765, "lon": -3.6909521, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 4626597057, "lat": 40.4329184, "lon": -3.6909526, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4626597058, "lat": 40.432972, "lon": -3.6909532}, {"type": "node", "id": 4626597059, "lat": 40.4329546, "lon": -3.690953, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597060, "lat": 40.432847, "lon": -3.6909517, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597061, "lat": 40.4330893, "lon": -3.6909545}, {"type": "node", "id": 4626597062, "lat": 40.4326617, "lon": -3.6914106}, {"type": "node", "id": 4626597063, "lat": 40.4326641, "lon": -3.6911387}, {"type": "node", "id": 4626597064, "lat": 40.4327465, "lon": -3.6910101}, {"type": "node", "id": 4626597065, "lat": 40.4328189, "lon": -3.6909648}, {"type": "node", "id": 4626597066, "lat": 40.4331052, "lon": -3.6909547}, {"type": "node", "id": 4626597067, "lat": 40.4331394, "lon": -3.6909192}, {"type": "node", "id": 4626597068, "lat": 40.4332979, "lon": -3.6913692}, {"type": "node", "id": 4626597069, "lat": 40.4332986, "lon": -3.6913913}, {"type": "node", "id": 4626597070, "lat": 40.4331181, "lon": -3.6912296}, {"type": "node", "id": 4626597071, "lat": 40.4332901, "lon": -3.6911388}, {"type": "node", "id": 4626597072, "lat": 40.4330649, "lon": -3.6905214, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597073, "lat": 40.4331038, "lon": -3.6905218, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597074, "lat": 40.4332527, "lon": -3.6901903}, {"type": "node", "id": 4626597075, "lat": 40.4331333, "lon": -3.690193}, {"type": "node", "id": 4626597076, "lat": 40.433119, "lon": -3.6901963}, {"type": "node", "id": 4626597077, "lat": 40.4331134, "lon": -3.6902131}, {"type": "node", "id": 4626597078, "lat": 40.4331088, "lon": -3.6906241}, {"type": "node", "id": 4626597079, "lat": 40.4330924, "lon": -3.6908655}, {"type": "node", "id": 4626597080, "lat": 40.4331006, "lon": -3.6908967}, {"type": "node", "id": 4626597081, "lat": 40.4331312, "lon": -3.6909128}, {"type": "node", "id": 4626597082, "lat": 40.4331761, "lon": -3.6909477}, {"type": "node", "id": 4626597083, "lat": 40.4332241, "lon": -3.6910174}, {"type": "node", "id": 4626597084, "lat": 40.433268, "lon": -3.6910952}, {"type": "node", "id": 4626597085, "lat": 40.4332926, "lon": -3.6912117, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597086, "lat": 40.4328653, "lon": -3.6908115, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4626597087, "lat": 40.4328962, "lon": -3.6868904}, {"type": "node", "id": 4626597088, "lat": 40.4329056, "lon": -3.6869391}, {"type": "node", "id": 4626599489, "lat": 40.4329209, "lon": -3.6872744}, {"type": "node", "id": 4626599490, "lat": 40.4329495, "lon": -3.6874367}, {"type": "node", "id": 4626599491, "lat": 40.4329648, "lon": -3.6875708}, {"type": "node", "id": 4626599492, "lat": 40.4329842, "lon": -3.6879315}, {"type": "node", "id": 4626599493, "lat": 40.4329955, "lon": -3.6883942}, {"type": "node", "id": 4626599494, "lat": 40.4329914, "lon": -3.6886075}, {"type": "node", "id": 4626599495, "lat": 40.4329852, "lon": -3.6887617}, {"type": "node", "id": 4626599496, "lat": 40.4329505, "lon": -3.6895167}, {"type": "node", "id": 4626599497, "lat": 40.4329026, "lon": -3.6908136}, {"type": "node", "id": 4626599498, "lat": 40.4331108, "lon": -3.6905219}, {"type": "node", "id": 4626599499, "lat": 40.4330516, "lon": -3.6905212}, {"type": "node", "id": 4626599500, "lat": 40.4330506, "lon": -3.6904743}, {"type": "node", "id": 4626599501, "lat": 40.43307, "lon": -3.6900036}, {"type": "node", "id": 4626599502, "lat": 40.4330904, "lon": -3.6893799}, {"type": "node", "id": 4626599503, "lat": 40.4331108, "lon": -3.6888623}, {"type": "node", "id": 4626599504, "lat": 40.43312, "lon": -3.6885096}, {"type": "node", "id": 4626599505, "lat": 40.433121, "lon": -3.6882118}, {"type": "node", "id": 4626599506, "lat": 40.4331098, "lon": -3.6878846}, {"type": "node", "id": 4626599507, "lat": 40.4330924, "lon": -3.6874756}, {"type": "node", "id": 4626599508, "lat": 40.4330839, "lon": -3.6868751}, {"type": "node", "id": 4627327426, "lat": 40.4377651, "lon": -3.6880648, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4627367186, "lat": 40.4300635, "lon": -3.7045918, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4627367188, "lat": 40.4300861, "lon": -3.7045868, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4627368189, "lat": 40.4301234, "lon": -3.704627, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 4627368190, "lat": 40.4300724, "lon": -3.7046355}, {"type": "node", "id": 4627368191, "lat": 40.4301861, "lon": -3.7046147}, {"type": "node", "id": 4627368192, "lat": 40.4300557, "lon": -3.7045474}, {"type": "node", "id": 4627368193, "lat": 40.4301025, "lon": -3.7047961}, {"type": "node", "id": 4627368194, "lat": 40.4298106, "lon": -3.7046821}, {"type": "node", "id": 4629861375, "lat": 40.4271386, "lon": -3.7040258}, {"type": "node", "id": 4629861377, "lat": 40.4270146, "lon": -3.7036413}, {"type": "node", "id": 4630240420, "lat": 40.4417957, "lon": -3.7171803}, {"type": "node", "id": 4630240421, "lat": 40.4417878, "lon": -3.7171224}, {"type": "node", "id": 4630240422, "lat": 40.4417658, "lon": -3.7170862}, {"type": "node", "id": 4630240423, "lat": 40.4417303, "lon": -3.7170551}, {"type": "node", "id": 4630240424, "lat": 40.4416862, "lon": -3.7170406}, {"type": "node", "id": 4630240425, "lat": 40.4413933, "lon": -3.717051}, {"type": "node", "id": 4630240426, "lat": 40.4413551, "lon": -3.7170447}, {"type": "node", "id": 4630240427, "lat": 40.4412992, "lon": -3.7170272}, {"type": "node", "id": 4630240459, "lat": 40.4429243, "lon": -3.7190518}, {"type": "node", "id": 4630240460, "lat": 40.4429054, "lon": -3.7190585}, {"type": "node", "id": 4630240461, "lat": 40.4429363, "lon": -3.7190754}, {"type": "node", "id": 4630240462, "lat": 40.4429156, "lon": -3.7190223}, {"type": "node", "id": 4630240463, "lat": 40.4428601, "lon": -3.7173443}, {"type": "node", "id": 4630240464, "lat": 40.4427953, "lon": -3.717345, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "yes;zebra", "highway": "crossing", "kerb": "lowered", "source": "PNOA", "source:date": "2014", "tactile_paving": "yes"}}, {"type": "node", "id": 4630240465, "lat": 40.4435956, "lon": -3.7194088}, {"type": "node", "id": 4630240466, "lat": 40.4435795, "lon": -3.7194181}, {"type": "node", "id": 4630240467, "lat": 40.443563, "lon": -3.7194155}, {"type": "node", "id": 4630240468, "lat": 40.4408881, "lon": -3.7179663}, {"type": "node", "id": 4630240469, "lat": 40.4408825, "lon": -3.7185758, "tags": {"barrier": "chain", "source": "survey"}}, {"type": "node", "id": 4630936736, "lat": 40.4346786, "lon": -3.6900932}, {"type": "node", "id": 4630936737, "lat": 40.4343612, "lon": -3.6900838}, {"type": "node", "id": 4631802305, "lat": 40.4267587, "lon": -3.7040982}, {"type": "node", "id": 4631802306, "lat": 40.426777, "lon": -3.7041706}, {"type": "node", "id": 4631802307, "lat": 40.4268148, "lon": -3.7042028}, {"type": "node", "id": 4631802308, "lat": 40.4268557, "lon": -3.7042149}, {"type": "node", "id": 4631802309, "lat": 40.4269373, "lon": -3.7042055}, {"type": "node", "id": 4631802310, "lat": 40.42702, "lon": -3.7041948}, {"type": "node", "id": 4631802311, "lat": 40.4270773, "lon": -3.7041741}, {"type": "node", "id": 4631802312, "lat": 40.4271163, "lon": -3.7041439}, {"type": "node", "id": 4631802313, "lat": 40.4271392, "lon": -3.7041}, {"type": "node", "id": 4631802314, "lat": 40.4271238, "lon": -3.7039769}, {"type": "node", "id": 4631802315, "lat": 40.4271015, "lon": -3.703953}, {"type": "node", "id": 4631802316, "lat": 40.4270688, "lon": -3.7039355}, {"type": "node", "id": 4631802317, "lat": 40.4270238, "lon": -3.7039355}, {"type": "node", "id": 4631802318, "lat": 40.4269716, "lon": -3.7039418}, {"type": "node", "id": 4631802319, "lat": 40.4269146, "lon": -3.7039482}, {"type": "node", "id": 4631802320, "lat": 40.4268587, "lon": -3.703953}, {"type": "node", "id": 4631802321, "lat": 40.4268041, "lon": -3.7039785}, {"type": "node", "id": 4631802322, "lat": 40.4267737, "lon": -3.7040184}, {"type": "node", "id": 4631802323, "lat": 40.4270576, "lon": -3.7041835}, {"type": "node", "id": 4631802324, "lat": 40.4270352, "lon": -3.7039355}, {"type": "node", "id": 4631802325, "lat": 40.426848, "lon": -3.7039577}, {"type": "node", "id": 4631802326, "lat": 40.4268705, "lon": -3.7042122}, {"type": "node", "id": 4631802327, "lat": 40.4270318, "lon": -3.703852}, {"type": "node", "id": 4633369992, "lat": 40.4339425, "lon": -3.6948445}, {"type": "node", "id": 4633369993, "lat": 40.433906, "lon": -3.6949542, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4633502235, "lat": 40.4364732, "lon": -3.7129807}, {"type": "node", "id": 4633502248, "lat": 40.4391539, "lon": -3.712941}, {"type": "node", "id": 4633502249, "lat": 40.4391559, "lon": -3.7130079}, {"type": "node", "id": 4633502250, "lat": 40.4389339, "lon": -3.7130046}, {"type": "node", "id": 4633502251, "lat": 40.4389328, "lon": -3.7129741}, {"type": "node", "id": 4633502252, "lat": 40.4388555, "lon": -3.7129239}, {"type": "node", "id": 4633502253, "lat": 40.4388551, "lon": -3.7128663}, {"type": "node", "id": 4633502260, "lat": 40.4363151, "lon": -3.711449, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 4633502261, "lat": 40.4363606, "lon": -3.711445, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 4633502262, "lat": 40.4362817, "lon": -3.711452}, {"type": "node", "id": 4633502263, "lat": 40.4362704, "lon": -3.711453}, {"type": "node", "id": 4633502264, "lat": 40.4363811, "lon": -3.711418}, {"type": "node", "id": 4633502265, "lat": 40.4363896, "lon": -3.7114063}, {"type": "node", "id": 4633502266, "lat": 40.4364026, "lon": -3.7113959}, {"type": "node", "id": 4633502267, "lat": 40.437505, "lon": -3.7113146}, {"type": "node", "id": 4633502268, "lat": 40.4375208, "lon": -3.7113642}, {"type": "node", "id": 4633502269, "lat": 40.4375728, "lon": -3.7128642}, {"type": "node", "id": 4633502270, "lat": 40.4375601, "lon": -3.7128736}, {"type": "node", "id": 4633502271, "lat": 40.4364526, "lon": -3.7129366}, {"type": "node", "id": 4633502272, "lat": 40.436447, "lon": -3.7129185}, {"type": "node", "id": 4633502273, "lat": 40.4363718, "lon": -3.7114439}, {"type": "node", "id": 4633502310, "lat": 40.437623, "lon": -3.7113155}, {"type": "node", "id": 4633502311, "lat": 40.4375205, "lon": -3.7111314, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4633502312, "lat": 40.4375865, "lon": -3.7111264, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4633502313, "lat": 40.4375016, "lon": -3.7111328}, {"type": "node", "id": 4633502314, "lat": 40.4376147, "lon": -3.7111253}, {"type": "node", "id": 4633502315, "lat": 40.4374815, "lon": -3.7112676, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4633502316, "lat": 40.4374774, "lon": -3.711183, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4633502317, "lat": 40.4374766, "lon": -3.7111664}, {"type": "node", "id": 4633502318, "lat": 40.4374833, "lon": -3.7112985}, {"type": "node", "id": 4633502319, "lat": 40.4375486, "lon": -3.7113382, "tags": {"barrier": "kerb", "kerb": "raised"}}, {"type": "node", "id": 4633502320, "lat": 40.4375966, "lon": -3.7113338, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4633502321, "lat": 40.4375175, "lon": -3.711341}, {"type": "node", "id": 4633502322, "lat": 40.4376216, "lon": -3.7113315}, {"type": "node", "id": 4633524911, "lat": 40.4363407, "lon": -3.7100758}, {"type": "node", "id": 4633524912, "lat": 40.4363456, "lon": -3.7101382}, {"type": "node", "id": 4633524913, "lat": 40.4363622, "lon": -3.7112308}, {"type": "node", "id": 4633524914, "lat": 40.4363173, "lon": -3.7102611}, {"type": "node", "id": 4633524915, "lat": 40.4363265, "lon": -3.710233}, {"type": "node", "id": 4637022777, "lat": 40.4374348, "lon": -3.7099661}, {"type": "node", "id": 4637022778, "lat": 40.4374385, "lon": -3.7100694}, {"type": "node", "id": 4637022779, "lat": 40.4374341, "lon": -3.7099476}, {"type": "node", "id": 4637023401, "lat": 40.437456, "lon": -3.7101477}, {"type": "node", "id": 4637023402, "lat": 40.4374647, "lon": -3.7101585}, {"type": "node", "id": 4637023403, "lat": 40.4374974, "lon": -3.7111495}, {"type": "node", "id": 4637023404, "lat": 40.4374887, "lon": -3.7111596}, {"type": "node", "id": 4637023405, "lat": 40.4364062, "lon": -3.7112615}, {"type": "node", "id": 4637023406, "lat": 40.4363894, "lon": -3.7112595}, {"type": "node", "id": 4637023407, "lat": 40.436372, "lon": -3.7112501}, {"type": "node", "id": 4637125716, "lat": 40.4329185, "lon": -3.710238, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4637125717, "lat": 40.433011, "lon": -3.7103399, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637125719, "lat": 40.4339976, "lon": -3.7102861, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637125721, "lat": 40.4362542, "lon": -3.7102505, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4637125731, "lat": 40.4362712, "lon": -3.7112396}, {"type": "node", "id": 4637125732, "lat": 40.4363515, "lon": -3.7112318}, {"type": "node", "id": 4637125733, "lat": 40.436245, "lon": -3.7112421}, {"type": "node", "id": 4637125734, "lat": 40.4374722, "lon": -3.7085011}, {"type": "node", "id": 4637125735, "lat": 40.4374269, "lon": -3.7085012}, {"type": "node", "id": 4637125736, "lat": 40.4373879, "lon": -3.7085012}, {"type": "node", "id": 4637125745, "lat": 40.4375082, "lon": -3.708852}, {"type": "node", "id": 4637125752, "lat": 40.4375068, "lon": -3.7088196}, {"type": "node", "id": 4637277827, "lat": 40.4400364, "lon": -3.7098604, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637277828, "lat": 40.4400531, "lon": -3.7098102, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4637277829, "lat": 40.4400682, "lon": -3.7097648}, {"type": "node", "id": 4637277830, "lat": 40.4400172, "lon": -3.7099182, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4637277842, "lat": 40.4400272, "lon": -3.7105683}, {"type": "node", "id": 4637277843, "lat": 40.4400404, "lon": -3.7105307}, {"type": "node", "id": 4637277844, "lat": 40.4400127, "lon": -3.7104395}, {"type": "node", "id": 4637277845, "lat": 40.439894, "lon": -3.7103638}, {"type": "node", "id": 4637277849, "lat": 40.4398687, "lon": -3.7103481}, {"type": "node", "id": 4637277850, "lat": 40.4396374, "lon": -3.7109738}, {"type": "node", "id": 4637277851, "lat": 40.4396456, "lon": -3.7109577}, {"type": "node", "id": 4637277852, "lat": 40.4399646, "lon": -3.710086}, {"type": "node", "id": 4637277853, "lat": 40.4399656, "lon": -3.7100572}, {"type": "node", "id": 4637277854, "lat": 40.439962, "lon": -3.710023}, {"type": "node", "id": 4637277855, "lat": 40.4399523, "lon": -3.7099921}, {"type": "node", "id": 4637277856, "lat": 40.4399339, "lon": -3.7099599}, {"type": "node", "id": 4637277857, "lat": 40.4399115, "lon": -3.7099412}, {"type": "node", "id": 4637277858, "lat": 40.4390092, "lon": -3.7100149}, {"type": "node", "id": 4637277859, "lat": 40.4389949, "lon": -3.7100263}, {"type": "node", "id": 4637277860, "lat": 40.4390281, "lon": -3.7110181}, {"type": "node", "id": 4637277861, "lat": 40.4390386, "lon": -3.7110658}, {"type": "node", "id": 4637277862, "lat": 40.4390427, "lon": -3.711134}, {"type": "node", "id": 4637277863, "lat": 40.4395455, "lon": -3.7111944}, {"type": "node", "id": 4637277864, "lat": 40.4395438, "lon": -3.7111587}, {"type": "node", "id": 4637277865, "lat": 40.4395387, "lon": -3.7111413}, {"type": "node", "id": 4637277866, "lat": 40.4395274, "lon": -3.7111279}, {"type": "node", "id": 4637277867, "lat": 40.4395157, "lon": -3.7111191}, {"type": "node", "id": 4637277868, "lat": 40.4390783, "lon": -3.7111567}, {"type": "node", "id": 4637277869, "lat": 40.4390589, "lon": -3.7111607}, {"type": "node", "id": 4637277870, "lat": 40.4390452, "lon": -3.7111741}, {"type": "node", "id": 4637277871, "lat": 40.439036, "lon": -3.7111989}, {"type": "node", "id": 4637304251, "lat": 40.4393578, "lon": -3.7121983, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 4637304252, "lat": 40.4398059, "lon": -3.7106453}, {"type": "node", "id": 4637304253, "lat": 40.4399044, "lon": -3.7107134}, {"type": "node", "id": 4637799990, "lat": 40.4360641, "lon": -3.7056249}, {"type": "node", "id": 4637799991, "lat": 40.4364811, "lon": -3.7055911}, {"type": "node", "id": 4637799992, "lat": 40.4365362, "lon": -3.705575}, {"type": "node", "id": 4637805030, "lat": 40.4366715, "lon": -3.7169329}, {"type": "node", "id": 4637805031, "lat": 40.4366643, "lon": -3.7168095}, {"type": "node", "id": 4637805032, "lat": 40.4371104, "lon": -3.7167813}, {"type": "node", "id": 4637805033, "lat": 40.4371386, "lon": -3.7169132}, {"type": "node", "id": 4637805034, "lat": 40.436697, "lon": -3.7169516}, {"type": "node", "id": 4637824948, "lat": 40.4349498, "lon": -3.7068587, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4637824949, "lat": 40.4351167, "lon": -3.7087109, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824950, "lat": 40.4350006, "lon": -3.7085987, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824951, "lat": 40.4351042, "lon": -3.7084763, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824952, "lat": 40.435189, "lon": -3.708583, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4637824964, "lat": 40.4337485, "lon": -3.7057916}, {"type": "node", "id": 4637824965, "lat": 40.4337863, "lon": -3.7058909}, {"type": "node", "id": 4642427914, "lat": 40.4309159, "lon": -3.69715}, {"type": "node", "id": 4642427915, "lat": 40.4309438, "lon": -3.6971472}, {"type": "node", "id": 4642427916, "lat": 40.4308995, "lon": -3.6971997}, {"type": "node", "id": 4642427917, "lat": 40.4308287, "lon": -3.6978667}, {"type": "node", "id": 4642427918, "lat": 40.4318799, "lon": -3.6983079}, {"type": "node", "id": 4642427919, "lat": 40.4308459, "lon": -3.6979127}, {"type": "node", "id": 4642427920, "lat": 40.4318881, "lon": -3.6982868}, {"type": "node", "id": 4642427921, "lat": 40.4322104, "lon": -3.6976968}, {"type": "node", "id": 4642427922, "lat": 40.4322154, "lon": -3.6977625}, {"type": "node", "id": 4642427923, "lat": 40.4322525, "lon": -3.6978038}, {"type": "node", "id": 4642427924, "lat": 40.4324512, "lon": -3.6980125}, {"type": "node", "id": 4642427925, "lat": 40.4322951, "lon": -3.69783}, {"type": "node", "id": 4642427967, "lat": 40.431901, "lon": -3.6983829}, {"type": "node", "id": 4643041852, "lat": 40.4304526, "lon": -3.6998672}, {"type": "node", "id": 4643041853, "lat": 40.4303697, "lon": -3.6998453}, {"type": "node", "id": 4643041854, "lat": 40.4295324, "lon": -3.6996097}, {"type": "node", "id": 4643041855, "lat": 40.4295089, "lon": -3.6995909}, {"type": "node", "id": 4643041856, "lat": 40.4294989, "lon": -3.6995581}, {"type": "node", "id": 4643041857, "lat": 40.4306144, "lon": -3.699337}, {"type": "node", "id": 4643041858, "lat": 40.4296057, "lon": -3.6988446}, {"type": "node", "id": 4643041859, "lat": 40.4295817, "lon": -3.698847}, {"type": "node", "id": 4643041860, "lat": 40.4295578, "lon": -3.6988859}, {"type": "node", "id": 4643041861, "lat": 40.4295671, "lon": -3.6988601}, {"type": "node", "id": 4643041862, "lat": 40.4295417, "lon": -3.6988343}, {"type": "node", "id": 4643041865, "lat": 40.4305918, "lon": -3.69982}, {"type": "node", "id": 4643041866, "lat": 40.4306086, "lon": -3.6993704}, {"type": "node", "id": 4643041867, "lat": 40.4308526, "lon": -3.6994727}, {"type": "node", "id": 4643041868, "lat": 40.4308612, "lon": -3.6995163}, {"type": "node", "id": 4643041869, "lat": 40.4308809, "lon": -3.699491}, {"type": "node", "id": 4643041870, "lat": 40.4308619, "lon": -3.6994952}, {"type": "node", "id": 4643041871, "lat": 40.4306897, "lon": -3.6997205}, {"type": "node", "id": 4643041872, "lat": 40.4304896, "lon": -3.6998219}, {"type": "node", "id": 4643041873, "lat": 40.4305308, "lon": -3.6998171}, {"type": "node", "id": 4643041884, "lat": 40.4326597, "lon": -3.6979, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4643041885, "lat": 40.4326235, "lon": -3.6979062}, {"type": "node", "id": 4643041886, "lat": 40.4325761, "lon": -3.6979227}, {"type": "node", "id": 4643041887, "lat": 40.4325367, "lon": -3.6979379}, {"type": "node", "id": 4643041889, "lat": 40.4314485, "lon": -3.7000395}, {"type": "node", "id": 4643041890, "lat": 40.4314022, "lon": -3.7000162}, {"type": "node", "id": 4643041891, "lat": 40.4314799, "lon": -3.6997275}, {"type": "node", "id": 4643041904, "lat": 40.430819, "lon": -3.70002}, {"type": "node", "id": 4643041905, "lat": 40.4308609, "lon": -3.7000509}, {"type": "node", "id": 4643041907, "lat": 40.4313362, "lon": -3.7002646}, {"type": "node", "id": 4643041908, "lat": 40.4314836, "lon": -3.6997139}, {"type": "node", "id": 4643041909, "lat": 40.4314765, "lon": -3.6996858}, {"type": "node", "id": 4643041910, "lat": 40.4311797, "lon": -3.6995588}, {"type": "node", "id": 4643041911, "lat": 40.4308533, "lon": -3.7000068}, {"type": "node", "id": 4643041912, "lat": 40.4308512, "lon": -3.6999476}, {"type": "node", "id": 4650310634, "lat": 40.4338954, "lon": -3.6901394}, {"type": "node", "id": 4659927117, "lat": 40.4508529, "lon": -3.6921674}, {"type": "node", "id": 4659927118, "lat": 40.449202, "lon": -3.6920957}, {"type": "node", "id": 4659927119, "lat": 40.4493565, "lon": -3.6920972}, {"type": "node", "id": 4659927120, "lat": 40.4491456, "lon": -3.6915108}, {"type": "node", "id": 4659927121, "lat": 40.4491906, "lon": -3.6918302}, {"type": "node", "id": 4659927122, "lat": 40.4482967, "lon": -3.6944686}, {"type": "node", "id": 4659927123, "lat": 40.4490108, "lon": -3.6895047}, {"type": "node", "id": 4659927124, "lat": 40.4483139, "lon": -3.6944312}, {"type": "node", "id": 4659927126, "lat": 40.450936, "lon": -3.6941499}, {"type": "node", "id": 4659927127, "lat": 40.4493683, "lon": -3.6919648}, {"type": "node", "id": 4659927128, "lat": 40.4522675, "lon": -3.6936952}, {"type": "node", "id": 4659927131, "lat": 40.4508961, "lon": -3.6941473}, {"type": "node", "id": 4659927132, "lat": 40.4508145, "lon": -3.6921921}, {"type": "node", "id": 4659927133, "lat": 40.4490507, "lon": -3.6894911}, {"type": "node", "id": 4659927134, "lat": 40.4507737, "lon": -3.6920741}, {"type": "node", "id": 4659927135, "lat": 40.4519912, "lon": -3.6920885}, {"type": "node", "id": 4659927136, "lat": 40.4507354, "lon": -3.6921103}, {"type": "node", "id": 4659927137, "lat": 40.4490834, "lon": -3.6911289}, {"type": "node", "id": 4659927138, "lat": 40.4493295, "lon": -3.6920321}, {"type": "node", "id": 4659927139, "lat": 40.4508128, "lon": -3.6921087}, {"type": "node", "id": 4659927140, "lat": 40.4510579, "lon": -3.6939052}, {"type": "node", "id": 4666869632, "lat": 40.4481588, "lon": -3.6932271}, {"type": "node", "id": 4666869633, "lat": 40.4494193, "lon": -3.6945257}, {"type": "node", "id": 4666869634, "lat": 40.4483392, "lon": -3.694509}, {"type": "node", "id": 4666869635, "lat": 40.4481974, "lon": -3.6932741}, {"type": "node", "id": 4666869636, "lat": 40.448139, "lon": -3.6932511}, {"type": "node", "id": 4666869637, "lat": 40.4474003, "lon": -3.6929721}, {"type": "node", "id": 4666869638, "lat": 40.4478149, "lon": -3.6929778}, {"type": "node", "id": 4666869639, "lat": 40.4493696, "lon": -3.6945153}, {"type": "node", "id": 4666869640, "lat": 40.4490629, "lon": -3.6921841}, {"type": "node", "id": 4666869641, "lat": 40.4483616, "lon": -3.6944765}, {"type": "node", "id": 4666869642, "lat": 40.4482772, "lon": -3.6943885}, {"type": "node", "id": 4666869644, "lat": 40.4495948, "lon": -3.6945108}, {"type": "node", "id": 4666869645, "lat": 40.4482252, "lon": -3.6944022}, {"type": "node", "id": 4666869646, "lat": 40.4482165, "lon": -3.6932316}, {"type": "node", "id": 4666869647, "lat": 40.4482477, "lon": -3.6944077}, {"type": "node", "id": 4666869648, "lat": 40.4481611, "lon": -3.6932821}, {"type": "node", "id": 4666869649, "lat": 40.4482442, "lon": -3.6932425}, {"type": "node", "id": 4666869650, "lat": 40.4482259, "lon": -3.6932857}, {"type": "node", "id": 4666869653, "lat": 40.4482483, "lon": -3.6943674}, {"type": "node", "id": 4666869655, "lat": 40.4482843, "lon": -3.6945253}, {"type": "node", "id": 4666869656, "lat": 40.4495416, "lon": -3.6945183}, {"type": "node", "id": 4666869657, "lat": 40.4481886, "lon": -3.6944144, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 4666869658, "lat": 40.44819, "lon": -3.6944407}, {"type": "node", "id": 4666869659, "lat": 40.4481884, "lon": -3.6932736}, {"type": "node", "id": 4666869660, "lat": 40.4481232, "lon": -3.6944831}, {"type": "node", "id": 4666869661, "lat": 40.4477838, "lon": -3.6929897}, {"type": "node", "id": 4701273366, "lat": 40.4268561, "lon": -3.690278}, {"type": "node", "id": 4701287014, "lat": 40.4260176, "lon": -3.6904137}, {"type": "node", "id": 4701287015, "lat": 40.4261611, "lon": -3.6904656}, {"type": "node", "id": 4701287016, "lat": 40.4262763, "lon": -3.6899078}, {"type": "node", "id": 4701287021, "lat": 40.4347998, "lon": -3.6889648}, {"type": "node", "id": 4701292955, "lat": 40.4375379, "lon": -3.6907288}, {"type": "node", "id": 4733151408, "lat": 40.436127, "lon": -3.683426}, {"type": "node", "id": 4733151409, "lat": 40.436202, "lon": -3.6834199}, {"type": "node", "id": 4733151410, "lat": 40.4360849, "lon": -3.68338}, {"type": "node", "id": 4733151411, "lat": 40.4360675, "lon": -3.6831065}, {"type": "node", "id": 4733151425, "lat": 40.4362374, "lon": -3.6842042}, {"type": "node", "id": 4733151426, "lat": 40.4362446, "lon": -3.6833405}, {"type": "node", "id": 4733151427, "lat": 40.4374695, "lon": -3.6832411}, {"type": "node", "id": 4733163155, "lat": 40.4474435, "lon": -3.689176, "tags": {"highway": "crossing"}}, {"type": "node", "id": 4733163156, "lat": 40.4474059, "lon": -3.6892009}, {"type": "node", "id": 4733163157, "lat": 40.4474779, "lon": -3.6891531}, {"type": "node", "id": 4733163165, "lat": 40.4479343, "lon": -3.6888544}, {"type": "node", "id": 4733163166, "lat": 40.4473557, "lon": -3.6888853}, {"type": "node", "id": 4733163167, "lat": 40.4474522, "lon": -3.6891971, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4757946968, "lat": 40.4324515, "lon": -3.7191206, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4757946972, "lat": 40.4322785, "lon": -3.7176352, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4769240411, "lat": 40.4384844, "lon": -3.7201666}, {"type": "node", "id": 4769240412, "lat": 40.4385369, "lon": -3.720087}, {"type": "node", "id": 4769240413, "lat": 40.4386324, "lon": -3.7199351}, {"type": "node", "id": 4769240414, "lat": 40.438767, "lon": -3.7197256}, {"type": "node", "id": 4769240415, "lat": 40.438843, "lon": -3.7196044}, {"type": "node", "id": 4769240416, "lat": 40.4390949, "lon": -3.7192412}, {"type": "node", "id": 4769240417, "lat": 40.4392286, "lon": -3.7190602}, {"type": "node", "id": 4769240418, "lat": 40.4393827, "lon": -3.7187399}, {"type": "node", "id": 4769240419, "lat": 40.4394494, "lon": -3.7187181}, {"type": "node", "id": 4769240420, "lat": 40.4394877, "lon": -3.7186366}, {"type": "node", "id": 4769243621, "lat": 40.4395789, "lon": -3.7185789}, {"type": "node", "id": 4769243622, "lat": 40.4396448, "lon": -3.718595}, {"type": "node", "id": 4769243625, "lat": 40.4397483, "lon": -3.7183897}, {"type": "node", "id": 4769243626, "lat": 40.4396854, "lon": -3.7184378}, {"type": "node", "id": 4802617274, "lat": 40.4335845, "lon": -3.6911428}, {"type": "node", "id": 4808811223, "lat": 40.4490552, "lon": -3.718577}, {"type": "node", "id": 4808811224, "lat": 40.4491087, "lon": -3.7177231}, {"type": "node", "id": 4808839534, "lat": 40.4393922, "lon": -3.6927652, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4808864932, "lat": 40.4278151, "lon": -3.6964558}, {"type": "node", "id": 4808864933, "lat": 40.4280019, "lon": -3.6971176, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4808864935, "lat": 40.4285202, "lon": -3.699431}, {"type": "node", "id": 4819134930, "lat": 40.4287002, "lon": -3.7004771, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 4819134933, "lat": 40.4290519, "lon": -3.7018286}, {"type": "node", "id": 4823950344, "lat": 40.4390703, "lon": -3.6892531}, {"type": "node", "id": 4823950345, "lat": 40.4390363, "lon": -3.689136}, {"type": "node", "id": 4823950346, "lat": 40.4390093, "lon": -3.6891129}, {"type": "node", "id": 4823950347, "lat": 40.4387936, "lon": -3.6890683}, {"type": "node", "id": 4823975333, "lat": 40.4268742, "lon": -3.7093148, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 4823975335, "lat": 40.4268906, "lon": -3.7093135}, {"type": "node", "id": 4825301728, "lat": 40.4461974, "lon": -3.6922131}, {"type": "node", "id": 4825301729, "lat": 40.4463406, "lon": -3.6922109}, {"type": "node", "id": 4825301730, "lat": 40.4461856, "lon": -3.6949107}, {"type": "node", "id": 4825301731, "lat": 40.4463638, "lon": -3.6947895}, {"type": "node", "id": 4825301732, "lat": 40.444799, "lon": -3.685325}, {"type": "node", "id": 4827673941, "lat": 40.4243871, "lon": -3.709112, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing", "junction": "yes"}}, {"type": "node", "id": 4827701833, "lat": 40.4263481, "lon": -3.7111178, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4827701836, "lat": 40.4269239, "lon": -3.709402, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4827701837, "lat": 40.4258354, "lon": -3.709272, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4827701838, "lat": 40.4257224, "lon": -3.7091806, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4827701839, "lat": 40.4256817, "lon": -3.7093493}, {"type": "node", "id": 4827704136, "lat": 40.4273496, "lon": -3.7106014, "tags": {"entrance": "main"}}, {"type": "node", "id": 4833611535, "lat": 40.4298594, "lon": -3.6935755, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4833611536, "lat": 40.4298142, "lon": -3.6936421}, {"type": "node", "id": 4833611537, "lat": 40.4299347, "lon": -3.6934932}, {"type": "node", "id": 4833611543, "lat": 40.4305409, "lon": -3.6934589}, {"type": "node", "id": 4833611544, "lat": 40.4300031, "lon": -3.6935019}, {"type": "node", "id": 4833611545, "lat": 40.430245, "lon": -3.6931573}, {"type": "node", "id": 4840111215, "lat": 40.429213, "lon": -3.6872894}, {"type": "node", "id": 4840111216, "lat": 40.4283651, "lon": -3.6874404}, {"type": "node", "id": 4840111217, "lat": 40.4292844, "lon": -3.6872742, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4840111218, "lat": 40.429325, "lon": -3.6872681}, {"type": "node", "id": 4856142695, "lat": 40.4374989, "lon": -3.6986036, "tags": {"amenity": "vending_machine", "currency:EUR": "yes", "operator": "Ayuntamiento de Madrid", "payment:cash": "yes", "payment:mastercard": "yes", "payment:visa": "yes", "payment:visa_debit": "yes", "payment:visa_electron": "yes", "vending": "parking_tickets"}}, {"type": "node", "id": 4856152172, "lat": 40.4455406, "lon": -3.6956376, "tags": {"amenity": "vending_machine", "currency:EUR": "yes", "operator": "Ayuntamiento de Madrid", "payment:cash": "yes", "payment:mastercard": "yes", "payment:visa": "yes", "payment:visa_debit": "yes", "payment:visa_electron": "yes", "vending": "parking_tickets"}}, {"type": "node", "id": 4863086183, "lat": 40.4271146, "lon": -3.6990184}, {"type": "node", "id": 4884569835, "lat": 40.4482526, "lon": -3.6984778, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4884569836, "lat": 40.4481727, "lon": -3.6985705, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4889799235, "lat": 40.4511301, "lon": -3.7104382}, {"type": "node", "id": 4889799239, "lat": 40.451001, "lon": -3.7104742}, {"type": "node", "id": 4891641084, "lat": 40.4434424, "lon": -3.7227973}, {"type": "node", "id": 4891641085, "lat": 40.443425, "lon": -3.7227808}, {"type": "node", "id": 4891641086, "lat": 40.4434028, "lon": -3.7227719}, {"type": "node", "id": 4891641087, "lat": 40.4428862, "lon": -3.7226808}, {"type": "node", "id": 4891641088, "lat": 40.4428669, "lon": -3.7226858}, {"type": "node", "id": 4891641089, "lat": 40.4428553, "lon": -3.7226921}, {"type": "node", "id": 4891641090, "lat": 40.4428534, "lon": -3.7227073}, {"type": "node", "id": 4891641091, "lat": 40.4428563, "lon": -3.7227238}, {"type": "node", "id": 4891641092, "lat": 40.4427936, "lon": -3.7227656}, {"type": "node", "id": 4891641093, "lat": 40.4427753, "lon": -3.7227694}, {"type": "node", "id": 4891641094, "lat": 40.442758, "lon": -3.7227833}, {"type": "node", "id": 4891641095, "lat": 40.4427483, "lon": -3.7228061}, {"type": "node", "id": 4891641096, "lat": 40.4426442, "lon": -3.7237269}, {"type": "node", "id": 4891641097, "lat": 40.4435416, "lon": -3.7228543}, {"type": "node", "id": 4891641098, "lat": 40.44356, "lon": -3.722834}, {"type": "node", "id": 4891641099, "lat": 40.4435734, "lon": -3.7228251}, {"type": "node", "id": 4891641100, "lat": 40.4436101, "lon": -3.7228188}, {"type": "node", "id": 4891641101, "lat": 40.4455939, "lon": -3.7232783}, {"type": "node", "id": 4891641102, "lat": 40.4444577, "lon": -3.7228415}, {"type": "node", "id": 4891641103, "lat": 40.4444753, "lon": -3.7226413}, {"type": "node", "id": 4891641104, "lat": 40.443783, "lon": -3.7227134}, {"type": "node", "id": 4892388492, "lat": 40.4462118, "lon": -3.719929, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 4892388493, "lat": 40.4461721, "lon": -3.7198388, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 4892388494, "lat": 40.446162, "lon": -3.7198158}, {"type": "node", "id": 4892388495, "lat": 40.4462217, "lon": -3.7199526}, {"type": "node", "id": 4892388496, "lat": 40.4467093, "lon": -3.7195428}, {"type": "node", "id": 4892388497, "lat": 40.4466446, "lon": -3.7196411}, {"type": "node", "id": 4892388498, "lat": 40.4465852, "lon": -3.7196998}, {"type": "node", "id": 4892388499, "lat": 40.4464943, "lon": -3.7197738}, {"type": "node", "id": 4892388500, "lat": 40.4463667, "lon": -3.7198536}, {"type": "node", "id": 4892388501, "lat": 40.446306, "lon": -3.7198911}, {"type": "node", "id": 4892388502, "lat": 40.4463222, "lon": -3.7199318}, {"type": "node", "id": 4892388503, "lat": 40.4455907, "lon": -3.7207396}, {"type": "node", "id": 4892388504, "lat": 40.4456275, "lon": -3.7206314}, {"type": "node", "id": 4892388505, "lat": 40.4456667, "lon": -3.7205316}, {"type": "node", "id": 4892388506, "lat": 40.4457194, "lon": -3.7204239}, {"type": "node", "id": 4892388507, "lat": 40.4458005, "lon": -3.7203164}, {"type": "node", "id": 4892388508, "lat": 40.4458305, "lon": -3.7202725}, {"type": "node", "id": 4892388509, "lat": 40.4458606, "lon": -3.7202362}, {"type": "node", "id": 4892388510, "lat": 40.4459328, "lon": -3.7201634}, {"type": "node", "id": 4892388511, "lat": 40.4463158, "lon": -3.7198839}, {"type": "node", "id": 4892388512, "lat": 40.4456062, "lon": -3.7205616}, {"type": "node", "id": 4892388513, "lat": 40.4455768, "lon": -3.7208505}, {"type": "node", "id": 4892388514, "lat": 40.4455752, "lon": -3.720916}, {"type": "node", "id": 4892388515, "lat": 40.4455776, "lon": -3.7210363}, {"type": "node", "id": 4892388516, "lat": 40.4455874, "lon": -3.7211576}, {"type": "node", "id": 4892388517, "lat": 40.4456273, "lon": -3.7212595}, {"type": "node", "id": 4892388518, "lat": 40.4456809, "lon": -3.7214077}, {"type": "node", "id": 4892388519, "lat": 40.4464858, "lon": -3.7221896}, {"type": "node", "id": 4892388520, "lat": 40.4463263, "lon": -3.7217311}, {"type": "node", "id": 4892388721, "lat": 40.4463013, "lon": -3.7216891}, {"type": "node", "id": 4892388722, "lat": 40.4462751, "lon": -3.7216649}, {"type": "node", "id": 4892388723, "lat": 40.4458144, "lon": -3.7215525}, {"type": "node", "id": 4892388724, "lat": 40.4457872, "lon": -3.7215563}, {"type": "node", "id": 4892388725, "lat": 40.4457592, "lon": -3.7215803}, {"type": "node", "id": 4892388726, "lat": 40.4457493, "lon": -3.7216099}, {"type": "node", "id": 4892388727, "lat": 40.4457483, "lon": -3.7216483}, {"type": "node", "id": 4892388728, "lat": 40.445907, "lon": -3.7238603}, {"type": "node", "id": 4892392152, "lat": 40.4484383, "lon": -3.7252352}, {"type": "node", "id": 4892392153, "lat": 40.4484305, "lon": -3.7253054}, {"type": "node", "id": 4892392154, "lat": 40.4483915, "lon": -3.7255294}, {"type": "node", "id": 4909154221, "lat": 40.4287733, "lon": -3.7101938}, {"type": "node", "id": 4909154222, "lat": 40.4288547, "lon": -3.7101586}, {"type": "node", "id": 4909154223, "lat": 40.4287194, "lon": -3.7099876}, {"type": "node", "id": 4909154224, "lat": 40.4288041, "lon": -3.7099517}, {"type": "node", "id": 4909154230, "lat": 40.4284468, "lon": -3.710057}, {"type": "node", "id": 4909154231, "lat": 40.4284014, "lon": -3.7099346}, {"type": "node", "id": 4909154232, "lat": 40.4286462, "lon": -3.7099232}, {"type": "node", "id": 4909154233, "lat": 40.4286007, "lon": -3.7097995}, {"type": "node", "id": 4909695835, "lat": 40.4460196, "lon": -3.7141882}, {"type": "node", "id": 4909695836, "lat": 40.4463168, "lon": -3.7129874}, {"type": "node", "id": 4920630095, "lat": 40.4480707, "lon": -3.7170535}, {"type": "node", "id": 4920630096, "lat": 40.44893, "lon": -3.7164527}, {"type": "node", "id": 4920630097, "lat": 40.4490668, "lon": -3.7165533}, {"type": "node", "id": 4921021993, "lat": 40.4344172, "lon": -3.7106382}, {"type": "node", "id": 4921021994, "lat": 40.4346121, "lon": -3.7106221}, {"type": "node", "id": 4921021995, "lat": 40.434436, "lon": -3.7111614}, {"type": "node", "id": 4921021996, "lat": 40.4346372, "lon": -3.7111468}, {"type": "node", "id": 4921021997, "lat": 40.4345939, "lon": -3.710241}, {"type": "node", "id": 4921021998, "lat": 40.4346003, "lon": -3.7103746}, {"type": "node", "id": 4921021999, "lat": 40.43461, "lon": -3.710579}, {"type": "node", "id": 4921022000, "lat": 40.4346391, "lon": -3.7111874}, {"type": "node", "id": 4921022001, "lat": 40.4346486, "lon": -3.7113856}, {"type": "node", "id": 4921022002, "lat": 40.4346526, "lon": -3.7114703}, {"type": "node", "id": 4924651863, "lat": 40.437113, "lon": -3.7221189}, {"type": "node", "id": 4924651864, "lat": 40.4373161, "lon": -3.7225024}, {"type": "node", "id": 4928903257, "lat": 40.4474058, "lon": -3.7040567}, {"type": "node", "id": 4928918414, "lat": 40.4277166, "lon": -3.6963288, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4929425966, "lat": 40.435735, "lon": -3.7204621}, {"type": "node", "id": 4933405772, "lat": 40.4362018, "lon": -3.6852223}, {"type": "node", "id": 4933405773, "lat": 40.4361303, "lon": -3.6843924}, {"type": "node", "id": 4933405774, "lat": 40.4361653, "lon": -3.6844282}, {"type": "node", "id": 4933405775, "lat": 40.4362709, "lon": -3.6844192}, {"type": "node", "id": 4933405776, "lat": 40.4361243, "lon": -3.6842484}, {"type": "node", "id": 4933405777, "lat": 40.4361268, "lon": -3.684309, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4933407204, "lat": 40.4362489, "lon": -3.6842961, "tags": {"highway": "give_way"}}, {"type": "node", "id": 4945009664, "lat": 40.4348754, "lon": -3.6983423}, {"type": "node", "id": 4945009665, "lat": 40.4346873, "lon": -3.6984908}, {"type": "node", "id": 4949967220, "lat": 40.4396046, "lon": -3.6976203, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4949967421, "lat": 40.4398954, "lon": -3.6975982}, {"type": "node", "id": 4949967422, "lat": 40.4396117, "lon": -3.6977484}, {"type": "node", "id": 4951747255, "lat": 40.4225238, "lon": -3.6986691, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4955056567, "lat": 40.4438915, "lon": -3.7040492}, {"type": "node", "id": 4955056570, "lat": 40.4439065, "lon": -3.7047257}, {"type": "node", "id": 4955056571, "lat": 40.444294, "lon": -3.704957}, {"type": "node", "id": 4955056578, "lat": 40.4445484, "lon": -3.7049876}, {"type": "node", "id": 4955056580, "lat": 40.4454273, "lon": -3.7050709}, {"type": "node", "id": 4959669363, "lat": 40.4491133, "lon": -3.7160815, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 4959674872, "lat": 40.449762, "lon": -3.7155456}, {"type": "node", "id": 4959674880, "lat": 40.449919, "lon": -3.7152163}, {"type": "node", "id": 4959674896, "lat": 40.4494822, "lon": -3.7159565}, {"type": "node", "id": 4959674897, "lat": 40.4496149, "lon": -3.7157875}, {"type": "node", "id": 4983379109, "lat": 40.4372676, "lon": -3.7237493}, {"type": "node", "id": 4990990038, "lat": 40.449327, "lon": -3.6982553, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4990990039, "lat": 40.4498118, "lon": -3.6982187, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 4999318710, "lat": 40.4222606, "lon": -3.6919809}, {"type": "node", "id": 4999318711, "lat": 40.4222684, "lon": -3.6920102}, {"type": "node", "id": 4999318712, "lat": 40.4225565, "lon": -3.6918775}, {"type": "node", "id": 4999318713, "lat": 40.4225479, "lon": -3.6918451}, {"type": "node", "id": 4999318714, "lat": 40.4224138, "lon": -3.6919433}, {"type": "node", "id": 4999318715, "lat": 40.4223162, "lon": -3.6915694}, {"type": "node", "id": 4999318716, "lat": 40.4221759, "lon": -3.6916368}, {"type": "node", "id": 4999318717, "lat": 40.4224702, "lon": -3.6914955}, {"type": "node", "id": 4999318718, "lat": 40.4224254, "lon": -3.6912962}, {"type": "node", "id": 4999318719, "lat": 40.4224762, "lon": -3.6915226}, {"type": "node", "id": 4999318720, "lat": 40.4221821, "lon": -3.6916617}, {"type": "node", "id": 4999319321, "lat": 40.4221241, "lon": -3.6914284}, {"type": "node", "id": 5000379721, "lat": 40.4357046, "lon": -3.7196724, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5000631027, "lat": 40.4357869, "lon": -3.7192562, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5000654864, "lat": 40.435922, "lon": -3.7194987, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5000712440, "lat": 40.4357924, "lon": -3.7198367, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5001253641, "lat": 40.4331193, "lon": -3.7176622, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5002160585, "lat": 40.4341806, "lon": -3.7190265, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 04", "public_transport": "stop_position"}}, {"type": "node", "id": 5002237431, "lat": 40.4340671, "lon": -3.7189493, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 05", "public_transport": "stop_position"}}, {"type": "node", "id": 5002245430, "lat": 40.4343004, "lon": -3.7191083, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 03", "public_transport": "stop_position"}}, {"type": "node", "id": 5002571275, "lat": 40.4355241, "lon": -3.7200862, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5002571278, "lat": 40.4339079, "lon": -3.718841, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 06", "public_transport": "stop_position"}}, {"type": "node", "id": 5003613394, "lat": 40.4355857, "lon": -3.7196326, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003613395, "lat": 40.4356805, "lon": -3.7198044, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003613397, "lat": 40.4354285, "lon": -3.7198974, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003802453, "lat": 40.4353432, "lon": -3.719729, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003863730, "lat": 40.4345904, "lon": -3.7193053, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 01", "public_transport": "stop_position"}}, {"type": "node", "id": 5003912688, "lat": 40.4341536, "lon": -3.7194355, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 10", "public_transport": "stop_position"}}, {"type": "node", "id": 5003912690, "lat": 40.4351259, "lon": -3.7192998, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003967823, "lat": 40.4353989, "lon": -3.7192939, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5003967824, "lat": 40.4354956, "lon": -3.7194692, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343788, "lat": 40.4345832, "lon": -3.7203928, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343789, "lat": 40.4344111, "lon": -3.7207949, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5005343790, "lat": 40.4342815, "lon": -3.7210976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5006352946, "lat": 40.4344741, "lon": -3.7191731, "tags": {"bus": "yes", "name": "Moncloa", "public_transport": "stop_position"}}, {"type": "node", "id": 5006352965, "lat": 40.4341691, "lon": -3.72136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5006946998, "lat": 40.4305738, "lon": -3.6889831}, {"type": "node", "id": 5007730069, "lat": 40.4281989, "lon": -3.6950985, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5007921393, "lat": 40.4352024, "lon": -3.7194509, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 5008346925, "lat": 40.4344102, "lon": -3.7191827, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 02", "public_transport": "stop_position"}}, {"type": "node", "id": 5063895981, "lat": 40.4307127, "lon": -3.6969952}, {"type": "node", "id": 5063895982, "lat": 40.4347328, "lon": -3.6988019}, {"type": "node", "id": 5063895983, "lat": 40.4281807, "lon": -3.6959008}, {"type": "node", "id": 5063895984, "lat": 40.4457676, "lon": -3.7034984, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing"}}, {"type": "node", "id": 5063895985, "lat": 40.4323073, "lon": -3.697707}, {"type": "node", "id": 5063895986, "lat": 40.4348135, "lon": -3.6989934}, {"type": "node", "id": 5063895987, "lat": 40.4324954, "lon": -3.697882}, {"type": "node", "id": 5063895988, "lat": 40.4423436, "lon": -3.7020165}, {"type": "node", "id": 5063895991, "lat": 40.4446814, "lon": -3.7030318, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 5063895992, "lat": 40.4323255, "lon": -3.6977742}, {"type": "node", "id": 5063895994, "lat": 40.4323145, "lon": -3.6977327}, {"type": "node", "id": 5063895995, "lat": 40.4344151, "lon": -3.6986125, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5063895996, "lat": 40.4467441, "lon": -3.7037932}, {"type": "node", "id": 5063895997, "lat": 40.4297158, "lon": -3.6965656}, {"type": "node", "id": 5063895998, "lat": 40.4365157, "lon": -3.6994803}, {"type": "node", "id": 5063895999, "lat": 40.4280977, "lon": -3.6959082}, {"type": "node", "id": 5063896000, "lat": 40.443562, "lon": -3.7025428, "tags": {"direction": "both", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 5063896001, "lat": 40.4336362, "lon": -3.6982609}, {"type": "node", "id": 5063896002, "lat": 40.4349492, "lon": -3.6990501}, {"type": "node", "id": 5063896004, "lat": 40.446567, "lon": -3.7037994}, {"type": "node", "id": 5063896005, "lat": 40.4316837, "lon": -3.6974259}, {"type": "node", "id": 5063896006, "lat": 40.4389222, "lon": -3.7005396, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5063896007, "lat": 40.4351302, "lon": -3.6988777}, {"type": "node", "id": 5063896008, "lat": 40.4286835, "lon": -3.6961193, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5063896009, "lat": 40.4324548, "lon": -3.6979438}, {"type": "node", "id": 5063896010, "lat": 40.4292427, "lon": -3.6963612}, {"type": "node", "id": 5063896011, "lat": 40.4327459, "lon": -3.697883}, {"type": "node", "id": 5068655472, "lat": 40.4381337, "lon": -3.6908202}, {"type": "node", "id": 5068655473, "lat": 40.4377203, "lon": -3.6860847}, {"type": "node", "id": 5068655474, "lat": 40.4378083, "lon": -3.6882595}, {"type": "node", "id": 5069264830, "lat": 40.4382846, "lon": -3.6985432, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264831, "lat": 40.4385196, "lon": -3.6985974, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264832, "lat": 40.4384289, "lon": -3.6994405, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5069264833, "lat": 40.438231, "lon": -3.6978142, "tags": {"crossing": "traffic_signals;marked", "highway": "crossing"}}, {"type": "node", "id": 5069264834, "lat": 40.4384732, "lon": -3.6977938, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5069264835, "lat": 40.4383555, "lon": -3.6979723, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5069264836, "lat": 40.4381623, "lon": -3.6962985, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5069264837, "lat": 40.438402, "lon": -3.6962795, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5069264838, "lat": 40.4382867, "lon": -3.6964151, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5091750318, "lat": 40.4465413, "lon": -3.7120954, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5162768430, "lat": 40.4434882, "lon": -3.6877347}, {"type": "node", "id": 5162768431, "lat": 40.442855, "lon": -3.6859943, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5162768434, "lat": 40.443411, "lon": -3.6877729, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5162768435, "lat": 40.4433321, "lon": -3.6878135}, {"type": "node", "id": 5162768436, "lat": 40.4433188, "lon": -3.6883324}, {"type": "node", "id": 5162768439, "lat": 40.44209, "lon": -3.6860663}, {"type": "node", "id": 5162768441, "lat": 40.4431942, "lon": -3.6873779}, {"type": "node", "id": 5162768442, "lat": 40.4422216, "lon": -3.6859063, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5162768444, "lat": 40.4432177, "lon": -3.688185}, {"type": "node", "id": 5183551632, "lat": 40.4291541, "lon": -3.701549}, {"type": "node", "id": 5183551633, "lat": 40.4290141, "lon": -3.7016017, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5191925504, "lat": 40.4430176, "lon": -3.6858324, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5195758592, "lat": 40.4383928, "lon": -3.7007421}, {"type": "node", "id": 5195758594, "lat": 40.438406, "lon": -3.7011512}, {"type": "node", "id": 5195759986, "lat": 40.4381835, "lon": -3.7010197}, {"type": "node", "id": 5195759987, "lat": 40.4384019, "lon": -3.7010064}, {"type": "node", "id": 5195760372, "lat": 40.4384035, "lon": -3.7010628, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5197772325, "lat": 40.4323987, "lon": -3.688115}, {"type": "node", "id": 5197772329, "lat": 40.4329515, "lon": -3.6879463}, {"type": "node", "id": 5197772332, "lat": 40.4328948, "lon": -3.6879594}, {"type": "node", "id": 5204319225, "lat": 40.4387961, "lon": -3.7043467}, {"type": "node", "id": 5204319226, "lat": 40.4387989, "lon": -3.7044133}, {"type": "node", "id": 5204319227, "lat": 40.4389805, "lon": -3.7046184}, {"type": "node", "id": 5204319228, "lat": 40.4390242, "lon": -3.7045562}, {"type": "node", "id": 5204319229, "lat": 40.4391725, "lon": -3.7045525}, {"type": "node", "id": 5204319237, "lat": 40.4391823, "lon": -3.7047861}, {"type": "node", "id": 5204319238, "lat": 40.4391512, "lon": -3.7048026}, {"type": "node", "id": 5204319239, "lat": 40.4391882, "lon": -3.7048986}, {"type": "node", "id": 5204319240, "lat": 40.4391568, "lon": -3.7051698}, {"type": "node", "id": 5204319241, "lat": 40.4391273, "lon": -3.7051955}, {"type": "node", "id": 5204319242, "lat": 40.4391069, "lon": -3.7052335}, {"type": "node", "id": 5204319243, "lat": 40.4390983, "lon": -3.7052786}, {"type": "node", "id": 5204319244, "lat": 40.4391026, "lon": -3.7053247}, {"type": "node", "id": 5204319245, "lat": 40.4391194, "lon": -3.7053656}, {"type": "node", "id": 5204319246, "lat": 40.4391463, "lon": -3.7053959}, {"type": "node", "id": 5204319247, "lat": 40.4391796, "lon": -3.7054113}, {"type": "node", "id": 5204319248, "lat": 40.439215, "lon": -3.7054098}, {"type": "node", "id": 5204319249, "lat": 40.4392476, "lon": -3.7053917}, {"type": "node", "id": 5204319250, "lat": 40.439273, "lon": -3.7053593}, {"type": "node", "id": 5204319251, "lat": 40.4392877, "lon": -3.7053171}, {"type": "node", "id": 5204319252, "lat": 40.4392899, "lon": -3.7052707}, {"type": "node", "id": 5204319253, "lat": 40.4392791, "lon": -3.7052264}, {"type": "node", "id": 5204319254, "lat": 40.439257, "lon": -3.7051902}, {"type": "node", "id": 5204319255, "lat": 40.4392263, "lon": -3.705167}, {"type": "node", "id": 5204319256, "lat": 40.4391914, "lon": -3.7051599}, {"type": "node", "id": 5204319823, "lat": 40.4365775, "lon": -3.7073861}, {"type": "node", "id": 5204319847, "lat": 40.4372327, "lon": -3.7100543}, {"type": "node", "id": 5204319848, "lat": 40.4372369, "lon": -3.7101802, "tags": {"amenity": "parking", "fee": "yes", "layer": "-1", "parking": "underground", "source": "survey"}}, {"type": "node", "id": 5214866721, "lat": 40.4461413, "lon": -3.7036271}, {"type": "node", "id": 5214866722, "lat": 40.445417, "lon": -3.7033443}, {"type": "node", "id": 5214866723, "lat": 40.4443089, "lon": -3.7028692}, {"type": "node", "id": 5214866724, "lat": 40.443188, "lon": -3.702381}, {"type": "node", "id": 5214866725, "lat": 40.4420207, "lon": -3.7019284}, {"type": "node", "id": 5214866726, "lat": 40.4404819, "lon": -3.7012133}, {"type": "node", "id": 5214866727, "lat": 40.4405322, "lon": -3.701003}, {"type": "node", "id": 5214866728, "lat": 40.4395097, "lon": -3.7007954}, {"type": "node", "id": 5214866729, "lat": 40.4392154, "lon": -3.7006649}, {"type": "node", "id": 5214866730, "lat": 40.4387712, "lon": -3.7004477}, {"type": "node", "id": 5214866731, "lat": 40.4384733, "lon": -3.7003238}, {"type": "node", "id": 5214866732, "lat": 40.4367357, "lon": -3.6995967}, {"type": "node", "id": 5214866733, "lat": 40.4357812, "lon": -3.6991871}, {"type": "node", "id": 5214866734, "lat": 40.4356234, "lon": -3.6991166}, {"type": "node", "id": 5214866735, "lat": 40.4352301, "lon": -3.6989231}, {"type": "node", "id": 5214866736, "lat": 40.4348718, "lon": -3.6990167, "tags": {"bicycle": "yes", "highway": "traffic_signals"}}, {"type": "node", "id": 5214866737, "lat": 40.4346697, "lon": -3.6987254}, {"type": "node", "id": 5214866739, "lat": 40.4334873, "lon": -3.6982006, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5214866740, "lat": 40.4329572, "lon": -3.6979782}, {"type": "node", "id": 5214866741, "lat": 40.4326713, "lon": -3.6978516, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5214866744, "lat": 40.4321217, "lon": -3.6976126, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing"}}, {"type": "node", "id": 5214866745, "lat": 40.4308455, "lon": -3.6970531}, {"type": "node", "id": 5214866746, "lat": 40.4287916, "lon": -3.6961687}, {"type": "node", "id": 5214866747, "lat": 40.4279988, "lon": -3.6959951}, {"type": "node", "id": 5218975632, "lat": 40.4303625, "lon": -3.6825054}, {"type": "node", "id": 5218975633, "lat": 40.4302417, "lon": -3.6825176, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 5218975635, "lat": 40.4303809, "lon": -3.6824128}, {"type": "node", "id": 5218975638, "lat": 40.4303594, "lon": -3.6824142}, {"type": "node", "id": 5218975639, "lat": 40.4302845, "lon": -3.6834495, "tags": {"crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5218975648, "lat": 40.43088, "lon": -3.6823739}, {"type": "node", "id": 5218975655, "lat": 40.430507, "lon": -3.6836825, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 5218975657, "lat": 40.4305013, "lon": -3.6835219}, {"type": "node", "id": 5218975658, "lat": 40.4304152, "lon": -3.6834345}, {"type": "node", "id": 5218975659, "lat": 40.4310066, "lon": -3.6834871}, {"type": "node", "id": 5218975660, "lat": 40.4304207, "lon": -3.6835273}, {"type": "node", "id": 5232402842, "lat": 40.4301287, "lon": -3.6918274}, {"type": "node", "id": 5232402843, "lat": 40.4295696, "lon": -3.6919472}, {"type": "node", "id": 5232404385, "lat": 40.4295653, "lon": -3.6918919}, {"type": "node", "id": 5232409902, "lat": 40.4317271, "lon": -3.6949452}, {"type": "node", "id": 5232409903, "lat": 40.4316947, "lon": -3.6944613}, {"type": "node", "id": 5232409904, "lat": 40.4316937, "lon": -3.6949495}, {"type": "node", "id": 5232421894, "lat": 40.4328235, "lon": -3.6820061, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5232421896, "lat": 40.4326829, "lon": -3.6820163, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5232421897, "lat": 40.4327697, "lon": -3.6822613}, {"type": "node", "id": 5235732356, "lat": 40.4388821, "lon": -3.6875338}, {"type": "node", "id": 5235732359, "lat": 40.43845, "lon": -3.6877534}, {"type": "node", "id": 5235742170, "lat": 40.4224495, "lon": -3.6855711}, {"type": "node", "id": 5235742171, "lat": 40.4224362, "lon": -3.685311}, {"type": "node", "id": 5235742173, "lat": 40.4224914, "lon": -3.6856288}, {"type": "node", "id": 5235742174, "lat": 40.4224965, "lon": -3.6857401}, {"type": "node", "id": 5235745134, "lat": 40.4224935, "lon": -3.6856777, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5235745135, "lat": 40.4224187, "lon": -3.6855749, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5242505640, "lat": 40.4407222, "lon": -3.6976612}, {"type": "node", "id": 5242505642, "lat": 40.4407151, "lon": -3.6975284}, {"type": "node", "id": 5242505643, "lat": 40.4409161, "lon": -3.6975163}, {"type": "node", "id": 5242505645, "lat": 40.4405722, "lon": -3.6975002}, {"type": "node", "id": 5242505646, "lat": 40.440664, "lon": -3.6974962}, {"type": "node", "id": 5242505647, "lat": 40.4406477, "lon": -3.6970845}, {"type": "node", "id": 5242551246, "lat": 40.4304235, "lon": -3.6886032}, {"type": "node", "id": 5242551247, "lat": 40.4306511, "lon": -3.6884662}, {"type": "node", "id": 5242551249, "lat": 40.4304538, "lon": -3.6888686}, {"type": "node", "id": 5242551250, "lat": 40.4294435, "lon": -3.6888592}, {"type": "node", "id": 5242551251, "lat": 40.4304117, "lon": -3.6885045}, {"type": "node", "id": 5242554913, "lat": 40.4295332, "lon": -3.6888447}, {"type": "node", "id": 5242554914, "lat": 40.4304333, "lon": -3.6886805, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5242554915, "lat": 40.4305817, "lon": -3.6884803, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 5242554916, "lat": 40.4305406, "lon": -3.6884865, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5254164044, "lat": 40.4397957, "lon": -3.6887531}, {"type": "node", "id": 5254164045, "lat": 40.4403571, "lon": -3.6889503}, {"type": "node", "id": 5254164046, "lat": 40.4405282, "lon": -3.6888345}, {"type": "node", "id": 5254164047, "lat": 40.4406594, "lon": -3.6887834}, {"type": "node", "id": 5254164048, "lat": 40.4408189, "lon": -3.6888855}, {"type": "node", "id": 5254164049, "lat": 40.4408283, "lon": -3.6890206}, {"type": "node", "id": 5254188517, "lat": 40.440136, "lon": -3.6876556}, {"type": "node", "id": 5254188518, "lat": 40.4400027, "lon": -3.6875839}, {"type": "node", "id": 5254188519, "lat": 40.4402178, "lon": -3.6876914}, {"type": "node", "id": 5254188520, "lat": 40.4402294, "lon": -3.6876514}, {"type": "node", "id": 5254188621, "lat": 40.4409056, "lon": -3.6879904}, {"type": "node", "id": 5254188622, "lat": 40.4403667, "lon": -3.6877201}, {"type": "node", "id": 5254188623, "lat": 40.4402141, "lon": -3.6882519}, {"type": "node", "id": 5254188624, "lat": 40.4405017, "lon": -3.6877876}, {"type": "node", "id": 5254274447, "lat": 40.4402543, "lon": -3.6876639}, {"type": "node", "id": 5255281513, "lat": 40.4394967, "lon": -3.6902257}, {"type": "node", "id": 5255281514, "lat": 40.4397494, "lon": -3.6898046}, {"type": "node", "id": 5273347273, "lat": 40.4300001, "lon": -3.7171193}, {"type": "node", "id": 5273347274, "lat": 40.4301944, "lon": -3.7172742}, {"type": "node", "id": 5273350504, "lat": 40.4301614, "lon": -3.7173741}, {"type": "node", "id": 5273358099, "lat": 40.4302969, "lon": -3.7174425, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 5273361954, "lat": 40.4303307, "lon": -3.717339, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5273361955, "lat": 40.4302416, "lon": -3.7172968, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5282009925, "lat": 40.4244368, "lon": -3.711887}, {"type": "node", "id": 5300692986, "lat": 40.4261508, "lon": -3.680282, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 5302471391, "lat": 40.4263656, "lon": -3.6975613}, {"type": "node", "id": 5321904954, "lat": 40.4344278, "lon": -3.7170219, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927323, "lat": 40.4299912, "lon": -3.7027321, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927324, "lat": 40.4310098, "lon": -3.7031748, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927325, "lat": 40.4329937, "lon": -3.7040402, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5321927326, "lat": 40.4440401, "lon": -3.7026431, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5339092675, "lat": 40.4372358, "lon": -3.7101564}, {"type": "node", "id": 5340000551, "lat": 40.4436294, "lon": -3.6933205}, {"type": "node", "id": 5340000552, "lat": 40.4436228, "lon": -3.6933486}, {"type": "node", "id": 5340000553, "lat": 40.4436095, "lon": -3.6933723}, {"type": "node", "id": 5340000554, "lat": 40.4435752, "lon": -3.6933951}, {"type": "node", "id": 5340000555, "lat": 40.4435588, "lon": -3.6933962}, {"type": "node", "id": 5340000556, "lat": 40.443508, "lon": -3.6933567}, {"type": "node", "id": 5340000557, "lat": 40.4434992, "lon": -3.6933298}, {"type": "node", "id": 5340000558, "lat": 40.4434977, "lon": -3.6933007}, {"type": "node", "id": 5340000559, "lat": 40.4435126, "lon": -3.6932537}, {"type": "node", "id": 5340000560, "lat": 40.443525, "lon": -3.6932385}, {"type": "node", "id": 5340000561, "lat": 40.4435581, "lon": -3.6932224}, {"type": "node", "id": 5340000562, "lat": 40.4435768, "lon": -3.6932238}, {"type": "node", "id": 5342774136, "lat": 40.4453467, "lon": -3.7039985, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5345796054, "lat": 40.4418148, "lon": -3.697765, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5350038446, "lat": 40.4299405, "lon": -3.7227121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5350055330, "lat": 40.445676, "lon": -3.7147619, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5351263449, "lat": 40.4452407, "lon": -3.6848276}, {"type": "node", "id": 5351263450, "lat": 40.4447808, "lon": -3.6848424}, {"type": "node", "id": 5351263451, "lat": 40.4448753, "lon": -3.6849337}, {"type": "node", "id": 5351263452, "lat": 40.445044, "lon": -3.6848397}, {"type": "node", "id": 5351263453, "lat": 40.4456552, "lon": -3.6852366}, {"type": "node", "id": 5351263454, "lat": 40.4455908, "lon": -3.6853205}, {"type": "node", "id": 5351263455, "lat": 40.4454907, "lon": -3.6849478}, {"type": "node", "id": 5385239918, "lat": 40.4358502, "lon": -3.7182177, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385239919, "lat": 40.4321197, "lon": -3.7172585, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385239920, "lat": 40.42995, "lon": -3.7157143, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241321, "lat": 40.4284183, "lon": -3.7145938, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241322, "lat": 40.4260475, "lon": -3.7129099, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241323, "lat": 40.4246605, "lon": -3.7119059, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241329, "lat": 40.4229688, "lon": -3.6882792, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241330, "lat": 40.4260413, "lon": -3.687736, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241331, "lat": 40.4295615, "lon": -3.6870869, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241332, "lat": 40.4304189, "lon": -3.6861596, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241346, "lat": 40.4300398, "lon": -3.6837207, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241347, "lat": 40.4275647, "lon": -3.6839246, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241348, "lat": 40.4248412, "lon": -3.684149, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241356, "lat": 40.4259517, "lon": -3.712972, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241357, "lat": 40.4278975, "lon": -3.7143602, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241358, "lat": 40.4300458, "lon": -3.7159148, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241359, "lat": 40.4320374, "lon": -3.7173281, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241360, "lat": 40.4341003, "lon": -3.7179376, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241361, "lat": 40.4357262, "lon": -3.7182351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5421143177, "lat": 40.4330759, "lon": -3.7007199}, {"type": "node", "id": 5422404797, "lat": 40.4336631, "lon": -3.7039971}, {"type": "node", "id": 5422404799, "lat": 40.433523, "lon": -3.7044644}, {"type": "node", "id": 5422404800, "lat": 40.433439, "lon": -3.7043453}, {"type": "node", "id": 5422404801, "lat": 40.4334334, "lon": -3.7041569}, {"type": "node", "id": 5422404802, "lat": 40.4278119, "lon": -3.6952322}, {"type": "node", "id": 5423721297, "lat": 40.4246064, "lon": -3.6899044, "tags": {"entrance": "yes"}}, {"type": "node", "id": 5423721318, "lat": 40.4252538, "lon": -3.6897038, "tags": {"amenity": "arts_centre", "entrance": "yes", "name": "Centro Cultural de la Villa de Madrid", "wheelchair": "yes"}}, {"type": "node", "id": 5425359850, "lat": 40.4399087, "lon": -3.7165979}, {"type": "node", "id": 5425359851, "lat": 40.4396066, "lon": -3.7162241}, {"type": "node", "id": 5425359852, "lat": 40.4393299, "lon": -3.7162319, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5425359853, "lat": 40.4392423, "lon": -3.7162349}, {"type": "node", "id": 5458872059, "lat": 40.431236, "lon": -3.6768494, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5469158328, "lat": 40.4415302, "lon": -3.7117983}, {"type": "node", "id": 5469158329, "lat": 40.4413914, "lon": -3.7125707}, {"type": "node", "id": 5469158330, "lat": 40.4411877, "lon": -3.7125408}, {"type": "node", "id": 5469158333, "lat": 40.4413373, "lon": -3.7121992}, {"type": "node", "id": 5469158334, "lat": 40.4416796, "lon": -3.7125595}, {"type": "node", "id": 5469158335, "lat": 40.4413949, "lon": -3.7127285}, {"type": "node", "id": 5469158337, "lat": 40.4413306, "lon": -3.7125743}, {"type": "node", "id": 5469158339, "lat": 40.4413278, "lon": -3.712528}, {"type": "node", "id": 5469158340, "lat": 40.4413173, "lon": -3.7123476}, {"type": "node", "id": 5469164207, "lat": 40.4413935, "lon": -3.7126497}, {"type": "node", "id": 5469164208, "lat": 40.4412721, "lon": -3.7125316}, {"type": "node", "id": 5483598424, "lat": 40.4203368, "lon": -3.6945515}, {"type": "node", "id": 5496812935, "lat": 40.4391625, "lon": -3.7047916}, {"type": "node", "id": 5496812936, "lat": 40.4391759, "lon": -3.704786}, {"type": "node", "id": 5496812937, "lat": 40.4391899, "lon": -3.7047862}, {"type": "node", "id": 5496812938, "lat": 40.4392031, "lon": -3.7047923}, {"type": "node", "id": 5496812939, "lat": 40.4392106, "lon": -3.7048862}, {"type": "node", "id": 5496812940, "lat": 40.4391979, "lon": -3.704896}, {"type": "node", "id": 5496812941, "lat": 40.4391835, "lon": -3.7048998}, {"type": "node", "id": 5496812942, "lat": 40.439169, "lon": -3.7048971}, {"type": "node", "id": 5496812943, "lat": 40.439156, "lon": -3.7048881}, {"type": "node", "id": 5496812944, "lat": 40.4392142, "lon": -3.7048036}, {"type": "node", "id": 5496812945, "lat": 40.439222, "lon": -3.7048189}, {"type": "node", "id": 5496812946, "lat": 40.4392257, "lon": -3.7048367}, {"type": "node", "id": 5496812947, "lat": 40.4392249, "lon": -3.7048551}, {"type": "node", "id": 5496812948, "lat": 40.4392196, "lon": -3.7048722}, {"type": "node", "id": 5496812949, "lat": 40.4391459, "lon": -3.704874}, {"type": "node", "id": 5496812950, "lat": 40.4391401, "lon": -3.7048563}, {"type": "node", "id": 5496812951, "lat": 40.439139, "lon": -3.7048371}, {"type": "node", "id": 5496812952, "lat": 40.4391429, "lon": -3.7048184}, {"type": "node", "id": 5501428617, "lat": 40.4297841, "lon": -3.7191938, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 5501428618, "lat": 40.4299308, "lon": -3.7187468}, {"type": "node", "id": 5501428619, "lat": 40.4294136, "lon": -3.7200726, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Parking Princesa Marqu\u00e9s de Urquijo PARKIA", "operator": "PARKIA", "park_ride": "no", "parking": "underground", "supervised": "yes"}}, {"type": "node", "id": 5501428620, "lat": 40.429498, "lon": -3.7198074, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 5553995268, "lat": 40.4494119, "lon": -3.7129298, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5553995269, "lat": 40.4492092, "lon": -3.7130945}, {"type": "node", "id": 5578582705, "lat": 40.4309057, "lon": -3.7075022}, {"type": "node", "id": 5578582706, "lat": 40.4308584, "lon": -3.707083}, {"type": "node", "id": 5578582707, "lat": 40.4316407, "lon": -3.7072107}, {"type": "node", "id": 5602141868, "lat": 40.431223, "lon": -3.6765782}, {"type": "node", "id": 5602141869, "lat": 40.4311648, "lon": -3.6753588}, {"type": "node", "id": 5602172191, "lat": 40.4392346, "lon": -3.6897774}, {"type": "node", "id": 5602471271, "lat": 40.4303021, "lon": -3.6886361}, {"type": "node", "id": 5624718759, "lat": 40.4390807, "lon": -3.7024997}, {"type": "node", "id": 5624718760, "lat": 40.4393727, "lon": -3.7024788}, {"type": "node", "id": 5638627645, "lat": 40.4401327, "lon": -3.7240294}, {"type": "node", "id": 5638627646, "lat": 40.4402988, "lon": -3.7240861}, {"type": "node", "id": 5638627647, "lat": 40.440264, "lon": -3.7240695}, {"type": "node", "id": 5638627648, "lat": 40.4402942, "lon": -3.7239355}, {"type": "node", "id": 5638627649, "lat": 40.440221, "lon": -3.7240588}, {"type": "node", "id": 5638627650, "lat": 40.4401851, "lon": -3.7240753}, {"type": "node", "id": 5638627651, "lat": 40.4401725, "lon": -3.7241055}, {"type": "node", "id": 5676700328, "lat": 40.4333781, "lon": -3.6981634, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5754419278, "lat": 40.4340498, "lon": -3.7086771, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5754419279, "lat": 40.4331719, "lon": -3.7057866, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5754419280, "lat": 40.4333207, "lon": -3.7052923, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 5754419281, "lat": 40.4338527, "lon": -3.7068905, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5754419282, "lat": 40.433928, "lon": -3.706955, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5776878411, "lat": 40.4506498, "lon": -3.7125783}, {"type": "node", "id": 5776878412, "lat": 40.4508788, "lon": -3.7126675}, {"type": "node", "id": 5776878413, "lat": 40.450907, "lon": -3.7126702}, {"type": "node", "id": 5776878414, "lat": 40.4509248, "lon": -3.71264}, {"type": "node", "id": 5776878415, "lat": 40.4508721, "lon": -3.7116095}, {"type": "node", "id": 5776878416, "lat": 40.4509349, "lon": -3.7116348, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 5776878417, "lat": 40.4510472, "lon": -3.7116816}, {"type": "node", "id": 5776878418, "lat": 40.4509946, "lon": -3.7106751}, {"type": "node", "id": 5776878419, "lat": 40.4508816, "lon": -3.7109784}, {"type": "node", "id": 5776878420, "lat": 40.450789, "lon": -3.7126291}, {"type": "node", "id": 5776878421, "lat": 40.451024, "lon": -3.711672, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 5776878422, "lat": 40.451073, "lon": -3.7115304}, {"type": "node", "id": 5776878423, "lat": 40.451191, "lon": -3.7113203}, {"type": "node", "id": 5776878424, "lat": 40.4513067, "lon": -3.7112425}, {"type": "node", "id": 5776878427, "lat": 40.4525396, "lon": -3.7112028, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 5777193961, "lat": 40.4315295, "lon": -3.7070511, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5777193962, "lat": 40.4314255, "lon": -3.7069675, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5777199721, "lat": 40.4374165, "lon": -3.7142734}, {"type": "node", "id": 5777200233, "lat": 40.4301343, "lon": -3.7106642}, {"type": "node", "id": 5783023164, "lat": 40.4426829, "lon": -3.7112731}, {"type": "node", "id": 5783023165, "lat": 40.4426906, "lon": -3.711127}, {"type": "node", "id": 5783023166, "lat": 40.4426556, "lon": -3.7112608}, {"type": "node", "id": 5783023167, "lat": 40.4426312, "lon": -3.711195}, {"type": "node", "id": 5783023168, "lat": 40.4427424, "lon": -3.7112052}, {"type": "node", "id": 5783023220, "lat": 40.4436361, "lon": -3.7106533, "tags": {"entrance": "main"}}, {"type": "node", "id": 5783023221, "lat": 40.4435616, "lon": -3.7107825, "tags": {"entrance": "yes"}}, {"type": "node", "id": 5783023222, "lat": 40.4436174, "lon": -3.7107325}, {"type": "node", "id": 5783023223, "lat": 40.4436485, "lon": -3.710691}, {"type": "node", "id": 5783023224, "lat": 40.4436303, "lon": -3.7106674}, {"type": "node", "id": 5783023252, "lat": 40.4430436, "lon": -3.7109879}, {"type": "node", "id": 5783023253, "lat": 40.4432097, "lon": -3.7107388}, {"type": "node", "id": 5783023254, "lat": 40.4433634, "lon": -3.7109158}, {"type": "node", "id": 5783023255, "lat": 40.4431972, "lon": -3.7111649}, {"type": "node", "id": 5783023256, "lat": 40.4432263, "lon": -3.7109195}, {"type": "node", "id": 5783023257, "lat": 40.4431773, "lon": -3.7109234}, {"type": "node", "id": 5783023258, "lat": 40.4431803, "lon": -3.7109874}, {"type": "node", "id": 5783023259, "lat": 40.4432293, "lon": -3.7109835}, {"type": "node", "id": 5783023260, "lat": 40.443288, "lon": -3.710829}, {"type": "node", "id": 5783023261, "lat": 40.4431204, "lon": -3.7110765}, {"type": "node", "id": 5783023262, "lat": 40.4432795, "lon": -3.7110414}, {"type": "node", "id": 5783023263, "lat": 40.4431262, "lon": -3.710864}, {"type": "node", "id": 5783034260, "lat": 40.4462451, "lon": -3.7137458, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 5784462286, "lat": 40.4432225, "lon": -3.705484, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462287, "lat": 40.4431628, "lon": -3.7056451, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462288, "lat": 40.442851, "lon": -3.7050274, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462289, "lat": 40.4433341, "lon": -3.7054062, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 5784462290, "lat": 40.4433706, "lon": -3.7050892, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5784870809, "lat": 40.4426848, "lon": -3.709231}, {"type": "node", "id": 5784870818, "lat": 40.4426189, "lon": -3.7100575, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 5784870819, "lat": 40.4424397, "lon": -3.7099011}, {"type": "node", "id": 5784870820, "lat": 40.4426236, "lon": -3.7093172, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5784870821, "lat": 40.4426466, "lon": -3.7095048, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5784870823, "lat": 40.4428974, "lon": -3.7109177}, {"type": "node", "id": 5784870824, "lat": 40.4428033, "lon": -3.7108126}, {"type": "node", "id": 5784870825, "lat": 40.4430216, "lon": -3.7105134}, {"type": "node", "id": 5784870826, "lat": 40.4431233, "lon": -3.7106325}, {"type": "node", "id": 5802031853, "lat": 40.4382839, "lon": -3.6985001}, {"type": "node", "id": 5802031854, "lat": 40.4375042, "lon": -3.6986368, "tags": {"highway": "give_way"}}, {"type": "node", "id": 5802031855, "lat": 40.4374568, "lon": -3.6986984}, {"type": "node", "id": 5802031856, "lat": 40.4375227, "lon": -3.6986005}, {"type": "node", "id": 5802031857, "lat": 40.4375313, "lon": -3.6986787}, {"type": "node", "id": 5802031858, "lat": 40.4375266, "lon": -3.6986341, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031859, "lat": 40.4374877, "lon": -3.6986858, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031860, "lat": 40.4382701, "lon": -3.6985862}, {"type": "node", "id": 5802031861, "lat": 40.4382855, "lon": -3.6985964}, {"type": "node", "id": 5802031862, "lat": 40.4395352, "lon": -3.699316}, {"type": "node", "id": 5802031863, "lat": 40.4395562, "lon": -3.6993414}, {"type": "node", "id": 5802031864, "lat": 40.4397209, "lon": -3.7006264}, {"type": "node", "id": 5802031865, "lat": 40.439561, "lon": -3.7005812}, {"type": "node", "id": 5802031866, "lat": 40.4396201, "lon": -3.7006083}, {"type": "node", "id": 5802031867, "lat": 40.438573, "lon": -3.7000696}, {"type": "node", "id": 5802031868, "lat": 40.4383267, "lon": -3.6994504}, {"type": "node", "id": 5802031869, "lat": 40.4385364, "lon": -3.69943}, {"type": "node", "id": 5802031870, "lat": 40.4371147, "lon": -3.6993862}, {"type": "node", "id": 5802031871, "lat": 40.4371173, "lon": -3.699463, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5802031872, "lat": 40.43712, "lon": -3.6995399}, {"type": "node", "id": 5802031873, "lat": 40.4367279, "lon": -3.6994902, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 5802031874, "lat": 40.4375968, "lon": -3.6993464}, {"type": "node", "id": 5802031875, "lat": 40.436775, "lon": -3.6988678}, {"type": "node", "id": 5802031876, "lat": 40.4367851, "lon": -3.6993713}, {"type": "node", "id": 5802031877, "lat": 40.4368675, "lon": -3.6994066}, {"type": "node", "id": 5802031878, "lat": 40.4367834, "lon": -3.6993371}, {"type": "node", "id": 5802031879, "lat": 40.4366101, "lon": -3.6993127}, {"type": "node", "id": 5802031880, "lat": 40.436575, "lon": -3.6995263, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 5802031881, "lat": 40.4367744, "lon": -3.6988313, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031882, "lat": 40.43667, "lon": -3.6993183}, {"type": "node", "id": 5802031883, "lat": 40.436654, "lon": -3.6980398}, {"type": "node", "id": 5802031884, "lat": 40.4366339, "lon": -3.6980122}, {"type": "node", "id": 5802031885, "lat": 40.4361877, "lon": -3.6980431}, {"type": "node", "id": 5802031886, "lat": 40.4361713, "lon": -3.6980658}, {"type": "node", "id": 5802031887, "lat": 40.4361247, "lon": -3.6990765}, {"type": "node", "id": 5802031888, "lat": 40.4366574, "lon": -3.6993337}, {"type": "node", "id": 5802031889, "lat": 40.4361278, "lon": -3.6990976}, {"type": "node", "id": 5802031890, "lat": 40.4360998, "lon": -3.6980716}, {"type": "node", "id": 5802031891, "lat": 40.4360832, "lon": -3.6980556}, {"type": "node", "id": 5802031892, "lat": 40.4358182, "lon": -3.6980739}, {"type": "node", "id": 5802031893, "lat": 40.4357894, "lon": -3.698105}, {"type": "node", "id": 5802031894, "lat": 40.4360578, "lon": -3.6990724}, {"type": "node", "id": 5802031895, "lat": 40.4357192, "lon": -3.6979195, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031896, "lat": 40.4358181, "lon": -3.6980182, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 5802031897, "lat": 40.4357261, "lon": -3.6980609, "tags": {"highway": "give_way"}}, {"type": "node", "id": 5802031898, "lat": 40.4358322, "lon": -3.6989804}, {"type": "node", "id": 5802031899, "lat": 40.4356696, "lon": -3.6989184}, {"type": "node", "id": 5802031900, "lat": 40.4350857, "lon": -3.6981409}, {"type": "node", "id": 5802031901, "lat": 40.4356792, "lon": -3.6980889}, {"type": "node", "id": 5802031902, "lat": 40.435729, "lon": -3.6989391}, {"type": "node", "id": 5863695677, "lat": 40.436607, "lon": -3.6964215, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5941381325, "lat": 40.4481631, "lon": -3.6976002, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "layer": "-1", "opening_hours": "24/7", "parking": "underground", "phone": "+34 915 34 43 24"}}, {"type": "node", "id": 5941381327, "lat": 40.4480655, "lon": -3.6976046}, {"type": "node", "id": 5941381328, "lat": 40.4480186, "lon": -3.6968856, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 5941381329, "lat": 40.4478729, "lon": -3.6958862, "tags": {"highway": "crossing"}}, {"type": "node", "id": 5963987026, "lat": 40.4344704, "lon": -3.7017784, "tags": {"bus": "yes", "name": "Gral. \u00c1lvarez Castro - Eloy Gonzalo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1386", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987027, "lat": 40.436571, "lon": -3.7027001, "tags": {"bus": "yes", "name": "Gral. \u00c1lvarez Castro - Viriato", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1862", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987028, "lat": 40.4386467, "lon": -3.7036957, "tags": {"bus": "yes", "name": "Jos\u00e9 Abascal - Bravo Murillo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "807", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987029, "lat": 40.4434549, "lon": -3.7040638, "tags": {"bus": "yes", "name": "Bravo Murillo - Crist\u00f3bal Bordi\u00fa", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1382", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987030, "lat": 40.445608, "lon": -3.7039911, "tags": {"bus": "yes", "name": "Bravo Murillo - Maudes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1419", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987031, "lat": 40.4489788, "lon": -3.7036661, "tags": {"bus": "yes", "name": "Bravo Murillo - Almansa", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1600", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987032, "lat": 40.4513214, "lon": -3.7033197, "tags": {"bus": "yes", "name": "Bravo Murillo - Carolinas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1570", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987036, "lat": 40.4272274, "lon": -3.7064342, "tags": {"bus": "yes", "name": "San Bernardo - Dao\u00edz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1769", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5963987037, "lat": 40.4252931, "lon": -3.7073903, "tags": {"bus": "yes", "name": "San Bernardo - Ministerio Justicia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1767", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607249, "lat": 40.4342386, "lon": -3.7129666, "tags": {"bus": "yes", "name": "Fernando El Cat\u00f3lico - G. El Bueno", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "542", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607250, "lat": 40.4340034, "lon": -3.7092639, "tags": {"bus": "yes", "name": "Fernando El Cat\u00f3lico - Vallehermoso", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "541", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5966607251, "lat": 40.4338059, "lon": -3.7061522, "tags": {"bus": "yes", "name": "Fernando el Cat\u00f3lico - Magallanes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "540", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607252, "lat": 40.4338879, "lon": -3.7030512, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Cardenal Cisneros", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "538", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607253, "lat": 40.434988, "lon": -3.6976773, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Alonso Cano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1895", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607254, "lat": 40.4350528, "lon": -3.6952584, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fdez. de la Hoz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "528", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607255, "lat": 40.4351841, "lon": -3.6901827, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fortuny", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "530", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607256, "lat": 40.4350752, "lon": -3.6860508, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Serrano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2600", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607275, "lat": 40.434975, "lon": -3.6840009, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Vel\u00e1zquez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2598", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607276, "lat": 40.4349686, "lon": -3.6838702, "tags": {"bus": "yes", "name": "Diego de Le\u00f3n - Vel\u00e1zquez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2599", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607277, "lat": 40.4354635, "lon": -3.6868663, "tags": {"bus": "yes", "name": "Hermanos B\u00e9cquer - Serrano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2601", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607278, "lat": 40.4357956, "lon": -3.6878781, "tags": {"bus": "yes", "name": "Gral. Or\u00e1a - P\u00ba Castellana", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "537", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607279, "lat": 40.4358786, "lon": -3.6878098, "tags": {"bus": "yes", "name": "Gral. Or\u00e1a - P\u00ba Castellana", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2602", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607280, "lat": 40.4351753, "lon": -3.6905419, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fortuny", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "529", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607281, "lat": 40.4351234, "lon": -3.6926058, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Zurbano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1893", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607282, "lat": 40.4351228, "lon": -3.6926303, "tags": {"bus": "yes", "name": "Gral. Mart\u00ednez Campos - Zurbano", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1894", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607283, "lat": 40.4350323, "lon": -3.6960576, "tags": {"bus": "yes", "name": "Gral. Mtnez. Campos - Fdez. de la Hoz", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "527", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966607284, "lat": 40.4346875, "lon": -3.6997711, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Juan de Austria", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "526", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610985, "lat": 40.4346826, "lon": -3.6997914, "tags": {"bus": "yes", "name": "Eloy Gonzalo - Juan De Austria", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "525", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610986, "lat": 40.4341914, "lon": -3.7027635, "tags": {"bus": "yes", "name": "Cardenal Cisneros - Eloy Gonzalo", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "524", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610987, "lat": 40.4349193, "lon": -3.7049101, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Magallanes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "523", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610988, "lat": 40.4351347, "lon": -3.709044, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Vallehermoso", "operator": "Lineas 16 y 61 - Parada 522", "public_transport": "stop_position", "ref": "522", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610989, "lat": 40.4353325, "lon": -3.7134447, "tags": {"bus": "yes", "name": "Fdez. de los R\u00edos - Guzm\u00e1n El Bueno", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "521", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5966610990, "lat": 40.4354919, "lon": -3.7174177, "tags": {"bus": "yes", "name": "Fern\u00e1ndez de los R\u00edos - Hilari\u00f3n Eslava", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "520", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484995, "lat": 40.4250353, "lon": -3.7074196, "tags": {"bus": "yes", "name": "San Bernardo - Ministerio Justicia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1768", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484996, "lat": 40.4295194, "lon": -3.7049656, "tags": {"bus": "yes", "name": "Carranza - Gta. Bilbao", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1226", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484997, "lat": 40.4291847, "lon": -3.7029727, "tags": {"bus": "yes", "name": "Carranza - Gta. Bilbao", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1226", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484998, "lat": 40.428415, "lon": -3.6990596, "tags": {"bus": "yes", "name": "Sagasta - Manuel Silvela", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1228", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970484999, "lat": 40.4283354, "lon": -3.6958353, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Alonso Mart\u00ednez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1864", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5970485000, "lat": 40.4318253, "lon": -3.6973818, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Chamber\u00ed", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1863", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970485003, "lat": 40.4293976, "lon": -3.7060547, "tags": {"bus": "yes", "name": "Gta. de Ruiz Jim\u00e9nez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1772", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506942, "lat": 40.4515624, "lon": -3.7032846, "tags": {"bus": "yes", "name": "Bravo Murillo - Teruel", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1569", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506943, "lat": 40.4492109, "lon": -3.7036316, "tags": {"bus": "yes", "name": "Bravo Murillo - Palencia", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1568", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506944, "lat": 40.4460549, "lon": -3.7035195, "tags": {"bus": "yes", "name": "Sta. Engracia N\u00ba 162", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1420", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506945, "lat": 40.4417752, "lon": -3.7016655, "tags": {"bus": "yes", "name": "Sta. Engracia - R\u00edos Rosas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1398", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506946, "lat": 40.439444, "lon": -3.7006612, "tags": {"bus": "yes", "name": "Sta. Engracia - Bret\u00f3n los Herreros", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1397", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506947, "lat": 40.4362302, "lon": -3.6992771, "tags": {"bus": "yes", "name": "Sta. Engracia - Garc\u00eda de Paredes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1870", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506948, "lat": 40.4345526, "lon": -3.6985575, "tags": {"bus": "yes", "name": "Sta. Engracia - Gral. Mtnez. Campos", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1869", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506949, "lat": 40.4326259, "lon": -3.6976976, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Chamber\u00ed", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1868", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506950, "lat": 40.4306683, "lon": -3.6968453, "tags": {"bus": "yes", "name": "Sta. Engracia - Caracas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "4675", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506951, "lat": 40.4282449, "lon": -3.6957973, "tags": {"bus": "yes", "name": "Sta. Engracia - Pza. Alonso Mart\u00ednez", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1865", "source": "https://navegapormadrid.emtmadrid.es/app/", "wheelchair": "yes"}}, {"type": "node", "id": 5970506952, "lat": 40.4264227, "lon": -3.6969068, "tags": {"bus": "yes", "name": "Pza. de Santa B\u00e1rbara", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "5639", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506953, "lat": 40.4235518, "lon": -3.6987302, "tags": {"bus": "yes", "name": "Hortaleza - Gravina", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "278", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506954, "lat": 40.4213829, "lon": -3.7003181, "tags": {"bus": "yes", "name": "Hortaleza - Infantas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "5376", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5987136571, "lat": 40.4394453, "lon": -3.7064765}, {"type": "node", "id": 6000178811, "lat": 40.4366214, "lon": -3.6937445}, {"type": "node", "id": 6000178814, "lat": 40.4362596, "lon": -3.6939568}, {"type": "node", "id": 6000178815, "lat": 40.4361624, "lon": -3.6940054}, {"type": "node", "id": 6020619570, "lat": 40.4412204, "lon": -3.6926084}, {"type": "node", "id": 6020619571, "lat": 40.4415968, "lon": -3.6960268, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6020619572, "lat": 40.441724, "lon": -3.6958749, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6020619573, "lat": 40.4418714, "lon": -3.6989191, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6020619574, "lat": 40.4419991, "lon": -3.6990594, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6059903783, "lat": 40.4382044, "lon": -3.6914101, "tags": {"name": "Jos\u00e9 Abascal", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 6074452275, "lat": 40.4313032, "lon": -3.6782598, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6074452277, "lat": 40.4312916, "lon": -3.6780166, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6101370500, "lat": 40.4447767, "lon": -3.6889959, "tags": {"highway": "crossing"}}, {"type": "node", "id": 6101370501, "lat": 40.4443538, "lon": -3.6887596}, {"type": "node", "id": 6101370502, "lat": 40.4437449, "lon": -3.6890132}, {"type": "node", "id": 6101370503, "lat": 40.4440186, "lon": -3.6887861}, {"type": "node", "id": 6101370504, "lat": 40.4435686, "lon": -3.6898195}, {"type": "node", "id": 6109456225, "lat": 40.4200381, "lon": -3.7011484}, {"type": "node", "id": 6109456233, "lat": 40.4201413, "lon": -3.7011387}, {"type": "node", "id": 6124013034, "lat": 40.4457371, "lon": -3.690735, "tags": {"name": "P\u00ba de la Castellana, pares (Esq. Joaqu\u00edn Costa)", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 6124013035, "lat": 40.4465199, "lon": -3.6915467, "tags": {"highway": "elevator", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 6124013036, "lat": 40.4465994, "lon": -3.6915325, "tags": {"name": "P\u00ba de la Castellana, impares (bulevar)", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 6124013038, "lat": 40.4471114, "lon": -3.692777, "tags": {"name": "Nuevos Ministerios", "railway": "subway_entrance"}}, {"type": "node", "id": 6130961139, "lat": 40.4298295, "lon": -3.7138812}, {"type": "node", "id": 6186804864, "lat": 40.4458301, "lon": -3.6918358}, {"type": "node", "id": 6186804865, "lat": 40.4460624, "lon": -3.6918082}, {"type": "node", "id": 6186804866, "lat": 40.4460492, "lon": -3.6915736}, {"type": "node", "id": 6186804867, "lat": 40.4460247, "lon": -3.6910309}, {"type": "node", "id": 6186804868, "lat": 40.4458608, "lon": -3.6907931}, {"type": "node", "id": 6186804869, "lat": 40.4458118, "lon": -3.6907288}, {"type": "node", "id": 6186804870, "lat": 40.4466935, "lon": -3.6915201}, {"type": "node", "id": 6186804871, "lat": 40.4466935, "lon": -3.6915768}, {"type": "node", "id": 6186804872, "lat": 40.4465073, "lon": -3.6915829}, {"type": "node", "id": 6186804873, "lat": 40.4464828, "lon": -3.6923188}, {"type": "node", "id": 6186804874, "lat": 40.4466108, "lon": -3.6923099}, {"type": "node", "id": 6186804875, "lat": 40.4466095, "lon": -3.6922875}, {"type": "node", "id": 6186804876, "lat": 40.4466129, "lon": -3.6923459}, {"type": "node", "id": 6186804877, "lat": 40.4466033, "lon": -3.6921815}, {"type": "node", "id": 6186804878, "lat": 40.446619, "lon": -3.6924504}, {"type": "node", "id": 6186804879, "lat": 40.4465518, "lon": -3.6921867}, {"type": "node", "id": 6186804880, "lat": 40.4465816, "lon": -3.6924542, "tags": {"name": "Nuevos Ministerios", "railway": "subway_entrance"}}, {"type": "node", "id": 6186804881, "lat": 40.4469624, "lon": -3.6927917}, {"type": "node", "id": 6186804882, "lat": 40.4465546, "lon": -3.6928426}, {"type": "node", "id": 6186804883, "lat": 40.4465071, "lon": -3.6927556}, {"type": "node", "id": 6186804884, "lat": 40.4464509, "lon": -3.6917453}, {"type": "node", "id": 6186804885, "lat": 40.4447075, "lon": -3.6919014}, {"type": "node", "id": 6186804886, "lat": 40.4452182, "lon": -3.6919526}, {"type": "node", "id": 6186804887, "lat": 40.4450289, "lon": -3.6919879}, {"type": "node", "id": 6186804888, "lat": 40.4451679, "lon": -3.6919779}, {"type": "node", "id": 6186804889, "lat": 40.4452204, "lon": -3.6918495}, {"type": "node", "id": 6186804890, "lat": 40.4450259, "lon": -3.6919141, "tags": {"name": "P\u00ba de la Castellana, impares (bulevar)", "railway": "subway_entrance"}}, {"type": "node", "id": 6186804891, "lat": 40.4446971, "lon": -3.6917486}, {"type": "node", "id": 6186804892, "lat": 40.4446209, "lon": -3.6910264}, {"type": "node", "id": 6186804893, "lat": 40.4445447, "lon": -3.6909431}, {"type": "node", "id": 6186804894, "lat": 40.4444763, "lon": -3.6909368}, {"type": "node", "id": 6186804895, "lat": 40.4465858, "lon": -3.6929952, "tags": {"highway": "elevator", "level": "-1;0", "railway": "subway_entrance", "source": "survey", "wheelchair": "yes"}}, {"type": "node", "id": 6186804896, "lat": 40.4445753, "lon": -3.6909115, "tags": {"highway": "elevator", "level": "-1;0", "railway": "subway_entrance", "source": "survey"}}, {"type": "node", "id": 6187709127, "lat": 40.4370087, "lon": -3.7025407}, {"type": "node", "id": 6200560083, "lat": 40.4514172, "lon": -3.7164025}, {"type": "node", "id": 6200560190, "lat": 40.4515933, "lon": -3.715088}, {"type": "node", "id": 6200560191, "lat": 40.4515629, "lon": -3.7151054}, {"type": "node", "id": 6200560192, "lat": 40.4515419, "lon": -3.7150938}, {"type": "node", "id": 6200560193, "lat": 40.4515135, "lon": -3.7150913}, {"type": "node", "id": 6200560194, "lat": 40.4514866, "lon": -3.7151067}, {"type": "node", "id": 6200560195, "lat": 40.4514666, "lon": -3.7151485}, {"type": "node", "id": 6200560196, "lat": 40.4516265, "lon": -3.7150617}, {"type": "node", "id": 6200560243, "lat": 40.4514626, "lon": -3.7151851}, {"type": "node", "id": 6200560244, "lat": 40.4514049, "lon": -3.7152739}, {"type": "node", "id": 6200560245, "lat": 40.4513501, "lon": -3.7153812}, {"type": "node", "id": 6200560246, "lat": 40.4512987, "lon": -3.7154957}, {"type": "node", "id": 6200560247, "lat": 40.4512567, "lon": -3.7156043}, {"type": "node", "id": 6200560248, "lat": 40.4512161, "lon": -3.7157561}, {"type": "node", "id": 6200560249, "lat": 40.451105, "lon": -3.7162248}, {"type": "node", "id": 6200560250, "lat": 40.4513145, "lon": -3.717011, "tags": {"access": "private", "barrier": "gate", "entrance": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 6200560251, "lat": 40.4513046, "lon": -3.7169944}, {"type": "node", "id": 6200560252, "lat": 40.4512948, "lon": -3.7169841}, {"type": "node", "id": 6200560253, "lat": 40.4512762, "lon": -3.7169719}, {"type": "node", "id": 6200560254, "lat": 40.4512229, "lon": -3.7169584}, {"type": "node", "id": 6200560255, "lat": 40.4511784, "lon": -3.7169481}, {"type": "node", "id": 6200560256, "lat": 40.4511392, "lon": -3.7169327}, {"type": "node", "id": 6200560257, "lat": 40.4511138, "lon": -3.7169192}, {"type": "node", "id": 6200560258, "lat": 40.4510884, "lon": -3.7168838}, {"type": "node", "id": 6200560259, "lat": 40.4510629, "lon": -3.7168292}, {"type": "node", "id": 6200560260, "lat": 40.451037, "lon": -3.7167218}, {"type": "node", "id": 6200560261, "lat": 40.4510277, "lon": -3.7166356}, {"type": "node", "id": 6200560262, "lat": 40.4510321, "lon": -3.716545}, {"type": "node", "id": 6200560263, "lat": 40.4510399, "lon": -3.7164563}, {"type": "node", "id": 6200560264, "lat": 40.4510507, "lon": -3.7164016}, {"type": "node", "id": 6200560265, "lat": 40.4510722, "lon": -3.7163347}, {"type": "node", "id": 6200560266, "lat": 40.45109, "lon": -3.7163293}, {"type": "node", "id": 6200560267, "lat": 40.451266, "lon": -3.7162833}, {"type": "node", "id": 6200560268, "lat": 40.4514749, "lon": -3.7164479}, {"type": "node", "id": 6200560392, "lat": 40.4513267, "lon": -3.716993, "tags": {"access": "private", "barrier": "gate", "entrance": "yes"}}, {"type": "node", "id": 6211774594, "lat": 40.4261991, "lon": -3.6812851, "tags": {"crossing": "marked", "crossing:markings": "yes", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6214502304, "lat": 40.4270512, "lon": -3.6860622}, {"type": "node", "id": 6231141665, "lat": 40.4315464, "lon": -3.7077991}, {"type": "node", "id": 6231141666, "lat": 40.4315404, "lon": -3.7076843}, {"type": "node", "id": 6235643930, "lat": 40.4470065, "lon": -3.7104779}, {"type": "node", "id": 6238484470, "lat": 40.4465633, "lon": -3.7123474, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238484473, "lat": 40.4472555, "lon": -3.7121382, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6238484475, "lat": 40.4493833, "lon": -3.713223, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 6238487898, "lat": 40.4466716, "lon": -3.7141013, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487900, "lat": 40.4462601, "lon": -3.7124354, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487901, "lat": 40.4461491, "lon": -3.7122722, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487902, "lat": 40.4463497, "lon": -3.7120672, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487903, "lat": 40.4464413, "lon": -3.7124977, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487904, "lat": 40.4456429, "lon": -3.7122342, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6238487905, "lat": 40.4460121, "lon": -3.7106769, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6238487906, "lat": 40.4458867, "lon": -3.7104792, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238487907, "lat": 40.446674, "lon": -3.7104367, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6238487908, "lat": 40.4469158, "lon": -3.7101849, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6238515257, "lat": 40.4475367, "lon": -3.7128707}, {"type": "node", "id": 6238515258, "lat": 40.4475665, "lon": -3.7127491}, {"type": "node", "id": 6238548037, "lat": 40.4504275, "lon": -3.7135207, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 6277263775, "lat": 40.4459594, "lon": -3.7149522, "tags": {"entrance": "yes"}}, {"type": "node", "id": 6277264414, "lat": 40.4446983, "lon": -3.7086934}, {"type": "node", "id": 6277264415, "lat": 40.4446698, "lon": -3.7090076}, {"type": "node", "id": 6277264416, "lat": 40.4446151, "lon": -3.7091047}, {"type": "node", "id": 6277264417, "lat": 40.4443607, "lon": -3.7090111}, {"type": "node", "id": 6277264419, "lat": 40.4442687, "lon": -3.7094148}, {"type": "node", "id": 6277264420, "lat": 40.4446979, "lon": -3.7086978}, {"type": "node", "id": 6277264421, "lat": 40.4444072, "lon": -3.7088826}, {"type": "node", "id": 6277264422, "lat": 40.4449255, "lon": -3.7081768}, {"type": "node", "id": 6277264423, "lat": 40.4443023, "lon": -3.708972}, {"type": "node", "id": 6277264424, "lat": 40.4414944, "lon": -3.7068648}, {"type": "node", "id": 6277264427, "lat": 40.4415494, "lon": -3.7069965}, {"type": "node", "id": 6277264428, "lat": 40.4414995, "lon": -3.7070937}, {"type": "node", "id": 6277264429, "lat": 40.4414514, "lon": -3.7072016}, {"type": "node", "id": 6277264430, "lat": 40.4414029, "lon": -3.7073304}, {"type": "node", "id": 6277264431, "lat": 40.4413724, "lon": -3.7074336}, {"type": "node", "id": 6277264432, "lat": 40.4413443, "lon": -3.7075433}, {"type": "node", "id": 6277264433, "lat": 40.4413271, "lon": -3.7076351}, {"type": "node", "id": 6277264434, "lat": 40.4413097, "lon": -3.7077325}, {"type": "node", "id": 6277264435, "lat": 40.441405, "lon": -3.7073247}, {"type": "node", "id": 6277264436, "lat": 40.4413599, "lon": -3.7072268}, {"type": "node", "id": 6277264437, "lat": 40.4430869, "lon": -3.7092192}, {"type": "node", "id": 6277264438, "lat": 40.4430208, "lon": -3.7091439}, {"type": "node", "id": 6277264439, "lat": 40.4429535, "lon": -3.7089995}, {"type": "node", "id": 6277264440, "lat": 40.4428811, "lon": -3.7089421}, {"type": "node", "id": 6277264441, "lat": 40.4428035, "lon": -3.7089151}, {"type": "node", "id": 6277264442, "lat": 40.4426755, "lon": -3.708807}, {"type": "node", "id": 6277264443, "lat": 40.4424433, "lon": -3.708672}, {"type": "node", "id": 6277264444, "lat": 40.442339, "lon": -3.7085768}, {"type": "node", "id": 6277264445, "lat": 40.4422275, "lon": -3.708514}, {"type": "node", "id": 6277264446, "lat": 40.4421432, "lon": -3.7084283}, {"type": "node", "id": 6277264447, "lat": 40.4420564, "lon": -3.7083594}, {"type": "node", "id": 6277264448, "lat": 40.4419464, "lon": -3.7083088}, {"type": "node", "id": 6277264449, "lat": 40.441839, "lon": -3.7082588}, {"type": "node", "id": 6277264450, "lat": 40.441745, "lon": -3.7081751}, {"type": "node", "id": 6277264451, "lat": 40.4417034, "lon": -3.7081103}, {"type": "node", "id": 6277264452, "lat": 40.4416872, "lon": -3.7080432}, {"type": "node", "id": 6277264453, "lat": 40.4415888, "lon": -3.7080083}, {"type": "node", "id": 6277264454, "lat": 40.4415137, "lon": -3.7079975}, {"type": "node", "id": 6277264455, "lat": 40.4414738, "lon": -3.7079913}, {"type": "node", "id": 6277264456, "lat": 40.4414726, "lon": -3.7080083}, {"type": "node", "id": 6277264457, "lat": 40.4414669, "lon": -3.7080252}, {"type": "node", "id": 6277264458, "lat": 40.4414572, "lon": -3.7080385}, {"type": "node", "id": 6277264459, "lat": 40.4414447, "lon": -3.7080467}, {"type": "node", "id": 6277264460, "lat": 40.4414308, "lon": -3.7080489}, {"type": "node", "id": 6277264461, "lat": 40.4414171, "lon": -3.7080448}, {"type": "node", "id": 6277264462, "lat": 40.4413928, "lon": -3.7079843}, {"type": "node", "id": 6277264463, "lat": 40.4413974, "lon": -3.7079684}, {"type": "node", "id": 6277264464, "lat": 40.4414056, "lon": -3.7079551}, {"type": "node", "id": 6277264465, "lat": 40.4414165, "lon": -3.7079459}, {"type": "node", "id": 6277264466, "lat": 40.4414291, "lon": -3.7079416}, {"type": "node", "id": 6277264467, "lat": 40.441442, "lon": -3.7079427}, {"type": "node", "id": 6277264468, "lat": 40.4414541, "lon": -3.7079491}, {"type": "node", "id": 6277264469, "lat": 40.4414053, "lon": -3.7080349}, {"type": "node", "id": 6277264470, "lat": 40.4413967, "lon": -3.7080203}, {"type": "node", "id": 6277264471, "lat": 40.4413924, "lon": -3.7080028}, {"type": "node", "id": 6277264472, "lat": 40.441464, "lon": -3.7079601}, {"type": "node", "id": 6277264473, "lat": 40.4414708, "lon": -3.7079747}, {"type": "node", "id": 6277264474, "lat": 40.4431091, "lon": -3.709499}, {"type": "node", "id": 6277264475, "lat": 40.4431826, "lon": -3.7094322}, {"type": "node", "id": 6277264476, "lat": 40.4431556, "lon": -3.7094822}, {"type": "node", "id": 6277264477, "lat": 40.4431335, "lon": -3.7094959}, {"type": "node", "id": 6277264478, "lat": 40.4430445, "lon": -3.7094156}, {"type": "node", "id": 6277264479, "lat": 40.4430458, "lon": -3.7093865}, {"type": "node", "id": 6277264480, "lat": 40.4430539, "lon": -3.7093595}, {"type": "node", "id": 6277264481, "lat": 40.443068, "lon": -3.709337}, {"type": "node", "id": 6277264482, "lat": 40.4430867, "lon": -3.7093214}, {"type": "node", "id": 6277264483, "lat": 40.4431081, "lon": -3.7093141}, {"type": "node", "id": 6277264484, "lat": 40.4431309, "lon": -3.7093161}, {"type": "node", "id": 6277264485, "lat": 40.4431853, "lon": -3.7094025}, {"type": "node", "id": 6277264486, "lat": 40.4431519, "lon": -3.7093276}, {"type": "node", "id": 6277264487, "lat": 40.4431691, "lon": -3.7093473}, {"type": "node", "id": 6277264488, "lat": 40.4431807, "lon": -3.7093731}, {"type": "node", "id": 6277264489, "lat": 40.4430653, "lon": -3.7094727}, {"type": "node", "id": 6277264490, "lat": 40.4430511, "lon": -3.7094465}, {"type": "node", "id": 6277264491, "lat": 40.4429297, "lon": -3.7093822}, {"type": "node", "id": 6277264492, "lat": 40.4428897, "lon": -3.7093215}, {"type": "node", "id": 6277264493, "lat": 40.4427745, "lon": -3.7094879}, {"type": "node", "id": 6277264506, "lat": 40.4433181, "lon": -3.7096623}, {"type": "node", "id": 6277264507, "lat": 40.4433144, "lon": -3.7095684}, {"type": "node", "id": 6277264508, "lat": 40.4431728, "lon": -3.7094593}, {"type": "node", "id": 6277264509, "lat": 40.4431176, "lon": -3.7096467}, {"type": "node", "id": 6277264510, "lat": 40.443218, "lon": -3.7096934}, {"type": "node", "id": 6277264511, "lat": 40.4433818, "lon": -3.7098729}, {"type": "node", "id": 6277264512, "lat": 40.443427, "lon": -3.7098623}, {"type": "node", "id": 6277264513, "lat": 40.4434588, "lon": -3.7098254}, {"type": "node", "id": 6277264514, "lat": 40.443477, "lon": -3.7097689}, {"type": "node", "id": 6277264515, "lat": 40.4434999, "lon": -3.709723}, {"type": "node", "id": 6277264516, "lat": 40.4435469, "lon": -3.7096824}, {"type": "node", "id": 6277264517, "lat": 40.4435769, "lon": -3.7096633}, {"type": "node", "id": 6277264518, "lat": 40.4436486, "lon": -3.7096166}, {"type": "node", "id": 6277264519, "lat": 40.4434984, "lon": -3.709507}, {"type": "node", "id": 6277264520, "lat": 40.4434455, "lon": -3.7094936}, {"type": "node", "id": 6277264521, "lat": 40.4434004, "lon": -3.7095037}, {"type": "node", "id": 6277264522, "lat": 40.4433299, "lon": -3.7095403}, {"type": "node", "id": 6277264523, "lat": 40.4434285, "lon": -3.709935}, {"type": "node", "id": 6277264524, "lat": 40.4434712, "lon": -3.7100496}, {"type": "node", "id": 6277264525, "lat": 40.4435265, "lon": -3.7101235}, {"type": "node", "id": 6277264526, "lat": 40.443622, "lon": -3.7101759}, {"type": "node", "id": 6277264527, "lat": 40.443715, "lon": -3.7101812}, {"type": "node", "id": 6277264528, "lat": 40.4438126, "lon": -3.7101771}, {"type": "node", "id": 6277264529, "lat": 40.4438313, "lon": -3.7099714}, {"type": "node", "id": 6277264530, "lat": 40.4438338, "lon": -3.7099403}, {"type": "node", "id": 6277264531, "lat": 40.4438284, "lon": -3.7099099}, {"type": "node", "id": 6277264532, "lat": 40.4438156, "lon": -3.7098835}, {"type": "node", "id": 6277264533, "lat": 40.443797, "lon": -3.709864}, {"type": "node", "id": 6277264534, "lat": 40.4437344, "lon": -3.70986}, {"type": "node", "id": 6277264535, "lat": 40.4437161, "lon": -3.709875}, {"type": "node", "id": 6277264536, "lat": 40.4437021, "lon": -3.7098964}, {"type": "node", "id": 6277264537, "lat": 40.4436913, "lon": -3.7099505}, {"type": "node", "id": 6277264538, "lat": 40.4436956, "lon": -3.7099782}, {"type": "node", "id": 6277264539, "lat": 40.4437059, "lon": -3.710003}, {"type": "node", "id": 6277264540, "lat": 40.4437768, "lon": -3.7098542}, {"type": "node", "id": 6277264541, "lat": 40.4437553, "lon": -3.7098528}, {"type": "node", "id": 6277264542, "lat": 40.4437214, "lon": -3.7100226}, {"type": "node", "id": 6277264543, "lat": 40.4437406, "lon": -3.7100353}, {"type": "node", "id": 6277264544, "lat": 40.4437618, "lon": -3.7100398}, {"type": "node", "id": 6277264545, "lat": 40.4438045, "lon": -3.710022}, {"type": "node", "id": 6277264546, "lat": 40.4438211, "lon": -3.7099997}, {"type": "node", "id": 6277264547, "lat": 40.4436935, "lon": -3.7099224}, {"type": "node", "id": 6277264548, "lat": 40.4436359, "lon": -3.7099008}, {"type": "node", "id": 6277264549, "lat": 40.4437286, "lon": -3.7096702}, {"type": "node", "id": 6277264550, "lat": 40.4437633, "lon": -3.7097206}, {"type": "node", "id": 6277264551, "lat": 40.4437926, "lon": -3.7098067}, {"type": "node", "id": 6277264552, "lat": 40.4439311, "lon": -3.7099634}, {"type": "node", "id": 6277264553, "lat": 40.4440002, "lon": -3.7099611}, {"type": "node", "id": 6277264554, "lat": 40.444059, "lon": -3.7099298}, {"type": "node", "id": 6277264555, "lat": 40.4441106, "lon": -3.7098738}, {"type": "node", "id": 6277264556, "lat": 40.4442029, "lon": -3.7096612}, {"type": "node", "id": 6277264557, "lat": 40.4425103, "lon": -3.7088871}, {"type": "node", "id": 6277264568, "lat": 40.4447912, "lon": -3.7085027}, {"type": "node", "id": 6277264569, "lat": 40.4447713, "lon": -3.7084689}, {"type": "node", "id": 6277264570, "lat": 40.4447974, "lon": -3.7085008}, {"type": "node", "id": 6277264571, "lat": 40.4447792, "lon": -3.7084554}, {"type": "node", "id": 6277264572, "lat": 40.4447852, "lon": -3.7084519}, {"type": "node", "id": 6277264573, "lat": 40.4447917, "lon": -3.7084512}, {"type": "node", "id": 6277264574, "lat": 40.4448035, "lon": -3.7084582}, {"type": "node", "id": 6277264575, "lat": 40.4448074, "lon": -3.7084651}, {"type": "node", "id": 6277264576, "lat": 40.4448094, "lon": -3.7084734}, {"type": "node", "id": 6277264577, "lat": 40.4448092, "lon": -3.708482}, {"type": "node", "id": 6277264578, "lat": 40.4447849, "lon": -3.7085018}, {"type": "node", "id": 6277264579, "lat": 40.4447791, "lon": -3.7084984}, {"type": "node", "id": 6277264580, "lat": 40.4447744, "lon": -3.7084927}, {"type": "node", "id": 6277264581, "lat": 40.4447714, "lon": -3.7084854}, {"type": "node", "id": 6277264582, "lat": 40.4447703, "lon": -3.7084771}, {"type": "node", "id": 6284747527, "lat": 40.4488661, "lon": -3.7140694}, {"type": "node", "id": 6284747528, "lat": 40.4488757, "lon": -3.7140773}, {"type": "node", "id": 6301052256, "lat": 40.42383, "lon": -3.6971996}, {"type": "node", "id": 6301052259, "lat": 40.4239642, "lon": -3.6971441}, {"type": "node", "id": 6312277081, "lat": 40.4400514, "lon": -3.7121005, "tags": {"access": "private", "barrier": "gate", "motorcar": "yes", "motorcycle": "yes"}}, {"type": "node", "id": 6314640591, "lat": 40.4406993, "lon": -3.7123758}, {"type": "node", "id": 6314640596, "lat": 40.4400976, "lon": -3.7127581, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640612, "lat": 40.443847, "lon": -3.7151718, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314640613, "lat": 40.440012, "lon": -3.7128944, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640615, "lat": 40.4407135, "lon": -3.7125927, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 6314640616, "lat": 40.4426824, "lon": -3.7143195, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6314640618, "lat": 40.4413015, "lon": -3.7135243, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314640621, "lat": 40.4400002, "lon": -3.7126388, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640622, "lat": 40.4412794, "lon": -3.7127894, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6314640624, "lat": 40.4407164, "lon": -3.7127064}, {"type": "node", "id": 6314674724, "lat": 40.425517, "lon": -3.7018878, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314674725, "lat": 40.4249595, "lon": -3.7020496, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314674726, "lat": 40.4251921, "lon": -3.7031607, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6314750362, "lat": 40.4295849, "lon": -3.7068022}, {"type": "node", "id": 6314750363, "lat": 40.4314513, "lon": -3.7075083, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6314750364, "lat": 40.4314769, "lon": -3.7076909}, {"type": "node", "id": 6314750365, "lat": 40.4314842, "lon": -3.7078052}, {"type": "node", "id": 6314750366, "lat": 40.4292958, "lon": -3.704676}, {"type": "node", "id": 6314750367, "lat": 40.4293073, "lon": -3.7047431}, {"type": "node", "id": 6314750368, "lat": 40.4292038, "lon": -3.7057373}, {"type": "node", "id": 6314750369, "lat": 40.4292269, "lon": -3.7056055}, {"type": "node", "id": 6314750370, "lat": 40.4292944, "lon": -3.7054537}, {"type": "node", "id": 6314750371, "lat": 40.4293992, "lon": -3.7052997}, {"type": "node", "id": 6314750372, "lat": 40.4293219, "lon": -3.7048294}, {"type": "node", "id": 6314750373, "lat": 40.4292909, "lon": -3.7047967}, {"type": "node", "id": 6314750374, "lat": 40.4288324, "lon": -3.7048877}, {"type": "node", "id": 6314750375, "lat": 40.4289311, "lon": -3.7058587}, {"type": "node", "id": 6314750376, "lat": 40.4289628, "lon": -3.7058703}, {"type": "node", "id": 6314750377, "lat": 40.4291994, "lon": -3.705805}, {"type": "node", "id": 6314750378, "lat": 40.4294801, "lon": -3.7063279}, {"type": "node", "id": 6314750379, "lat": 40.4293717, "lon": -3.7062509}, {"type": "node", "id": 6314750380, "lat": 40.4292891, "lon": -3.7061481}, {"type": "node", "id": 6314750381, "lat": 40.4292527, "lon": -3.7060793}, {"type": "node", "id": 6314750382, "lat": 40.4289986, "lon": -3.7061435}, {"type": "node", "id": 6314750383, "lat": 40.4289666, "lon": -3.7062077}, {"type": "node", "id": 6314750384, "lat": 40.4290012, "lon": -3.706531}, {"type": "node", "id": 6314751485, "lat": 40.4290075, "lon": -3.7067188}, {"type": "node", "id": 6314751486, "lat": 40.4290003, "lon": -3.7068791}, {"type": "node", "id": 6314751487, "lat": 40.4289897, "lon": -3.7069709}, {"type": "node", "id": 6314751488, "lat": 40.428963, "lon": -3.7071227}, {"type": "node", "id": 6314751489, "lat": 40.4289195, "lon": -3.7073117}, {"type": "node", "id": 6314751490, "lat": 40.4288645, "lon": -3.7074678}, {"type": "node", "id": 6314751491, "lat": 40.4288067, "lon": -3.707614}, {"type": "node", "id": 6314751492, "lat": 40.4287996, "lon": -3.7076759}, {"type": "node", "id": 6314751493, "lat": 40.4288831, "lon": -3.7077961}, {"type": "node", "id": 6314751494, "lat": 40.4296276, "lon": -3.7076759}, {"type": "node", "id": 6314751495, "lat": 40.4296578, "lon": -3.7076338}, {"type": "node", "id": 6314751496, "lat": 40.4295343, "lon": -3.7063536}, {"type": "node", "id": 6314751497, "lat": 40.4308842, "lon": -3.7054792}, {"type": "node", "id": 6314751498, "lat": 40.4312992, "lon": -3.7053289}, {"type": "node", "id": 6314751499, "lat": 40.4313524, "lon": -3.7053774}, {"type": "node", "id": 6314751500, "lat": 40.4314353, "lon": -3.7068669}, {"type": "node", "id": 6314751501, "lat": 40.4302694, "lon": -3.7070092}, {"type": "node", "id": 6314751502, "lat": 40.4303233, "lon": -3.707715}, {"type": "node", "id": 6314751503, "lat": 40.4314704, "lon": -3.7075981}, {"type": "node", "id": 6314751504, "lat": 40.4314728, "lon": -3.707626}, {"type": "node", "id": 6314751505, "lat": 40.4315448, "lon": -3.7087546}, {"type": "node", "id": 6314751506, "lat": 40.4315145, "lon": -3.708796}, {"type": "node", "id": 6314751507, "lat": 40.4301106, "lon": -3.7089123}, {"type": "node", "id": 6314751508, "lat": 40.4300443, "lon": -3.7088913}, {"type": "node", "id": 6314751509, "lat": 40.4299953, "lon": -3.708796}, {"type": "node", "id": 6314751510, "lat": 40.4299834, "lon": -3.708679}, {"type": "node", "id": 6314751511, "lat": 40.429776, "lon": -3.7063126}, {"type": "node", "id": 6314751512, "lat": 40.4298022, "lon": -3.7062689}, {"type": "node", "id": 6314751513, "lat": 40.4298843, "lon": -3.706184}, {"type": "node", "id": 6314751514, "lat": 40.429935, "lon": -3.7060864}, {"type": "node", "id": 6314751515, "lat": 40.4299796, "lon": -3.7059567}, {"type": "node", "id": 6314751516, "lat": 40.430004, "lon": -3.705827}, {"type": "node", "id": 6314751517, "lat": 40.4295462, "lon": -3.7047606}, {"type": "node", "id": 6314751518, "lat": 40.4295584, "lon": -3.7047364}, {"type": "node", "id": 6314751519, "lat": 40.4302207, "lon": -3.705408}, {"type": "node", "id": 6314751520, "lat": 40.4301936, "lon": -3.7054528}, {"type": "node", "id": 6314751521, "lat": 40.4299857, "lon": -3.7055067}, {"type": "node", "id": 6314751522, "lat": 40.4299577, "lon": -3.7054734}, {"type": "node", "id": 6314751523, "lat": 40.4299044, "lon": -3.7054034}, {"type": "node", "id": 6314751524, "lat": 40.4298301, "lon": -3.7053184}, {"type": "node", "id": 6314751525, "lat": 40.4297707, "lon": -3.705276}, {"type": "node", "id": 6314751526, "lat": 40.4296265, "lon": -3.7052243}, {"type": "node", "id": 6314751527, "lat": 40.4291066, "lon": -3.7058327}, {"type": "node", "id": 6314751528, "lat": 40.4291407, "lon": -3.7061071}, {"type": "node", "id": 6314751529, "lat": 40.429547, "lon": -3.70637}, {"type": "node", "id": 6314751530, "lat": 40.4297707, "lon": -3.7063413}, {"type": "node", "id": 6314751531, "lat": 40.4300626, "lon": -3.7054987}, {"type": "node", "id": 6314751532, "lat": 40.4300975, "lon": -3.705765}, {"type": "node", "id": 6318921544, "lat": 40.4353135, "lon": -3.7191392, "tags": {"bus": "yes", "layer": "-1", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 6318921546, "lat": 40.4355279, "lon": -3.7189266}, {"type": "node", "id": 6318921547, "lat": 40.4355354, "lon": -3.7189037}, {"type": "node", "id": 6318921548, "lat": 40.4354858, "lon": -3.7194126}, {"type": "node", "id": 6318921549, "lat": 40.4355543, "lon": -3.7193372}, {"type": "node", "id": 6318921550, "lat": 40.4355763, "lon": -3.719298}, {"type": "node", "id": 6318921551, "lat": 40.4356106, "lon": -3.7191975}, {"type": "node", "id": 6318921552, "lat": 40.4356285, "lon": -3.719055}, {"type": "node", "id": 6318921553, "lat": 40.4353192, "lon": -3.7194555}, {"type": "node", "id": 6318921555, "lat": 40.4356769, "lon": -3.7200754, "tags": {"noexit": "yes"}}, {"type": "node", "id": 6318921556, "lat": 40.4353853, "lon": -3.7195029}, {"type": "node", "id": 6318921557, "lat": 40.4356127, "lon": -3.7191573}, {"type": "node", "id": 6318921558, "lat": 40.4356369, "lon": -3.7192838}, {"type": "node", "id": 6318921559, "lat": 40.4355632, "lon": -3.7190631}, {"type": "node", "id": 6318921560, "lat": 40.4359706, "lon": -3.7198652, "tags": {"noexit": "yes"}}, {"type": "node", "id": 6318921562, "lat": 40.4351403, "lon": -3.7192559}, {"type": "node", "id": 6319067315, "lat": 40.4350319, "lon": -3.7191367}, {"type": "node", "id": 6320489341, "lat": 40.4381028, "lon": -3.7178186}, {"type": "node", "id": 6320489342, "lat": 40.43811, "lon": -3.7179979, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6320489343, "lat": 40.4381448, "lon": -3.7182706}, {"type": "node", "id": 6320489344, "lat": 40.4382497, "lon": -3.7184759}, {"type": "node", "id": 6327649411, "lat": 40.4436137, "lon": -3.7162737}, {"type": "node", "id": 6327649412, "lat": 40.4435867, "lon": -3.716275, "tags": {"access": "permissive", "barrier": "gate"}}, {"type": "node", "id": 6327649413, "lat": 40.4434798, "lon": -3.7162811}, {"type": "node", "id": 6327649422, "lat": 40.4440603, "lon": -3.717539}, {"type": "node", "id": 6327649423, "lat": 40.4440592, "lon": -3.7173184}, {"type": "node", "id": 6327649424, "lat": 40.443949, "lon": -3.7173204}, {"type": "node", "id": 6327649425, "lat": 40.443924, "lon": -3.7172259, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 6327649426, "lat": 40.4439022, "lon": -3.7171422}, {"type": "node", "id": 6327649427, "lat": 40.4436142, "lon": -3.7173382}, {"type": "node", "id": 6327649428, "lat": 40.4436096, "lon": -3.7173315, "tags": {"access": "permissive", "barrier": "gate"}}, {"type": "node", "id": 6327649429, "lat": 40.4436018, "lon": -3.7173219}, {"type": "node", "id": 6329891673, "lat": 40.4351536, "lon": -3.7192564}, {"type": "node", "id": 6329891674, "lat": 40.4347696, "lon": -3.7196408}, {"type": "node", "id": 6329891675, "lat": 40.4346636, "lon": -3.7196523}, {"type": "node", "id": 6329891676, "lat": 40.4348973, "lon": -3.7190747}, {"type": "node", "id": 6329891677, "lat": 40.4350104, "lon": -3.7191561}, {"type": "node", "id": 6329901685, "lat": 40.4333247, "lon": -3.7230184}, {"type": "node", "id": 6329901687, "lat": 40.4332695, "lon": -3.7224609}, {"type": "node", "id": 6348124038, "lat": 40.4475055, "lon": -3.7158748}, {"type": "node", "id": 6348124039, "lat": 40.4477421, "lon": -3.71572}, {"type": "node", "id": 6348124040, "lat": 40.4478699, "lon": -3.716064}, {"type": "node", "id": 6348124041, "lat": 40.447506, "lon": -3.7151786}, {"type": "node", "id": 6348124042, "lat": 40.4472912, "lon": -3.7153288}, {"type": "node", "id": 6348124043, "lat": 40.4476391, "lon": -3.7162152}, {"type": "node", "id": 6348124044, "lat": 40.4480901, "lon": -3.7159197}, {"type": "node", "id": 6348124045, "lat": 40.4482571, "lon": -3.7163142}, {"type": "node", "id": 6348124046, "lat": 40.4482752, "lon": -3.7163599}, {"type": "node", "id": 6348124047, "lat": 40.4479141, "lon": -3.7166114}, {"type": "node", "id": 6348124048, "lat": 40.448483, "lon": -3.7162054}, {"type": "node", "id": 6348124049, "lat": 40.4487935, "lon": -3.7164677}, {"type": "node", "id": 6348124050, "lat": 40.4480963, "lon": -3.7146983}, {"type": "node", "id": 6348124051, "lat": 40.448536, "lon": -3.7128134}, {"type": "node", "id": 6348124052, "lat": 40.4485598, "lon": -3.7127969}, {"type": "node", "id": 6348124053, "lat": 40.4493072, "lon": -3.7131122}, {"type": "node", "id": 6348124054, "lat": 40.4493285, "lon": -3.7131666}, {"type": "node", "id": 6348124055, "lat": 40.4491477, "lon": -3.7146389}, {"type": "node", "id": 6348124056, "lat": 40.4468327, "lon": -3.7141272}, {"type": "node", "id": 6348124057, "lat": 40.4467473, "lon": -3.7141388}, {"type": "node", "id": 6348124058, "lat": 40.4466971, "lon": -3.7142081}, {"type": "node", "id": 6348124059, "lat": 40.4466418, "lon": -3.7144293}, {"type": "node", "id": 6348124060, "lat": 40.4466506, "lon": -3.7145184}, {"type": "node", "id": 6348124061, "lat": 40.4465928, "lon": -3.7147908}, {"type": "node", "id": 6348124062, "lat": 40.4465476, "lon": -3.7148353}, {"type": "node", "id": 6348124063, "lat": 40.446515, "lon": -3.7149789}, {"type": "node", "id": 6348124064, "lat": 40.4465388, "lon": -3.7150416}, {"type": "node", "id": 6348124065, "lat": 40.4464647, "lon": -3.7153255}, {"type": "node", "id": 6348124066, "lat": 40.4473101, "lon": -3.7174448}, {"type": "node", "id": 6348124067, "lat": 40.4474043, "lon": -3.7173755}, {"type": "node", "id": 6348124068, "lat": 40.4486259, "lon": -3.716564}, {"type": "node", "id": 6348124069, "lat": 40.4484229, "lon": -3.7162544}, {"type": "node", "id": 6348124070, "lat": 40.4482981, "lon": -3.7163439}, {"type": "node", "id": 6348133631, "lat": 40.4458446, "lon": -3.7160961, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 6348133632, "lat": 40.4465435, "lon": -3.7171551, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133633, "lat": 40.4461462, "lon": -3.7156811, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133634, "lat": 40.4447828, "lon": -3.7148308, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133635, "lat": 40.4449695, "lon": -3.7156313, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133636, "lat": 40.444868, "lon": -3.7160057, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133637, "lat": 40.4450052, "lon": -3.716915, "tags": {"highway": "give_way"}}, {"type": "node", "id": 6348133638, "lat": 40.4449994, "lon": -3.7170473, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133639, "lat": 40.4450662, "lon": -3.7169373, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6348133640, "lat": 40.4457834, "lon": -3.7172278, "tags": {"highway": "give_way"}}, {"type": "node", "id": 6348133642, "lat": 40.4458502, "lon": -3.7160496}, {"type": "node", "id": 6348133643, "lat": 40.4458315, "lon": -3.7162066}, {"type": "node", "id": 6348133645, "lat": 40.44593, "lon": -3.7170583}, {"type": "node", "id": 6348133646, "lat": 40.4458806, "lon": -3.7169618}, {"type": "node", "id": 6348133648, "lat": 40.4459047, "lon": -3.7169449}, {"type": "node", "id": 6348133649, "lat": 40.445854, "lon": -3.7169819}, {"type": "node", "id": 6348133650, "lat": 40.4458118, "lon": -3.7170312}, {"type": "node", "id": 6348133651, "lat": 40.4457845, "lon": -3.7171481}, {"type": "node", "id": 6348133652, "lat": 40.4450233, "lon": -3.7168738}, {"type": "node", "id": 6348133653, "lat": 40.445011, "lon": -3.7168476}, {"type": "node", "id": 6348133654, "lat": 40.4449556, "lon": -3.7157291}, {"type": "node", "id": 6348133655, "lat": 40.4449779, "lon": -3.7157159}, {"type": "node", "id": 6348133656, "lat": 40.4450886, "lon": -3.7158079}, {"type": "node", "id": 6348133657, "lat": 40.4452586, "lon": -3.7159231}, {"type": "node", "id": 6348133658, "lat": 40.4453931, "lon": -3.7159776}, {"type": "node", "id": 6348133659, "lat": 40.4455077, "lon": -3.7160251}, {"type": "node", "id": 6348133660, "lat": 40.4461644, "lon": -3.7161635}, {"type": "node", "id": 6348133661, "lat": 40.4462259, "lon": -3.7172184}, {"type": "node", "id": 6348133662, "lat": 40.4463935, "lon": -3.7171719}, {"type": "node", "id": 6348133663, "lat": 40.4465042, "lon": -3.7171234}, {"type": "node", "id": 6348133664, "lat": 40.4465319, "lon": -3.7170648}, {"type": "node", "id": 6348196546, "lat": 40.4446584, "lon": -3.710384}, {"type": "node", "id": 6348196547, "lat": 40.4445527, "lon": -3.7102772}, {"type": "node", "id": 6348196548, "lat": 40.4445121, "lon": -3.7101557}, {"type": "node", "id": 6348196549, "lat": 40.4445365, "lon": -3.7100088}, {"type": "node", "id": 6348196550, "lat": 40.4457882, "lon": -3.7080182}, {"type": "node", "id": 6348196551, "lat": 40.4458756, "lon": -3.7079434}, {"type": "node", "id": 6348196552, "lat": 40.446028, "lon": -3.7079154}, {"type": "node", "id": 6348196553, "lat": 40.4469201, "lon": -3.7084627}, {"type": "node", "id": 6348196554, "lat": 40.4469547, "lon": -3.7085268}, {"type": "node", "id": 6348196555, "lat": 40.4469872, "lon": -3.709137}, {"type": "node", "id": 6348196556, "lat": 40.4469801, "lon": -3.7092585}, {"type": "node", "id": 6348196557, "lat": 40.4469597, "lon": -3.7093746}, {"type": "node", "id": 6348196558, "lat": 40.4467433, "lon": -3.7102505}, {"type": "node", "id": 6348196559, "lat": 40.4464271, "lon": -3.7115023}, {"type": "node", "id": 6348196560, "lat": 40.4461969, "lon": -3.7113967}, {"type": "node", "id": 6348196561, "lat": 40.4462571, "lon": -3.7121917}, {"type": "node", "id": 6348196562, "lat": 40.4457186, "lon": -3.7122425}, {"type": "node", "id": 6348196563, "lat": 40.4456943, "lon": -3.7122271}, {"type": "node", "id": 6348196564, "lat": 40.4456887, "lon": -3.7122064}, {"type": "node", "id": 6348196565, "lat": 40.4460743, "lon": -3.7106497}, {"type": "node", "id": 6348196566, "lat": 40.4461129, "lon": -3.7106243}, {"type": "node", "id": 6348196567, "lat": 40.4466112, "lon": -3.7105876}, {"type": "node", "id": 6348196568, "lat": 40.4466448, "lon": -3.710615}, {"type": "node", "id": 6348196569, "lat": 40.4466382, "lon": -3.7105963}, {"type": "node", "id": 6348196570, "lat": 40.4467083, "lon": -3.7102845}, {"type": "node", "id": 6348196571, "lat": 40.4476102, "lon": -3.7106637}, {"type": "node", "id": 6348196572, "lat": 40.447567, "lon": -3.7108038}, {"type": "node", "id": 6348196573, "lat": 40.4487581, "lon": -3.7113052}, {"type": "node", "id": 6348196575, "lat": 40.4485948, "lon": -3.7120129}, {"type": "node", "id": 6348196576, "lat": 40.4473982, "lon": -3.7115008}, {"type": "node", "id": 6348196577, "lat": 40.4473855, "lon": -3.7114794}, {"type": "node", "id": 6348196578, "lat": 40.4475856, "lon": -3.7108012}, {"type": "node", "id": 6348196579, "lat": 40.4475567, "lon": -3.7108052}, {"type": "node", "id": 6348196580, "lat": 40.4474455, "lon": -3.710761}, {"type": "node", "id": 6348196581, "lat": 40.4474781, "lon": -3.7105965}, {"type": "node", "id": 6348196582, "lat": 40.4475947, "lon": -3.710635}, {"type": "node", "id": 6348196584, "lat": 40.4465895, "lon": -3.7121783}, {"type": "node", "id": 6348197385, "lat": 40.4465275, "lon": -3.7121506, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6348197386, "lat": 40.4464423, "lon": -3.7121115}, {"type": "node", "id": 6348197388, "lat": 40.4465425, "lon": -3.712401}, {"type": "node", "id": 6348197389, "lat": 40.4465912, "lon": -3.7122637}, {"type": "node", "id": 6348197390, "lat": 40.4458762, "lon": -3.7144215}, {"type": "node", "id": 6348197391, "lat": 40.4467879, "lon": -3.7107048}, {"type": "node", "id": 6348197392, "lat": 40.4466387, "lon": -3.7106443}, {"type": "node", "id": 6348197393, "lat": 40.4466911, "lon": -3.7106656}, {"type": "node", "id": 6348197394, "lat": 40.4469358, "lon": -3.7107647}, {"type": "node", "id": 6348197395, "lat": 40.4468781, "lon": -3.7107405, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 6348197396, "lat": 40.4470148, "lon": -3.7105714}, {"type": "node", "id": 6348197397, "lat": 40.4475897, "lon": -3.710655}, {"type": "node", "id": 6348197398, "lat": 40.4479666, "lon": -3.709161}, {"type": "node", "id": 6348197401, "lat": 40.4482338, "lon": -3.7109287}, {"type": "node", "id": 6348197402, "lat": 40.447866, "lon": -3.7090796}, {"type": "node", "id": 6348197403, "lat": 40.4473024, "lon": -3.7087247}, {"type": "node", "id": 6348197404, "lat": 40.4473017, "lon": -3.7090429}, {"type": "node", "id": 6348197405, "lat": 40.4472966, "lon": -3.7092624}, {"type": "node", "id": 6348197406, "lat": 40.4472758, "lon": -3.7094254}, {"type": "node", "id": 6348197407, "lat": 40.4470359, "lon": -3.7103653}, {"type": "node", "id": 6348197408, "lat": 40.4470522, "lon": -3.7104334}, {"type": "node", "id": 6348197409, "lat": 40.4474642, "lon": -3.7106029}, {"type": "node", "id": 6348197410, "lat": 40.4474921, "lon": -3.7105896}, {"type": "node", "id": 6348197411, "lat": 40.4474438, "lon": -3.7107383}, {"type": "node", "id": 6348197412, "lat": 40.4470298, "lon": -3.7105616}, {"type": "node", "id": 6348197413, "lat": 40.446977, "lon": -3.7105963}, {"type": "node", "id": 6348197414, "lat": 40.4465782, "lon": -3.7122244}, {"type": "node", "id": 6348197415, "lat": 40.4466001, "lon": -3.7122905}, {"type": "node", "id": 6348197416, "lat": 40.4470065, "lon": -3.7124721}, {"type": "node", "id": 6348197417, "lat": 40.4470359, "lon": -3.7124574}, {"type": "node", "id": 6348197418, "lat": 40.4462333, "lon": -3.7135789}, {"type": "node", "id": 6348197419, "lat": 40.4462536, "lon": -3.7136457}, {"type": "node", "id": 6348197420, "lat": 40.4466448, "lon": -3.7138059}, {"type": "node", "id": 6348197421, "lat": 40.4467067, "lon": -3.7137685}, {"type": "node", "id": 6348197422, "lat": 40.4470004, "lon": -3.7126025}, {"type": "node", "id": 6348197423, "lat": 40.4469966, "lon": -3.7125859}, {"type": "node", "id": 6348197424, "lat": 40.4465589, "lon": -3.7124006}, {"type": "node", "id": 6348197425, "lat": 40.4465147, "lon": -3.7124441}, {"type": "node", "id": 6348197426, "lat": 40.4458177, "lon": -3.7138953}, {"type": "node", "id": 6348197427, "lat": 40.4448484, "lon": -3.7124921}, {"type": "node", "id": 6348197428, "lat": 40.4461667, "lon": -3.712384}, {"type": "node", "id": 6348197429, "lat": 40.4461982, "lon": -3.7124354}, {"type": "node", "id": 6366504393, "lat": 40.4476454, "lon": -3.7195762}, {"type": "node", "id": 6366504394, "lat": 40.4476618, "lon": -3.7194919, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6366504395, "lat": 40.4477349, "lon": -3.719146}, {"type": "node", "id": 6370957358, "lat": 40.4344309, "lon": -3.6921251}, {"type": "node", "id": 6370957359, "lat": 40.4346203, "lon": -3.6921197}, {"type": "node", "id": 6370992540, "lat": 40.4348142, "lon": -3.6987837}, {"type": "node", "id": 6370992541, "lat": 40.4347198, "lon": -3.699257}, {"type": "node", "id": 6370992542, "lat": 40.4347395, "lon": -3.6991711, "tags": {"name": "Eloy Gonzalo , pares", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "This entrance has steps, lift to station nearby to East."}}, {"type": "node", "id": 6380793478, "lat": 40.4449075, "lon": -3.7154304, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6380793479, "lat": 40.4458525, "lon": -3.7152488}, {"type": "node", "id": 6380793480, "lat": 40.4458794, "lon": -3.7153304, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 6380793481, "lat": 40.4459255, "lon": -3.7134817, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 6380793483, "lat": 40.445777, "lon": -3.7172569, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6380793484, "lat": 40.4462376, "lon": -3.7173214, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 6380794185, "lat": 40.4462351, "lon": -3.7172658}, {"type": "node", "id": 6380794186, "lat": 40.4462521, "lon": -3.7176445}, {"type": "node", "id": 6380794187, "lat": 40.4462375, "lon": -3.7178178}, {"type": "node", "id": 6380794196, "lat": 40.4466419, "lon": -3.7171599}, {"type": "node", "id": 6380794197, "lat": 40.4468875, "lon": -3.7169993}, {"type": "node", "id": 6380794198, "lat": 40.4465644, "lon": -3.7172103}, {"type": "node", "id": 6380794199, "lat": 40.4465199, "lon": -3.7170901}, {"type": "node", "id": 6380794200, "lat": 40.4465841, "lon": -3.7172145}, {"type": "node", "id": 6380794201, "lat": 40.4466241, "lon": -3.7173843}, {"type": "node", "id": 6380794202, "lat": 40.4466384, "lon": -3.7176079}, {"type": "node", "id": 6380794203, "lat": 40.4465128, "lon": -3.7182596}, {"type": "node", "id": 6380794204, "lat": 40.4464544, "lon": -3.7183351}, {"type": "node", "id": 6380794205, "lat": 40.4460376, "lon": -3.7187778}, {"type": "node", "id": 6380794206, "lat": 40.4460149, "lon": -3.7187843}, {"type": "node", "id": 6380794207, "lat": 40.4459893, "lon": -3.7187719}, {"type": "node", "id": 6380794208, "lat": 40.4458295, "lon": -3.7184783}, {"type": "node", "id": 6380794209, "lat": 40.4457718, "lon": -3.7182923}, {"type": "node", "id": 6380794210, "lat": 40.4457323, "lon": -3.7180947}, {"type": "node", "id": 6380794211, "lat": 40.445721, "lon": -3.7178873}, {"type": "node", "id": 6380794212, "lat": 40.4457377, "lon": -3.7176675}, {"type": "node", "id": 6380794213, "lat": 40.4458206, "lon": -3.7172696}, {"type": "node", "id": 6380794214, "lat": 40.4460233, "lon": -3.7173214}, {"type": "node", "id": 6380794215, "lat": 40.446228, "lon": -3.717324}, {"type": "node", "id": 6380794216, "lat": 40.4464159, "lon": -3.7172715}, {"type": "node", "id": 6380794217, "lat": 40.4465476, "lon": -3.7172067}, {"type": "node", "id": 6380794248, "lat": 40.4467683, "lon": -3.7165621}, {"type": "node", "id": 6380794250, "lat": 40.4467795, "lon": -3.7166007}, {"type": "node", "id": 6380794253, "lat": 40.4463463, "lon": -3.7167729}, {"type": "node", "id": 6380794254, "lat": 40.4463254, "lon": -3.7167243}, {"type": "node", "id": 6380794255, "lat": 40.4463484, "lon": -3.7167087}, {"type": "node", "id": 6380794256, "lat": 40.4463665, "lon": -3.7167555}, {"type": "node", "id": 6380794257, "lat": 40.4463957, "lon": -3.7167308}, {"type": "node", "id": 6380794264, "lat": 40.4461428, "lon": -3.7161114, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 6380794265, "lat": 40.4461803, "lon": -3.7156062}, {"type": "node", "id": 6380794266, "lat": 40.4462203, "lon": -3.7155567}, {"type": "node", "id": 6380794267, "lat": 40.4462593, "lon": -3.7154892}, {"type": "node", "id": 6380794268, "lat": 40.4462889, "lon": -3.7154128}, {"type": "node", "id": 6380794269, "lat": 40.4463693, "lon": -3.7150802}, {"type": "node", "id": 6380794270, "lat": 40.445953, "lon": -3.7149439, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 6380794271, "lat": 40.4459188, "lon": -3.7149902}, {"type": "node", "id": 6380794272, "lat": 40.4461288, "lon": -3.7156384}, {"type": "node", "id": 6380794278, "lat": 40.4458342, "lon": -3.7152576, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6380794279, "lat": 40.4458586, "lon": -3.7153409, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6380794280, "lat": 40.4459513, "lon": -3.715294}, {"type": "node", "id": 6380794281, "lat": 40.4457548, "lon": -3.7153935}, {"type": "node", "id": 6380794282, "lat": 40.4457316, "lon": -3.7153074}, {"type": "node", "id": 6380794283, "lat": 40.4459231, "lon": -3.7152145}, {"type": "node", "id": 6380794286, "lat": 40.4449245, "lon": -3.714924}, {"type": "node", "id": 6380794287, "lat": 40.444947, "lon": -3.7155505}, {"type": "node", "id": 6380794288, "lat": 40.4450209, "lon": -3.7156282}, {"type": "node", "id": 6380794289, "lat": 40.4451327, "lon": -3.7157253}, {"type": "node", "id": 6380794290, "lat": 40.4452201, "lon": -3.715787}, {"type": "node", "id": 6380794291, "lat": 40.4452889, "lon": -3.7158292}, {"type": "node", "id": 6380794292, "lat": 40.4453853, "lon": -3.7158748}, {"type": "node", "id": 6380794293, "lat": 40.4455318, "lon": -3.715928}, {"type": "node", "id": 6380794294, "lat": 40.4461172, "lon": -3.7160496}, {"type": "node", "id": 6380794297, "lat": 40.4457177, "lon": -3.7150396}, {"type": "node", "id": 6380794298, "lat": 40.4457024, "lon": -3.7151036, "tags": {"entrance": "yes"}}, {"type": "node", "id": 6380794300, "lat": 40.44558, "lon": -3.7150397}, {"type": "node", "id": 6380794301, "lat": 40.4455572, "lon": -3.7150198}, {"type": "node", "id": 6380794302, "lat": 40.4455565, "lon": -3.7149772}, {"type": "node", "id": 6380794303, "lat": 40.4455967, "lon": -3.7150042}, {"type": "node", "id": 6380794304, "lat": 40.4456005, "lon": -3.7149932, "tags": {"barrier": "entrance"}}, {"type": "node", "id": 6380794305, "lat": 40.4455812, "lon": -3.7148711}, {"type": "node", "id": 6380794307, "lat": 40.445561, "lon": -3.7146909}, {"type": "node", "id": 6380794308, "lat": 40.4457204, "lon": -3.7140509}, {"type": "node", "id": 6380794309, "lat": 40.4457795, "lon": -3.7140628}, {"type": "node", "id": 6380794313, "lat": 40.4459902, "lon": -3.7148048}, {"type": "node", "id": 6380794314, "lat": 40.4459699, "lon": -3.7149085}, {"type": "node", "id": 6380794324, "lat": 40.4457798, "lon": -3.714023}, {"type": "node", "id": 6380794329, "lat": 40.4462264, "lon": -3.7138145}, {"type": "node", "id": 6380794330, "lat": 40.4462705, "lon": -3.7136526}, {"type": "node", "id": 6380794336, "lat": 40.4461299, "lon": -3.7126973, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6380794337, "lat": 40.4460935, "lon": -3.7128371, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6380794339, "lat": 40.4461098, "lon": -3.712689}, {"type": "node", "id": 6380794340, "lat": 40.4460761, "lon": -3.7128299}, {"type": "node", "id": 6380794341, "lat": 40.4461558, "lon": -3.7128628}, {"type": "node", "id": 6380794343, "lat": 40.4463628, "lon": -3.712477}, {"type": "node", "id": 6380794345, "lat": 40.4459048, "lon": -3.7134725, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6380794346, "lat": 40.4458377, "lon": -3.7129025}, {"type": "node", "id": 6380794347, "lat": 40.4458647, "lon": -3.7134548}, {"type": "node", "id": 6380794348, "lat": 40.4459965, "lon": -3.7135131}, {"type": "node", "id": 6380794349, "lat": 40.4458762, "lon": -3.7136478, "tags": {"highway": "elevator", "railway": "subway_entrance"}}, {"type": "node", "id": 6389722415, "lat": 40.4455392, "lon": -3.6918596, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 6389722416, "lat": 40.4453101, "lon": -3.6918834, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 6417677196, "lat": 40.4305999, "lon": -3.6898163}, {"type": "node", "id": 6417677197, "lat": 40.4307895, "lon": -3.6897931}, {"type": "node", "id": 6417677198, "lat": 40.4309316, "lon": -3.6897509}, {"type": "node", "id": 6417677199, "lat": 40.4310723, "lon": -3.6897106}, {"type": "node", "id": 6417677200, "lat": 40.4311085, "lon": -3.689698}, {"type": "node", "id": 6417677201, "lat": 40.4311378, "lon": -3.6897204}, {"type": "node", "id": 6417677202, "lat": 40.431146, "lon": -3.6897357}, {"type": "node", "id": 6417677203, "lat": 40.4306812, "lon": -3.6898149, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6420985242, "lat": 40.4400113, "lon": -3.6847733}, {"type": "node", "id": 6424299725, "lat": 40.4378788, "lon": -3.7042373}, {"type": "node", "id": 6424299726, "lat": 40.4378646, "lon": -3.7031993}, {"type": "node", "id": 6424299727, "lat": 40.4381778, "lon": -3.7031979}, {"type": "node", "id": 6432147970, "lat": 40.440032, "lon": -3.712094}, {"type": "node", "id": 6432147971, "lat": 40.4402035, "lon": -3.7121932}, {"type": "node", "id": 6432147972, "lat": 40.4402639, "lon": -3.7120018}, {"type": "node", "id": 6432147973, "lat": 40.4400136, "lon": -3.7118487}, {"type": "node", "id": 6432147974, "lat": 40.4399937, "lon": -3.7117871}, {"type": "node", "id": 6432147975, "lat": 40.4400969, "lon": -3.7114913}, {"type": "node", "id": 6432147976, "lat": 40.4403501, "lon": -3.7116554}, {"type": "node", "id": 6432147977, "lat": 40.4402402, "lon": -3.7119873}, {"type": "node", "id": 6432147978, "lat": 40.4401103, "lon": -3.7119078}, {"type": "node", "id": 6432147979, "lat": 40.4402255, "lon": -3.7115747}, {"type": "node", "id": 6440420377, "lat": 40.4342324, "lon": -3.7143569}, {"type": "node", "id": 6440420378, "lat": 40.4330444, "lon": -3.713458}, {"type": "node", "id": 6440420379, "lat": 40.4330767, "lon": -3.7134013}, {"type": "node", "id": 6440420380, "lat": 40.434157, "lon": -3.7133058}, {"type": "node", "id": 6440420381, "lat": 40.4342055, "lon": -3.7133447}, {"type": "node", "id": 6440420382, "lat": 40.4342782, "lon": -3.7142826}, {"type": "node", "id": 6440420383, "lat": 40.4329692, "lon": -3.7144353}, {"type": "node", "id": 6440431086, "lat": 40.4329718, "lon": -3.7144921, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 6441681703, "lat": 40.4300963, "lon": -3.7120887}, {"type": "node", "id": 6441681704, "lat": 40.4305418, "lon": -3.7141401}, {"type": "node", "id": 6441681706, "lat": 40.4306896, "lon": -3.7155424}, {"type": "node", "id": 6441681707, "lat": 40.430732, "lon": -3.7157232}, {"type": "node", "id": 6441681708, "lat": 40.4307039, "lon": -3.715699}, {"type": "node", "id": 6441681709, "lat": 40.4306088, "lon": -3.7147135}, {"type": "node", "id": 6441681710, "lat": 40.4306071, "lon": -3.7146501, "tags": {"highway": "crossing"}}, {"type": "node", "id": 6441681711, "lat": 40.4306005, "lon": -3.7145678}, {"type": "node", "id": 6441681712, "lat": 40.4305784, "lon": -3.7145356}, {"type": "node", "id": 6441681713, "lat": 40.4304967, "lon": -3.7136525}, {"type": "node", "id": 6441681714, "lat": 40.4305238, "lon": -3.7135921}, {"type": "node", "id": 6441681715, "lat": 40.4305033, "lon": -3.7134393}, {"type": "node", "id": 6441681716, "lat": 40.430463, "lon": -3.7133863}, {"type": "node", "id": 6441681717, "lat": 40.4304247, "lon": -3.712992}, {"type": "node", "id": 6441681718, "lat": 40.4303344, "lon": -3.7120526}, {"type": "node", "id": 6441681719, "lat": 40.4303266, "lon": -3.7119411}, {"type": "node", "id": 6441681720, "lat": 40.4303316, "lon": -3.7117713}, {"type": "node", "id": 6441681722, "lat": 40.430192, "lon": -3.7105599}, {"type": "node", "id": 6441681723, "lat": 40.4301833, "lon": -3.710403}, {"type": "node", "id": 6441681724, "lat": 40.4301557, "lon": -3.7104043}, {"type": "node", "id": 6441681725, "lat": 40.4301055, "lon": -3.7089957, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 6441681726, "lat": 40.4300261, "lon": -3.7091799}, {"type": "node", "id": 6441681727, "lat": 40.430071, "lon": -3.7091045}, {"type": "node", "id": 6441681728, "lat": 40.4301144, "lon": -3.7090813}, {"type": "node", "id": 6441681729, "lat": 40.4300963, "lon": -3.7089078}, {"type": "node", "id": 6441681730, "lat": 40.429678, "lon": -3.7078469}, {"type": "node", "id": 6441681731, "lat": 40.4297379, "lon": -3.7082377}, {"type": "node", "id": 6441681732, "lat": 40.4297534, "lon": -3.7084499}, {"type": "node", "id": 6441681733, "lat": 40.4297535, "lon": -3.7086482}, {"type": "node", "id": 6441681734, "lat": 40.429701, "lon": -3.7087327}, {"type": "node", "id": 6441681735, "lat": 40.42968, "lon": -3.7088507}, {"type": "node", "id": 6441681736, "lat": 40.4297137, "lon": -3.7090223}, {"type": "node", "id": 6441681737, "lat": 40.4297535, "lon": -3.709133}, {"type": "node", "id": 6441681738, "lat": 40.4298071, "lon": -3.7091296}, {"type": "node", "id": 6441681739, "lat": 40.4299358, "lon": -3.7104392}, {"type": "node", "id": 6441681740, "lat": 40.4299426, "lon": -3.7105797}, {"type": "node", "id": 6441681743, "lat": 40.4303577, "lon": -3.7146227, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6441681744, "lat": 40.4306156, "lon": -3.7156313, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681745, "lat": 40.430394, "lon": -3.7133396, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681746, "lat": 40.4302245, "lon": -3.7117011, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681747, "lat": 40.4301054, "lon": -3.7103619, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681748, "lat": 40.4298887, "lon": -3.7084169, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681749, "lat": 40.4296161, "lon": -3.7064262, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681751, "lat": 40.4298828, "lon": -3.7092989, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681752, "lat": 40.4300345, "lon": -3.7107434, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681753, "lat": 40.4303717, "lon": -3.7142244, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6441681754, "lat": 40.4301829, "lon": -3.7121484, "tags": {"cycleway": "asl"}}, {"type": "node", "id": 6450370645, "lat": 40.4352082, "lon": -3.7192367}, {"type": "node", "id": 6450370646, "lat": 40.4354095, "lon": -3.7191173, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 6450370648, "lat": 40.435535, "lon": -3.719013}, {"type": "node", "id": 6450370649, "lat": 40.4360176, "lon": -3.7196702, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 6450370650, "lat": 40.435691, "lon": -3.7190841, "tags": {"bus": "yes", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 6450370651, "lat": 40.4356091, "lon": -3.7189372, "tags": {"bus": "yes", "layer": "-1", "level": "-1", "public_transport": "stop_position"}}, {"type": "node", "id": 6450890223, "lat": 40.4347158, "lon": -3.6985091}, {"type": "node", "id": 6450890224, "lat": 40.4350621, "lon": -3.6982818, "tags": {"name": "General Mart\u00ednez Campos", "railway": "subway_entrance"}}, {"type": "node", "id": 6450890225, "lat": 40.4347964, "lon": -3.6984851, "tags": {"name": "Santa Engracia", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 6450890226, "lat": 40.4347431, "lon": -3.6985393}, {"type": "node", "id": 6450890227, "lat": 40.4350643, "lon": -3.6981921}, {"type": "node", "id": 6450890228, "lat": 40.4350831, "lon": -3.6981753}, {"type": "node", "id": 6474157220, "lat": 40.4305476, "lon": -3.7144202, "tags": {"elevator": "yes", "highway": "elevator", "railway": "subway_entrance"}}, {"type": "node", "id": 6501186700, "lat": 40.4470863, "lon": -3.7102406}, {"type": "node", "id": 6501186701, "lat": 40.4473004, "lon": -3.7091537}, {"type": "node", "id": 6501186702, "lat": 40.4472926, "lon": -3.7088731}, {"type": "node", "id": 6501186703, "lat": 40.4472872, "lon": -3.7087883}, {"type": "node", "id": 6501186704, "lat": 40.4472909, "lon": -3.7087567}, {"type": "node", "id": 6501186705, "lat": 40.4470899, "lon": -3.7102251}, {"type": "node", "id": 6501186706, "lat": 40.4470755, "lon": -3.7102173}, {"type": "node", "id": 6501186707, "lat": 40.4470795, "lon": -3.7101797}, {"type": "node", "id": 6501186708, "lat": 40.4471388, "lon": -3.7099435}, {"type": "node", "id": 6501186709, "lat": 40.4471491, "lon": -3.7099045}, {"type": "node", "id": 6501186710, "lat": 40.447163, "lon": -3.7099108}, {"type": "node", "id": 6501186711, "lat": 40.4460095, "lon": -3.7131594}, {"type": "node", "id": 6501186712, "lat": 40.4460173, "lon": -3.7130925}, {"type": "node", "id": 6501186713, "lat": 40.4460483, "lon": -3.7129502}, {"type": "node", "id": 6501186714, "lat": 40.4460565, "lon": -3.7130017}, {"type": "node", "id": 6501186715, "lat": 40.4460668, "lon": -3.7129551}, {"type": "node", "id": 6501186716, "lat": 40.4379267, "lon": -3.691389, "tags": {"name": "Miguel \u00c1ngel", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 6515115932, "lat": 40.4251847, "lon": -3.6910455}, {"type": "node", "id": 6592972601, "lat": 40.429896, "lon": -3.7142458}, {"type": "node", "id": 6592972602, "lat": 40.4298827, "lon": -3.7141135}, {"type": "node", "id": 6592972603, "lat": 40.4298976, "lon": -3.7141728}, {"type": "node", "id": 6612101328, "lat": 40.4396369, "lon": -3.7258454}, {"type": "node", "id": 6612101339, "lat": 40.4382243, "lon": -3.7248416}, {"type": "node", "id": 6612101340, "lat": 40.4373908, "lon": -3.7238892}, {"type": "node", "id": 6614655200, "lat": 40.4396499, "lon": -3.7010476}, {"type": "node", "id": 6614655201, "lat": 40.4399221, "lon": -3.7011876}, {"type": "node", "id": 6614655202, "lat": 40.4399672, "lon": -3.7011653}, {"type": "node", "id": 6614655203, "lat": 40.4402521, "lon": -3.7012627}, {"type": "node", "id": 6614655204, "lat": 40.4401495, "lon": -3.7013405}, {"type": "node", "id": 6614655205, "lat": 40.4400198, "lon": -3.7013656}, {"type": "node", "id": 6614655206, "lat": 40.439768, "lon": -3.7013369}, {"type": "node", "id": 6614655207, "lat": 40.4396837, "lon": -3.7011417}, {"type": "node", "id": 6614655208, "lat": 40.4396874, "lon": -3.7011045}, {"type": "node", "id": 6614655209, "lat": 40.4399839, "lon": -3.7013011}, {"type": "node", "id": 6614655211, "lat": 40.4396707, "lon": -3.7009652, "tags": {"access": "yes", "barrier": "gate"}}, {"type": "node", "id": 6614655212, "lat": 40.4388158, "lon": -3.7002565}, {"type": "node", "id": 6634926258, "lat": 40.4324109, "lon": -3.6978853}, {"type": "node", "id": 6634926259, "lat": 40.4325612, "lon": -3.6978311}, {"type": "node", "id": 6684049122, "lat": 40.4481036, "lon": -3.6981184}, {"type": "node", "id": 6684049123, "lat": 40.4481412, "lon": -3.6980798}, {"type": "node", "id": 6684049124, "lat": 40.4481491, "lon": -3.6980463}, {"type": "node", "id": 6684049125, "lat": 40.4481335, "lon": -3.6977646, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 6684049126, "lat": 40.4480297, "lon": -3.6959744, "tags": {"amenity": "parking_entrance", "name": "Interparking Hernani", "parking": "underground", "phone": "+34 915 54 53 26", "website": "https://www.interparking.es/es-ES/"}}, {"type": "node", "id": 6684049127, "lat": 40.4480128, "lon": -3.695732}, {"type": "node", "id": 6684049128, "lat": 40.4480046, "lon": -3.6957018}, {"type": "node", "id": 6684049129, "lat": 40.4479586, "lon": -3.6956648}, {"type": "node", "id": 6720067362, "lat": 40.4352616, "lon": -3.6990104}, {"type": "node", "id": 6764785306, "lat": 40.4510892, "lon": -3.6988964}, {"type": "node", "id": 6764785307, "lat": 40.4511591, "lon": -3.6988873}, {"type": "node", "id": 6764785308, "lat": 40.451119, "lon": -3.6994532}, {"type": "node", "id": 6764785309, "lat": 40.4511902, "lon": -3.6994408}, {"type": "node", "id": 6764785310, "lat": 40.4510783, "lon": -3.698693}, {"type": "node", "id": 6764785311, "lat": 40.4511479, "lon": -3.698688}, {"type": "node", "id": 6764785312, "lat": 40.4510647, "lon": -3.6984392}, {"type": "node", "id": 6764785313, "lat": 40.4511335, "lon": -3.6984324}, {"type": "node", "id": 6764785314, "lat": 40.4510581, "lon": -3.6983146}, {"type": "node", "id": 6764785315, "lat": 40.4511211, "lon": -3.6994932}, {"type": "node", "id": 6764785316, "lat": 40.451131, "lon": -3.6995308}, {"type": "node", "id": 6764785317, "lat": 40.4509802, "lon": -3.6995631}, {"type": "node", "id": 6764785318, "lat": 40.4511947, "lon": -3.6995215}, {"type": "node", "id": 6764785319, "lat": 40.4508706, "lon": -3.6996978}, {"type": "node", "id": 6764785320, "lat": 40.4508669, "lon": -3.6998144}, {"type": "node", "id": 6764785321, "lat": 40.4508687, "lon": -3.6997566, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6764785322, "lat": 40.4512608, "lon": -3.6995207}, {"type": "node", "id": 6764785324, "lat": 40.4513525, "lon": -3.6982859}, {"type": "node", "id": 6764785325, "lat": 40.4521617, "lon": -3.6993651}, {"type": "node", "id": 6764785326, "lat": 40.451904, "lon": -3.6994084}, {"type": "node", "id": 6764785327, "lat": 40.4516758, "lon": -3.6994459}, {"type": "node", "id": 6764785328, "lat": 40.4514255, "lon": -3.6994888}, {"type": "node", "id": 6764785329, "lat": 40.4511956, "lon": -3.6995333}, {"type": "node", "id": 6764785330, "lat": 40.4511266, "lon": -3.6983081}, {"type": "node", "id": 6764785331, "lat": 40.4516087, "lon": -3.6982606}, {"type": "node", "id": 6764785332, "lat": 40.4518387, "lon": -3.6982384}, {"type": "node", "id": 6764785333, "lat": 40.4520953, "lon": -3.6982135}, {"type": "node", "id": 6764785334, "lat": 40.4523656, "lon": -3.6981785}, {"type": "node", "id": 6764785335, "lat": 40.4524338, "lon": -3.6993217}, {"type": "node", "id": 6764785338, "lat": 40.4524394, "lon": -3.6992908}, {"type": "node", "id": 6833299479, "lat": 40.4379996, "lon": -3.7179725, "tags": {"bus": "yes", "highway": "bus_stop", "name": "Cristo Rey", "operator": "EMT Madrid", "public_transport": "platform", "ref": "4608", "source": "https://navegapormadrid.emtmadrid.es/app/", "url": "http://www.citram.es/HORARIOS/info.aspx?estacion=6_4608", "website": "https://www.crtm.es/widgets/#/stop/6_4608"}}, {"type": "node", "id": 6841096835, "lat": 40.4270886, "lon": -3.7044475}, {"type": "node", "id": 6841096836, "lat": 40.4269049, "lon": -3.7044703}, {"type": "node", "id": 6841096837, "lat": 40.4269765, "lon": -3.7044614}, {"type": "node", "id": 6841096838, "lat": 40.4272394, "lon": -3.7040161}, {"type": "node", "id": 6841096839, "lat": 40.4271934, "lon": -3.7036189}, {"type": "node", "id": 6841096840, "lat": 40.4272866, "lon": -3.704423}, {"type": "node", "id": 6841096841, "lat": 40.4267343, "lon": -3.7044914}, {"type": "node", "id": 6841096842, "lat": 40.4266522, "lon": -3.7037003}, {"type": "node", "id": 6841096843, "lat": 40.426696, "lon": -3.7041087}, {"type": "node", "id": 6861422000, "lat": 40.4405469, "lon": -3.6835289}, {"type": "node", "id": 6861422001, "lat": 40.440606, "lon": -3.6837683}, {"type": "node", "id": 6885254472, "lat": 40.447523, "lon": -3.6963125, "tags": {"amenity": "parking_entrance", "name": "Parking Villaverde"}}, {"type": "node", "id": 6912403230, "lat": 40.4283983, "lon": -3.6875653, "tags": {"amenity": "parking_entrance", "name": "Parking Serranopark Marqu\u00e9s de Villamagna", "parking": "underground", "phone": "+34914362085"}}, {"type": "node", "id": 6912403231, "lat": 40.4292302, "lon": -3.6878551, "tags": {"access": "private", "addr:street": "Calle del Marqu\u00e9s de Villamagna", "amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 6934412482, "lat": 40.4517839, "lon": -3.703121, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6934422584, "lat": 40.4510631, "lon": -3.7035091, "tags": {"highway": "crossing"}}, {"type": "node", "id": 6934437085, "lat": 40.4505738, "lon": -3.703578, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6934437086, "lat": 40.4499892, "lon": -3.7036665, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 6934437088, "lat": 40.4486544, "lon": -3.7038598, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6947820724, "lat": 40.4450817, "lon": -3.7211355, "tags": {"barrier": "gate"}}, {"type": "node", "id": 6947820725, "lat": 40.4450589, "lon": -3.7210237}, {"type": "node", "id": 6967836782, "lat": 40.4351956, "lon": -3.7190775, "tags": {"entrance": "yes", "highway": "elevator", "level": "0.5;0;-1;-2"}}, {"type": "node", "id": 6967836783, "lat": 40.4347045, "lon": -3.7195942}, {"type": "node", "id": 6967836784, "lat": 40.4347329, "lon": -3.719521}, {"type": "node", "id": 6967867785, "lat": 40.4354105, "lon": -3.7188831}, {"type": "node", "id": 6967867786, "lat": 40.4353695, "lon": -3.7188175}, {"type": "node", "id": 6967867787, "lat": 40.4351576, "lon": -3.7190023}, {"type": "node", "id": 6981674370, "lat": 40.4320189, "lon": -3.7203711, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6981674371, "lat": 40.4320075, "lon": -3.7202025, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 6981674372, "lat": 40.4318464, "lon": -3.7170544, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 6981674373, "lat": 40.4293347, "lon": -3.7206173}, {"type": "node", "id": 6981674374, "lat": 40.4304927, "lon": -3.7159486}, {"type": "node", "id": 6981674375, "lat": 40.4291209, "lon": -3.7151968}, {"type": "node", "id": 6981674376, "lat": 40.429573, "lon": -3.7144424}, {"type": "node", "id": 6981674377, "lat": 40.4295611, "lon": -3.7145226}, {"type": "node", "id": 6981674378, "lat": 40.4296647, "lon": -3.7146245, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 6981674379, "lat": 40.4299348, "lon": -3.7140804, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6981674380, "lat": 40.4302286, "lon": -3.7139763}, {"type": "node", "id": 6981674381, "lat": 40.4293132, "lon": -3.7147988}, {"type": "node", "id": 6981674382, "lat": 40.4293557, "lon": -3.7148516, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "maxheight": "1.8", "operator": "El Corte Ingl\u00e9s", "parking": "underground"}}, {"type": "node", "id": 7058239996, "lat": 40.4493903, "lon": -3.7094415}, {"type": "node", "id": 7058239997, "lat": 40.4494937, "lon": -3.7094327}, {"type": "node", "id": 7058239998, "lat": 40.4495794, "lon": -3.7097587}, {"type": "node", "id": 7058239999, "lat": 40.4499021, "lon": -3.709962}, {"type": "node", "id": 7058240000, "lat": 40.4501503, "lon": -3.7101216}, {"type": "node", "id": 7058240001, "lat": 40.4494747, "lon": -3.7093628}, {"type": "node", "id": 7058240002, "lat": 40.4495099, "lon": -3.7093299}, {"type": "node", "id": 7058240003, "lat": 40.4497824, "lon": -3.70939}, {"type": "node", "id": 7058240004, "lat": 40.4501514, "lon": -3.7094806}, {"type": "node", "id": 7058240005, "lat": 40.450172, "lon": -3.7094886}, {"type": "node", "id": 7058240006, "lat": 40.4503983, "lon": -3.7100396, "tags": {"highway": "crossing"}}, {"type": "node", "id": 7058240007, "lat": 40.449495, "lon": -3.7093393}, {"type": "node", "id": 7058240008, "lat": 40.449488, "lon": -3.7091824}, {"type": "node", "id": 7058240009, "lat": 40.4504314, "lon": -3.7113302}, {"type": "node", "id": 7058240010, "lat": 40.4505074, "lon": -3.7113866}, {"type": "node", "id": 7058240011, "lat": 40.4508223, "lon": -3.7114735}, {"type": "node", "id": 7058240012, "lat": 40.4508261, "lon": -3.7114925}, {"type": "node", "id": 7058240013, "lat": 40.4505797, "lon": -3.7125454}, {"type": "node", "id": 7058240015, "lat": 40.4504849, "lon": -3.7134281}, {"type": "node", "id": 7058240016, "lat": 40.4504331, "lon": -3.7134757}, {"type": "node", "id": 7058240018, "lat": 40.4499204, "lon": -3.713248, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "no"}}, {"type": "node", "id": 7058240020, "lat": 40.4498187, "lon": -3.7132039, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "no"}}, {"type": "node", "id": 7058240021, "lat": 40.4508662, "lon": -3.7113589}, {"type": "node", "id": 7058240022, "lat": 40.4509398, "lon": -3.7110655}, {"type": "node", "id": 7058240023, "lat": 40.4503116, "lon": -3.710619}, {"type": "node", "id": 7058240024, "lat": 40.4502891, "lon": -3.71061}, {"type": "node", "id": 7058240025, "lat": 40.4502719, "lon": -3.710684}, {"type": "node", "id": 7058240026, "lat": 40.4502486, "lon": -3.7110183}, {"type": "node", "id": 7058240027, "lat": 40.4504706, "lon": -3.7110496}, {"type": "node", "id": 7058240028, "lat": 40.4504939, "lon": -3.7112633}, {"type": "node", "id": 7058240029, "lat": 40.4502131, "lon": -3.7105754}, {"type": "node", "id": 7058240030, "lat": 40.4497786, "lon": -3.7102837}, {"type": "node", "id": 7058240031, "lat": 40.4497238, "lon": -3.7103363}, {"type": "node", "id": 7058240033, "lat": 40.4496822, "lon": -3.7109703}, {"type": "node", "id": 7058240035, "lat": 40.4498855, "lon": -3.7109936}, {"type": "node", "id": 7058240036, "lat": 40.4501814, "lon": -3.7110169}, {"type": "node", "id": 7058240037, "lat": 40.4502179, "lon": -3.7110171, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240038, "lat": 40.4502518, "lon": -3.7105923, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240039, "lat": 40.4496736, "lon": -3.7102701}, {"type": "node", "id": 7058240040, "lat": 40.4496872, "lon": -3.710287, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240041, "lat": 40.4496225, "lon": -3.7101828}, {"type": "node", "id": 7058240042, "lat": 40.4495376, "lon": -3.7101927}, {"type": "node", "id": 7058240043, "lat": 40.4496021, "lon": -3.7101786, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240044, "lat": 40.4496625, "lon": -3.7101491}, {"type": "node", "id": 7058240045, "lat": 40.4496693, "lon": -3.7098166}, {"type": "node", "id": 7058240046, "lat": 40.4496642, "lon": -3.7100287, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7058240047, "lat": 40.4496069, "lon": -3.7102092, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 7058240048, "lat": 40.4497016, "lon": -3.7110994}, {"type": "node", "id": 7058240049, "lat": 40.4497116, "lon": -3.710976}, {"type": "node", "id": 7058240050, "lat": 40.4497035, "lon": -3.7110403, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240058, "lat": 40.4494906, "lon": -3.7092481, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058240062, "lat": 40.4494443, "lon": -3.7094377, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058260806, "lat": 40.4493952, "lon": -3.7115684}, {"type": "node", "id": 7058260809, "lat": 40.4493677, "lon": -3.7118144}, {"type": "node", "id": 7058260810, "lat": 40.4493079, "lon": -3.7124347}, {"type": "node", "id": 7058260811, "lat": 40.4492572, "lon": -3.7129649}, {"type": "node", "id": 7058272461, "lat": 40.4491906, "lon": -3.7098777}, {"type": "node", "id": 7058272462, "lat": 40.4493177, "lon": -3.7095122}, {"type": "node", "id": 7058272463, "lat": 40.4494575, "lon": -3.7100469}, {"type": "node", "id": 7058272465, "lat": 40.4485641, "lon": -3.7098784}, {"type": "node", "id": 7058272466, "lat": 40.4483133, "lon": -3.7109641}, {"type": "node", "id": 7058272467, "lat": 40.4493954, "lon": -3.7114188}, {"type": "node", "id": 7058272468, "lat": 40.4495131, "lon": -3.7103706}, {"type": "node", "id": 7058272469, "lat": 40.449365, "lon": -3.7095161}, {"type": "node", "id": 7058272470, "lat": 40.4492452, "lon": -3.7094096}, {"type": "node", "id": 7058272471, "lat": 40.4488896, "lon": -3.7091816}, {"type": "node", "id": 7058272472, "lat": 40.4493441, "lon": -3.7092953}, {"type": "node", "id": 7058272473, "lat": 40.448418, "lon": -3.7083397}, {"type": "node", "id": 7058272474, "lat": 40.4482758, "lon": -3.708225}, {"type": "node", "id": 7058272475, "lat": 40.448134, "lon": -3.7081416}, {"type": "node", "id": 7058272476, "lat": 40.4479538, "lon": -3.7081642}, {"type": "node", "id": 7058272477, "lat": 40.4481221, "lon": -3.7087705}, {"type": "node", "id": 7058272478, "lat": 40.4479956, "lon": -3.7091476}, {"type": "node", "id": 7058272479, "lat": 40.4486436, "lon": -3.7095615}, {"type": "node", "id": 7058272480, "lat": 40.4485865, "lon": -3.7095296}, {"type": "node", "id": 7058272481, "lat": 40.4486118, "lon": -3.709543, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058272482, "lat": 40.4494801, "lon": -3.7113363}, {"type": "node", "id": 7058272483, "lat": 40.4495494, "lon": -3.7113471, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058272484, "lat": 40.449395, "lon": -3.7116805}, {"type": "node", "id": 7058286485, "lat": 40.4495167, "lon": -3.7116937, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 7058286486, "lat": 40.4494853, "lon": -3.7129428}, {"type": "node", "id": 7058286487, "lat": 40.4493473, "lon": -3.7129201}, {"type": "node", "id": 7058286488, "lat": 40.4494548, "lon": -3.7132423}, {"type": "node", "id": 7058286489, "lat": 40.4493239, "lon": -3.7132041}, {"type": "node", "id": 7058286490, "lat": 40.4502107, "lon": -3.7145959}, {"type": "node", "id": 7058286491, "lat": 40.4503967, "lon": -3.714145}, {"type": "node", "id": 7058286492, "lat": 40.4504254, "lon": -3.7140072}, {"type": "node", "id": 7058286493, "lat": 40.4504852, "lon": -3.7136268}, {"type": "node", "id": 7058286494, "lat": 40.4501159, "lon": -3.7134399}, {"type": "node", "id": 7058286495, "lat": 40.4497965, "lon": -3.7132989}, {"type": "node", "id": 7058286500, "lat": 40.4481554, "lon": -3.7144471}, {"type": "node", "id": 7062214667, "lat": 40.4419059, "lon": -3.7007148}, {"type": "node", "id": 7062214668, "lat": 40.4415931, "lon": -3.6951238}, {"type": "node", "id": 7062214669, "lat": 40.4388629, "lon": -3.7065148, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214670, "lat": 40.4400394, "lon": -3.7080753, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214671, "lat": 40.4399709, "lon": -3.7081772, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214672, "lat": 40.4400493, "lon": -3.7082815, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062214673, "lat": 40.4408865, "lon": -3.7078621, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062214674, "lat": 40.4406794, "lon": -3.7081142, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062214675, "lat": 40.4406761, "lon": -3.708433, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7062256617, "lat": 40.4393831, "lon": -3.6962019, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062256618, "lat": 40.4395399, "lon": -3.6961895, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7062256619, "lat": 40.4404723, "lon": -3.6961157, "tags": {"highway": "crossing"}}, {"type": "node", "id": 7062256620, "lat": 40.4406457, "lon": -3.696102, "tags": {"highway": "crossing"}}, {"type": "node", "id": 7068076318, "lat": 40.4361394, "lon": -3.7044119}, {"type": "node", "id": 7068076319, "lat": 40.4357689, "lon": -3.7044482, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 7068076320, "lat": 40.4357719, "lon": -3.7049939}, {"type": "node", "id": 7068076330, "lat": 40.4357345, "lon": -3.7049947, "tags": {"access": "yes", "amenity": "parking_entrance", "brand": "Aparcaelcoche", "brand:facebook": "https://www.facebook.com/aparcaelcoche/", "brand:instagram": "https://www.instagram.com/aparcaelcoche/", "brand:twitter": "https://twitter.com/aparcaelcoche", "fee": "yes", "parking": "underground", "source": "survey", "website": "https://www.aparcaelcoche.com/parking/parking-cercedilla-3/3/"}}, {"type": "node", "id": 7098087916, "lat": 40.4314266, "lon": -3.6808765, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087918, "lat": 40.431438, "lon": -3.6811166, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087922, "lat": 40.4326248, "lon": -3.6807833, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 7098087923, "lat": 40.4327588, "lon": -3.6807704, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7098087928, "lat": 40.4313755, "lon": -3.6797477}, {"type": "node", "id": 7124682475, "lat": 40.4290916, "lon": -3.7216676}, {"type": "node", "id": 7124812261, "lat": 40.4352245, "lon": -3.7191917}, {"type": "node", "id": 7124812262, "lat": 40.4354733, "lon": -3.7189741}, {"type": "node", "id": 7132247166, "lat": 40.4334567, "lon": -3.7257279}, {"type": "node", "id": 7132247167, "lat": 40.4363819, "lon": -3.7253886}, {"type": "node", "id": 7132247174, "lat": 40.4362021, "lon": -3.7248542}, {"type": "node", "id": 7140036350, "lat": 40.4263423, "lon": -3.7192214}, {"type": "node", "id": 7140418616, "lat": 40.4326442, "lon": -3.7268732}, {"type": "node", "id": 7159715763, "lat": 40.4259845, "lon": -3.7001152}, {"type": "node", "id": 7159715764, "lat": 40.426205, "lon": -3.6996408}, {"type": "node", "id": 7159758624, "lat": 40.4252755, "lon": -3.6999222}, {"type": "node", "id": 7159758625, "lat": 40.4256912, "lon": -3.7001824}, {"type": "node", "id": 7159758662, "lat": 40.4265013, "lon": -3.700442}, {"type": "node", "id": 7159758665, "lat": 40.4265305, "lon": -3.7004603}, {"type": "node", "id": 7159758666, "lat": 40.4264168, "lon": -3.7001757}, {"type": "node", "id": 7159758667, "lat": 40.4262451, "lon": -3.7000629}, {"type": "node", "id": 7159758668, "lat": 40.4263072, "lon": -3.6999132}, {"type": "node", "id": 7159758669, "lat": 40.426141, "lon": -3.7003139}, {"type": "node", "id": 7159758670, "lat": 40.4264985, "lon": -3.6997895, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 7159758671, "lat": 40.4266677, "lon": -3.6998509}, {"type": "node", "id": 7159758672, "lat": 40.4267405, "lon": -3.6998812}, {"type": "node", "id": 7159758679, "lat": 40.4266949, "lon": -3.6998188}, {"type": "node", "id": 7159758680, "lat": 40.4266128, "lon": -3.6999156}, {"type": "node", "id": 7159758681, "lat": 40.4264005, "lon": -3.6999343}, {"type": "node", "id": 7159758682, "lat": 40.4262463, "lon": -3.6998995}, {"type": "node", "id": 7159758683, "lat": 40.4261197, "lon": -3.6997922}, {"type": "node", "id": 7159758684, "lat": 40.4259607, "lon": -3.6995856}, {"type": "node", "id": 7159758685, "lat": 40.4258757, "lon": -3.7001181, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 7159758686, "lat": 40.4257551, "lon": -3.700041}, {"type": "node", "id": 7159758687, "lat": 40.4257056, "lon": -3.7010407}, {"type": "node", "id": 7159758688, "lat": 40.4257593, "lon": -3.7008356, "tags": {"entrance": "main", "opening_hours": "Tu-Su 10:00-20:00; Mo off; Jan 01,Jan 06,May 01,Dec 24,Dec 25,Dec 31 off"}}, {"type": "node", "id": 7164077789, "lat": 40.4374753, "lon": -3.7223281}, {"type": "node", "id": 7164077790, "lat": 40.437397, "lon": -3.7222118}, {"type": "node", "id": 7300259079, "lat": 40.4380179, "lon": -3.6878962, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "source": "PNOA", "source:date": "2017", "tactile_paving": "yes"}}, {"type": "node", "id": 7300259080, "lat": 40.4380253, "lon": -3.6880249}, {"type": "node", "id": 7300259081, "lat": 40.4380019, "lon": -3.6880493}, {"type": "node", "id": 7300259082, "lat": 40.4380448, "lon": -3.68893}, {"type": "node", "id": 7300259083, "lat": 40.4380678, "lon": -3.68902, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2017"}}, {"type": "node", "id": 7300259084, "lat": 40.4380649, "lon": -3.6889493}, {"type": "node", "id": 7300259085, "lat": 40.4385985, "lon": -3.6889114}, {"type": "node", "id": 7300259086, "lat": 40.4389744, "lon": -3.6889281}, {"type": "node", "id": 7300259087, "lat": 40.4390076, "lon": -3.6889114}, {"type": "node", "id": 7300259088, "lat": 40.4390301, "lon": -3.6888793}, {"type": "node", "id": 7300259089, "lat": 40.4391648, "lon": -3.6880288}, {"type": "node", "id": 7300259090, "lat": 40.4391785, "lon": -3.6879159}, {"type": "node", "id": 7300259091, "lat": 40.4391765, "lon": -3.6875566}, {"type": "node", "id": 7300259092, "lat": 40.439158, "lon": -3.6875117}, {"type": "node", "id": 7300259093, "lat": 40.4391365, "lon": -3.6874912}, {"type": "node", "id": 7300259094, "lat": 40.4391043, "lon": -3.6874822}, {"type": "node", "id": 7300259095, "lat": 40.4392718, "lon": -3.69063}, {"type": "node", "id": 7319929941, "lat": 40.4415507, "lon": -3.6924054}, {"type": "node", "id": 7319929942, "lat": 40.441033, "lon": -3.6911991}, {"type": "node", "id": 7326843482, "lat": 40.425443, "lon": -3.691222, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7326843483, "lat": 40.4253489, "lon": -3.6911578, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7326843484, "lat": 40.4256839, "lon": -3.6905924, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7326848785, "lat": 40.4256875, "lon": -3.6906379, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7326848786, "lat": 40.4256909, "lon": -3.6906804, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7326848787, "lat": 40.4259265, "lon": -3.6904079, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 7391140898, "lat": 40.4465725, "lon": -3.6915243}, {"type": "node", "id": 7396188670, "lat": 40.4376511, "lon": -3.7055341}, {"type": "node", "id": 7396188671, "lat": 40.4376557, "lon": -3.7056434}, {"type": "node", "id": 7411091834, "lat": 40.4509444, "lon": -3.7005722}, {"type": "node", "id": 7411091836, "lat": 40.4510094, "lon": -3.7009439}, {"type": "node", "id": 7411148690, "lat": 40.4508821, "lon": -3.7006469, "tags": {"noexit": "yes"}}, {"type": "node", "id": 7411148691, "lat": 40.4508861, "lon": -3.7006706}, {"type": "node", "id": 7411148692, "lat": 40.4508906, "lon": -3.7006937}, {"type": "node", "id": 7411148693, "lat": 40.4508958, "lon": -3.7007201}, {"type": "node", "id": 7411148694, "lat": 40.4509011, "lon": -3.7007459}, {"type": "node", "id": 7411148695, "lat": 40.4509095, "lon": -3.7007742}, {"type": "node", "id": 7411148696, "lat": 40.4509226, "lon": -3.7007973}, {"type": "node", "id": 7411148697, "lat": 40.450938, "lon": -3.7008129}, {"type": "node", "id": 7411148698, "lat": 40.4509543, "lon": -3.7008194}, {"type": "node", "id": 7411148699, "lat": 40.4509728, "lon": -3.7008183}, {"type": "node", "id": 7411148700, "lat": 40.4509921, "lon": -3.7008125}, {"type": "node", "id": 7411148701, "lat": 40.451013, "lon": -3.7008019}, {"type": "node", "id": 7411148702, "lat": 40.4510288, "lon": -3.7007835}, {"type": "node", "id": 7411148703, "lat": 40.4510339, "lon": -3.7007523}, {"type": "node", "id": 7411148704, "lat": 40.4510329, "lon": -3.700719}, {"type": "node", "id": 7411148705, "lat": 40.4510263, "lon": -3.7006914}, {"type": "node", "id": 7411148706, "lat": 40.4510196, "lon": -3.7006613}, {"type": "node", "id": 7411148707, "lat": 40.4509987, "lon": -3.7005579}, {"type": "node", "id": 7414071626, "lat": 40.4510126, "lon": -3.7008447}, {"type": "node", "id": 7414071627, "lat": 40.451, "lon": -3.7008085}, {"type": "node", "id": 7414071628, "lat": 40.4510096, "lon": -3.7009371}, {"type": "node", "id": 7414071641, "lat": 40.451253, "lon": -3.7015588}, {"type": "node", "id": 7414071642, "lat": 40.4511761, "lon": -3.7011717}, {"type": "node", "id": 7414071643, "lat": 40.451268, "lon": -3.7016394}, {"type": "node", "id": 7510718610, "lat": 40.4356066, "lon": -3.7195248}, {"type": "node", "id": 7510718611, "lat": 40.4357444, "lon": -3.719572}, {"type": "node", "id": 7510718612, "lat": 40.4357255, "lon": -3.7195255}, {"type": "node", "id": 7510718613, "lat": 40.4359031, "lon": -3.7195846}, {"type": "node", "id": 7510718614, "lat": 40.4359106, "lon": -3.7195696}, {"type": "node", "id": 7510718615, "lat": 40.4359549, "lon": -3.719652}, {"type": "node", "id": 7510718616, "lat": 40.4372864, "lon": -3.7234197}, {"type": "node", "id": 7510718617, "lat": 40.4373638, "lon": -3.7234589}, {"type": "node", "id": 7510718618, "lat": 40.4373786, "lon": -3.72346}, {"type": "node", "id": 7510718619, "lat": 40.437322, "lon": -3.7234874}, {"type": "node", "id": 7510718620, "lat": 40.4372873, "lon": -3.7233659}, {"type": "node", "id": 7511745476, "lat": 40.4371423, "lon": -3.723666}, {"type": "node", "id": 7511745477, "lat": 40.4372374, "lon": -3.7233881}, {"type": "node", "id": 7526681392, "lat": 40.4298706, "lon": -3.7074388}, {"type": "node", "id": 7526681393, "lat": 40.4302964, "lon": -3.7073621}, {"type": "node", "id": 7537445994, "lat": 40.4274937, "lon": -3.7138548}, {"type": "node", "id": 7537445996, "lat": 40.4277638, "lon": -3.7141592}, {"type": "node", "id": 7537445997, "lat": 40.4280028, "lon": -3.7142442}, {"type": "node", "id": 7537445998, "lat": 40.4279916, "lon": -3.7142622}, {"type": "node", "id": 7537445999, "lat": 40.4277317, "lon": -3.7141881}, {"type": "node", "id": 7537446000, "lat": 40.426242, "lon": -3.7132768}, {"type": "node", "id": 7537446001, "lat": 40.4263217, "lon": -3.7132559}, {"type": "node", "id": 7537446002, "lat": 40.4262829, "lon": -3.7132621}, {"type": "node", "id": 7537446003, "lat": 40.4256431, "lon": -3.7136597}, {"type": "node", "id": 7537446004, "lat": 40.425657, "lon": -3.7136886}, {"type": "node", "id": 7537446005, "lat": 40.425009, "lon": -3.7140581}, {"type": "node", "id": 7537446006, "lat": 40.4250033, "lon": -3.7140197}, {"type": "node", "id": 7537446007, "lat": 40.4250032, "lon": -3.7140404}, {"type": "node", "id": 7537616086, "lat": 40.4246124, "lon": -3.690351}, {"type": "node", "id": 7537616087, "lat": 40.4246593, "lon": -3.6904063}, {"type": "node", "id": 7537616088, "lat": 40.4247999, "lon": -3.6903504}, {"type": "node", "id": 7540286795, "lat": 40.4269284, "lon": -3.7096194}, {"type": "node", "id": 7549586455, "lat": 40.4372666, "lon": -3.7234969}, {"type": "node", "id": 7549586456, "lat": 40.4372902, "lon": -3.7232778}, {"type": "node", "id": 7549586457, "lat": 40.4372875, "lon": -3.7235374}, {"type": "node", "id": 7549586458, "lat": 40.4373887, "lon": -3.7234458}, {"type": "node", "id": 7549586459, "lat": 40.4374241, "lon": -3.7235049}, {"type": "node", "id": 7549586460, "lat": 40.4374126, "lon": -3.723488}, {"type": "node", "id": 7549586462, "lat": 40.4367208, "lon": -3.7219308}, {"type": "node", "id": 7549586463, "lat": 40.4368618, "lon": -3.7223041}, {"type": "node", "id": 7549586464, "lat": 40.4369782, "lon": -3.7224193}, {"type": "node", "id": 7549586465, "lat": 40.4373049, "lon": -3.7230445}, {"type": "node", "id": 7549586466, "lat": 40.4372456, "lon": -3.7229185}, {"type": "node", "id": 7549586470, "lat": 40.4379914, "lon": -3.7242248}, {"type": "node", "id": 7549586473, "lat": 40.4376903, "lon": -3.7239176}, {"type": "node", "id": 7549586474, "lat": 40.437735, "lon": -3.723868}, {"type": "node", "id": 7549586476, "lat": 40.4362576, "lon": -3.7215135}, {"type": "node", "id": 7549586477, "lat": 40.4362473, "lon": -3.7213974}, {"type": "node", "id": 7549586478, "lat": 40.4367445, "lon": -3.7212443}, {"type": "node", "id": 7549586479, "lat": 40.43676, "lon": -3.7211009}, {"type": "node", "id": 7549586480, "lat": 40.4367584, "lon": -3.721379}, {"type": "node", "id": 7549586481, "lat": 40.4368267, "lon": -3.721544}, {"type": "node", "id": 7549586482, "lat": 40.4376179, "lon": -3.72325}, {"type": "node", "id": 7549586483, "lat": 40.4378461, "lon": -3.7237412}, {"type": "node", "id": 7549586484, "lat": 40.4379625, "lon": -3.7236916}, {"type": "node", "id": 7549593985, "lat": 40.4371731, "lon": -3.7223407}, {"type": "node", "id": 7549593986, "lat": 40.437004, "lon": -3.7219933}, {"type": "node", "id": 7549593987, "lat": 40.4370604, "lon": -3.7221215}, {"type": "node", "id": 7549593988, "lat": 40.4380399, "lon": -3.7240163}, {"type": "node", "id": 7549593989, "lat": 40.4380777, "lon": -3.7238696}, {"type": "node", "id": 7549593990, "lat": 40.4374274, "lon": -3.7228941}, {"type": "node", "id": 7549593991, "lat": 40.4373112, "lon": -3.7226053}, {"type": "node", "id": 7549593992, "lat": 40.4374722, "lon": -3.722892}, {"type": "node", "id": 7549593993, "lat": 40.4375658, "lon": -3.723061}, {"type": "node", "id": 7549593994, "lat": 40.4376789, "lon": -3.7232609}, {"type": "node", "id": 7549593995, "lat": 40.437821, "lon": -3.7234919}, {"type": "node", "id": 7549593996, "lat": 40.4380704, "lon": -3.7239969}, {"type": "node", "id": 7549593998, "lat": 40.4373149, "lon": -3.7204228}, {"type": "node", "id": 7549593999, "lat": 40.4373723, "lon": -3.7202125}, {"type": "node", "id": 7549719106, "lat": 40.4207063, "lon": -3.6859246}, {"type": "node", "id": 7549719136, "lat": 40.4204453, "lon": -3.6872497}, {"type": "node", "id": 7549719138, "lat": 40.4203917, "lon": -3.687166}, {"type": "node", "id": 7549719146, "lat": 40.4204685, "lon": -3.6872618}, {"type": "node", "id": 7549719160, "lat": 40.4239927, "lon": -3.6882021}, {"type": "node", "id": 7549719161, "lat": 40.4239765, "lon": -3.6881599}, {"type": "node", "id": 7549719163, "lat": 40.4240698, "lon": -3.6884104}, {"type": "node", "id": 7549719164, "lat": 40.4240906, "lon": -3.6884424}, {"type": "node", "id": 7549719165, "lat": 40.425023, "lon": -3.6907119}, {"type": "node", "id": 7549719166, "lat": 40.4245449, "lon": -3.6902559}, {"type": "node", "id": 7549719167, "lat": 40.4245238, "lon": -3.6902142}, {"type": "node", "id": 7549719169, "lat": 40.4247946, "lon": -3.690394}, {"type": "node", "id": 7549719170, "lat": 40.4249534, "lon": -3.6901679}, {"type": "node", "id": 7549719171, "lat": 40.4245108, "lon": -3.6903398}, {"type": "node", "id": 7549719172, "lat": 40.4247303, "lon": -3.6902672}, {"type": "node", "id": 7549719173, "lat": 40.4248316, "lon": -3.6902523}, {"type": "node", "id": 7549719174, "lat": 40.4248866, "lon": -3.6901991}, {"type": "node", "id": 7549719175, "lat": 40.4244856, "lon": -3.6903505}, {"type": "node", "id": 7549719176, "lat": 40.4245097, "lon": -3.6903192}, {"type": "node", "id": 7549719177, "lat": 40.4245267, "lon": -3.6902568}, {"type": "node", "id": 7549719178, "lat": 40.4245218, "lon": -3.690285}, {"type": "node", "id": 7549719179, "lat": 40.4255242, "lon": -3.6902806}, {"type": "node", "id": 7549719180, "lat": 40.4256815, "lon": -3.6899602}, {"type": "node", "id": 7549719181, "lat": 40.4253531, "lon": -3.6900105}, {"type": "node", "id": 7549719182, "lat": 40.4251209, "lon": -3.6900806}, {"type": "node", "id": 7549719183, "lat": 40.4253836, "lon": -3.6899419}, {"type": "node", "id": 7549719184, "lat": 40.4255574, "lon": -3.6900907}, {"type": "node", "id": 7549719185, "lat": 40.4255329, "lon": -3.6900441}, {"type": "node", "id": 7549719186, "lat": 40.4255012, "lon": -3.6909233}, {"type": "node", "id": 7549719187, "lat": 40.4254932, "lon": -3.6908007}, {"type": "node", "id": 7549719188, "lat": 40.4253839, "lon": -3.6909302}, {"type": "node", "id": 7549719189, "lat": 40.4249635, "lon": -3.6906923}, {"type": "node", "id": 7549719190, "lat": 40.4250633, "lon": -3.6907215}, {"type": "node", "id": 7549719191, "lat": 40.4247967, "lon": -3.6904531}, {"type": "node", "id": 7549719192, "lat": 40.4248122, "lon": -3.690523}, {"type": "node", "id": 7549719193, "lat": 40.424829, "lon": -3.6905734}, {"type": "node", "id": 7549719194, "lat": 40.4248526, "lon": -3.6906177}, {"type": "node", "id": 7549719195, "lat": 40.4248692, "lon": -3.6902088}, {"type": "node", "id": 7549719196, "lat": 40.4255338, "lon": -3.6898547}, {"type": "node", "id": 7549719197, "lat": 40.4256098, "lon": -3.689198}, {"type": "node", "id": 7549719198, "lat": 40.4255887, "lon": -3.6892133}, {"type": "node", "id": 7549719199, "lat": 40.4255177, "lon": -3.688472}, {"type": "node", "id": 7549719200, "lat": 40.4254397, "lon": -3.6897844}, {"type": "node", "id": 7549719201, "lat": 40.425374, "lon": -3.6879699}, {"type": "node", "id": 7549842317, "lat": 40.4348358, "lon": -3.7197191}, {"type": "node", "id": 7549842318, "lat": 40.4347929, "lon": -3.7194533}, {"type": "node", "id": 7549842319, "lat": 40.434786, "lon": -3.7197429}, {"type": "node", "id": 7555160482, "lat": 40.4253654, "lon": -3.7074512}, {"type": "node", "id": 7555160483, "lat": 40.4253425, "lon": -3.707326}, {"type": "node", "id": 7555160484, "lat": 40.4252334, "lon": -3.7073499}, {"type": "node", "id": 7555183385, "lat": 40.4252462, "lon": -3.7074601}, {"type": "node", "id": 7555183386, "lat": 40.4254212, "lon": -3.7074372, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 7559826098, "lat": 40.4274484, "lon": -3.6959394}, {"type": "node", "id": 7559826100, "lat": 40.4274836, "lon": -3.695257}, {"type": "node", "id": 7559826101, "lat": 40.4275724, "lon": -3.69524}, {"type": "node", "id": 7559826102, "lat": 40.427758, "lon": -3.6952611}, {"type": "node", "id": 7559826103, "lat": 40.427879, "lon": -3.6953418}, {"type": "node", "id": 7559826104, "lat": 40.4278196, "lon": -3.6952897}, {"type": "node", "id": 7559826109, "lat": 40.4273684, "lon": -3.6953688}, {"type": "node", "id": 7559826131, "lat": 40.4278432, "lon": -3.69712}, {"type": "node", "id": 7559826132, "lat": 40.427806, "lon": -3.6969423}, {"type": "node", "id": 7559826139, "lat": 40.4280636, "lon": -3.6956184}, {"type": "node", "id": 7559826140, "lat": 40.4279729, "lon": -3.6955748}, {"type": "node", "id": 7559826141, "lat": 40.4275384, "lon": -3.6957341}, {"type": "node", "id": 7559826143, "lat": 40.427617, "lon": -3.6957057}, {"type": "node", "id": 7559826168, "lat": 40.427818, "lon": -3.6969951, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 7569491949, "lat": 40.4275777, "lon": -3.6958383}, {"type": "node", "id": 7569547511, "lat": 40.4276952, "lon": -3.6961392}, {"type": "node", "id": 7569547512, "lat": 40.4276634, "lon": -3.6961032}, {"type": "node", "id": 7569547513, "lat": 40.427686, "lon": -3.6962393}, {"type": "node", "id": 7569547514, "lat": 40.4278737, "lon": -3.6961513}, {"type": "node", "id": 7597192144, "lat": 40.438784, "lon": -3.7244535}, {"type": "node", "id": 7600612665, "lat": 40.4377109, "lon": -3.7235304}, {"type": "node", "id": 7600881099, "lat": 40.4300464, "lon": -3.70289}, {"type": "node", "id": 7619689678, "lat": 40.4243331, "lon": -3.7144272}, {"type": "node", "id": 7619689680, "lat": 40.4243195, "lon": -3.7144188}, {"type": "node", "id": 7619693969, "lat": 40.4470418, "lon": -3.689408}, {"type": "node", "id": 7619693970, "lat": 40.4468234, "lon": -3.68953}, {"type": "node", "id": 7622690579, "lat": 40.451501, "lon": -3.7184394}, {"type": "node", "id": 7622690580, "lat": 40.451513, "lon": -3.7184211}, {"type": "node", "id": 7622690581, "lat": 40.4502131, "lon": -3.7170112, "tags": {"access": "private", "barrier": "gate", "bicycle": "destination", "foot": "destination", "motor_vehicle": "destination"}}, {"type": "node", "id": 7635263893, "lat": 40.4337622, "lon": -3.7189236}, {"type": "node", "id": 7635263894, "lat": 40.4338454, "lon": -3.7189807}, {"type": "node", "id": 7756112662, "lat": 40.4414852, "lon": -3.6778704}, {"type": "node", "id": 7756112663, "lat": 40.4413444, "lon": -3.6761954}, {"type": "node", "id": 7767762358, "lat": 40.4330665, "lon": -3.7295451}, {"type": "node", "id": 7815310158, "lat": 40.4503663, "lon": -3.7166152}, {"type": "node", "id": 7815310165, "lat": 40.4489011, "lon": -3.7165324}, {"type": "node", "id": 7815310166, "lat": 40.4489368, "lon": -3.7165319}, {"type": "node", "id": 7825645057, "lat": 40.4418919, "lon": -3.6905674}, {"type": "node", "id": 7825645058, "lat": 40.4417469, "lon": -3.6903849}, {"type": "node", "id": 7825645059, "lat": 40.4418158, "lon": -3.6904682, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 7832367678, "lat": 40.4349653, "lon": -3.6990048}, {"type": "node", "id": 7832367679, "lat": 40.4350059, "lon": -3.6989363}, {"type": "node", "id": 7832367680, "lat": 40.4349844, "lon": -3.6989674}, {"type": "node", "id": 7832367681, "lat": 40.4349732, "lon": -3.6989865}, {"type": "node", "id": 7832367682, "lat": 40.435026, "lon": -3.6989182}, {"type": "node", "id": 7832367683, "lat": 40.4350467, "lon": -3.6989031}, {"type": "node", "id": 7832367684, "lat": 40.4350763, "lon": -3.6988856}, {"type": "node", "id": 7832375785, "lat": 40.4350936, "lon": -3.6988762}, {"type": "node", "id": 7832375786, "lat": 40.4351174, "lon": -3.6988736}, {"type": "node", "id": 7832375787, "lat": 40.4351061, "lon": -3.6988731}, {"type": "node", "id": 7859244870, "lat": 40.4338695, "lon": -3.7186924}, {"type": "node", "id": 7864693885, "lat": 40.4303314, "lon": -3.7134745}, {"type": "node", "id": 7864693886, "lat": 40.4304078, "lon": -3.7136561}, {"type": "node", "id": 7864693887, "lat": 40.4303531, "lon": -3.7134977}, {"type": "node", "id": 7864693888, "lat": 40.4303597, "lon": -3.7138363}, {"type": "node", "id": 7864693889, "lat": 40.4304593, "lon": -3.7133485}, {"type": "node", "id": 7864693890, "lat": 40.4302848, "lon": -3.7133633}, {"type": "node", "id": 7864693891, "lat": 40.4302714, "lon": -3.7138221}, {"type": "node", "id": 7864693892, "lat": 40.4302697, "lon": -3.7137625}, {"type": "node", "id": 7864693893, "lat": 40.4302288, "lon": -3.7133703}, {"type": "node", "id": 7864693894, "lat": 40.4301364, "lon": -3.7123884}, {"type": "node", "id": 7881641304, "lat": 40.4288494, "lon": -3.6930365}, {"type": "node", "id": 7892603717, "lat": 40.4376986, "lon": -3.6946016}, {"type": "node", "id": 7892603718, "lat": 40.4377203, "lon": -3.695109, "tags": {"amenity": "parking_entrance", "name": "Parking Climiparking", "parking": "underground", "phone": "+34 91 445 00 24"}}, {"type": "node", "id": 7892603719, "lat": 40.4374193, "lon": -3.6962851}, {"type": "node", "id": 7892603720, "lat": 40.4376754, "lon": -3.6957823, "tags": {"amenity": "parking_entrance", "name": "Parking Climiparking", "parking": "underground", "phone": "+34 91 445 00 24"}}, {"type": "node", "id": 7892603721, "lat": 40.4375968, "lon": -3.695785}, {"type": "node", "id": 7892603722, "lat": 40.4375764, "lon": -3.6957662}, {"type": "node", "id": 7892603723, "lat": 40.4375366, "lon": -3.6957179}, {"type": "node", "id": 7892603724, "lat": 40.4375039, "lon": -3.6957085}, {"type": "node", "id": 7892603725, "lat": 40.4374406, "lon": -3.69573}, {"type": "node", "id": 7892603726, "lat": 40.437412, "lon": -3.6957528}, {"type": "node", "id": 7892603727, "lat": 40.4374203, "lon": -3.6963572}, {"type": "node", "id": 7930651356, "lat": 40.4263748, "lon": -3.7131321}, {"type": "node", "id": 7930651357, "lat": 40.426399, "lon": -3.7131341}, {"type": "node", "id": 7930651358, "lat": 40.4264283, "lon": -3.7131294}, {"type": "node", "id": 7930651359, "lat": 40.4264425, "lon": -3.7131201}, {"type": "node", "id": 7930651360, "lat": 40.4264701, "lon": -3.7130734}, {"type": "node", "id": 7930651361, "lat": 40.4264887, "lon": -3.7130267}, {"type": "node", "id": 7930651362, "lat": 40.4265092, "lon": -3.712987}, {"type": "node", "id": 7930651363, "lat": 40.4265296, "lon": -3.7129613}, {"type": "node", "id": 7930651364, "lat": 40.4264264, "lon": -3.7131839}, {"type": "node", "id": 7930651365, "lat": 40.4265606, "lon": -3.7129191}, {"type": "node", "id": 7930651366, "lat": 40.4265616, "lon": -3.7129391}, {"type": "node", "id": 7930651367, "lat": 40.4265532, "lon": -3.7128921}, {"type": "node", "id": 7930651371, "lat": 40.4265584, "lon": -3.7129064}, {"type": "node", "id": 7930651372, "lat": 40.426546, "lon": -3.7129477}, {"type": "node", "id": 7934347505, "lat": 40.4268272, "lon": -3.7131674}, {"type": "node", "id": 7934347506, "lat": 40.4268542, "lon": -3.7132194}, {"type": "node", "id": 7934347507, "lat": 40.4268633, "lon": -3.7132578}, {"type": "node", "id": 7934347508, "lat": 40.4268643, "lon": -3.7132927}, {"type": "node", "id": 7934347509, "lat": 40.4268582, "lon": -3.7133423}, {"type": "node", "id": 7934347510, "lat": 40.4268357, "lon": -3.7134013}, {"type": "node", "id": 7934347511, "lat": 40.4268139, "lon": -3.7134521}, {"type": "node", "id": 7934347512, "lat": 40.4267918, "lon": -3.7134751}, {"type": "node", "id": 7934347513, "lat": 40.4267663, "lon": -3.7134845}, {"type": "node", "id": 7934347514, "lat": 40.4267326, "lon": -3.7134872}, {"type": "node", "id": 7934347515, "lat": 40.4266835, "lon": -3.7134807}, {"type": "node", "id": 7934347516, "lat": 40.4265993, "lon": -3.7129444}, {"type": "node", "id": 7934347517, "lat": 40.4266242, "lon": -3.7129585}, {"type": "node", "id": 7934347518, "lat": 40.4266471, "lon": -3.7129762}, {"type": "node", "id": 7934347519, "lat": 40.426666, "lon": -3.7129926}, {"type": "node", "id": 7934347520, "lat": 40.4252229, "lon": -3.7124407, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7934347521, "lat": 40.4252613, "lon": -3.712343, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 7934347522, "lat": 40.4252911, "lon": -3.7122673}, {"type": "node", "id": 7937143679, "lat": 40.4513172, "lon": -3.6912776}, {"type": "node", "id": 7961931722, "lat": 40.4331367, "lon": -3.7265079}, {"type": "node", "id": 7965756604, "lat": 40.426845, "lon": -3.7133769, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 7965756605, "lat": 40.4270798, "lon": -3.7137699}, {"type": "node", "id": 7981026973, "lat": 40.4461453, "lon": -3.6972214}, {"type": "node", "id": 7981026974, "lat": 40.4463461, "lon": -3.6972048}, {"type": "node", "id": 7981026975, "lat": 40.4464204, "lon": -3.6985972}, {"type": "node", "id": 7981026976, "lat": 40.4466652, "lon": -3.6969545}, {"type": "node", "id": 7981026977, "lat": 40.4463415, "lon": -3.6969891}, {"type": "node", "id": 7997051244, "lat": 40.4463226, "lon": -3.6898217}, {"type": "node", "id": 7997051245, "lat": 40.4460848, "lon": -3.6862355}, {"type": "node", "id": 7997051246, "lat": 40.4461359, "lon": -3.6864434}, {"type": "node", "id": 7997051247, "lat": 40.4462645, "lon": -3.6886562}, {"type": "node", "id": 7997051248, "lat": 40.446042, "lon": -3.6861444}, {"type": "node", "id": 7997051249, "lat": 40.4462104, "lon": -3.6876974}, {"type": "node", "id": 7997051250, "lat": 40.4461797, "lon": -3.6871207}, {"type": "node", "id": 7997051251, "lat": 40.4461154, "lon": -3.6863415}, {"type": "node", "id": 7997051252, "lat": 40.4461481, "lon": -3.6865373}, {"type": "node", "id": 7997051253, "lat": 40.4463134, "lon": -3.6896862}, {"type": "node", "id": 7997051254, "lat": 40.4459685, "lon": -3.6860505}, {"type": "node", "id": 7997067405, "lat": 40.4463181, "lon": -3.6897558, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 7997067406, "lat": 40.4462765, "lon": -3.6897633, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8003046433, "lat": 40.4226598, "lon": -3.6881823}, {"type": "node", "id": 8003046440, "lat": 40.4225597, "lon": -3.6881957}, {"type": "node", "id": 8003058428, "lat": 40.4226643, "lon": -3.6882307}, {"type": "node", "id": 8003058429, "lat": 40.4225242, "lon": -3.6881958, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 8003058430, "lat": 40.4225468, "lon": -3.688227}, {"type": "node", "id": 8003058431, "lat": 40.4224865, "lon": -3.688245}, {"type": "node", "id": 8004960870, "lat": 40.4317201, "lon": -3.6918395}, {"type": "node", "id": 8004960873, "lat": 40.4306687, "lon": -3.6924349}, {"type": "node", "id": 8004960874, "lat": 40.4307586, "lon": -3.6926749}, {"type": "node", "id": 8004960875, "lat": 40.4318355, "lon": -3.6917845}, {"type": "node", "id": 8004974955, "lat": 40.4317496, "lon": -3.6918254, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8004974956, "lat": 40.4307184, "lon": -3.6925676, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8004996328, "lat": 40.4349882, "lon": -3.6820386}, {"type": "node", "id": 8004996330, "lat": 40.4350272, "lon": -3.6830583}, {"type": "node", "id": 8004996333, "lat": 40.4350357, "lon": -3.6820321}, {"type": "node", "id": 8007694223, "lat": 40.4269232, "lon": -3.7093563}, {"type": "node", "id": 8007694224, "lat": 40.4268948, "lon": -3.7093539}, {"type": "node", "id": 8007694242, "lat": 40.4262613, "lon": -3.7093336}, {"type": "node", "id": 8007694245, "lat": 40.4262601, "lon": -3.7094389, "tags": {"access": "private", "amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 8057391304, "lat": 40.4362848, "lon": -3.6842934, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8057391305, "lat": 40.4362763, "lon": -3.6842539}, {"type": "node", "id": 8057391306, "lat": 40.4314011, "lon": -3.6822631, "tags": {"crossing": "marked", "crossing:markings": "yes", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8057391307, "lat": 40.4314058, "lon": -3.6823191}, {"type": "node", "id": 8057411475, "lat": 40.4350352, "lon": -3.6921073, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8057443172, "lat": 40.4350215, "lon": -3.6930477}, {"type": "node", "id": 8057443173, "lat": 40.4350378, "lon": -3.6914385}, {"type": "node", "id": 8057443174, "lat": 40.4350399, "lon": -3.691165}, {"type": "node", "id": 8057443175, "lat": 40.435246, "lon": -3.6914439}, {"type": "node", "id": 8086154957, "lat": 40.4237291, "lon": -3.6986509}, {"type": "node", "id": 8086154958, "lat": 40.4238711, "lon": -3.6991985}, {"type": "node", "id": 8086154959, "lat": 40.4245302, "lon": -3.6981729}, {"type": "node", "id": 8086154960, "lat": 40.4245473, "lon": -3.6982392}, {"type": "node", "id": 8086154961, "lat": 40.4244243, "lon": -3.6991928}, {"type": "node", "id": 8086154962, "lat": 40.4239773, "lon": -3.6985036}, {"type": "node", "id": 8086154963, "lat": 40.4241693, "lon": -3.6990923}, {"type": "node", "id": 8086154964, "lat": 40.4238784, "lon": -3.699197, "tags": {"barrier": "gate", "foot": "yes"}}, {"type": "node", "id": 8086154965, "lat": 40.4239844, "lon": -3.698527, "tags": {"addr:city": "Madrid", "addr:housenumber": "63", "addr:postcode": "28004", "addr:street": "Calle de Hortaleza", "addr:subdistrict": "Justicia", "barrier": "gate", "entrance": "main", "foot": "yes"}}, {"type": "node", "id": 8086154966, "lat": 40.4240518, "lon": -3.6987473}, {"type": "node", "id": 8086154967, "lat": 40.4242518, "lon": -3.6991938}, {"type": "node", "id": 8086154968, "lat": 40.4244117, "lon": -3.6991929, "tags": {"barrier": "gate", "foot": "yes"}}, {"type": "node", "id": 8086162062, "lat": 40.4242162, "lon": -3.6990769}, {"type": "node", "id": 8096565011, "lat": 40.4446583, "lon": -3.7023694}, {"type": "node", "id": 8096565012, "lat": 40.4446776, "lon": -3.702384}, {"type": "node", "id": 8096565013, "lat": 40.444645, "lon": -3.7023513}, {"type": "node", "id": 8096565014, "lat": 40.4446938, "lon": -3.7023951}, {"type": "node", "id": 8096565015, "lat": 40.4450163, "lon": -3.7023427}, {"type": "node", "id": 8096565016, "lat": 40.4449912, "lon": -3.7023776}, {"type": "node", "id": 8096571917, "lat": 40.4450059, "lon": -3.7023618}, {"type": "node", "id": 8096571918, "lat": 40.4450233, "lon": -3.7023208}, {"type": "node", "id": 8096571919, "lat": 40.4445404, "lon": -3.7006022, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 8096571920, "lat": 40.4450261, "lon": -3.7022269}, {"type": "node", "id": 8096571921, "lat": 40.4446286, "lon": -3.7022631}, {"type": "node", "id": 8096571923, "lat": 40.4449436, "lon": -3.7005726, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 8117579706, "lat": 40.4472629, "lon": -3.7068566, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8117606294, "lat": 40.44727, "lon": -3.7068192}, {"type": "node", "id": 8117606295, "lat": 40.4471659, "lon": -3.7067205}, {"type": "node", "id": 8117606296, "lat": 40.4472553, "lon": -3.7068938}, {"type": "node", "id": 8155107977, "lat": 40.4354037, "lon": -3.6996776, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8155107978, "lat": 40.4354366, "lon": -3.6996661, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8155107979, "lat": 40.4353725, "lon": -3.6996903, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8155107980, "lat": 40.4353373, "lon": -3.6997036, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8155107984, "lat": 40.4354333, "lon": -3.6996546}, {"type": "node", "id": 8155107985, "lat": 40.4354645, "lon": -3.6996446}, {"type": "node", "id": 8155107986, "lat": 40.4354586, "lon": -3.6996136}, {"type": "node", "id": 8155107987, "lat": 40.4353935, "lon": -3.699634}, {"type": "node", "id": 8155107990, "lat": 40.4354113, "lon": -3.6997114}, {"type": "node", "id": 8155107991, "lat": 40.4353797, "lon": -3.6997232}, {"type": "node", "id": 8155107992, "lat": 40.4353595, "lon": -3.6996329, "tags": {"entrance": "yes"}}, {"type": "node", "id": 8155107993, "lat": 40.4353443, "lon": -3.6997364}, {"type": "node", "id": 8155107994, "lat": 40.4353245, "lon": -3.6996442, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8194903531, "lat": 40.4328089, "lon": -3.7074767, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8194903532, "lat": 40.4327471, "lon": -3.7074888, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8194903533, "lat": 40.4327299, "lon": -3.707046}, {"type": "node", "id": 8194903534, "lat": 40.4327219, "lon": -3.7070841}, {"type": "node", "id": 8194903535, "lat": 40.4328276, "lon": -3.7070529}, {"type": "node", "id": 8213572608, "lat": 40.4459572, "lon": -3.6877536}, {"type": "node", "id": 8213572609, "lat": 40.4459756, "lon": -3.6878677}, {"type": "node", "id": 8213572610, "lat": 40.4460253, "lon": -3.6866937}, {"type": "node", "id": 8213572611, "lat": 40.4460161, "lon": -3.6865761}, {"type": "node", "id": 8213572612, "lat": 40.4459056, "lon": -3.6863886}, {"type": "node", "id": 8213572613, "lat": 40.4457727, "lon": -3.6861596}, {"type": "node", "id": 8213572614, "lat": 40.4458761, "lon": -3.6861767}, {"type": "node", "id": 8213572615, "lat": 40.4447965, "lon": -3.6863202}, {"type": "node", "id": 8213572616, "lat": 40.4447391, "lon": -3.6864265}, {"type": "node", "id": 8213602117, "lat": 40.4446664, "lon": -3.6863863}, {"type": "node", "id": 8213602118, "lat": 40.444834, "lon": -3.6860759}, {"type": "node", "id": 8213602119, "lat": 40.4449147, "lon": -3.6859921}, {"type": "node", "id": 8213602120, "lat": 40.4448054, "lon": -3.6860613}, {"type": "node", "id": 8213602121, "lat": 40.4448093, "lon": -3.6859492}, {"type": "node", "id": 8213602122, "lat": 40.4447841, "lon": -3.6858196}, {"type": "node", "id": 8213602123, "lat": 40.4447424, "lon": -3.6857521}, {"type": "node", "id": 8213602124, "lat": 40.4447446, "lon": -3.6856416}, {"type": "node", "id": 8213602125, "lat": 40.4448463, "lon": -3.6857421}, {"type": "node", "id": 8213602126, "lat": 40.4449351, "lon": -3.6857795}, {"type": "node", "id": 8213602127, "lat": 40.4450459, "lon": -3.6858317}, {"type": "node", "id": 8213602128, "lat": 40.4449841, "lon": -3.6857642}, {"type": "node", "id": 8213602129, "lat": 40.4451636, "lon": -3.6858636}, {"type": "node", "id": 8213602130, "lat": 40.4450409, "lon": -3.6858788}, {"type": "node", "id": 8213602131, "lat": 40.4448304, "lon": -3.685388}, {"type": "node", "id": 8213602132, "lat": 40.4447712, "lon": -3.685277}, {"type": "node", "id": 8213602143, "lat": 40.445463, "lon": -3.6855034}, {"type": "node", "id": 8213602144, "lat": 40.4454311, "lon": -3.6853429}, {"type": "node", "id": 8213602145, "lat": 40.4452981, "lon": -3.6851881}, {"type": "node", "id": 8213602149, "lat": 40.444922, "lon": -3.6854331}, {"type": "node", "id": 8213602150, "lat": 40.4449541, "lon": -3.685376}, {"type": "node", "id": 8213602151, "lat": 40.4450186, "lon": -3.6852643}, {"type": "node", "id": 8213602152, "lat": 40.4450507, "lon": -3.6852363}, {"type": "node", "id": 8213602156, "lat": 40.4453774, "lon": -3.6852318}, {"type": "node", "id": 8224947183, "lat": 40.445387, "lon": -3.6858805}, {"type": "node", "id": 8224947184, "lat": 40.4453472, "lon": -3.6858548}, {"type": "node", "id": 8224947185, "lat": 40.4453446, "lon": -3.6858125}, {"type": "node", "id": 8224947186, "lat": 40.4455417, "lon": -3.6856841}, {"type": "node", "id": 8255907447, "lat": 40.4476617, "lon": -3.6945445}, {"type": "node", "id": 8255907448, "lat": 40.447664, "lon": -3.6945378}, {"type": "node", "id": 8279212876, "lat": 40.4402891, "lon": -3.691385}, {"type": "node", "id": 8284092934, "lat": 40.4477904, "lon": -3.6945703}, {"type": "node", "id": 8284092959, "lat": 40.4482339, "lon": -3.6944435}, {"type": "node", "id": 8284092999, "lat": 40.4482693, "lon": -3.694596}, {"type": "node", "id": 8284093000, "lat": 40.448271, "lon": -3.6944902}, {"type": "node", "id": 8284093001, "lat": 40.4482346, "lon": -3.6946149}, {"type": "node", "id": 8284093002, "lat": 40.4479112, "lon": -3.694632}, {"type": "node", "id": 8284112600, "lat": 40.4482535, "lon": -3.6944681}, {"type": "node", "id": 8284112601, "lat": 40.4481505, "lon": -3.6946262}, {"type": "node", "id": 8284112602, "lat": 40.4480014, "lon": -3.6944812}, {"type": "node", "id": 8284112603, "lat": 40.4479595, "lon": -3.6946099}, {"type": "node", "id": 8284112604, "lat": 40.4479702, "lon": -3.6944798}, {"type": "node", "id": 8284112605, "lat": 40.4482151, "lon": -3.6944304}, {"type": "node", "id": 8284112606, "lat": 40.4482539, "lon": -3.6946083}, {"type": "node", "id": 8291665485, "lat": 40.4295616, "lon": -3.7068058}, {"type": "node", "id": 8291665486, "lat": 40.4294136, "lon": -3.7068287}, {"type": "node", "id": 8291665487, "lat": 40.4291666, "lon": -3.7068668}, {"type": "node", "id": 8291665488, "lat": 40.4293347, "lon": -3.7068408}, {"type": "node", "id": 8294838433, "lat": 40.4241066, "lon": -3.6842157}, {"type": "node", "id": 8294970381, "lat": 40.4337599, "lon": -3.6809091, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8294970384, "lat": 40.43375, "lon": -3.6807113, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8301341782, "lat": 40.4212281, "lon": -3.6917895}, {"type": "node", "id": 8301341783, "lat": 40.4212774, "lon": -3.6917239}, {"type": "node", "id": 8301341784, "lat": 40.4213143, "lon": -3.69172}, {"type": "node", "id": 8301341785, "lat": 40.4213506, "lon": -3.6917325}, {"type": "node", "id": 8301341786, "lat": 40.4211164, "lon": -3.6919151, "tags": {"access": "yes", "amenity": "parking", "capacity": "391", "fee": "yes", "layer": "-1", "name": "Aparcamiento Recoletos", "operator": "EMT Madrid", "operator:type": "public", "parking": "underground", "wheelchair": "no"}}, {"type": "node", "id": 8301341787, "lat": 40.4199952, "lon": -3.692348}, {"type": "node", "id": 8301341788, "lat": 40.4201228, "lon": -3.6923432}, {"type": "node", "id": 8301341789, "lat": 40.4199268, "lon": -3.692402}, {"type": "node", "id": 8301341790, "lat": 40.419928, "lon": -3.6924262}, {"type": "node", "id": 8301341791, "lat": 40.4199342, "lon": -3.6923766}, {"type": "node", "id": 8307252469, "lat": 40.4242605, "lon": -3.6882306}, {"type": "node", "id": 8307252470, "lat": 40.432949, "lon": -3.6861701, "tags": {"amenity": "parking_entrance", "name": "Serranopark Juan Bravo", "parking": "underground"}}, {"type": "node", "id": 8307252471, "lat": 40.4241115, "lon": -3.6882597}, {"type": "node", "id": 8307252472, "lat": 40.421281, "lon": -3.6887568, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "PNOA", "source:date": "2014", "tactile_paving": "no", "traffic_signals": "crossing", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252475, "lat": 40.4278619, "lon": -3.6872257, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "traffic_signals": "crossing"}}, {"type": "node", "id": 8307252476, "lat": 40.4318283, "lon": -3.6867884, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252477, "lat": 40.4329006, "lon": -3.6865016, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252478, "lat": 40.4330238, "lon": -3.6864908, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8307252479, "lat": 40.4350883, "lon": -3.6863182, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "crossing", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8381512931, "lat": 40.4345489, "lon": -3.7197131, "tags": {"bus": "yes", "name": "Interc. Moncloa Isla 1 D 13", "public_transport": "stop_position"}}, {"type": "node", "id": 8385594956, "lat": 40.4363744, "lon": -3.7210554}, {"type": "node", "id": 8385594957, "lat": 40.4363385, "lon": -3.721259}, {"type": "node", "id": 8385594958, "lat": 40.436213, "lon": -3.7212448}, {"type": "node", "id": 8385594960, "lat": 40.43506, "lon": -3.7196032}, {"type": "node", "id": 8385594966, "lat": 40.4360882, "lon": -3.7197971}, {"type": "node", "id": 8385594967, "lat": 40.4361384, "lon": -3.7198895}, {"type": "node", "id": 8385594968, "lat": 40.4351021, "lon": -3.7191504}, {"type": "node", "id": 8388879235, "lat": 40.4337599, "lon": -3.7186387}, {"type": "node", "id": 8388879242, "lat": 40.4338811, "lon": -3.7192436, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 08", "public_transport": "stop_position", "ref": "D8"}}, {"type": "node", "id": 8388879243, "lat": 40.4340003, "lon": -3.7193276, "tags": {"bus": "yes", "level": "-1", "name": "Interc. Moncloa Isla 1 D 09", "public_transport": "stop_position", "ref": "D9"}}, {"type": "node", "id": 8388879244, "lat": 40.4351911, "lon": -3.7196567}, {"type": "node", "id": 8398199082, "lat": 40.4514657, "lon": -3.7105478}, {"type": "node", "id": 8398199114, "lat": 40.4511304, "lon": -3.7094216, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199115, "lat": 40.4509463, "lon": -3.7094748, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199204, "lat": 40.4505101, "lon": -3.7072281, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8398199205, "lat": 40.4506259, "lon": -3.7074476}, {"type": "node", "id": 8398199206, "lat": 40.4507647, "lon": -3.7076651}, {"type": "node", "id": 8398199207, "lat": 40.4509205, "lon": -3.7079845, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199208, "lat": 40.4510897, "lon": -3.708319, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199209, "lat": 40.4510009, "lon": -3.7083554, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8398199211, "lat": 40.4524689, "lon": -3.7105361}, {"type": "node", "id": 8398453275, "lat": 40.4510494, "lon": -3.7095107}, {"type": "node", "id": 8398453276, "lat": 40.4513837, "lon": -3.7093816}, {"type": "node", "id": 8398453280, "lat": 40.450683, "lon": -3.7095205}, {"type": "node", "id": 8398453281, "lat": 40.4505825, "lon": -3.7095003, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8398453282, "lat": 40.4501923, "lon": -3.7094104}, {"type": "node", "id": 8398453283, "lat": 40.4501527, "lon": -3.7094015}, {"type": "node", "id": 8400874013, "lat": 40.4516641, "lon": -3.7080745, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8400874015, "lat": 40.4506819, "lon": -3.704828}, {"type": "node", "id": 8401038657, "lat": 40.45152, "lon": -3.7105393}, {"type": "node", "id": 8401038662, "lat": 40.4511291, "lon": -3.7104645}, {"type": "node", "id": 8401038664, "lat": 40.4511131, "lon": -3.7104956}, {"type": "node", "id": 8401038665, "lat": 40.4510811, "lon": -3.7105089}, {"type": "node", "id": 8401038666, "lat": 40.4510555, "lon": -3.7105085}, {"type": "node", "id": 8401038667, "lat": 40.4510131, "lon": -3.710487}, {"type": "node", "id": 8401038669, "lat": 40.4510098, "lon": -3.7104471}, {"type": "node", "id": 8401038670, "lat": 40.4510247, "lon": -3.7104212}, {"type": "node", "id": 8401038671, "lat": 40.4510462, "lon": -3.7104063}, {"type": "node", "id": 8401038672, "lat": 40.4510701, "lon": -3.7104}, {"type": "node", "id": 8401038673, "lat": 40.4510934, "lon": -3.7104032}, {"type": "node", "id": 8401038674, "lat": 40.4511211, "lon": -3.7104252}, {"type": "node", "id": 8401038675, "lat": 40.4511012, "lon": -3.7106792}, {"type": "node", "id": 8401038676, "lat": 40.4510369, "lon": -3.7105813}, {"type": "node", "id": 8401920777, "lat": 40.4516749, "lon": -3.7099228}, {"type": "node", "id": 8401920778, "lat": 40.451661, "lon": -3.7096189}, {"type": "node", "id": 8401920779, "lat": 40.451681, "lon": -3.7094562}, {"type": "node", "id": 8401920780, "lat": 40.4516632, "lon": -3.7094298}, {"type": "node", "id": 8401920781, "lat": 40.4515696, "lon": -3.7094357}, {"type": "node", "id": 8401920782, "lat": 40.4514304, "lon": -3.7094515}, {"type": "node", "id": 8401920783, "lat": 40.4513063, "lon": -3.7094881}, {"type": "node", "id": 8401920784, "lat": 40.4511709, "lon": -3.7095504}, {"type": "node", "id": 8401920785, "lat": 40.4510814, "lon": -3.70958}, {"type": "node", "id": 8401920786, "lat": 40.4509964, "lon": -3.7096038}, {"type": "node", "id": 8401920787, "lat": 40.4508219, "lon": -3.7096127}, {"type": "node", "id": 8401920788, "lat": 40.450697, "lon": -3.7096008}, {"type": "node", "id": 8401920789, "lat": 40.4505835, "lon": -3.709581}, {"type": "node", "id": 8401920790, "lat": 40.4502962, "lon": -3.7095127}, {"type": "node", "id": 8401920791, "lat": 40.4502859, "lon": -3.7095639}, {"type": "node", "id": 8401920792, "lat": 40.4504431, "lon": -3.7099302}, {"type": "node", "id": 8401920793, "lat": 40.4505684, "lon": -3.709987}, {"type": "node", "id": 8401920794, "lat": 40.4508075, "lon": -3.7099817}, {"type": "node", "id": 8401920795, "lat": 40.451064, "lon": -3.7099699}, {"type": "node", "id": 8401920796, "lat": 40.4513183, "lon": -3.7099619}, {"type": "node", "id": 8401920797, "lat": 40.4514123, "lon": -3.709953}, {"type": "node", "id": 8401920800, "lat": 40.4507883, "lon": -3.7095321}, {"type": "node", "id": 8401972737, "lat": 40.4503323, "lon": -3.7096721, "tags": {"natural": "tree"}}, {"type": "node", "id": 8402179356, "lat": 40.4476887, "lon": -3.7039956}, {"type": "node", "id": 8402179358, "lat": 40.4479577, "lon": -3.7039574}, {"type": "node", "id": 8402179392, "lat": 40.4479594, "lon": -3.7039963}, {"type": "node", "id": 8402489211, "lat": 40.4518244, "lon": -3.7099788, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8402493606, "lat": 40.4504905, "lon": -3.7070998}, {"type": "node", "id": 8402493607, "lat": 40.4504763, "lon": -3.7069327}, {"type": "node", "id": 8402493608, "lat": 40.4506523, "lon": -3.7060759}, {"type": "node", "id": 8402493609, "lat": 40.4501592, "lon": -3.7059072}, {"type": "node", "id": 8402493610, "lat": 40.4499607, "lon": -3.7069126}, {"type": "node", "id": 8402493611, "lat": 40.4499817, "lon": -3.7069458}, {"type": "node", "id": 8402493612, "lat": 40.4504623, "lon": -3.7069924}, {"type": "node", "id": 8402493613, "lat": 40.4504691, "lon": -3.7069633, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8402493614, "lat": 40.4505464, "lon": -3.7072226}, {"type": "node", "id": 8402493615, "lat": 40.4505331, "lon": -3.707149}, {"type": "node", "id": 8402493616, "lat": 40.4507383, "lon": -3.70611}, {"type": "node", "id": 8402493618, "lat": 40.4505761, "lon": -3.707249}, {"type": "node", "id": 8402493619, "lat": 40.4509627, "lon": -3.7071489}, {"type": "node", "id": 8404518421, "lat": 40.4492747, "lon": -3.7091903}, {"type": "node", "id": 8404518422, "lat": 40.4493989, "lon": -3.7094904}, {"type": "node", "id": 8404518423, "lat": 40.4494004, "lon": -3.709473}, {"type": "node", "id": 8404518424, "lat": 40.4481635, "lon": -3.7081547}, {"type": "node", "id": 8404518425, "lat": 40.4480947, "lon": -3.7081304}, {"type": "node", "id": 8404518426, "lat": 40.4480497, "lon": -3.7081276}, {"type": "node", "id": 8404518427, "lat": 40.4480155, "lon": -3.7081308}, {"type": "node", "id": 8404518428, "lat": 40.4479842, "lon": -3.7081452}, {"type": "node", "id": 8404518429, "lat": 40.4479161, "lon": -3.7082015}, {"type": "node", "id": 8405390280, "lat": 40.4525478, "lon": -3.7108918}, {"type": "node", "id": 8405390291, "lat": 40.4490187, "lon": -3.7093626, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8405390292, "lat": 40.448891, "lon": -3.7092761}, {"type": "node", "id": 8405390293, "lat": 40.4488093, "lon": -3.7092512}, {"type": "node", "id": 8405406021, "lat": 40.4489946, "lon": -3.709738}, {"type": "node", "id": 8405406022, "lat": 40.4488983, "lon": -3.7097255}, {"type": "node", "id": 8405406023, "lat": 40.4489071, "lon": -3.7096695, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8405406024, "lat": 40.4487456, "lon": -3.7095736}, {"type": "node", "id": 8405406025, "lat": 40.4486887, "lon": -3.7095129}, {"type": "node", "id": 8406210452, "lat": 40.4524243, "lon": -3.7102481}, {"type": "node", "id": 8409510071, "lat": 40.4493613, "lon": -3.7075608}, {"type": "node", "id": 8409510072, "lat": 40.4493809, "lon": -3.7076406}, {"type": "node", "id": 8409510073, "lat": 40.4500142, "lon": -3.706501}, {"type": "node", "id": 8409510074, "lat": 40.4499664, "lon": -3.7066723}, {"type": "node", "id": 8409510075, "lat": 40.4490931, "lon": -3.7054984}, {"type": "node", "id": 8409510076, "lat": 40.4511895, "lon": -3.7061299}, {"type": "node", "id": 8409656015, "lat": 40.4510881, "lon": -3.708402}, {"type": "node", "id": 8409677817, "lat": 40.4516632, "lon": -3.7081178}, {"type": "node", "id": 8409677818, "lat": 40.4516738, "lon": -3.7092883}, {"type": "node", "id": 8409677819, "lat": 40.4515083, "lon": -3.7093086}, {"type": "node", "id": 8409677820, "lat": 40.4516697, "lon": -3.7088398}, {"type": "node", "id": 8410125841, "lat": 40.4510643, "lon": -3.7084123, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8410136424, "lat": 40.4511138, "lon": -3.7094276}, {"type": "node", "id": 8410136425, "lat": 40.4509778, "lon": -3.7094699}, {"type": "node", "id": 8410136426, "lat": 40.4505522, "lon": -3.7085946}, {"type": "node", "id": 8410136427, "lat": 40.4508208, "lon": -3.7084626}, {"type": "node", "id": 8410136428, "lat": 40.4509535, "lon": -3.7090331}, {"type": "node", "id": 8410136429, "lat": 40.4505588, "lon": -3.7085657}, {"type": "node", "id": 8410136430, "lat": 40.4508654, "lon": -3.7092303}, {"type": "node", "id": 8410136431, "lat": 40.4508307, "lon": -3.7084775}, {"type": "node", "id": 8410136432, "lat": 40.4508462, "lon": -3.7084527, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8410136818, "lat": 40.4514125, "lon": -3.7093222}, {"type": "node", "id": 8410136819, "lat": 40.451427, "lon": -3.7092882}, {"type": "node", "id": 8410136820, "lat": 40.451016, "lon": -3.708397}, {"type": "node", "id": 8410136821, "lat": 40.4510051, "lon": -3.7083911}, {"type": "node", "id": 8410136822, "lat": 40.4508647, "lon": -3.7084455}, {"type": "node", "id": 8410136823, "lat": 40.4508624, "lon": -3.7084556}, {"type": "node", "id": 8410136824, "lat": 40.4510192, "lon": -3.7090868}, {"type": "node", "id": 8410136825, "lat": 40.4511497, "lon": -3.7094146}, {"type": "node", "id": 8410136826, "lat": 40.4512578, "lon": -3.709357}, {"type": "node", "id": 8410136827, "lat": 40.4514794, "lon": -3.7093105, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8412813522, "lat": 40.4471943, "lon": -3.7093762}, {"type": "node", "id": 8412813523, "lat": 40.447407, "lon": -3.7094566}, {"type": "node", "id": 8412813524, "lat": 40.4474285, "lon": -3.7094574}, {"type": "node", "id": 8412813525, "lat": 40.447456, "lon": -3.7094472}, {"type": "node", "id": 8412813526, "lat": 40.447484, "lon": -3.7094158}, {"type": "node", "id": 8412813527, "lat": 40.4475043, "lon": -3.7093758}, {"type": "node", "id": 8412813528, "lat": 40.4475199, "lon": -3.7093099}, {"type": "node", "id": 8412813529, "lat": 40.4475253, "lon": -3.7092604}, {"type": "node", "id": 8412813530, "lat": 40.4475229, "lon": -3.7092094}, {"type": "node", "id": 8412813531, "lat": 40.4475043, "lon": -3.7091529}, {"type": "node", "id": 8412813532, "lat": 40.4474817, "lon": -3.7091153}, {"type": "node", "id": 8412813533, "lat": 40.447447, "lon": -3.7090878}, {"type": "node", "id": 8412813534, "lat": 40.4473437, "lon": -3.7090195}, {"type": "node", "id": 8412813535, "lat": 40.4473261, "lon": -3.7090099, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8412813536, "lat": 40.447278, "lon": -3.7094081, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8412813537, "lat": 40.4472992, "lon": -3.7089962, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8412813541, "lat": 40.4512772, "lon": -3.7108585, "tags": {"barrier": "block", "bicycle": "yes", "foot": "yes", "motor_vehicle": "no"}}, {"type": "node", "id": 8412813542, "lat": 40.4517074, "lon": -3.7111331, "tags": {"barrier": "block", "bicycle": "yes", "foot": "yes", "motor_vehicle": "no"}}, {"type": "node", "id": 8412813543, "lat": 40.4525593, "lon": -3.7109593}, {"type": "node", "id": 8412813546, "lat": 40.4504098, "lon": -3.7103062, "tags": {"barrier": "block", "bicycle": "yes", "foot": "yes", "motor_vehicle": "no"}}, {"type": "node", "id": 8412813549, "lat": 40.4473054, "lon": -3.7094184, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8412903967, "lat": 40.4481521, "lon": -3.7080746}, {"type": "node", "id": 8412903968, "lat": 40.4493553, "lon": -3.7089971}, {"type": "node", "id": 8412903969, "lat": 40.4492582, "lon": -3.7086748}, {"type": "node", "id": 8412903970, "lat": 40.449271, "lon": -3.7090752}, {"type": "node", "id": 8412903971, "lat": 40.4496146, "lon": -3.7103304}, {"type": "node", "id": 8412903972, "lat": 40.4496599, "lon": -3.7103491}, {"type": "node", "id": 8412903973, "lat": 40.449741, "lon": -3.7102332}, {"type": "node", "id": 8412903974, "lat": 40.4497757, "lon": -3.7102262}, {"type": "node", "id": 8415246954, "lat": 40.4499188, "lon": -3.7221211}, {"type": "node", "id": 8415246955, "lat": 40.4499672, "lon": -3.7216159}, {"type": "node", "id": 8415877503, "lat": 40.4467371, "lon": -3.7106849}, {"type": "node", "id": 8415877504, "lat": 40.4468366, "lon": -3.7107245}, {"type": "node", "id": 8415877505, "lat": 40.4464887, "lon": -3.7121316}, {"type": "node", "id": 8415877506, "lat": 40.4463852, "lon": -3.712215}, {"type": "node", "id": 8415878082, "lat": 40.4470616, "lon": -3.7090632}, {"type": "node", "id": 8415878084, "lat": 40.4469744, "lon": -3.7095618}, {"type": "node", "id": 8415878085, "lat": 40.4470026, "lon": -3.7094341}, {"type": "node", "id": 8415878086, "lat": 40.4470526, "lon": -3.7091736}, {"type": "node", "id": 8415878087, "lat": 40.4470166, "lon": -3.7097712}, {"type": "node", "id": 8415878088, "lat": 40.4470734, "lon": -3.7095653}, {"type": "node", "id": 8415878089, "lat": 40.4471032, "lon": -3.709463}, {"type": "node", "id": 8415878090, "lat": 40.4471287, "lon": -3.7094076}, {"type": "node", "id": 8415878091, "lat": 40.4469854, "lon": -3.7097623}, {"type": "node", "id": 8415878092, "lat": 40.4470563, "lon": -3.7094549}, {"type": "node", "id": 8415878093, "lat": 40.4470647, "lon": -3.7093863}, {"type": "node", "id": 8415878094, "lat": 40.4470703, "lon": -3.7092892}, {"type": "node", "id": 8415878095, "lat": 40.4472161, "lon": -3.709068}, {"type": "node", "id": 8415878096, "lat": 40.4471564, "lon": -3.7093413}, {"type": "node", "id": 8415878097, "lat": 40.4471869, "lon": -3.7092311}, {"type": "node", "id": 8415878098, "lat": 40.44688, "lon": -3.710174}, {"type": "node", "id": 8415878099, "lat": 40.4469569, "lon": -3.7102311}, {"type": "node", "id": 8415878100, "lat": 40.4463562, "lon": -3.712353}, {"type": "node", "id": 8415878104, "lat": 40.4458127, "lon": -3.7143958}, {"type": "node", "id": 8415878105, "lat": 40.445916, "lon": -3.7144371}, {"type": "node", "id": 8415878106, "lat": 40.4462967, "lon": -3.7124499}, {"type": "node", "id": 8416381980, "lat": 40.4518451, "lon": -3.7093434}, {"type": "node", "id": 8416381981, "lat": 40.4519044, "lon": -3.709345}, {"type": "node", "id": 8416381984, "lat": 40.4516662, "lon": -3.7084549}, {"type": "node", "id": 8416409723, "lat": 40.4506437, "lon": -3.708935}, {"type": "node", "id": 8416409724, "lat": 40.4504022, "lon": -3.7089803}, {"type": "node", "id": 8416409725, "lat": 40.4503275, "lon": -3.7089847}, {"type": "node", "id": 8416409726, "lat": 40.4502441, "lon": -3.7086948}, {"type": "node", "id": 8416409727, "lat": 40.4499496, "lon": -3.7088127}, {"type": "node", "id": 8416409728, "lat": 40.4501676, "lon": -3.7093488}, {"type": "node", "id": 8416409729, "lat": 40.4507004, "lon": -3.7094749}, {"type": "node", "id": 8416409730, "lat": 40.450808, "lon": -3.709487}, {"type": "node", "id": 8416409731, "lat": 40.4508837, "lon": -3.7094922}, {"type": "node", "id": 8416409732, "lat": 40.4508987, "lon": -3.709458}, {"type": "node", "id": 8416409735, "lat": 40.4504855, "lon": -3.7085969}, {"type": "node", "id": 8416409736, "lat": 40.4502979, "lon": -3.7086794}, {"type": "node", "id": 8416409737, "lat": 40.450369, "lon": -3.7089136}, {"type": "node", "id": 8416409738, "lat": 40.4505976, "lon": -3.708868}, {"type": "node", "id": 8416409739, "lat": 40.4506037, "lon": -3.7088436}, {"type": "node", "id": 8416409740, "lat": 40.4505146, "lon": -3.7085845, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409741, "lat": 40.4506286, "lon": -3.7089006, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409742, "lat": 40.45027, "lon": -3.7086874, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409743, "lat": 40.4499341, "lon": -3.7087757, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8416409744, "lat": 40.4513089, "lon": -3.7094022}, {"type": "node", "id": 8416532988, "lat": 40.4480139, "lon": -3.7080606}, {"type": "node", "id": 8416532989, "lat": 40.4481079, "lon": -3.7080589}, {"type": "node", "id": 8416532990, "lat": 40.4482044, "lon": -3.7081004}, {"type": "node", "id": 8416532991, "lat": 40.448283, "lon": -3.7081464}, {"type": "node", "id": 8416532992, "lat": 40.4483552, "lon": -3.7081967}, {"type": "node", "id": 8416532993, "lat": 40.4494351, "lon": -3.7092239}, {"type": "node", "id": 8418938599, "lat": 40.4523565, "lon": -3.7077959}, {"type": "node", "id": 8418945155, "lat": 40.4509305, "lon": -3.7080552}, {"type": "node", "id": 8418945156, "lat": 40.4510314, "lon": -3.7082721}, {"type": "node", "id": 8418945157, "lat": 40.4510582, "lon": -3.708288}, {"type": "node", "id": 8418945158, "lat": 40.451665, "lon": -3.7080345}, {"type": "node", "id": 8418945159, "lat": 40.4516634, "lon": -3.7078106}, {"type": "node", "id": 8418945160, "lat": 40.4516287, "lon": -3.7077788}, {"type": "node", "id": 8418945161, "lat": 40.4509388, "lon": -3.7080221}, {"type": "node", "id": 8418945163, "lat": 40.4505117, "lon": -3.7085109}, {"type": "node", "id": 8418945164, "lat": 40.4503841, "lon": -3.708262}, {"type": "node", "id": 8418945165, "lat": 40.4503931, "lon": -3.7082282}, {"type": "node", "id": 8418945166, "lat": 40.4508575, "lon": -3.7080524}, {"type": "node", "id": 8418945167, "lat": 40.4509692, "lon": -3.7082909}, {"type": "node", "id": 8418945168, "lat": 40.4509593, "lon": -3.7083267}, {"type": "node", "id": 8419169733, "lat": 40.4516634, "lon": -3.7081427}, {"type": "node", "id": 8419169736, "lat": 40.4510045, "lon": -3.7082802, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169737, "lat": 40.4509857, "lon": -3.7083986}, {"type": "node", "id": 8419169738, "lat": 40.4509737, "lon": -3.7083661, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169739, "lat": 40.4510302, "lon": -3.7084277}, {"type": "node", "id": 8419169740, "lat": 40.4511035, "lon": -3.7083519}, {"type": "node", "id": 8419169741, "lat": 40.4510739, "lon": -3.7082814}, {"type": "node", "id": 8419169748, "lat": 40.4503094, "lon": -3.7082528}, {"type": "node", "id": 8419169749, "lat": 40.450445, "lon": -3.7085224}, {"type": "node", "id": 8419169750, "lat": 40.4504395, "lon": -3.7085393}, {"type": "node", "id": 8419169751, "lat": 40.4499185, "lon": -3.7087388}, {"type": "node", "id": 8419169752, "lat": 40.4497943, "lon": -3.7084517}, {"type": "node", "id": 8419169766, "lat": 40.4517428, "lon": -3.7080417, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8419169769, "lat": 40.4528997, "lon": -3.7080185, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169775, "lat": 40.4524264, "lon": -3.7077948, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169776, "lat": 40.4523696, "lon": -3.7077917, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419169784, "lat": 40.4527117, "lon": -3.7079292}, {"type": "node", "id": 8419169785, "lat": 40.4508958, "lon": -3.7080388, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169786, "lat": 40.4503436, "lon": -3.7082427, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169787, "lat": 40.4504704, "lon": -3.7086036}, {"type": "node", "id": 8419169788, "lat": 40.4504537, "lon": -3.708569, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169789, "lat": 40.450484, "lon": -3.7085218, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419169791, "lat": 40.4489063, "lon": -3.7074435}, {"type": "node", "id": 8419169792, "lat": 40.4492373, "lon": -3.7074017}, {"type": "node", "id": 8419169793, "lat": 40.4492799, "lon": -3.7074804}, {"type": "node", "id": 8419169794, "lat": 40.4493274, "lon": -3.7075789}, {"type": "node", "id": 8419169795, "lat": 40.4493405, "lon": -3.7076524}, {"type": "node", "id": 8419169796, "lat": 40.4497886, "lon": -3.7085914}, {"type": "node", "id": 8419169797, "lat": 40.4500685, "lon": -3.7092659}, {"type": "node", "id": 8419169798, "lat": 40.4500396, "lon": -3.7093143}, {"type": "node", "id": 8419169799, "lat": 40.4494327, "lon": -3.7091692}, {"type": "node", "id": 8419169800, "lat": 40.4492855, "lon": -3.7086599}, {"type": "node", "id": 8419169801, "lat": 40.4490372, "lon": -3.7082155}, {"type": "node", "id": 8419169802, "lat": 40.4489566, "lon": -3.7079052}, {"type": "node", "id": 8419169861, "lat": 40.448115, "lon": -3.7071877}, {"type": "node", "id": 8419169862, "lat": 40.4481918, "lon": -3.7072194}, {"type": "node", "id": 8419169863, "lat": 40.4482178, "lon": -3.7072728}, {"type": "node", "id": 8419169864, "lat": 40.4482388, "lon": -3.7073086}, {"type": "node", "id": 8419169865, "lat": 40.4486112, "lon": -3.7074587}, {"type": "node", "id": 8419169866, "lat": 40.4486366, "lon": -3.7074579}, {"type": "node", "id": 8419169867, "lat": 40.4488654, "lon": -3.7074472}, {"type": "node", "id": 8419169868, "lat": 40.4489214, "lon": -3.7079359}, {"type": "node", "id": 8419169869, "lat": 40.4490022, "lon": -3.7082507}, {"type": "node", "id": 8419169870, "lat": 40.4491699, "lon": -3.7085339}, {"type": "node", "id": 8419169871, "lat": 40.4492199, "lon": -3.7086404}, {"type": "node", "id": 8419169872, "lat": 40.4492411, "lon": -3.7086998}, {"type": "node", "id": 8419169873, "lat": 40.4493339, "lon": -3.7089988}, {"type": "node", "id": 8419169874, "lat": 40.4492942, "lon": -3.7090352}, {"type": "node", "id": 8419169875, "lat": 40.4484894, "lon": -3.7082482}, {"type": "node", "id": 8419169876, "lat": 40.4484068, "lon": -3.7081763}, {"type": "node", "id": 8419169877, "lat": 40.4483163, "lon": -3.7081126}, {"type": "node", "id": 8419169878, "lat": 40.4482739, "lon": -3.7080879}, {"type": "node", "id": 8419169879, "lat": 40.4481751, "lon": -3.708027}, {"type": "node", "id": 8419169880, "lat": 40.4481292, "lon": -3.7080092}, {"type": "node", "id": 8419169881, "lat": 40.4480842, "lon": -3.7079971}, {"type": "node", "id": 8419169882, "lat": 40.4480423, "lon": -3.707996}, {"type": "node", "id": 8419169883, "lat": 40.4479959, "lon": -3.7080029}, {"type": "node", "id": 8419169884, "lat": 40.4479457, "lon": -3.7080189}, {"type": "node", "id": 8419169885, "lat": 40.4479046, "lon": -3.7080321}, {"type": "node", "id": 8419169886, "lat": 40.4478714, "lon": -3.7080528}, {"type": "node", "id": 8419169887, "lat": 40.4478381, "lon": -3.7080884}, {"type": "node", "id": 8419169888, "lat": 40.4475597, "lon": -3.7084583}, {"type": "node", "id": 8419169889, "lat": 40.4472602, "lon": -3.7082689}, {"type": "node", "id": 8419169890, "lat": 40.447185, "lon": -3.706944}, {"type": "node", "id": 8419169891, "lat": 40.4472002, "lon": -3.706922}, {"type": "node", "id": 8419169892, "lat": 40.4472194, "lon": -3.7068985}, {"type": "node", "id": 8419169893, "lat": 40.447229, "lon": -3.706887}, {"type": "node", "id": 8419169894, "lat": 40.4493741, "lon": -3.7091125, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8419169895, "lat": 40.4472476, "lon": -3.7080466, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8419169896, "lat": 40.4472167, "lon": -3.7068023}, {"type": "node", "id": 8419169897, "lat": 40.4471749, "lon": -3.7067557}, {"type": "node", "id": 8419169898, "lat": 40.4471917, "lon": -3.7067818}, {"type": "node", "id": 8419397863, "lat": 40.4497803, "lon": -3.7084201, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419397864, "lat": 40.4496972, "lon": -3.7082254, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8419397865, "lat": 40.4493166, "lon": -3.7074641, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397867, "lat": 40.4493335, "lon": -3.7074985}, {"type": "node", "id": 8419397868, "lat": 40.4493678, "lon": -3.707523}, {"type": "node", "id": 8419397869, "lat": 40.4493869, "lon": -3.7074986, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419397870, "lat": 40.4494155, "lon": -3.7074843}, {"type": "node", "id": 8419397871, "lat": 40.4508585, "lon": -3.7085042, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397872, "lat": 40.450995, "lon": -3.7082587, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397873, "lat": 40.4514608, "lon": -3.7092667, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397874, "lat": 40.4517809, "lon": -3.7080259, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397875, "lat": 40.451629, "lon": -3.7077394, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397876, "lat": 40.4516321, "lon": -3.7074422, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397878, "lat": 40.4518334, "lon": -3.7062474, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397879, "lat": 40.4502554, "lon": -3.7082354}, {"type": "node", "id": 8419397880, "lat": 40.4499723, "lon": -3.7087608, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397881, "lat": 40.4501006, "lon": -3.709271, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397882, "lat": 40.4502478, "lon": -3.7095637, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397883, "lat": 40.4488119, "lon": -3.7074043, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397884, "lat": 40.4486053, "lon": -3.7073076, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419397885, "lat": 40.4476479, "lon": -3.7068874, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419403313, "lat": 40.449398, "lon": -3.7075838}, {"type": "node", "id": 8419403314, "lat": 40.4496704, "lon": -3.7081715}, {"type": "node", "id": 8419403315, "lat": 40.4497025, "lon": -3.7081936}, {"type": "node", "id": 8419403316, "lat": 40.4501494, "lon": -3.7079275}, {"type": "node", "id": 8419412217, "lat": 40.4499424, "lon": -3.7075037}, {"type": "node", "id": 8419412218, "lat": 40.4499197, "lon": -3.7074818}, {"type": "node", "id": 8419412219, "lat": 40.4494139, "lon": -3.7075582}, {"type": "node", "id": 8419412220, "lat": 40.4497656, "lon": -3.7083868}, {"type": "node", "id": 8419412221, "lat": 40.4497077, "lon": -3.7082464}, {"type": "node", "id": 8419412222, "lat": 40.4501802, "lon": -3.7079848}, {"type": "node", "id": 8419412223, "lat": 40.4502795, "lon": -3.7081866}, {"type": "node", "id": 8419412224, "lat": 40.4500265, "lon": -3.7074759}, {"type": "node", "id": 8419412225, "lat": 40.4503053, "lon": -3.7074381}, {"type": "node", "id": 8419412226, "lat": 40.4503284, "lon": -3.7074539}, {"type": "node", "id": 8419412227, "lat": 40.4505672, "lon": -3.7080733}, {"type": "node", "id": 8419412228, "lat": 40.4505544, "lon": -3.7080802}, {"type": "node", "id": 8419412229, "lat": 40.4503534, "lon": -3.7081573}, {"type": "node", "id": 8419412230, "lat": 40.4503319, "lon": -3.7081464}, {"type": "node", "id": 8419412231, "lat": 40.450015, "lon": -3.7075027}, {"type": "node", "id": 8419412234, "lat": 40.4506164, "lon": -3.7080466}, {"type": "node", "id": 8419412235, "lat": 40.4503851, "lon": -3.7074539}, {"type": "node", "id": 8419412236, "lat": 40.4503995, "lon": -3.707411}, {"type": "node", "id": 8419412237, "lat": 40.4505598, "lon": -3.7073816}, {"type": "node", "id": 8419412238, "lat": 40.4508223, "lon": -3.7079765}, {"type": "node", "id": 8419412239, "lat": 40.4506315, "lon": -3.7080495}, {"type": "node", "id": 8419412241, "lat": 40.4505954, "lon": -3.7080592, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8419412242, "lat": 40.4503952, "lon": -3.7074238}, {"type": "node", "id": 8419412243, "lat": 40.4503642, "lon": -3.7074362, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8419412244, "lat": 40.4499667, "lon": -3.7074792, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419412245, "lat": 40.4501654, "lon": -3.7079574, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419437221, "lat": 40.4502946, "lon": -3.7082201, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419437222, "lat": 40.4501222, "lon": -3.7079821, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8419437223, "lat": 40.4493685, "lon": -3.7075818, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419479065, "lat": 40.4488886, "lon": -3.7074451, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484417, "lat": 40.4508797, "lon": -3.7079627}, {"type": "node", "id": 8419484418, "lat": 40.4507687, "lon": -3.7077222}, {"type": "node", "id": 8419484419, "lat": 40.4507778, "lon": -3.707696}, {"type": "node", "id": 8419484420, "lat": 40.4516401, "lon": -3.7074747}, {"type": "node", "id": 8419484421, "lat": 40.451665, "lon": -3.7075026}, {"type": "node", "id": 8419484422, "lat": 40.4516573, "lon": -3.7076693}, {"type": "node", "id": 8419484423, "lat": 40.4516336, "lon": -3.7076996}, {"type": "node", "id": 8419484442, "lat": 40.4506377, "lon": -3.7073586}, {"type": "node", "id": 8419484443, "lat": 40.4506227, "lon": -3.707393}, {"type": "node", "id": 8419484444, "lat": 40.4507338, "lon": -3.7076323}, {"type": "node", "id": 8419484445, "lat": 40.4516739, "lon": -3.7073927}, {"type": "node", "id": 8419484446, "lat": 40.451688, "lon": -3.7070988}, {"type": "node", "id": 8419484447, "lat": 40.4516599, "lon": -3.7077287, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8419484448, "lat": 40.4516707, "lon": -3.7074323, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484451, "lat": 40.4508396, "lon": -3.7080137, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484452, "lat": 40.450748, "lon": -3.7076688, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484453, "lat": 40.4505964, "lon": -3.7073818, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 8419484454, "lat": 40.4503097, "lon": -3.7081746, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419484455, "lat": 40.4508616, "lon": -3.7079671, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8419499564, "lat": 40.4469586, "lon": -3.7045583}, {"type": "node", "id": 8419499565, "lat": 40.4469606, "lon": -3.704597}, {"type": "node", "id": 8419499591, "lat": 40.4469044, "lon": -3.7059577}, {"type": "node", "id": 8419499592, "lat": 40.4469919, "lon": -3.7059244}, {"type": "node", "id": 8419499593, "lat": 40.4470163, "lon": -3.7059325}, {"type": "node", "id": 8419499594, "lat": 40.4469651, "lon": -3.7054693}, {"type": "node", "id": 8419499595, "lat": 40.446924, "lon": -3.7046575}, {"type": "node", "id": 8419499596, "lat": 40.4470033, "lon": -3.7043967}, {"type": "node", "id": 8419499597, "lat": 40.4470071, "lon": -3.7042652}, {"type": "node", "id": 8419499598, "lat": 40.4469931, "lon": -3.7043342}, {"type": "node", "id": 8419499609, "lat": 40.4472253, "lon": -3.7039984}, {"type": "node", "id": 8419499610, "lat": 40.4472842, "lon": -3.7039983}, {"type": "node", "id": 8419499611, "lat": 40.4473489, "lon": -3.7039568}, {"type": "node", "id": 8419499612, "lat": 40.4472542, "lon": -3.7037951}, {"type": "node", "id": 8420975568, "lat": 40.4517421, "lon": -3.7076992, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8420975570, "lat": 40.4523679, "lon": -3.7074714, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8421083584, "lat": 40.452361, "lon": -3.7069105, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421229156, "lat": 40.4512789, "lon": -3.7065545, "tags": {"addr:city": "Madrid", "addr:housenumber": "27", "addr:postcode": "28039", "addr:street": "Calle de Tenerife"}}, {"type": "node", "id": 8421229157, "lat": 40.4516972, "lon": -3.7069628}, {"type": "node", "id": 8421229158, "lat": 40.4517323, "lon": -3.7063487}, {"type": "node", "id": 8421229159, "lat": 40.4516952, "lon": -3.7063071}, {"type": "node", "id": 8421229160, "lat": 40.4514472, "lon": -3.7063444}, {"type": "node", "id": 8421229161, "lat": 40.4512074, "lon": -3.706268}, {"type": "node", "id": 8421229162, "lat": 40.451044, "lon": -3.7071266}, {"type": "node", "id": 8421229163, "lat": 40.4516937, "lon": -3.7070205, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421229164, "lat": 40.4517184, "lon": -3.7065918}, {"type": "node", "id": 8421229166, "lat": 40.4517659, "lon": -3.7070031, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8421267761, "lat": 40.4494551, "lon": -3.7058653}, {"type": "node", "id": 8421307640, "lat": 40.4498619, "lon": -3.7072743}, {"type": "node", "id": 8421307641, "lat": 40.4498531, "lon": -3.7072523}, {"type": "node", "id": 8421307643, "lat": 40.4498778, "lon": -3.7070225}, {"type": "node", "id": 8421307644, "lat": 40.4498789, "lon": -3.7072429}, {"type": "node", "id": 8421307645, "lat": 40.4499407, "lon": -3.707352}, {"type": "node", "id": 8421307646, "lat": 40.4499834, "lon": -3.707351}, {"type": "node", "id": 8421307647, "lat": 40.4503779, "lon": -3.7072944}, {"type": "node", "id": 8421307648, "lat": 40.4504735, "lon": -3.7072746}, {"type": "node", "id": 8421307649, "lat": 40.4504833, "lon": -3.7072346}, {"type": "node", "id": 8421307650, "lat": 40.4504552, "lon": -3.7071579}, {"type": "node", "id": 8421307651, "lat": 40.4504246, "lon": -3.7071649}, {"type": "node", "id": 8421307652, "lat": 40.4498948, "lon": -3.7070007}, {"type": "node", "id": 8421307653, "lat": 40.4498842, "lon": -3.7070071}, {"type": "node", "id": 8421307654, "lat": 40.4505027, "lon": -3.7073154, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421307662, "lat": 40.4511325, "lon": -3.706238}, {"type": "node", "id": 8421307663, "lat": 40.4510029, "lon": -3.7071379, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422523, "lat": 40.4498642, "lon": -3.7073525}, {"type": "node", "id": 8421422524, "lat": 40.4498203, "lon": -3.7072599}, {"type": "node", "id": 8421422525, "lat": 40.4498173, "lon": -3.7070023}, {"type": "node", "id": 8421422526, "lat": 40.4492101, "lon": -3.7070115}, {"type": "node", "id": 8421422527, "lat": 40.4491921, "lon": -3.707077}, {"type": "node", "id": 8421422528, "lat": 40.4493565, "lon": -3.7074314}, {"type": "node", "id": 8421422529, "lat": 40.4494397, "lon": -3.7074233}, {"type": "node", "id": 8421422530, "lat": 40.4498515, "lon": -3.7070016, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422531, "lat": 40.4499024, "lon": -3.7073522, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8421422532, "lat": 40.4498937, "lon": -3.7074211, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8422578415, "lat": 40.4296798, "lon": -3.7025941, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422578416, "lat": 40.4315184, "lon": -3.703396, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422629017, "lat": 40.4314737, "lon": -3.7033763, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "no"}}, {"type": "node", "id": 8422629018, "lat": 40.4313707, "lon": -3.7033317, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422641934, "lat": 40.4258887, "lon": -3.6920715, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8422641939, "lat": 40.4238696, "lon": -3.6906203, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423295095, "lat": 40.4488984, "lon": -3.7073444}, {"type": "node", "id": 8423295096, "lat": 40.4488669, "lon": -3.7070551}, {"type": "node", "id": 8423295097, "lat": 40.4488907, "lon": -3.7070205}, {"type": "node", "id": 8423295098, "lat": 40.4490627, "lon": -3.7070194}, {"type": "node", "id": 8423295099, "lat": 40.4492011, "lon": -3.7073226}, {"type": "node", "id": 8423841201, "lat": 40.4465523, "lon": -3.6946663}, {"type": "node", "id": 8423841202, "lat": 40.4467145, "lon": -3.6946529}, {"type": "node", "id": 8423841203, "lat": 40.4468176, "lon": -3.6946476}, {"type": "node", "id": 8423841204, "lat": 40.4469615, "lon": -3.6946341}, {"type": "node", "id": 8423841205, "lat": 40.4472718, "lon": -3.6945215}, {"type": "node", "id": 8423841206, "lat": 40.4473524, "lon": -3.6945054}, {"type": "node", "id": 8423841207, "lat": 40.4473677, "lon": -3.694952}, {"type": "node", "id": 8423841208, "lat": 40.4470697, "lon": -3.6950097}, {"type": "node", "id": 8423841209, "lat": 40.4465738, "lon": -3.6950861}, {"type": "node", "id": 8423841210, "lat": 40.4473542, "lon": -3.6946892}, {"type": "node", "id": 8423841211, "lat": 40.4471772, "lon": -3.694744}, {"type": "node", "id": 8423841212, "lat": 40.4468299, "lon": -3.6948943}, {"type": "node", "id": 8423841213, "lat": 40.4465615, "lon": -3.6949238}, {"type": "node", "id": 8423841214, "lat": 40.447442, "lon": -3.6945238}, {"type": "node", "id": 8423842217, "lat": 40.4473639, "lon": -3.6948402}, {"type": "node", "id": 8423842218, "lat": 40.4478014, "lon": -3.6947662}, {"type": "node", "id": 8423842219, "lat": 40.4473643, "lon": -3.6948508}, {"type": "node", "id": 8423842220, "lat": 40.4465114, "lon": -3.6932541}, {"type": "node", "id": 8423842221, "lat": 40.4465818, "lon": -3.6953463}, {"type": "node", "id": 8423842222, "lat": 40.4456718, "lon": -3.6950286}, {"type": "node", "id": 8423842223, "lat": 40.4461988, "lon": -3.694989}, {"type": "node", "id": 8423842224, "lat": 40.4451639, "lon": -3.6951521}, {"type": "node", "id": 8423842226, "lat": 40.447311, "lon": -3.6946559}, {"type": "node", "id": 8423842227, "lat": 40.4468795, "lon": -3.6948141}, {"type": "node", "id": 8423842228, "lat": 40.4466312, "lon": -3.6948819}, {"type": "node", "id": 8423842229, "lat": 40.4464138, "lon": -3.6949348}, {"type": "node", "id": 8423842230, "lat": 40.4464162, "lon": -3.6950173}, {"type": "node", "id": 8423842231, "lat": 40.4476336, "lon": -3.6945715}, {"type": "node", "id": 8423842232, "lat": 40.4480147, "lon": -3.6945112}, {"type": "node", "id": 8423842233, "lat": 40.4482879, "lon": -3.6945664}, {"type": "node", "id": 8423842234, "lat": 40.4449492, "lon": -3.6951533}, {"type": "node", "id": 8423842235, "lat": 40.4448818, "lon": -3.6951283}, {"type": "node", "id": 8423842236, "lat": 40.4449393, "lon": -3.6950706}, {"type": "node", "id": 8423842237, "lat": 40.4447128, "lon": -3.6951395, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8423842238, "lat": 40.442948, "lon": -3.6948079}, {"type": "node", "id": 8423999124, "lat": 40.4347789, "lon": -3.7193683}, {"type": "node", "id": 8423999125, "lat": 40.4347158, "lon": -3.7193192}, {"type": "node", "id": 8423999126, "lat": 40.4346922, "lon": -3.7193736}, {"type": "node", "id": 8423999127, "lat": 40.4347369, "lon": -3.71927}, {"type": "node", "id": 8423999128, "lat": 40.4347175, "lon": -3.7193917}, {"type": "node", "id": 8423999129, "lat": 40.434758, "lon": -3.7192861}, {"type": "node", "id": 8423999130, "lat": 40.4347201, "lon": -3.7193856}, {"type": "node", "id": 8423999131, "lat": 40.4347541, "lon": -3.7192971}, {"type": "node", "id": 8426942036, "lat": 40.4415024, "lon": -3.7126427, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942037, "lat": 40.4431652, "lon": -3.7125091, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942038, "lat": 40.4387147, "lon": -3.7129087, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942039, "lat": 40.43355, "lon": -3.7132736, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942040, "lat": 40.4308953, "lon": -3.7134836, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942041, "lat": 40.4356715, "lon": -3.7131193, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942042, "lat": 40.4360187, "lon": -3.7085118, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942043, "lat": 40.4352054, "lon": -3.7104162, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942044, "lat": 40.4339189, "lon": -3.7115214, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942045, "lat": 40.4277453, "lon": -3.7136686, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942046, "lat": 40.4304487, "lon": -3.7118417, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942047, "lat": 40.4424288, "lon": -3.7099231, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942048, "lat": 40.4404192, "lon": -3.7081315, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942049, "lat": 40.4421705, "lon": -3.7149612, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942050, "lat": 40.4458178, "lon": -3.7142254, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942051, "lat": 40.4437654, "lon": -3.7151182, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8426942052, "lat": 40.4435532, "lon": -3.7151374, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942053, "lat": 40.4412687, "lon": -3.7123812, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942054, "lat": 40.4379944, "lon": -3.708343, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025371, "lat": 40.4255331, "lon": -3.6886927, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025374, "lat": 40.4240207, "lon": -3.6908558, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025375, "lat": 40.4252349, "lon": -3.6851186, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025400, "lat": 40.4252025, "lon": -3.684453, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427025401, "lat": 40.4253761, "lon": -3.6884062, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069633, "lat": 40.4471861, "lon": -3.6954943, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069634, "lat": 40.4414475, "lon": -3.6960349, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069635, "lat": 40.4497479, "lon": -3.6952375, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069637, "lat": 40.438579, "lon": -3.6962652, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069638, "lat": 40.4442322, "lon": -3.695784, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069639, "lat": 40.4290726, "lon": -3.6897484, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069640, "lat": 40.4258072, "lon": -3.6905794, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069641, "lat": 40.4329203, "lon": -3.6887493, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069642, "lat": 40.4387509, "lon": -3.6977686, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069643, "lat": 40.4442264, "lon": -3.6973065, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069644, "lat": 40.4414807, "lon": -3.6975396, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069645, "lat": 40.4489369, "lon": -3.696888, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069646, "lat": 40.4476773, "lon": -3.6970166, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069654, "lat": 40.4519787, "lon": -3.6965706, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069655, "lat": 40.4331544, "lon": -3.6881099, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069656, "lat": 40.429156, "lon": -3.6891086, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069657, "lat": 40.4260427, "lon": -3.689906, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069659, "lat": 40.4324634, "lon": -3.6867486, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069660, "lat": 40.4423549, "lon": -3.6858941, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069661, "lat": 40.435779, "lon": -3.6864788, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069662, "lat": 40.440468, "lon": -3.6860618, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069663, "lat": 40.4477973, "lon": -3.6838191, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069666, "lat": 40.4498877, "lon": -3.6825191, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069667, "lat": 40.4338469, "lon": -3.6866473, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069672, "lat": 40.4320687, "lon": -3.6835523, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427069673, "lat": 40.4346361, "lon": -3.6833368, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8427119564, "lat": 40.4498593, "lon": -3.7069473}, {"type": "node", "id": 8427119565, "lat": 40.449953, "lon": -3.7064836}, {"type": "node", "id": 8427119566, "lat": 40.4499905, "lon": -3.7064923}, {"type": "node", "id": 8427119567, "lat": 40.4501049, "lon": -3.7058945}, {"type": "node", "id": 8427119569, "lat": 40.4495049, "lon": -3.7056833}, {"type": "node", "id": 8427119570, "lat": 40.4494748, "lon": -3.7059655}, {"type": "node", "id": 8427119571, "lat": 40.4487964, "lon": -3.7060142}, {"type": "node", "id": 8427119572, "lat": 40.4488368, "lon": -3.7066817}, {"type": "node", "id": 8427119573, "lat": 40.4488577, "lon": -3.7069686}, {"type": "node", "id": 8427119574, "lat": 40.4489484, "lon": -3.7069626}, {"type": "node", "id": 8427119575, "lat": 40.4490788, "lon": -3.7069604}, {"type": "node", "id": 8427119576, "lat": 40.4488271, "lon": -3.7065215}, {"type": "node", "id": 8427119577, "lat": 40.4489025, "lon": -3.7073954, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119578, "lat": 40.4488606, "lon": -3.7069958, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119579, "lat": 40.4491115, "lon": -3.7070168, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119580, "lat": 40.4492182, "lon": -3.70736, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8427119581, "lat": 40.4499101, "lon": -3.7069467, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427119583, "lat": 40.4487932, "lon": -3.7058915}, {"type": "node", "id": 8427119588, "lat": 40.4494404, "lon": -3.705657}, {"type": "node", "id": 8427119589, "lat": 40.449424, "lon": -3.7058312}, {"type": "node", "id": 8427119590, "lat": 40.4493987, "lon": -3.7058611}, {"type": "node", "id": 8427119591, "lat": 40.4487946, "lon": -3.7059543, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8427141926, "lat": 40.4488554, "lon": -3.707352}, {"type": "node", "id": 8427141927, "lat": 40.4488205, "lon": -3.7070382}, {"type": "node", "id": 8427141928, "lat": 40.4487827, "lon": -3.7064112}, {"type": "node", "id": 8427141929, "lat": 40.4487647, "lon": -3.7062052}, {"type": "node", "id": 8427141930, "lat": 40.4487521, "lon": -3.7060232}, {"type": "node", "id": 8427141931, "lat": 40.4485775, "lon": -3.7060371}, {"type": "node", "id": 8427141932, "lat": 40.4486442, "lon": -3.7073755}, {"type": "node", "id": 8427141937, "lat": 40.4488604, "lon": -3.7073997, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427141938, "lat": 40.4487778, "lon": -3.706018, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8427141971, "lat": 40.4485158, "lon": -3.7060532}, {"type": "node", "id": 8427141972, "lat": 40.4482877, "lon": -3.7060634}, {"type": "node", "id": 8427141973, "lat": 40.4482815, "lon": -3.7072309}, {"type": "node", "id": 8427141974, "lat": 40.4485771, "lon": -3.7073639}, {"type": "node", "id": 8427141975, "lat": 40.4486083, "lon": -3.7073711, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8427141976, "lat": 40.4485172, "lon": -3.7060831}, {"type": "node", "id": 8427141977, "lat": 40.4485798, "lon": -3.7060843}, {"type": "node", "id": 8427141978, "lat": 40.4485485, "lon": -3.7060832, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8427141979, "lat": 40.4490859, "lon": -3.7069603}, {"type": "node", "id": 8427141980, "lat": 40.4490818, "lon": -3.7069539}, {"type": "node", "id": 8427141981, "lat": 40.4488324, "lon": -3.7065207}, {"type": "node", "id": 8428800244, "lat": 40.4305351, "lon": -3.7142155}, {"type": "node", "id": 8428800245, "lat": 40.4305414, "lon": -3.7142897}, {"type": "node", "id": 8428800246, "lat": 40.4305442, "lon": -3.7143268}, {"type": "node", "id": 8428800247, "lat": 40.4305186, "lon": -3.7143299}, {"type": "node", "id": 8428800248, "lat": 40.4305395, "lon": -3.7145616}, {"type": "node", "id": 8428800249, "lat": 40.4305271, "lon": -3.7144236}, {"type": "node", "id": 8428817426, "lat": 40.4268164, "lon": -3.7136649}, {"type": "node", "id": 8428817431, "lat": 40.4271755, "lon": -3.7135744}, {"type": "node", "id": 8428817432, "lat": 40.4271101, "lon": -3.7135273}, {"type": "node", "id": 8428817433, "lat": 40.4271072, "lon": -3.7138555}, {"type": "node", "id": 8428817434, "lat": 40.4261272, "lon": -3.71314}, {"type": "node", "id": 8428817435, "lat": 40.4262155, "lon": -3.7129297}, {"type": "node", "id": 8428817440, "lat": 40.4269528, "lon": -3.713759}, {"type": "node", "id": 8428817441, "lat": 40.4268752, "lon": -3.7137068}, {"type": "node", "id": 8428817442, "lat": 40.4268646, "lon": -3.7133908, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8428817443, "lat": 40.4268236, "lon": -3.7133617, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8428817444, "lat": 40.4264742, "lon": -3.7131135, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8428817445, "lat": 40.4264354, "lon": -3.7130859, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8428817446, "lat": 40.427061, "lon": -3.7135372}, {"type": "node", "id": 8428817447, "lat": 40.4274128, "lon": -3.7137914}, {"type": "node", "id": 8428817448, "lat": 40.4269684, "lon": -3.7134304}, {"type": "node", "id": 8428817449, "lat": 40.4268632, "lon": -3.7136987}, {"type": "node", "id": 8429132471, "lat": 40.4286196, "lon": -3.7096845, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132472, "lat": 40.4295426, "lon": -3.7126667, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132473, "lat": 40.4257609, "lon": -3.7094843, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132474, "lat": 40.4254647, "lon": -3.7041297, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132475, "lat": 40.4255874, "lon": -3.7075979, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132481, "lat": 40.428151, "lon": -3.7095516, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132482, "lat": 40.4302825, "lon": -3.7122976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132483, "lat": 40.4300768, "lon": -3.7101047, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132484, "lat": 40.4264327, "lon": -3.7093527, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132490, "lat": 40.4304797, "lon": -3.715215, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429634753, "lat": 40.4470602, "lon": -3.7044783}, {"type": "node", "id": 8429634754, "lat": 40.4471289, "lon": -3.7044513}, {"type": "node", "id": 8429634755, "lat": 40.4472052, "lon": -3.7044}, {"type": "node", "id": 8429634756, "lat": 40.4472871, "lon": -3.7043159}, {"type": "node", "id": 8429634757, "lat": 40.4473165, "lon": -3.7042728}, {"type": "node", "id": 8430090473, "lat": 40.4345114, "lon": -3.7189705, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430090474, "lat": 40.4282313, "lon": -3.7144575, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430090475, "lat": 40.4301719, "lon": -3.7158755, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430141295, "lat": 40.4476018, "lon": -3.7069238}, {"type": "node", "id": 8430141296, "lat": 40.4476393, "lon": -3.7040024}, {"type": "node", "id": 8430141297, "lat": 40.4477129, "lon": -3.7039923}, {"type": "node", "id": 8430141298, "lat": 40.4473405, "lon": -3.7042313}, {"type": "node", "id": 8430141299, "lat": 40.4473828, "lon": -3.7041299}, {"type": "node", "id": 8430141300, "lat": 40.4472518, "lon": -3.7043589}, {"type": "node", "id": 8430141304, "lat": 40.4482011, "lon": -3.7070862}, {"type": "node", "id": 8430141305, "lat": 40.4482108, "lon": -3.7060661}, {"type": "node", "id": 8430141306, "lat": 40.4476807, "lon": -3.7060734}, {"type": "node", "id": 8430141307, "lat": 40.4476723, "lon": -3.7069451}, {"type": "node", "id": 8430141308, "lat": 40.4481585, "lon": -3.7071064}, {"type": "node", "id": 8430141309, "lat": 40.4482582, "lon": -3.7060644, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8430141310, "lat": 40.4476476, "lon": -3.7069377, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8430141311, "lat": 40.4482822, "lon": -3.7070992}, {"type": "node", "id": 8430141312, "lat": 40.4482498, "lon": -3.7070958, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8430141313, "lat": 40.4482394, "lon": -3.7071436}, {"type": "node", "id": 8430141314, "lat": 40.4482433, "lon": -3.7072225}, {"type": "node", "id": 8430141315, "lat": 40.4482826, "lon": -3.7072723}, {"type": "node", "id": 8430162561, "lat": 40.4392344, "lon": -3.6834866, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430162611, "lat": 40.4463868, "lon": -3.7104513, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430162612, "lat": 40.4429965, "lon": -3.7120329, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180224, "lat": 40.4478092, "lon": -3.7082412, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180225, "lat": 40.447751, "lon": -3.708322, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180226, "lat": 40.4491632, "lon": -3.7089715, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180227, "lat": 40.4491464, "lon": -3.7089547, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180228, "lat": 40.4423045, "lon": -3.7130621, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180229, "lat": 40.4396905, "lon": -3.7169222, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180230, "lat": 40.4412617, "lon": -3.7146019, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180231, "lat": 40.4462506, "lon": -3.7104602, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180232, "lat": 40.4358036, "lon": -3.7182245, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8430180233, "lat": 40.4523549, "lon": -3.7099645, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8432952204, "lat": 40.4490313, "lon": -3.7144129}, {"type": "node", "id": 8432952205, "lat": 40.4488362, "lon": -3.7142553}, {"type": "node", "id": 8432952206, "lat": 40.4488414, "lon": -3.7141544}, {"type": "node", "id": 8432952210, "lat": 40.4488342, "lon": -3.7141995}, {"type": "node", "id": 8436098418, "lat": 40.4467718, "lon": -3.691028, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098419, "lat": 40.4382944, "lon": -3.690431, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098420, "lat": 40.4512731, "lon": -3.6905843, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098422, "lat": 40.4530327, "lon": -3.6904165, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098423, "lat": 40.4493083, "lon": -3.6907653, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098460, "lat": 40.4513082, "lon": -3.6909706, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098461, "lat": 40.4466262, "lon": -3.6913976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098462, "lat": 40.4384553, "lon": -3.6911727, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098463, "lat": 40.4453999, "lon": -3.6916451, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098464, "lat": 40.4227874, "lon": -3.6914459, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436282746, "lat": 40.4249455, "lon": -3.7091413}, {"type": "node", "id": 8436282747, "lat": 40.4253787, "lon": -3.7091898}, {"type": "node", "id": 8436282748, "lat": 40.4256914, "lon": -3.7092217}, {"type": "node", "id": 8436282749, "lat": 40.4251021, "lon": -3.7091588}, {"type": "node", "id": 8436311127, "lat": 40.4246166, "lon": -3.709417, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8436311128, "lat": 40.4246845, "lon": -3.7091456, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8439470060, "lat": 40.4489833, "lon": -3.719242}, {"type": "node", "id": 8439470061, "lat": 40.4490241, "lon": -3.7188808}, {"type": "node", "id": 8439470062, "lat": 40.4488977, "lon": -3.7198751}, {"type": "node", "id": 8439470063, "lat": 40.4488641, "lon": -3.7199287}, {"type": "node", "id": 8439470064, "lat": 40.4488047, "lon": -3.7199499}, {"type": "node", "id": 8439470065, "lat": 40.4482614, "lon": -3.7197522}, {"type": "node", "id": 8439470066, "lat": 40.4477055, "lon": -3.71955}, {"type": "node", "id": 8439470082, "lat": 40.4488522, "lon": -3.7200018, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8440634344, "lat": 40.4467884, "lon": -3.6906854, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634346, "lat": 40.4488777, "lon": -3.6891376, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634369, "lat": 40.4354741, "lon": -3.6887301, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634370, "lat": 40.4329132, "lon": -3.692304, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634371, "lat": 40.4308015, "lon": -3.6997787, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634372, "lat": 40.4321032, "lon": -3.6982437, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634373, "lat": 40.4294111, "lon": -3.7055091, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634374, "lat": 40.4290454, "lon": -3.7027099, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634384, "lat": 40.4303361, "lon": -3.7003451, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634385, "lat": 40.4333603, "lon": -3.6912868, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634386, "lat": 40.4324705, "lon": -3.6970628, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634387, "lat": 40.4318018, "lon": -3.6986015, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634388, "lat": 40.4328231, "lon": -3.6948562}, {"type": "node", "id": 8440634389, "lat": 40.4328282, "lon": -3.6947292, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634390, "lat": 40.4328437, "lon": -3.6942921, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634391, "lat": 40.4382031, "lon": -3.6912894, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634392, "lat": 40.4354223, "lon": -3.6912564, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879523, "lat": 40.4264343, "lon": -3.7157611, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879524, "lat": 40.4294087, "lon": -3.7222007, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879525, "lat": 40.4259262, "lon": -3.7188231, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879527, "lat": 40.4323709, "lon": -3.7234994}, {"type": "node", "id": 8440879528, "lat": 40.4322857, "lon": -3.7237039, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879529, "lat": 40.4307949, "lon": -3.7218197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440879530, "lat": 40.4289674, "lon": -3.7200364, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812493, "lat": 40.4261573, "lon": -3.6974383, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812494, "lat": 40.4287118, "lon": -3.6994772, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812495, "lat": 40.4289085, "lon": -3.6995292, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812496, "lat": 40.4233881, "lon": -3.6923282, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812499, "lat": 40.4239127, "lon": -3.6945766}, {"type": "node", "id": 8441812501, "lat": 40.4347159, "lon": -3.704329, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812502, "lat": 40.4282704, "lon": -3.6989541, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812503, "lat": 40.4252442, "lon": -3.6911494, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812508, "lat": 40.4273947, "lon": -3.6952907, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812509, "lat": 40.4363587, "lon": -3.7042786, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812510, "lat": 40.4416971, "lon": -3.7041188, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812511, "lat": 40.4381607, "lon": -3.7042328, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8441812640, "lat": 40.4379725, "lon": -3.7178397, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103714, "lat": 40.4310814, "lon": -3.7226125, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103715, "lat": 40.429575, "lon": -3.7197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447103716, "lat": 40.430572, "lon": -3.71518, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121517, "lat": 40.429775, "lon": -3.7071141, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121518, "lat": 40.4274008, "lon": -3.6951218, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121533, "lat": 40.4298031, "lon": -3.7186351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121534, "lat": 40.4290246, "lon": -3.7210389, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121535, "lat": 40.4300654, "lon": -3.7110174, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121545, "lat": 40.4305193, "lon": -3.7155737, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121580, "lat": 40.4302233, "lon": -3.6999022, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8447121581, "lat": 40.4280523, "lon": -3.7020044, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8450224134, "lat": 40.4520367, "lon": -3.7113448}, {"type": "node", "id": 8450338716, "lat": 40.4476839, "lon": -3.7059835}, {"type": "node", "id": 8450352717, "lat": 40.4482594, "lon": -3.7059712}, {"type": "node", "id": 8450352718, "lat": 40.4483254, "lon": -3.7059649}, {"type": "node", "id": 8450352719, "lat": 40.4487457, "lon": -3.7059261}, {"type": "node", "id": 8450352721, "lat": 40.4476825, "lon": -3.7060228, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8450352722, "lat": 40.4482579, "lon": -3.7061044, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8450352723, "lat": 40.4482856, "lon": -3.7059687}, {"type": "node", "id": 8450352724, "lat": 40.4482864, "lon": -3.7060065, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450352725, "lat": 40.4485732, "lon": -3.705942}, {"type": "node", "id": 8450352726, "lat": 40.448575, "lon": -3.7059817, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450352727, "lat": 40.448748, "lon": -3.7059603, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8450352728, "lat": 40.4487704, "lon": -3.7058933}, {"type": "node", "id": 8450420425, "lat": 40.4475998, "lon": -3.7070116}, {"type": "node", "id": 8450420426, "lat": 40.4476005, "lon": -3.7069816, "tags": {"crossing": "unmarked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8450420427, "lat": 40.4483471, "lon": -3.7060015}, {"type": "node", "id": 8450420428, "lat": 40.4482762, "lon": -3.7047303}, {"type": "node", "id": 8450420429, "lat": 40.4480389, "lon": -3.7047509}, {"type": "node", "id": 8450420430, "lat": 40.4479647, "lon": -3.7047516}, {"type": "node", "id": 8450420431, "lat": 40.448325, "lon": -3.7056046}, {"type": "node", "id": 8450420432, "lat": 40.4480914, "lon": -3.7055254}, {"type": "node", "id": 8450420433, "lat": 40.4480867, "lon": -3.7047468}, {"type": "node", "id": 8450420434, "lat": 40.448344, "lon": -3.7059457}, {"type": "node", "id": 8450420435, "lat": 40.448345, "lon": -3.7059631}, {"type": "node", "id": 8451203579, "lat": 40.437908, "lon": -3.6870759, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451203580, "lat": 40.437789, "lon": -3.6873045, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215617, "lat": 40.4384182, "lon": -3.690374, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215618, "lat": 40.4417139, "lon": -3.6955786, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215619, "lat": 40.4404258, "lon": -3.6911259, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215620, "lat": 40.4419925, "lon": -3.7013744, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215621, "lat": 40.4468038, "lon": -3.7110351, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215622, "lat": 40.4471868, "lon": -3.7079252, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215623, "lat": 40.4462184, "lon": -3.7126122, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215624, "lat": 40.446789, "lon": -3.7045676, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215625, "lat": 40.4469292, "lon": -3.7071735, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215626, "lat": 40.4465891, "lon": -3.7110951, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215627, "lat": 40.4431128, "lon": -3.7008299, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215628, "lat": 40.4432402, "lon": -3.703418, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215629, "lat": 40.4407306, "lon": -3.6921315, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215630, "lat": 40.442572, "lon": -3.6947916, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8451215631, "lat": 40.442959, "lon": -3.6975959, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455089030, "lat": 40.4355331, "lon": -3.7198928}, {"type": "node", "id": 8455404360, "lat": 40.4468982, "lon": -3.7029618, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404361, "lat": 40.4467976, "lon": -3.7006722, "tags": {"bus": "yes", "public_transport": "stop_position", "ref": "5449"}}, {"type": "node", "id": 8455404362, "lat": 40.4466417, "lon": -3.6982211, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404368, "lat": 40.4465292, "lon": -3.6989068, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404370, "lat": 40.4384444, "lon": -3.7026455}, {"type": "node", "id": 8455404371, "lat": 40.4382858, "lon": -3.7026572, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8455404372, "lat": 40.4346956, "lon": -3.7018791, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8458502440, "lat": 40.4381436, "lon": -3.6915239, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8458502441, "lat": 40.4379687, "lon": -3.6915432, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8458502442, "lat": 40.4381603, "lon": -3.6915226}, {"type": "node", "id": 8458502443, "lat": 40.4381591, "lon": -3.6913927}, {"type": "node", "id": 8458502444, "lat": 40.4382315, "lon": -3.6913657}, {"type": "node", "id": 8458502445, "lat": 40.4382954, "lon": -3.691352}, {"type": "node", "id": 8458502446, "lat": 40.4383011, "lon": -3.6913812}, {"type": "node", "id": 8458502447, "lat": 40.4382749, "lon": -3.6913894}, {"type": "node", "id": 8458502448, "lat": 40.4379459, "lon": -3.6915457}, {"type": "node", "id": 8458502449, "lat": 40.4379592, "lon": -3.6917691}, {"type": "node", "id": 8458502450, "lat": 40.4379371, "lon": -3.6914885}, {"type": "node", "id": 8458502451, "lat": 40.4378965, "lon": -3.6914132}, {"type": "node", "id": 8458502452, "lat": 40.4378509, "lon": -3.6913809}, {"type": "node", "id": 8458502453, "lat": 40.4378882, "lon": -3.6913583}, {"type": "node", "id": 8458502454, "lat": 40.4379189, "lon": -3.6914343}, {"type": "node", "id": 8458502455, "lat": 40.4378609, "lon": -3.691346}, {"type": "node", "id": 8458897489, "lat": 40.4523061, "lon": -3.7098197}, {"type": "node", "id": 8458897490, "lat": 40.4508905, "lon": -3.7094767}, {"type": "node", "id": 8458897491, "lat": 40.4508606, "lon": -3.7094906}, {"type": "node", "id": 8458897492, "lat": 40.4508646, "lon": -3.7096105}, {"type": "node", "id": 8458897493, "lat": 40.4492093, "lon": -3.7091254}, {"type": "node", "id": 8458897494, "lat": 40.4492676, "lon": -3.7090092}, {"type": "node", "id": 8458897495, "lat": 40.4492464, "lon": -3.7090515, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8458948186, "lat": 40.4505538, "lon": -3.7035809}, {"type": "node", "id": 8458948187, "lat": 40.450599, "lon": -3.7035744, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8458948188, "lat": 40.4499508, "lon": -3.7036717, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8458948189, "lat": 40.4500275, "lon": -3.7036607}, {"type": "node", "id": 8458948190, "lat": 40.4494747, "lon": -3.7037362}, {"type": "node", "id": 8458948191, "lat": 40.4494082, "lon": -3.7037457}, {"type": "node", "id": 8458948192, "lat": 40.4486102, "lon": -3.7038662, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8458948193, "lat": 40.4486803, "lon": -3.7038561, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8458948194, "lat": 40.451068, "lon": -3.7035529, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8458948195, "lat": 40.448656, "lon": -3.7038884, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8458948196, "lat": 40.4476882, "lon": -3.7040285, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8460972703, "lat": 40.448009, "lon": -3.7174656, "tags": {"entrance": "yes", "name": "Entrada edifico B Rectorado"}}, {"type": "node", "id": 8460972704, "lat": 40.4478968, "lon": -3.7171665}, {"type": "node", "id": 8461005484, "lat": 40.4481564, "lon": -3.7171289, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8461012823, "lat": 40.4477191, "lon": -3.7174167, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8461022369, "lat": 40.4490184, "lon": -3.7189309, "tags": {"barrier": "yes"}}, {"type": "node", "id": 8461821938, "lat": 40.4335961, "lon": -3.7184562}, {"type": "node", "id": 8464920918, "lat": 40.4460464, "lon": -3.6901181, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920919, "lat": 40.4456208, "lon": -3.6861136, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920923, "lat": 40.4324547, "lon": -3.6915544, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920924, "lat": 40.4304268, "lon": -3.6927561, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920925, "lat": 40.4323944, "lon": -3.6915907, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920926, "lat": 40.445954, "lon": -3.6861578}, {"type": "node", "id": 8464920927, "lat": 40.446248, "lon": -3.6900075, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8464920934, "lat": 40.4283187, "lon": -3.6949702, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8473661003, "lat": 40.4262514, "lon": -3.7174197, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8474829012, "lat": 40.4479352, "lon": -3.7172742, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8474857999, "lat": 40.4476767, "lon": -3.7173114}, {"type": "node", "id": 8474858000, "lat": 40.4478802, "lon": -3.7178166}, {"type": "node", "id": 8474858001, "lat": 40.448319, "lon": -3.7175913}, {"type": "node", "id": 8474858002, "lat": 40.4481178, "lon": -3.7170236}, {"type": "node", "id": 8476816342, "lat": 40.4519838, "lon": -3.711297}, {"type": "node", "id": 8476816343, "lat": 40.4510521, "lon": -3.7107127, "tags": {"barrier": "block"}}, {"type": "node", "id": 8476816344, "lat": 40.4512986, "lon": -3.7105755}, {"type": "node", "id": 8476816345, "lat": 40.4513957, "lon": -3.7105594}, {"type": "node", "id": 8476816346, "lat": 40.4515699, "lon": -3.7105285}, {"type": "node", "id": 8477067909, "lat": 40.449655, "lon": -3.7101907}, {"type": "node", "id": 8479324937, "lat": 40.4276372, "lon": -3.6824535, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324954, "lat": 40.4327722, "lon": -3.6810194, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324955, "lat": 40.4326354, "lon": -3.6810358, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324957, "lat": 40.4314878, "lon": -3.6821272, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324958, "lat": 40.4314994, "lon": -3.6823659, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324960, "lat": 40.4290489, "lon": -3.6825678, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8479324967, "lat": 40.4261488, "lon": -3.6802422}, {"type": "node", "id": 8479324974, "lat": 40.4222596, "lon": -3.6829166, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8479324976, "lat": 40.4222716, "lon": -3.6831341, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8480842114, "lat": 40.4400741, "lon": -3.7177006, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480842115, "lat": 40.4452192, "lon": -3.7196124, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480842116, "lat": 40.4461719, "lon": -3.6923591, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879017, "lat": 40.4464041, "lon": -3.6962577, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879036, "lat": 40.4463674, "lon": -3.6921553, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879037, "lat": 40.4468144, "lon": -3.7030678, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879038, "lat": 40.4461556, "lon": -3.7187883, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879039, "lat": 40.4483019, "lon": -3.7169074, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879040, "lat": 40.4465414, "lon": -3.7138651, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879041, "lat": 40.4406999, "lon": -3.7180195, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879042, "lat": 40.4428334, "lon": -3.7190793, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 8480879043, "lat": 40.4429391, "lon": -3.7192275, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8480879044, "lat": 40.4430269, "lon": -3.7192771, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8481041832, "lat": 40.4467227, "lon": -3.700681}, {"type": "node", "id": 8481041833, "lat": 40.4466503, "lon": -3.7006915}, {"type": "node", "id": 8483702453, "lat": 40.4511857, "lon": -3.7109024}, {"type": "node", "id": 8483702459, "lat": 40.4520765, "lon": -3.7114205}, {"type": "node", "id": 8483702494, "lat": 40.4510742, "lon": -3.7108313}, {"type": "node", "id": 8483702502, "lat": 40.4509899, "lon": -3.7106899}, {"type": "node", "id": 8483702503, "lat": 40.4509508, "lon": -3.7107993}, {"type": "node", "id": 8483713085, "lat": 40.4467079, "lon": -3.7081459}, {"type": "node", "id": 8483713086, "lat": 40.4467609, "lon": -3.7081242}, {"type": "node", "id": 8483713087, "lat": 40.4467994, "lon": -3.7080588}, {"type": "node", "id": 8483713088, "lat": 40.4467899, "lon": -3.7079606}, {"type": "node", "id": 8483713089, "lat": 40.4469376, "lon": -3.7078264}, {"type": "node", "id": 8483713090, "lat": 40.4468731, "lon": -3.7078548}, {"type": "node", "id": 8483713091, "lat": 40.4469502, "lon": -3.7078064}, {"type": "node", "id": 8483713092, "lat": 40.4469006, "lon": -3.708057}, {"type": "node", "id": 8483713093, "lat": 40.4469019, "lon": -3.7083587}, {"type": "node", "id": 8483713103, "lat": 40.4469009, "lon": -3.7078892}, {"type": "node", "id": 8483713104, "lat": 40.4469402, "lon": -3.7079259}, {"type": "node", "id": 8483713105, "lat": 40.4468993, "lon": -3.7079367}, {"type": "node", "id": 8483729855, "lat": 40.4482664, "lon": -3.7072598}, {"type": "node", "id": 8483729856, "lat": 40.4483068, "lon": -3.7079309}, {"type": "node", "id": 8483729857, "lat": 40.4486063, "lon": -3.7079107}, {"type": "node", "id": 8483729858, "lat": 40.4482701, "lon": -3.7073212, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8483729859, "lat": 40.4482977, "lon": -3.7077801}, {"type": "node", "id": 8483729860, "lat": 40.4486357, "lon": -3.7077485}, {"type": "node", "id": 8483729861, "lat": 40.4482789, "lon": -3.7074673}, {"type": "node", "id": 8483729862, "lat": 40.4484042, "lon": -3.7074654}, {"type": "node", "id": 8483729863, "lat": 40.4484109, "lon": -3.7076162}, {"type": "node", "id": 8483729864, "lat": 40.4482886, "lon": -3.7076294}, {"type": "node", "id": 8483729865, "lat": 40.4485794, "lon": -3.7076045}, {"type": "node", "id": 8483828924, "lat": 40.451532, "lon": -3.7140867}, {"type": "node", "id": 8483828934, "lat": 40.451579, "lon": -3.714425}, {"type": "node", "id": 8483828935, "lat": 40.4517983, "lon": -3.7141597}, {"type": "node", "id": 8483828937, "lat": 40.4518552, "lon": -3.7142125}, {"type": "node", "id": 8483828938, "lat": 40.4519008, "lon": -3.714263}, {"type": "node", "id": 8483828939, "lat": 40.4519438, "lon": -3.7143513}, {"type": "node", "id": 8483828940, "lat": 40.4519784, "lon": -3.7144638}, {"type": "node", "id": 8483828941, "lat": 40.4519843, "lon": -3.714504}, {"type": "node", "id": 8483828943, "lat": 40.4519758, "lon": -3.7147349}, {"type": "node", "id": 8483828944, "lat": 40.451943, "lon": -3.7147737}, {"type": "node", "id": 8483828946, "lat": 40.4514283, "lon": -3.7143356}, {"type": "node", "id": 8483828947, "lat": 40.4514114, "lon": -3.7143376}, {"type": "node", "id": 8483828948, "lat": 40.4509998, "lon": -3.7143197}, {"type": "node", "id": 8483828949, "lat": 40.4509183, "lon": -3.7142066}, {"type": "node", "id": 8483828950, "lat": 40.4509043, "lon": -3.7141705}, {"type": "node", "id": 8483828951, "lat": 40.4508563, "lon": -3.7140637}, {"type": "node", "id": 8483828952, "lat": 40.4508694, "lon": -3.714074}, {"type": "node", "id": 8483828953, "lat": 40.4508478, "lon": -3.7136928}, {"type": "node", "id": 8483828954, "lat": 40.4508415, "lon": -3.7135914}, {"type": "node", "id": 8483828956, "lat": 40.4507295, "lon": -3.7136741}, {"type": "node", "id": 8483828957, "lat": 40.4506044, "lon": -3.7140817}, {"type": "node", "id": 8483828960, "lat": 40.4512246, "lon": -3.7139167}, {"type": "node", "id": 8483828961, "lat": 40.4512582, "lon": -3.7139661}, {"type": "node", "id": 8483828962, "lat": 40.451337, "lon": -3.7140225}, {"type": "node", "id": 8483828963, "lat": 40.4511612, "lon": -3.7136708}, {"type": "node", "id": 8483828965, "lat": 40.4512304, "lon": -3.712866}, {"type": "node", "id": 8483828966, "lat": 40.4513251, "lon": -3.7122619}, {"type": "node", "id": 8483843751, "lat": 40.4482708, "lon": -3.7073362, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 8486897760, "lat": 40.4512366, "lon": -3.706207}, {"type": "node", "id": 8486897761, "lat": 40.45145, "lon": -3.7062744}, {"type": "node", "id": 8486897762, "lat": 40.4516034, "lon": -3.7062499}, {"type": "node", "id": 8486897763, "lat": 40.4516129, "lon": -3.7062378}, {"type": "node", "id": 8486897764, "lat": 40.4517248, "lon": -3.7062298}, {"type": "node", "id": 8486897765, "lat": 40.4517348, "lon": -3.7062173}, {"type": "node", "id": 8486897766, "lat": 40.4518245, "lon": -3.704403}, {"type": "node", "id": 8486897768, "lat": 40.4518263, "lon": -3.7043603, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 8486897769, "lat": 40.4518747, "lon": -3.7033906}, {"type": "node", "id": 8486897780, "lat": 40.4523577, "lon": -3.7061606, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8486897781, "lat": 40.4518042, "lon": -3.7062523, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8486897782, "lat": 40.4517339, "lon": -3.7062635, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8490180660, "lat": 40.4352297, "lon": -3.7208143, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8507918308, "lat": 40.4471661, "lon": -3.7075616}, {"type": "node", "id": 8513274925, "lat": 40.4524169, "lon": -3.7069041, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8513274926, "lat": 40.4531589, "lon": -3.7067904, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8513546150, "lat": 40.4476811, "lon": -3.70842, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8513546151, "lat": 40.4519968, "lon": -3.7093684}, {"type": "node", "id": 8513737405, "lat": 40.4479595, "lon": -3.724148, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737406, "lat": 40.4488665, "lon": -3.7213498, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737407, "lat": 40.4339251, "lon": -3.7178227, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737409, "lat": 40.4387425, "lon": -3.7185006, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737413, "lat": 40.4457795, "lon": -3.7218145, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737415, "lat": 40.4487331, "lon": -3.7207624, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513737416, "lat": 40.4491724, "lon": -3.7172399, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8513762619, "lat": 40.451062, "lon": -3.7194803, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8521700642, "lat": 40.4510998, "lon": -3.7105039}, {"type": "node", "id": 8521700643, "lat": 40.4511221, "lon": -3.7104827}, {"type": "node", "id": 8521700644, "lat": 40.451107, "lon": -3.7104107}, {"type": "node", "id": 8521700645, "lat": 40.4510318, "lon": -3.7105001}, {"type": "node", "id": 8522340700, "lat": 40.4382613, "lon": -3.6958668, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340701, "lat": 40.4383639, "lon": -3.6981319, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340702, "lat": 40.4384863, "lon": -3.7006284, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340703, "lat": 40.4380714, "lon": -3.6918663, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340704, "lat": 40.4388164, "lon": -3.708778, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340705, "lat": 40.4389023, "lon": -3.712121, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340709, "lat": 40.4420489, "lon": -3.7047619, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522340710, "lat": 40.4405936, "lon": -3.7086703, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8522723083, "lat": 40.433933, "lon": -3.7070278}, {"type": "node", "id": 8522723084, "lat": 40.4339229, "lon": -3.7068804}, {"type": "node", "id": 8522723085, "lat": 40.4338913, "lon": -3.7069582, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8522723086, "lat": 40.4349494, "lon": -3.7068069}, {"type": "node", "id": 8522723087, "lat": 40.43495, "lon": -3.7069301}, {"type": "node", "id": 8529770083, "lat": 40.4469455, "lon": -3.7043083}, {"type": "node", "id": 8529770090, "lat": 40.4470181, "lon": -3.7043445}, {"type": "node", "id": 8529770091, "lat": 40.4470598, "lon": -3.7043506, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8529770092, "lat": 40.447103, "lon": -3.7043425, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8529770093, "lat": 40.4471262, "lon": -3.7043298, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8529770094, "lat": 40.447168, "lon": -3.7042929}, {"type": "node", "id": 8529770095, "lat": 40.4472073, "lon": -3.7042493}, {"type": "node", "id": 8529770096, "lat": 40.4472527, "lon": -3.7041769}, {"type": "node", "id": 8529770097, "lat": 40.4472849, "lon": -3.7040851}, {"type": "node", "id": 8531511244, "lat": 40.44043, "lon": -3.7100139, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8531511245, "lat": 40.4405349, "lon": -3.7097263}, {"type": "node", "id": 8531511246, "lat": 40.440767, "lon": -3.7099326}, {"type": "node", "id": 8531511247, "lat": 40.4406755, "lon": -3.7101181, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8531511248, "lat": 40.440734, "lon": -3.7099032}, {"type": "node", "id": 8531511249, "lat": 40.4405713, "lon": -3.710207}, {"type": "node", "id": 8531511250, "lat": 40.4404615, "lon": -3.7101074}, {"type": "node", "id": 8531511251, "lat": 40.4406316, "lon": -3.7098122}, {"type": "node", "id": 8531511252, "lat": 40.4404168, "lon": -3.7100679}, {"type": "node", "id": 8531511253, "lat": 40.4406069, "lon": -3.7102366}, {"type": "node", "id": 8531511254, "lat": 40.4400469, "lon": -3.7082348, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8537288335, "lat": 40.4418845, "lon": -3.6827816}, {"type": "node", "id": 8537288336, "lat": 40.4392078, "lon": -3.6830164}, {"type": "node", "id": 8537288337, "lat": 40.4391705, "lon": -3.6830228}, {"type": "node", "id": 8537288346, "lat": 40.4404833, "lon": -3.6828906, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 8537288347, "lat": 40.437718, "lon": -3.6831349}, {"type": "node", "id": 8538419416, "lat": 40.4509721, "lon": -3.7095287, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8541824812, "lat": 40.4482085, "lon": -3.7081795}, {"type": "node", "id": 8551133927, "lat": 40.4524166, "lon": -3.7061531, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8551986254, "lat": 40.4294741, "lon": -3.6898722}, {"type": "node", "id": 8551986255, "lat": 40.4293558, "lon": -3.6898905}, {"type": "node", "id": 8551986256, "lat": 40.4292234, "lon": -3.6898629}, {"type": "node", "id": 8551986257, "lat": 40.4285375, "lon": -3.690042}, {"type": "node", "id": 8551986258, "lat": 40.4293147, "lon": -3.6898396}, {"type": "node", "id": 8555198058, "lat": 40.4384927, "lon": -3.6839182, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8561406503, "lat": 40.4511117, "lon": -3.7108552}, {"type": "node", "id": 8561406510, "lat": 40.4511485, "lon": -3.7108787}, {"type": "node", "id": 8561406514, "lat": 40.4509812, "lon": -3.7107143}, {"type": "node", "id": 8561406515, "lat": 40.4509681, "lon": -3.7107508}, {"type": "node", "id": 8563965573, "lat": 40.4521156, "lon": -3.7030626, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 8563965574, "lat": 40.451105, "lon": -3.7032101}, {"type": "node", "id": 8563965575, "lat": 40.4527989, "lon": -3.7029435, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8563965576, "lat": 40.4527392, "lon": -3.7029525}, {"type": "node", "id": 8563972585, "lat": 40.4510612, "lon": -3.7032149}, {"type": "node", "id": 8563972586, "lat": 40.4510439, "lon": -3.7032177}, {"type": "node", "id": 8566147451, "lat": 40.4466542, "lon": -3.6953978}, {"type": "node", "id": 8566147452, "lat": 40.4477819, "lon": -3.695282}, {"type": "node", "id": 8566147453, "lat": 40.4478221, "lon": -3.6952514, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8566147454, "lat": 40.447884, "lon": -3.6952493, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8566147455, "lat": 40.4466712, "lon": -3.6956845}, {"type": "node", "id": 8566199520, "lat": 40.4492119, "lon": -3.6894593}, {"type": "node", "id": 8567142845, "lat": 40.4344378, "lon": -3.7196344, "tags": {"bus": "yes", "name": "Interc. Moncloa Isla 1 D 12", "public_transport": "stop_position"}}, {"type": "node", "id": 8567664573, "lat": 40.4507161, "lon": -3.7140754}, {"type": "node", "id": 8572249331, "lat": 40.4513337, "lon": -3.7108943}, {"type": "node", "id": 8572249332, "lat": 40.4514864, "lon": -3.7105446}, {"type": "node", "id": 8572249333, "lat": 40.4514067, "lon": -3.710727}, {"type": "node", "id": 8572249334, "lat": 40.4516442, "lon": -3.7108294}, {"type": "node", "id": 8577075124, "lat": 40.4274282, "lon": -3.7139039}, {"type": "node", "id": 8577075126, "lat": 40.4306671, "lon": -3.716484}, {"type": "node", "id": 8577075127, "lat": 40.4307835, "lon": -3.7164789, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8577075128, "lat": 40.4319446, "lon": -3.7173376}, {"type": "node", "id": 8577075129, "lat": 40.4323739, "lon": -3.7174518}, {"type": "node", "id": 8577075130, "lat": 40.4340527, "lon": -3.7186467}, {"type": "node", "id": 8577075131, "lat": 40.4358803, "lon": -3.7207483}, {"type": "node", "id": 8577075132, "lat": 40.4358091, "lon": -3.7206082}, {"type": "node", "id": 8577075133, "lat": 40.435607, "lon": -3.7202155}, {"type": "node", "id": 8577075134, "lat": 40.4355408, "lon": -3.7200875}, {"type": "node", "id": 8577075135, "lat": 40.4352734, "lon": -3.7197347}, {"type": "node", "id": 8577075136, "lat": 40.4351955, "lon": -3.7196921}, {"type": "node", "id": 8580966568, "lat": 40.4306116, "lon": -3.688474}, {"type": "node", "id": 8580966569, "lat": 40.4306534, "lon": -3.688504}, {"type": "node", "id": 8580966570, "lat": 40.4306655, "lon": -3.6886909}, {"type": "node", "id": 8580966571, "lat": 40.4304811, "lon": -3.688497}, {"type": "node", "id": 8580966572, "lat": 40.4304411, "lon": -3.6887549, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966573, "lat": 40.430627, "lon": -3.6888271}, {"type": "node", "id": 8580966574, "lat": 40.4307052, "lon": -3.6891319, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "no"}}, {"type": "node", "id": 8580966575, "lat": 40.4306742, "lon": -3.6888744, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 8580966576, "lat": 40.4306479, "lon": -3.6892587}, {"type": "node", "id": 8580966577, "lat": 40.4381738, "lon": -3.6910668}, {"type": "node", "id": 8580966578, "lat": 40.4380867, "lon": -3.6910367}, {"type": "node", "id": 8580966579, "lat": 40.438005, "lon": -3.6910323}, {"type": "node", "id": 8580966580, "lat": 40.4378421, "lon": -3.6910142}, {"type": "node", "id": 8580966581, "lat": 40.4366121, "lon": -3.6900796}, {"type": "node", "id": 8580966582, "lat": 40.4368457, "lon": -3.6902245}, {"type": "node", "id": 8580966583, "lat": 40.4371674, "lon": -3.6904435}, {"type": "node", "id": 8580966584, "lat": 40.4374691, "lon": -3.6906747}, {"type": "node", "id": 8580966588, "lat": 40.437665, "lon": -3.6908392}, {"type": "node", "id": 8580966589, "lat": 40.4377502, "lon": -3.6909595}, {"type": "node", "id": 8580966590, "lat": 40.4375521, "lon": -3.6908986}, {"type": "node", "id": 8580966591, "lat": 40.4375132, "lon": -3.6910305, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966592, "lat": 40.4374445, "lon": -3.6912136}, {"type": "node", "id": 8580966593, "lat": 40.4374875, "lon": -3.6911993}, {"type": "node", "id": 8580966594, "lat": 40.43755, "lon": -3.6911449}, {"type": "node", "id": 8580966595, "lat": 40.4373679, "lon": -3.6913358, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966596, "lat": 40.4373708, "lon": -3.6911294, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966597, "lat": 40.4375056, "lon": -3.6910434}, {"type": "node", "id": 8580966598, "lat": 40.4375042, "lon": -3.6910752}, {"type": "node", "id": 8580966599, "lat": 40.4374855, "lon": -3.6911197}, {"type": "node", "id": 8580966600, "lat": 40.4374608, "lon": -3.6911268}, {"type": "node", "id": 8580966601, "lat": 40.4374974, "lon": -3.6911038}, {"type": "node", "id": 8580966602, "lat": 40.4375032, "lon": -3.6910577}, {"type": "node", "id": 8580966603, "lat": 40.4373684, "lon": -3.6913811}, {"type": "node", "id": 8580966604, "lat": 40.4378241, "lon": -3.6913805}, {"type": "node", "id": 8580966605, "lat": 40.4378757, "lon": -3.691398}, {"type": "node", "id": 8580966606, "lat": 40.4379303, "lon": -3.691454}, {"type": "node", "id": 8580966607, "lat": 40.4384289, "lon": -3.6906739}, {"type": "node", "id": 8580966608, "lat": 40.4384165, "lon": -3.6908414, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966609, "lat": 40.4384153, "lon": -3.6908702, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966610, "lat": 40.4384058, "lon": -3.6909982}, {"type": "node", "id": 8580966611, "lat": 40.4381886, "lon": -3.6912333}, {"type": "node", "id": 8580966612, "lat": 40.438175, "lon": -3.6913576, "tags": {"kerb": "no", "tactile_paving": "yes"}}, {"type": "node", "id": 8580966613, "lat": 40.4381755, "lon": -3.6913786}, {"type": "node", "id": 8582667031, "lat": 40.4465059, "lon": -3.7038664}, {"type": "node", "id": 8582667037, "lat": 40.4460194, "lon": -3.7036016, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8582667038, "lat": 40.4459924, "lon": -3.703591}, {"type": "node", "id": 8582667039, "lat": 40.4455036, "lon": -3.7033859, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8582667040, "lat": 40.4452407, "lon": -3.703274, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing"}}, {"type": "node", "id": 8582667041, "lat": 40.4444057, "lon": -3.7029165, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8582667042, "lat": 40.4421828, "lon": -3.7019236}, {"type": "node", "id": 8582667043, "lat": 40.4422871, "lon": -3.7019604}, {"type": "node", "id": 8582667044, "lat": 40.4423234, "lon": -3.7020045}, {"type": "node", "id": 8582667045, "lat": 40.4423047, "lon": -3.7019755}, {"type": "node", "id": 8582667046, "lat": 40.4418728, "lon": -3.701786}, {"type": "node", "id": 8582667047, "lat": 40.4419174, "lon": -3.7018063}, {"type": "node", "id": 8582667048, "lat": 40.4419398, "lon": -3.7018277}, {"type": "node", "id": 8582667049, "lat": 40.4419541, "lon": -3.7018575}, {"type": "node", "id": 8582667050, "lat": 40.4419616, "lon": -3.7018943}, {"type": "node", "id": 8582667051, "lat": 40.4420887, "lon": -3.7019688}, {"type": "node", "id": 8582667052, "lat": 40.4421014, "lon": -3.7019597}, {"type": "node", "id": 8582667053, "lat": 40.4421145, "lon": -3.7019382}, {"type": "node", "id": 8582667054, "lat": 40.4421344, "lon": -3.7019267}, {"type": "node", "id": 8582667055, "lat": 40.4421532, "lon": -3.7019219}, {"type": "node", "id": 8582667056, "lat": 40.442168, "lon": -3.7019218}, {"type": "node", "id": 8583242886, "lat": 40.4356163, "lon": -3.7195103, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8583469068, "lat": 40.4441144, "lon": -3.7027844, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing"}}, {"type": "node", "id": 8583469069, "lat": 40.4461634, "lon": -3.7037329}, {"type": "node", "id": 8583469070, "lat": 40.4418339, "lon": -3.7017723}, {"type": "node", "id": 8583469071, "lat": 40.4418138, "lon": -3.7017758}, {"type": "node", "id": 8583469072, "lat": 40.4417941, "lon": -3.7017777}, {"type": "node", "id": 8583469073, "lat": 40.4409219, "lon": -3.7014002, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469074, "lat": 40.4399055, "lon": -3.7009638, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469075, "lat": 40.4413333, "lon": -3.7015805, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469076, "lat": 40.4388524, "lon": -3.7005132}, {"type": "node", "id": 8583469077, "lat": 40.4388352, "lon": -3.7004993}, {"type": "node", "id": 8583469078, "lat": 40.4388022, "lon": -3.7004618}, {"type": "node", "id": 8583469079, "lat": 40.4388157, "lon": -3.7004739}, {"type": "node", "id": 8583469080, "lat": 40.4374747, "lon": -3.6999188, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469081, "lat": 40.438013, "lon": -3.7001507, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469082, "lat": 40.4381082, "lon": -3.7001916}, {"type": "node", "id": 8583469083, "lat": 40.4381615, "lon": -3.700189}, {"type": "node", "id": 8583469084, "lat": 40.4381498, "lon": -3.7001853}, {"type": "node", "id": 8583469085, "lat": 40.4381189, "lon": -3.7001934}, {"type": "node", "id": 8583469086, "lat": 40.4368664, "lon": -3.699656, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469087, "lat": 40.4353701, "lon": -3.6990091}, {"type": "node", "id": 8583469088, "lat": 40.4353142, "lon": -3.6989603}, {"type": "node", "id": 8583469089, "lat": 40.435333, "lon": -3.6989704}, {"type": "node", "id": 8583469090, "lat": 40.435357, "lon": -3.6990019}, {"type": "node", "id": 8583469091, "lat": 40.434641, "lon": -3.6987113, "tags": {"crossing": "marked", "crossing:island": "yes", "highway": "crossing"}}, {"type": "node", "id": 8583469092, "lat": 40.4346893, "lon": -3.6987418}, {"type": "node", "id": 8583469093, "lat": 40.4347065, "lon": -3.6987592}, {"type": "node", "id": 8583469094, "lat": 40.4347204, "lon": -3.6987773}, {"type": "node", "id": 8583469095, "lat": 40.4348005, "lon": -3.6989756}, {"type": "node", "id": 8583469096, "lat": 40.4340546, "lon": -3.6984583}, {"type": "node", "id": 8583469097, "lat": 40.4340245, "lon": -3.6984354}, {"type": "node", "id": 8583469098, "lat": 40.4339815, "lon": -3.6984083}, {"type": "node", "id": 8583469099, "lat": 40.4337877, "lon": -3.6983256, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469100, "lat": 40.433553, "lon": -3.6982249}, {"type": "node", "id": 8583469101, "lat": 40.433063, "lon": -3.6980247, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583469102, "lat": 40.4326166, "lon": -3.6977625}, {"type": "node", "id": 8583469103, "lat": 40.4325441, "lon": -3.6977735}, {"type": "node", "id": 8583469106, "lat": 40.4325176, "lon": -3.6978579}, {"type": "node", "id": 8583469107, "lat": 40.4325368, "lon": -3.6978427}, {"type": "node", "id": 8583469108, "lat": 40.4325836, "lon": -3.6978294}, {"type": "node", "id": 8583469109, "lat": 40.4326068, "lon": -3.6978294}, {"type": "node", "id": 8583469110, "lat": 40.4326274, "lon": -3.6978343}, {"type": "node", "id": 8583469112, "lat": 40.4323179, "lon": -3.6977578}, {"type": "node", "id": 8583469113, "lat": 40.4322959, "lon": -3.6976894}, {"type": "node", "id": 8583469114, "lat": 40.4322773, "lon": -3.697678}, {"type": "node", "id": 8583469116, "lat": 40.4311909, "lon": -3.6971048}, {"type": "node", "id": 8583509317, "lat": 40.4298335, "lon": -3.6966183, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583509318, "lat": 40.4296367, "lon": -3.6965314, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583509319, "lat": 40.4283854, "lon": -3.6959922, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 8583509320, "lat": 40.4281533, "lon": -3.6958922}, {"type": "node", "id": 8583509321, "lat": 40.4281248, "lon": -3.6958955}, {"type": "node", "id": 8583532392, "lat": 40.4466437, "lon": -3.7039745}, {"type": "node", "id": 8583791440, "lat": 40.4324487, "lon": -3.6977475, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 8583791441, "lat": 40.4324441, "lon": -3.6976967}, {"type": "node", "id": 8583791442, "lat": 40.4326576, "lon": -3.6965729}, {"type": "node", "id": 8583791443, "lat": 40.4323324, "lon": -3.6973169}, {"type": "node", "id": 8583791444, "lat": 40.4323685, "lon": -3.6977825}, {"type": "node", "id": 8583791445, "lat": 40.4323933, "lon": -3.6979067}, {"type": "node", "id": 8583791446, "lat": 40.4323639, "lon": -3.6978242}, {"type": "node", "id": 8583791447, "lat": 40.4324879, "lon": -3.6978007}, {"type": "node", "id": 8583791448, "lat": 40.4325179, "lon": -3.6977823}, {"type": "node", "id": 8583791449, "lat": 40.4324419, "lon": -3.6978207}, {"type": "node", "id": 8583791450, "lat": 40.4324474, "lon": -3.6977841}, {"type": "node", "id": 8583791488, "lat": 40.4323747, "lon": -3.6975839, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 8583841122, "lat": 40.4323244, "lon": -3.6974347}, {"type": "node", "id": 8583841201, "lat": 40.4327186, "lon": -3.6976459}, {"type": "node", "id": 8583841202, "lat": 40.4322382, "lon": -3.6973986, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8583841203, "lat": 40.4323422, "lon": -3.697441}, {"type": "node", "id": 8583841204, "lat": 40.4324761, "lon": -3.6974245}, {"type": "node", "id": 8583841205, "lat": 40.4323633, "lon": -3.6974384}, {"type": "node", "id": 8583841206, "lat": 40.4324897, "lon": -3.6974649}, {"type": "node", "id": 8583841207, "lat": 40.4325212, "lon": -3.6975176}, {"type": "node", "id": 8583841208, "lat": 40.432573, "lon": -3.6975671}, {"type": "node", "id": 8583841209, "lat": 40.4326311, "lon": -3.6976012}, {"type": "node", "id": 8583841210, "lat": 40.4328165, "lon": -3.6976837}, {"type": "node", "id": 8583841211, "lat": 40.4334235, "lon": -3.697937}, {"type": "node", "id": 8583841212, "lat": 40.4324761, "lon": -3.6973911}, {"type": "node", "id": 8583841213, "lat": 40.4324915, "lon": -3.6973311}, {"type": "node", "id": 8583841214, "lat": 40.4327428, "lon": -3.6967317}, {"type": "node", "id": 8583841215, "lat": 40.4327545, "lon": -3.696679}, {"type": "node", "id": 8583841216, "lat": 40.4327606, "lon": -3.6966176}, {"type": "node", "id": 8583841217, "lat": 40.4329089, "lon": -3.6951111}, {"type": "node", "id": 8583841218, "lat": 40.4328766, "lon": -3.6972537}, {"type": "node", "id": 8583841219, "lat": 40.4326084, "lon": -3.6970522}, {"type": "node", "id": 8583841220, "lat": 40.4325012, "lon": -3.6979645}, {"type": "node", "id": 8583841221, "lat": 40.4322306, "lon": -3.6974128}, {"type": "node", "id": 8583869917, "lat": 40.4284979, "lon": -3.696041}, {"type": "node", "id": 8583869918, "lat": 40.4284747, "lon": -3.6960142}, {"type": "node", "id": 8583869919, "lat": 40.4284609, "lon": -3.6959854}, {"type": "node", "id": 8583869920, "lat": 40.4284392, "lon": -3.6958809}, {"type": "node", "id": 8583869921, "lat": 40.4287375, "lon": -3.696144}, {"type": "node", "id": 8583869922, "lat": 40.4288647, "lon": -3.6961999}, {"type": "node", "id": 8583878996, "lat": 40.4338218, "lon": -3.704615}, {"type": "node", "id": 8583878997, "lat": 40.4336269, "lon": -3.7047425}, {"type": "node", "id": 8583878998, "lat": 40.4336534, "lon": -3.7047356}, {"type": "node", "id": 8583878999, "lat": 40.4335552, "lon": -3.7044828}, {"type": "node", "id": 8583879002, "lat": 40.431311, "lon": -3.7035096}, {"type": "node", "id": 8583879003, "lat": 40.431322, "lon": -3.7036298}, {"type": "node", "id": 8583901054, "lat": 40.4511534, "lon": -3.711018}, {"type": "node", "id": 8585687229, "lat": 40.432284, "lon": -3.7009322}, {"type": "node", "id": 8585687230, "lat": 40.43231, "lon": -3.7009223}, {"type": "node", "id": 8585687231, "lat": 40.432331, "lon": -3.7009}, {"type": "node", "id": 8585687232, "lat": 40.4323446, "lon": -3.7008775}, {"type": "node", "id": 8585687233, "lat": 40.4323505, "lon": -3.7008185}, {"type": "node", "id": 8585687234, "lat": 40.4323386, "lon": -3.7007802}, {"type": "node", "id": 8585687235, "lat": 40.4323242, "lon": -3.7007519}, {"type": "node", "id": 8585687236, "lat": 40.4331949, "lon": -3.7013344}, {"type": "node", "id": 8585687237, "lat": 40.4331761, "lon": -3.7013058}, {"type": "node", "id": 8585687238, "lat": 40.4331681, "lon": -3.7012683}, {"type": "node", "id": 8585687239, "lat": 40.4331821, "lon": -3.7011991}, {"type": "node", "id": 8585687240, "lat": 40.4332016, "lon": -3.7011748}, {"type": "node", "id": 8585687241, "lat": 40.4332241, "lon": -3.7011611}, {"type": "node", "id": 8585687242, "lat": 40.4328694, "lon": -3.7012363}, {"type": "node", "id": 8585687243, "lat": 40.4329058, "lon": -3.7009704}, {"type": "node", "id": 8585687244, "lat": 40.4328247, "lon": -3.7010591}, {"type": "node", "id": 8585687245, "lat": 40.4328365, "lon": -3.7009421}, {"type": "node", "id": 8585687246, "lat": 40.4327771, "lon": -3.7011952}, {"type": "node", "id": 8585687261, "lat": 40.4326566, "lon": -3.7015918}, {"type": "node", "id": 8585687262, "lat": 40.4323449, "lon": -3.7013464}, {"type": "node", "id": 8587019123, "lat": 40.4525627, "lon": -3.711011}, {"type": "node", "id": 8587019126, "lat": 40.452024, "lon": -3.7093868}, {"type": "node", "id": 8587019131, "lat": 40.4513214, "lon": -3.7063043}, {"type": "node", "id": 8587019132, "lat": 40.4513198, "lon": -3.706314}, {"type": "node", "id": 8587019133, "lat": 40.4503136, "lon": -3.7101366}, {"type": "node", "id": 8587019134, "lat": 40.4503491, "lon": -3.7101208}, {"type": "node", "id": 8587019135, "lat": 40.4503821, "lon": -3.7100498}, {"type": "node", "id": 8587019136, "lat": 40.4503342, "lon": -3.7101326}, {"type": "node", "id": 8587019137, "lat": 40.450562, "lon": -3.7099253}, {"type": "node", "id": 8587019138, "lat": 40.4505625, "lon": -3.7099753}, {"type": "node", "id": 8587019141, "lat": 40.4465999, "lon": -3.7041183}, {"type": "node", "id": 8587019142, "lat": 40.4466256, "lon": -3.7041932}, {"type": "node", "id": 8587019143, "lat": 40.446653, "lon": -3.704261}, {"type": "node", "id": 8587019144, "lat": 40.4466949, "lon": -3.7043296}, {"type": "node", "id": 8587019145, "lat": 40.4467208, "lon": -3.7043612}, {"type": "node", "id": 8587019146, "lat": 40.4466085, "lon": -3.703623}, {"type": "node", "id": 8587019147, "lat": 40.4466286, "lon": -3.7036292}, {"type": "node", "id": 8587019148, "lat": 40.4454508, "lon": -3.7031221}, {"type": "node", "id": 8587019150, "lat": 40.446521, "lon": -3.7035851}, {"type": "node", "id": 8587019151, "lat": 40.4469277, "lon": -3.7045617}, {"type": "node", "id": 8587019152, "lat": 40.4469157, "lon": -3.704563}, {"type": "node", "id": 8587019153, "lat": 40.4469162, "lon": -3.7058385}, {"type": "node", "id": 8587019154, "lat": 40.4468616, "lon": -3.7049376}, {"type": "node", "id": 8587019155, "lat": 40.4468644, "lon": -3.7048114}, {"type": "node", "id": 8587019156, "lat": 40.4468423, "lon": -3.7044002}, {"type": "node", "id": 8587019157, "lat": 40.4468514, "lon": -3.7045704}, {"type": "node", "id": 8587019158, "lat": 40.4470183, "lon": -3.705821}, {"type": "node", "id": 8587114719, "lat": 40.4521761, "lon": -3.7114314}, {"type": "node", "id": 8587114720, "lat": 40.4520542, "lon": -3.7114181}, {"type": "node", "id": 8587114721, "lat": 40.4519424, "lon": -3.711386}, {"type": "node", "id": 8587114722, "lat": 40.4509636, "lon": -3.7107633}, {"type": "node", "id": 8587114723, "lat": 40.4500789, "lon": -3.7102025}, {"type": "node", "id": 8587114724, "lat": 40.4501095, "lon": -3.7101121}, {"type": "node", "id": 8587114725, "lat": 40.4501048, "lon": -3.7101259}, {"type": "node", "id": 8587890927, "lat": 40.4522697, "lon": -3.7173829}, {"type": "node", "id": 8589258539, "lat": 40.4496691, "lon": -3.7109353}, {"type": "node", "id": 8589258541, "lat": 40.4515916, "lon": -3.7100388}, {"type": "node", "id": 8589258542, "lat": 40.4509079, "lon": -3.7100788}, {"type": "node", "id": 8589432332, "lat": 40.4337802, "lon": -3.7187549, "tags": {"bus": "yes", "name": "Interc. Moncloa Isla 1 D 07", "public_transport": "stop_position"}}, {"type": "node", "id": 8590150193, "lat": 40.4404425, "lon": -3.7020946}, {"type": "node", "id": 8590161652, "lat": 40.4394656, "lon": -3.7031005}, {"type": "node", "id": 8590161653, "lat": 40.4390462, "lon": -3.702487}, {"type": "node", "id": 8590161654, "lat": 40.4389508, "lon": -3.7023573}, {"type": "node", "id": 8590161655, "lat": 40.4390226, "lon": -3.7014848}, {"type": "node", "id": 8590161656, "lat": 40.4396124, "lon": -3.7015752, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 8590161657, "lat": 40.4395997, "lon": -3.7016885, "tags": {"traffic_calming": "table"}}, {"type": "node", "id": 8590161658, "lat": 40.4404267, "lon": -3.7037181}, {"type": "node", "id": 8590161659, "lat": 40.4404416, "lon": -3.7037078}, {"type": "node", "id": 8590161660, "lat": 40.4405207, "lon": -3.7037056}, {"type": "node", "id": 8590161661, "lat": 40.4405555, "lon": -3.703753}, {"type": "node", "id": 8590161662, "lat": 40.4405575, "lon": -3.7038377}, {"type": "node", "id": 8590161663, "lat": 40.4404075, "lon": -3.7037727}, {"type": "node", "id": 8590161664, "lat": 40.4404099, "lon": -3.7038475}, {"type": "node", "id": 8590161665, "lat": 40.4404851, "lon": -3.7038425}, {"type": "node", "id": 8590161666, "lat": 40.4404871, "lon": -3.7038995}, {"type": "node", "id": 8590458184, "lat": 40.4292643, "lon": -3.7023304}, {"type": "node", "id": 8590458185, "lat": 40.4298359, "lon": -3.7028317}, {"type": "node", "id": 8590458186, "lat": 40.4298662, "lon": -3.7028199}, {"type": "node", "id": 8590458187, "lat": 40.4280755, "lon": -3.6956243}, {"type": "node", "id": 8590458188, "lat": 40.4280832, "lon": -3.6955956}, {"type": "node", "id": 8593662526, "lat": 40.4290431, "lon": -3.7032319}, {"type": "node", "id": 8593662527, "lat": 40.4289238, "lon": -3.7024832}, {"type": "node", "id": 8593662528, "lat": 40.4289015, "lon": -3.7024464}, {"type": "node", "id": 8593662529, "lat": 40.428688, "lon": -3.7023356}, {"type": "node", "id": 8593662530, "lat": 40.4286567, "lon": -3.702361}, {"type": "node", "id": 8593662531, "lat": 40.4286579, "lon": -3.7033071}, {"type": "node", "id": 8593662563, "lat": 40.428762, "lon": -3.7020449}, {"type": "node", "id": 8593662564, "lat": 40.4289336, "lon": -3.7025451}, {"type": "node", "id": 8593662565, "lat": 40.4287395, "lon": -3.7023624}, {"type": "node", "id": 8593662566, "lat": 40.4287676, "lon": -3.702261}, {"type": "node", "id": 8593662567, "lat": 40.4287876, "lon": -3.7021932}, {"type": "node", "id": 8593662568, "lat": 40.4287566, "lon": -3.7020914}, {"type": "node", "id": 8593662569, "lat": 40.4288401, "lon": -3.7019738}, {"type": "node", "id": 8593662570, "lat": 40.4288078, "lon": -3.7018123}, {"type": "node", "id": 8593662571, "lat": 40.4287766, "lon": -3.7020633}, {"type": "node", "id": 8593662572, "lat": 40.4287739, "lon": -3.7021483, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8593662590, "lat": 40.4286639, "lon": -3.7034056}, {"type": "node", "id": 8593662591, "lat": 40.4286966, "lon": -3.7037124}, {"type": "node", "id": 8593662592, "lat": 40.4291086, "lon": -3.7036394}, {"type": "node", "id": 8593662593, "lat": 40.4290575, "lon": -3.7033257}, {"type": "node", "id": 8593662594, "lat": 40.4286692, "lon": -3.7033049}, {"type": "node", "id": 8593662595, "lat": 40.4286786, "lon": -3.7034026}, {"type": "node", "id": 8593662596, "lat": 40.428674, "lon": -3.7033548, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8593662597, "lat": 40.4290507, "lon": -3.7032814, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8608388004, "lat": 40.4423109, "lon": -3.6941731}, {"type": "node", "id": 8608388005, "lat": 40.4423021, "lon": -3.6939689}, {"type": "node", "id": 8608388006, "lat": 40.4424937, "lon": -3.6939546}, {"type": "node", "id": 8608388007, "lat": 40.4425026, "lon": -3.6941587}, {"type": "node", "id": 8608388008, "lat": 40.442544, "lon": -3.6941556}, {"type": "node", "id": 8608388009, "lat": 40.4425655, "lon": -3.6946517}, {"type": "node", "id": 8608388010, "lat": 40.4425858, "lon": -3.6947905}, {"type": "node", "id": 8608388011, "lat": 40.4427875, "lon": -3.6941271}, {"type": "node", "id": 8608388012, "lat": 40.443036, "lon": -3.6941129}, {"type": "node", "id": 8608388013, "lat": 40.4430291, "lon": -3.6939045}, {"type": "node", "id": 8608388014, "lat": 40.4427806, "lon": -3.6939186}, {"type": "node", "id": 8608388015, "lat": 40.4427932, "lon": -3.6943019}, {"type": "node", "id": 8608388016, "lat": 40.4428033, "lon": -3.6945181}, {"type": "node", "id": 8608463717, "lat": 40.4428085, "lon": -3.6946313, "tags": {"access": "private", "barrier": "lift_gate", "lift_gate:type": "single"}}, {"type": "node", "id": 8608463736, "lat": 40.4443529, "lon": -3.6938784}, {"type": "node", "id": 8608463737, "lat": 40.4441458, "lon": -3.6938937}, {"type": "node", "id": 8608463738, "lat": 40.444358, "lon": -3.694028}, {"type": "node", "id": 8608463739, "lat": 40.4443479, "lon": -3.693761}, {"type": "node", "id": 8608463740, "lat": 40.4441407, "lon": -3.6937763}, {"type": "node", "id": 8608463741, "lat": 40.4441542, "lon": -3.6940904}, {"type": "node", "id": 8608463742, "lat": 40.4443593, "lon": -3.6940753}, {"type": "node", "id": 8608463744, "lat": 40.4444408, "lon": -3.6940227}, {"type": "node", "id": 8608463745, "lat": 40.4445976, "lon": -3.6940111}, {"type": "node", "id": 8608463746, "lat": 40.444649, "lon": -3.6940073}, {"type": "node", "id": 8608463747, "lat": 40.4446551, "lon": -3.6941614}, {"type": "node", "id": 8608463748, "lat": 40.4446638, "lon": -3.6943767}, {"type": "node", "id": 8608463749, "lat": 40.4446428, "lon": -3.6938525}, {"type": "node", "id": 8608463750, "lat": 40.4448954, "lon": -3.6938323}, {"type": "node", "id": 8608463751, "lat": 40.4446469, "lon": -3.6939551}, {"type": "node", "id": 8608463752, "lat": 40.4448996, "lon": -3.6939376}, {"type": "node", "id": 8608463753, "lat": 40.4448914, "lon": -3.6937323}, {"type": "node", "id": 8608463754, "lat": 40.4446386, "lon": -3.6937498}, {"type": "node", "id": 8608463755, "lat": 40.4446664, "lon": -3.6944423}, {"type": "node", "id": 8608463775, "lat": 40.4437763, "lon": -3.6942721}, {"type": "node", "id": 8608463776, "lat": 40.4434373, "lon": -3.694302}, {"type": "node", "id": 8608463777, "lat": 40.4437666, "lon": -3.6940885}, {"type": "node", "id": 8608463778, "lat": 40.4434261, "lon": -3.694121}, {"type": "node", "id": 8608463779, "lat": 40.443757, "lon": -3.6939049}, {"type": "node", "id": 8608463780, "lat": 40.4434145, "lon": -3.6939339}, {"type": "node", "id": 8608463781, "lat": 40.4437808, "lon": -3.6943565}, {"type": "node", "id": 8608463782, "lat": 40.443752, "lon": -3.6938113}, {"type": "node", "id": 8608463783, "lat": 40.4433964, "lon": -3.6934946}, {"type": "node", "id": 8608463784, "lat": 40.4434084, "lon": -3.693837}, {"type": "node", "id": 8608463785, "lat": 40.4434423, "lon": -3.6943827}, {"type": "node", "id": 8608463786, "lat": 40.4434453, "lon": -3.6944693}, {"type": "node", "id": 8608463787, "lat": 40.443527, "lon": -3.6948958}, {"type": "node", "id": 8608463788, "lat": 40.4440046, "lon": -3.6948958}, {"type": "node", "id": 8608463789, "lat": 40.4446797, "lon": -3.6948438}, {"type": "node", "id": 8608467301, "lat": 40.4443772, "lon": -3.6949816, "tags": {"access": "private", "barrier": "lift_gate", "lift_gate:type": "single", "locked": "yes"}}, {"type": "node", "id": 8608467302, "lat": 40.4437336, "lon": -3.6934559}, {"type": "node", "id": 8612377567, "lat": 40.4486104, "lon": -3.7098981}, {"type": "node", "id": 8612377568, "lat": 40.4485789, "lon": -3.7098848}, {"type": "node", "id": 8612377569, "lat": 40.4488589, "lon": -3.7100091}, {"type": "node", "id": 8612377570, "lat": 40.4489614, "lon": -3.7097337}, {"type": "node", "id": 8612377571, "lat": 40.4489428, "lon": -3.7097835}, {"type": "node", "id": 8613792100, "lat": 40.4453563, "lon": -3.7030902}, {"type": "node", "id": 8613792101, "lat": 40.4453939, "lon": -3.7020184}, {"type": "node", "id": 8613792102, "lat": 40.4454306, "lon": -3.7019956}, {"type": "node", "id": 8616238230, "lat": 40.4337064, "lon": -3.7189347}, {"type": "node", "id": 8625818254, "lat": 40.4273366, "lon": -3.6922984}, {"type": "node", "id": 8633236083, "lat": 40.4475028, "lon": -3.6959253}, {"type": "node", "id": 8633236084, "lat": 40.447989, "lon": -3.6956813}, {"type": "node", "id": 8646829050, "lat": 40.4293644, "lon": -3.7166877, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8646829051, "lat": 40.4293867, "lon": -3.7166331}, {"type": "node", "id": 8646829052, "lat": 40.4297297, "lon": -3.7158345}, {"type": "node", "id": 8646860731, "lat": 40.4305485, "lon": -3.714213}, {"type": "node", "id": 8649272390, "lat": 40.4311442, "lon": -3.6935591}, {"type": "node", "id": 8703242762, "lat": 40.4460237, "lon": -3.725919, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8703242763, "lat": 40.4466641, "lon": -3.7246492, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8703242765, "lat": 40.4473704, "lon": -3.7246163, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8703242766, "lat": 40.4512273, "lon": -3.723897, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8707181996, "lat": 40.4496532, "lon": -3.7103875}, {"type": "node", "id": 8707181997, "lat": 40.4504367, "lon": -3.7110914}, {"type": "node", "id": 8707181998, "lat": 40.4504481, "lon": -3.7111104}, {"type": "node", "id": 8707181999, "lat": 40.4504742, "lon": -3.7112968}, {"type": "node", "id": 8707182000, "lat": 40.4504874, "lon": -3.711314}, {"type": "node", "id": 8707182001, "lat": 40.4507754, "lon": -3.7113968, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8707182002, "lat": 40.4508072, "lon": -3.71147}, {"type": "node", "id": 8707182003, "lat": 40.45082, "lon": -3.7113684}, {"type": "node", "id": 8707182004, "lat": 40.4509185, "lon": -3.7110012}, {"type": "node", "id": 8707182005, "lat": 40.4494376, "lon": -3.7114283}, {"type": "node", "id": 8707182006, "lat": 40.4494744, "lon": -3.7114033}, {"type": "node", "id": 8707182007, "lat": 40.4494831, "lon": -3.7112974}, {"type": "node", "id": 8707182008, "lat": 40.4494376, "lon": -3.7112418}, {"type": "node", "id": 8707182009, "lat": 40.4493703, "lon": -3.7115571}, {"type": "node", "id": 8707182010, "lat": 40.4493822, "lon": -3.7114917, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8707182020, "lat": 40.4494619, "lon": -3.7123149}, {"type": "node", "id": 8707182021, "lat": 40.4494906, "lon": -3.7119902}, {"type": "node", "id": 8707182022, "lat": 40.4497684, "lon": -3.7120445}, {"type": "node", "id": 8707182023, "lat": 40.449792, "lon": -3.7120435}, {"type": "node", "id": 8707182024, "lat": 40.4498135, "lon": -3.7120325}, {"type": "node", "id": 8707182025, "lat": 40.4498315, "lon": -3.712013}, {"type": "node", "id": 8707182026, "lat": 40.4498399, "lon": -3.711992}, {"type": "node", "id": 8707182027, "lat": 40.4498815, "lon": -3.7115833}, {"type": "node", "id": 8707182028, "lat": 40.4498809, "lon": -3.7115435}, {"type": "node", "id": 8707182029, "lat": 40.4498724, "lon": -3.7115182}, {"type": "node", "id": 8707182030, "lat": 40.4498638, "lon": -3.7114918}, {"type": "node", "id": 8707182031, "lat": 40.449863, "lon": -3.7114576}, {"type": "node", "id": 8707182032, "lat": 40.4498719, "lon": -3.7114267}, {"type": "node", "id": 8707182033, "lat": 40.4498916, "lon": -3.7114037}, {"type": "node", "id": 8707182034, "lat": 40.4499134, "lon": -3.7113992}, {"type": "node", "id": 8707182035, "lat": 40.4499386, "lon": -3.7114065}, {"type": "node", "id": 8707182036, "lat": 40.4499561, "lon": -3.7114284}, {"type": "node", "id": 8707182037, "lat": 40.4499647, "lon": -3.7114559}, {"type": "node", "id": 8707182038, "lat": 40.4499689, "lon": -3.7114823}, {"type": "node", "id": 8707182039, "lat": 40.4499638, "lon": -3.7115064}, {"type": "node", "id": 8707182040, "lat": 40.449951, "lon": -3.71153}, {"type": "node", "id": 8707182041, "lat": 40.4499335, "lon": -3.7115497, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8707182042, "lat": 40.4495718, "lon": -3.7120061, "tags": {"highway": "crossing"}}, {"type": "node", "id": 8707182056, "lat": 40.4505604, "lon": -3.7126938}, {"type": "node", "id": 8707182057, "lat": 40.4498447, "lon": -3.7126946, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8707182058, "lat": 40.4498325, "lon": -3.7128017}, {"type": "node", "id": 8707182059, "lat": 40.4498256, "lon": -3.7128877}, {"type": "node", "id": 8707182060, "lat": 40.4498256, "lon": -3.7129743}, {"type": "node", "id": 8707182061, "lat": 40.4498359, "lon": -3.71305}, {"type": "node", "id": 8707182062, "lat": 40.4498978, "lon": -3.7132932}, {"type": "node", "id": 8707182063, "lat": 40.4498821, "lon": -3.7132314, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8707182123, "lat": 40.4508141, "lon": -3.7118581}, {"type": "node", "id": 8707182124, "lat": 40.4507187, "lon": -3.7122658}, {"type": "node", "id": 8707182125, "lat": 40.450632, "lon": -3.7126942}, {"type": "node", "id": 8707182126, "lat": 40.4504778, "lon": -3.7140376}, {"type": "node", "id": 8714822217, "lat": 40.4482378, "lon": -3.6943761}, {"type": "node", "id": 8715771071, "lat": 40.4266051, "lon": -3.7154553, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8715771072, "lat": 40.4266288, "lon": -3.7154753, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8723432998, "lat": 40.4286037, "lon": -3.6996415}, {"type": "node", "id": 8723432999, "lat": 40.428375, "lon": -3.6997401}, {"type": "node", "id": 8723433000, "lat": 40.4282712, "lon": -3.6995075}, {"type": "node", "id": 8723433001, "lat": 40.428249, "lon": -3.6992749}, {"type": "node", "id": 8723433002, "lat": 40.4283926, "lon": -3.6998302}, {"type": "node", "id": 8723433003, "lat": 40.4283328, "lon": -3.6995421}, {"type": "node", "id": 8723433004, "lat": 40.4282947, "lon": -3.6995113}, {"type": "node", "id": 8723433005, "lat": 40.4281505, "lon": -3.6994798}, {"type": "node", "id": 8737409026, "lat": 40.4366718, "lon": -3.6928989}, {"type": "node", "id": 8737409027, "lat": 40.4365721, "lon": -3.6929081}, {"type": "node", "id": 8737409028, "lat": 40.4364924, "lon": -3.6914015, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 8737409029, "lat": 40.4366143, "lon": -3.6913953}, {"type": "node", "id": 8737409030, "lat": 40.436541, "lon": -3.691399, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8737409031, "lat": 40.4366037, "lon": -3.6929052, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8740749851, "lat": 40.4339494, "lon": -3.7076446}, {"type": "node", "id": 8740749852, "lat": 40.4339063, "lon": -3.7070626}, {"type": "node", "id": 8744168226, "lat": 40.4432354, "lon": -3.690024}, {"type": "node", "id": 8744168227, "lat": 40.4434797, "lon": -3.6893727}, {"type": "node", "id": 8744168228, "lat": 40.4434162, "lon": -3.6883467}, {"type": "node", "id": 8744168229, "lat": 40.4435548, "lon": -3.6883304}, {"type": "node", "id": 8744168230, "lat": 40.4431727, "lon": -3.6901143}, {"type": "node", "id": 8744168231, "lat": 40.4430767, "lon": -3.6901867}, {"type": "node", "id": 8744168232, "lat": 40.4429826, "lon": -3.6902182}, {"type": "node", "id": 8744168233, "lat": 40.4428875, "lon": -3.6902147}, {"type": "node", "id": 8744168234, "lat": 40.4427524, "lon": -3.6901668}, {"type": "node", "id": 8744168235, "lat": 40.4426894, "lon": -3.6901155}, {"type": "node", "id": 8744168236, "lat": 40.4425818, "lon": -3.6900011}, {"type": "node", "id": 8744168237, "lat": 40.4423944, "lon": -3.6896882}, {"type": "node", "id": 8744168238, "lat": 40.4423496, "lon": -3.6897469}, {"type": "node", "id": 8757709902, "lat": 40.4440815, "lon": -3.6972184}, {"type": "node", "id": 8757709903, "lat": 40.4439619, "lon": -3.6972307, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "yes"}}, {"type": "node", "id": 8757709904, "lat": 40.4439003, "lon": -3.6959305}, {"type": "node", "id": 8762934495, "lat": 40.4395552, "lon": -3.6859674}, {"type": "node", "id": 8762934496, "lat": 40.4395658, "lon": -3.6862863}, {"type": "node", "id": 8762934497, "lat": 40.4405776, "lon": -3.6862016}, {"type": "node", "id": 8777714421, "lat": 40.435531, "lon": -3.7193517, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8777858660, "lat": 40.4304213, "lon": -3.7201701}, {"type": "node", "id": 8777858661, "lat": 40.4304592, "lon": -3.7200695}, {"type": "node", "id": 8777858662, "lat": 40.4304723, "lon": -3.7200299}, {"type": "node", "id": 8777858663, "lat": 40.4303895, "lon": -3.7199526}, {"type": "node", "id": 8777858664, "lat": 40.4306472, "lon": -3.7202504}, {"type": "node", "id": 8777858665, "lat": 40.4305559, "lon": -3.7198246}, {"type": "node", "id": 8778804348, "lat": 40.4476384, "lon": -3.7040691}, {"type": "node", "id": 8778804360, "lat": 40.4476659, "lon": -3.7039987}, {"type": "node", "id": 8778804381, "lat": 40.4467525, "lon": -3.7050223}, {"type": "node", "id": 8778804398, "lat": 40.4465067, "lon": -3.7040375}, {"type": "node", "id": 8778804404, "lat": 40.4454988, "lon": -3.7041405}, {"type": "node", "id": 8778804412, "lat": 40.4461982, "lon": -3.7040496}, {"type": "node", "id": 8778804413, "lat": 40.4467397, "lon": -3.7044073}, {"type": "node", "id": 8778804414, "lat": 40.4474661, "lon": -3.7039991}, {"type": "node", "id": 8778804415, "lat": 40.4470243, "lon": -3.7045511}, {"type": "node", "id": 8778804416, "lat": 40.4470976, "lon": -3.7058103}, {"type": "node", "id": 8778809317, "lat": 40.4472683, "lon": -3.7068283}, {"type": "node", "id": 8778809318, "lat": 40.4473284, "lon": -3.7068376}, {"type": "node", "id": 8778809403, "lat": 40.4457404, "lon": -3.7050601, "tags": {"amenity": "parking"}}, {"type": "node", "id": 8778809404, "lat": 40.4457474, "lon": -3.705105}, {"type": "node", "id": 8778809406, "lat": 40.4448313, "lon": -3.7050383}, {"type": "node", "id": 8787245617, "lat": 40.4339629, "lon": -3.685009}, {"type": "node", "id": 8787245618, "lat": 40.4336811, "lon": -3.6850333, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8787245619, "lat": 40.4339657, "lon": -3.6850667}, {"type": "node", "id": 8787245620, "lat": 40.4332711, "lon": -3.6851202}, {"type": "node", "id": 8787245621, "lat": 40.4339601, "lon": -3.6849516}, {"type": "node", "id": 8787245622, "lat": 40.4329747, "lon": -3.6850275}, {"type": "node", "id": 8787245623, "lat": 40.4335315, "lon": -3.6851013}, {"type": "node", "id": 8787245624, "lat": 40.4335266, "lon": -3.684985}, {"type": "node", "id": 8787245625, "lat": 40.4332901, "lon": -3.6854772}, {"type": "node", "id": 8787245626, "lat": 40.4332694, "lon": -3.6850879}, {"type": "node", "id": 8787245627, "lat": 40.4330433, "lon": -3.6851015}, {"type": "node", "id": 8787245628, "lat": 40.4330606, "lon": -3.6854939}, {"type": "node", "id": 8787245630, "lat": 40.4330389, "lon": -3.6850226}, {"type": "node", "id": 8787245631, "lat": 40.4330597, "lon": -3.685474}, {"type": "node", "id": 8787245632, "lat": 40.433085, "lon": -3.6854921}, {"type": "node", "id": 8787245633, "lat": 40.4330905, "lon": -3.685586, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245642, "lat": 40.4339825, "lon": -3.6854113, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245643, "lat": 40.4339927, "lon": -3.6856209, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245644, "lat": 40.433911, "lon": -3.6855202, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8787245645, "lat": 40.4340728, "lon": -3.6855073, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8789170594, "lat": 40.4474473, "lon": -3.7037856}, {"type": "node", "id": 8789170595, "lat": 40.4472491, "lon": -3.7034564}, {"type": "node", "id": 8793094951, "lat": 40.4468106, "lon": -3.7009337}, {"type": "node", "id": 8793094958, "lat": 40.4475185, "lon": -3.7008892, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8793094959, "lat": 40.4474902, "lon": -3.7008835}, {"type": "node", "id": 8793094960, "lat": 40.4471668, "lon": -3.7008998}, {"type": "node", "id": 8793095016, "lat": 40.4473262, "lon": -3.7030056}, {"type": "node", "id": 8793095017, "lat": 40.4473824, "lon": -3.7025637}, {"type": "node", "id": 8793095018, "lat": 40.4473055, "lon": -3.7016919}, {"type": "node", "id": 8793095019, "lat": 40.4473081, "lon": -3.7016709}, {"type": "node", "id": 8793095020, "lat": 40.4474455, "lon": -3.7012795}, {"type": "node", "id": 8793095021, "lat": 40.447453, "lon": -3.7012434}, {"type": "node", "id": 8793113477, "lat": 40.4478893, "lon": -3.7036728}, {"type": "node", "id": 8793113478, "lat": 40.4478421, "lon": -3.7036816}, {"type": "node", "id": 8793113479, "lat": 40.4478583, "lon": -3.7036786, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8793138927, "lat": 40.4473503, "lon": -3.6986742}, {"type": "node", "id": 8793138928, "lat": 40.4473371, "lon": -3.6988622}, {"type": "node", "id": 8793138929, "lat": 40.4473874, "lon": -3.6988561}, {"type": "node", "id": 8793138930, "lat": 40.4473894, "lon": -3.6988855}, {"type": "node", "id": 8793138931, "lat": 40.4473391, "lon": -3.6988918}, {"type": "node", "id": 8793138932, "lat": 40.447341, "lon": -3.698922}, {"type": "node", "id": 8804961554, "lat": 40.4422437, "lon": -3.7048182}, {"type": "node", "id": 8804961575, "lat": 40.4423003, "lon": -3.7042959}, {"type": "node", "id": 8804961576, "lat": 40.442259, "lon": -3.7048209}, {"type": "node", "id": 8804961577, "lat": 40.4422357, "lon": -3.7043139}, {"type": "node", "id": 8804961578, "lat": 40.4422032, "lon": -3.7048048}, {"type": "node", "id": 8804961579, "lat": 40.4422519, "lon": -3.7048908}, {"type": "node", "id": 8804961580, "lat": 40.4422831, "lon": -3.7049252}, {"type": "node", "id": 8804961581, "lat": 40.4423176, "lon": -3.7049499}, {"type": "node", "id": 8804961582, "lat": 40.4424094, "lon": -3.7049998}, {"type": "node", "id": 8804961583, "lat": 40.4444627, "lon": -3.7063368}, {"type": "node", "id": 8804961584, "lat": 40.4445117, "lon": -3.7063553}, {"type": "node", "id": 8804961585, "lat": 40.4445636, "lon": -3.7063721}, {"type": "node", "id": 8804961586, "lat": 40.4447466, "lon": -3.7064302}, {"type": "node", "id": 8804961587, "lat": 40.4432907, "lon": -3.7056475}, {"type": "node", "id": 8804961588, "lat": 40.4432962, "lon": -3.7055759}, {"type": "node", "id": 8804961589, "lat": 40.4434323, "lon": -3.7057608}, {"type": "node", "id": 8804961590, "lat": 40.4424135, "lon": -3.705078}, {"type": "node", "id": 8804961591, "lat": 40.4424484, "lon": -3.7050264}, {"type": "node", "id": 8804963660, "lat": 40.4421918, "lon": -3.7048563}, {"type": "node", "id": 8804963661, "lat": 40.4421257, "lon": -3.704906}, {"type": "node", "id": 8804963662, "lat": 40.4423204, "lon": -3.7041876, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8804963663, "lat": 40.4423541, "lon": -3.7049165, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8804963716, "lat": 40.4416485, "lon": -3.7060255}, {"type": "node", "id": 8804963717, "lat": 40.4426773, "lon": -3.7050105}, {"type": "node", "id": 8804963718, "lat": 40.4426318, "lon": -3.7050505}, {"type": "node", "id": 8804963719, "lat": 40.4426117, "lon": -3.7050377}, {"type": "node", "id": 8804963727, "lat": 40.4421399, "lon": -3.7044899}, {"type": "node", "id": 8804963728, "lat": 40.4453277, "lon": -3.7066546}, {"type": "node", "id": 8804963729, "lat": 40.4454898, "lon": -3.7062164}, {"type": "node", "id": 8804963730, "lat": 40.4454973, "lon": -3.7062014}, {"type": "node", "id": 8804963807, "lat": 40.4456035, "lon": -3.7072567}, {"type": "node", "id": 8804963816, "lat": 40.4458016, "lon": -3.7072774}, {"type": "node", "id": 8804963836, "lat": 40.4452556, "lon": -3.7063528}, {"type": "node", "id": 8804963837, "lat": 40.4452713, "lon": -3.7063509}, {"type": "node", "id": 8804963838, "lat": 40.4453022, "lon": -3.7063655}, {"type": "node", "id": 8804963839, "lat": 40.4453122, "lon": -3.7063802}, {"type": "node", "id": 8804963840, "lat": 40.445318, "lon": -3.7063972}, {"type": "node", "id": 8804963841, "lat": 40.4453143, "lon": -3.7064552}, {"type": "node", "id": 8804963842, "lat": 40.4451931, "lon": -3.7063609, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8804963843, "lat": 40.4452079, "lon": -3.7063368}, {"type": "node", "id": 8804963844, "lat": 40.4452324, "lon": -3.7063127}, {"type": "node", "id": 8804963845, "lat": 40.4452551, "lon": -3.7063035}, {"type": "node", "id": 8804963846, "lat": 40.4452828, "lon": -3.7063053}, {"type": "node", "id": 8804963847, "lat": 40.4453065, "lon": -3.7063166}, {"type": "node", "id": 8804963848, "lat": 40.4453281, "lon": -3.7063336}, {"type": "node", "id": 8804963849, "lat": 40.4453432, "lon": -3.7063552}, {"type": "node", "id": 8804963850, "lat": 40.4453529, "lon": -3.7063832}, {"type": "node", "id": 8804963851, "lat": 40.4453586, "lon": -3.7064143}, {"type": "node", "id": 8804963852, "lat": 40.445357, "lon": -3.7064406}, {"type": "node", "id": 8804963853, "lat": 40.4453508, "lon": -3.7064668}, {"type": "node", "id": 8804963854, "lat": 40.4453243, "lon": -3.7065305}, {"type": "node", "id": 8804963855, "lat": 40.4453211, "lon": -3.7065518}, {"type": "node", "id": 8804963856, "lat": 40.4453224, "lon": -3.7065766}, {"type": "node", "id": 8804963857, "lat": 40.4453372, "lon": -3.7066283}, {"type": "node", "id": 8804963858, "lat": 40.445363, "lon": -3.7065588, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8804963863, "lat": 40.4381544, "lon": -3.7010752}, {"type": "node", "id": 8804963864, "lat": 40.4381618, "lon": -3.701255}, {"type": "node", "id": 8804963865, "lat": 40.4383238, "lon": -3.7012459}, {"type": "node", "id": 8804963866, "lat": 40.4383416, "lon": -3.7012532}, {"type": "node", "id": 8804963867, "lat": 40.4383551, "lon": -3.7012649}, {"type": "node", "id": 8804963868, "lat": 40.4383646, "lon": -3.7012878}, {"type": "node", "id": 8804963869, "lat": 40.4383803, "lon": -3.7016243}, {"type": "node", "id": 8804963870, "lat": 40.4383716, "lon": -3.7016469}, {"type": "node", "id": 8804963871, "lat": 40.4383525, "lon": -3.7016645}, {"type": "node", "id": 8804963872, "lat": 40.438003, "lon": -3.7016857}, {"type": "node", "id": 8804963873, "lat": 40.4379833, "lon": -3.7016765}, {"type": "node", "id": 8804963874, "lat": 40.4379713, "lon": -3.7016592}, {"type": "node", "id": 8804963875, "lat": 40.4379649, "lon": -3.7016328}, {"type": "node", "id": 8804963876, "lat": 40.4379502, "lon": -3.7013195}, {"type": "node", "id": 8804963877, "lat": 40.4379546, "lon": -3.7012956}, {"type": "node", "id": 8804963878, "lat": 40.4379678, "lon": -3.7012801}, {"type": "node", "id": 8804963879, "lat": 40.437984, "lon": -3.7012685}, {"type": "node", "id": 8804963880, "lat": 40.4419736, "lon": -3.7041964}, {"type": "node", "id": 8804963881, "lat": 40.4419286, "lon": -3.7042328}, {"type": "node", "id": 8804963882, "lat": 40.4431369, "lon": -3.7057046}, {"type": "node", "id": 8804963883, "lat": 40.4431753, "lon": -3.7056067}, {"type": "node", "id": 8804963884, "lat": 40.4432058, "lon": -3.7055284}, {"type": "node", "id": 8804963885, "lat": 40.4432398, "lon": -3.7054377}, {"type": "node", "id": 8805121824, "lat": 40.4445845, "lon": -3.7064191}, {"type": "node", "id": 8805121864, "lat": 40.4446193, "lon": -3.7062924}, {"type": "node", "id": 8805121865, "lat": 40.4445731, "lon": -3.7064548}, {"type": "node", "id": 8805121866, "lat": 40.4445377, "lon": -3.7065616}, {"type": "node", "id": 8805121867, "lat": 40.4445593, "lon": -3.7064963, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8805121868, "lat": 40.4445949, "lon": -3.706381, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 8807066124, "lat": 40.4463075, "lon": -3.6952127}, {"type": "node", "id": 8807066125, "lat": 40.4463369, "lon": -3.6952569}, {"type": "node", "id": 8807066126, "lat": 40.4463242, "lon": -3.6951284}, {"type": "node", "id": 8807066127, "lat": 40.4463442, "lon": -3.6953073}, {"type": "node", "id": 8807066128, "lat": 40.4463684, "lon": -3.6952368}, {"type": "node", "id": 8807066129, "lat": 40.4463685, "lon": -3.6950062}, {"type": "node", "id": 8807066130, "lat": 40.4462865, "lon": -3.6951952}, {"type": "node", "id": 8807066131, "lat": 40.4463222, "lon": -3.6952307}, {"type": "node", "id": 8807066132, "lat": 40.4461344, "lon": -3.6951567}, {"type": "node", "id": 8807066133, "lat": 40.44509, "lon": -3.6951962}, {"type": "node", "id": 8807066134, "lat": 40.4449914, "lon": -3.6950326}, {"type": "node", "id": 8807066141, "lat": 40.4465892, "lon": -3.6950128}, {"type": "node", "id": 8807066142, "lat": 40.4467138, "lon": -3.6950106}, {"type": "node", "id": 8807066143, "lat": 40.4465287, "lon": -3.6948137}, {"type": "node", "id": 8807066144, "lat": 40.4461163, "lon": -3.6949212}, {"type": "node", "id": 8807066145, "lat": 40.445046, "lon": -3.6950755}, {"type": "node", "id": 8807066146, "lat": 40.4450118, "lon": -3.695181}, {"type": "node", "id": 8807066147, "lat": 40.4450383, "lon": -3.6951591}, {"type": "node", "id": 8807066153, "lat": 40.444778, "lon": -3.6949457}, {"type": "node", "id": 8807066154, "lat": 40.4448144, "lon": -3.6949451}, {"type": "node", "id": 8807066156, "lat": 40.4448636, "lon": -3.6949662}, {"type": "node", "id": 8807066157, "lat": 40.4448238, "lon": -3.6956927}, {"type": "node", "id": 8807066158, "lat": 40.4440688, "lon": -3.6957749}, {"type": "node", "id": 8807066159, "lat": 40.4440624, "lon": -3.6957493}, {"type": "node", "id": 8807066160, "lat": 40.4439596, "lon": -3.6958681}, {"type": "node", "id": 8807066161, "lat": 40.4439614, "lon": -3.6958394}, {"type": "node", "id": 8807066162, "lat": 40.4434605, "lon": -3.6958554}, {"type": "node", "id": 8807066163, "lat": 40.4436397, "lon": -3.6951912}, {"type": "node", "id": 8807066164, "lat": 40.4435242, "lon": -3.6951471}, {"type": "node", "id": 8807066165, "lat": 40.4437515, "lon": -3.6952045}, {"type": "node", "id": 8807066166, "lat": 40.4430565, "lon": -3.694851}, {"type": "node", "id": 8807066167, "lat": 40.4428718, "lon": -3.6947882}, {"type": "node", "id": 8807066168, "lat": 40.4428772, "lon": -3.6947366}, {"type": "node", "id": 8807066169, "lat": 40.442942, "lon": -3.6947085}, {"type": "node", "id": 8807066171, "lat": 40.443218, "lon": -3.6949737}, {"type": "node", "id": 8807066172, "lat": 40.4432519, "lon": -3.694949}, {"type": "node", "id": 8807066174, "lat": 40.4434226, "lon": -3.6950806}, {"type": "node", "id": 8807066175, "lat": 40.4435649, "lon": -3.694927}, {"type": "node", "id": 8807066176, "lat": 40.4434646, "lon": -3.6948115}, {"type": "node", "id": 8807066177, "lat": 40.443402, "lon": -3.6947502}, {"type": "node", "id": 8807066178, "lat": 40.4433983, "lon": -3.6946082}, {"type": "node", "id": 8807066179, "lat": 40.4434338, "lon": -3.6945895}, {"type": "node", "id": 8807066180, "lat": 40.443468, "lon": -3.6945805}, {"type": "node", "id": 8807066181, "lat": 40.4438326, "lon": -3.6949706}, {"type": "node", "id": 8807066182, "lat": 40.4438647, "lon": -3.694986}, {"type": "node", "id": 8807066183, "lat": 40.4437488, "lon": -3.6949571}, {"type": "node", "id": 8807066184, "lat": 40.4437771, "lon": -3.6949515}, {"type": "node", "id": 8807066185, "lat": 40.4438452, "lon": -3.694829}, {"type": "node", "id": 8807066186, "lat": 40.4438226, "lon": -3.694826}, {"type": "node", "id": 8807066187, "lat": 40.4441275, "lon": -3.6947101}, {"type": "node", "id": 8807066188, "lat": 40.444136, "lon": -3.6945365}, {"type": "node", "id": 8807066189, "lat": 40.4449036, "lon": -3.6948321}, {"type": "node", "id": 8807066190, "lat": 40.4449024, "lon": -3.6946658}, {"type": "node", "id": 8807066191, "lat": 40.444893, "lon": -3.6946565}, {"type": "node", "id": 8807066192, "lat": 40.4447972, "lon": -3.694662}, {"type": "node", "id": 8807066193, "lat": 40.4449036, "lon": -3.6946396}, {"type": "node", "id": 8807066194, "lat": 40.4448942, "lon": -3.6944902}, {"type": "node", "id": 8807066195, "lat": 40.4448836, "lon": -3.6944782}, {"type": "node", "id": 8807066196, "lat": 40.4449102, "lon": -3.6948178}, {"type": "node", "id": 8807066197, "lat": 40.4446865, "lon": -3.6948295}, {"type": "node", "id": 8807066198, "lat": 40.4432615, "lon": -3.6958512}, {"type": "node", "id": 8807066199, "lat": 40.4417649, "lon": -3.695999}, {"type": "node", "id": 8807066200, "lat": 40.4417023, "lon": -3.6951931}, {"type": "node", "id": 8807066201, "lat": 40.4416819, "lon": -3.6950212}, {"type": "node", "id": 8807066202, "lat": 40.441645, "lon": -3.6947715}, {"type": "node", "id": 8807066203, "lat": 40.4416879, "lon": -3.6948074}, {"type": "node", "id": 8807066204, "lat": 40.4417369, "lon": -3.6948338}, {"type": "node", "id": 8807066205, "lat": 40.4418013, "lon": -3.6948417}, {"type": "node", "id": 8807066206, "lat": 40.4417189, "lon": -3.6949001}, {"type": "node", "id": 8807066207, "lat": 40.4416148, "lon": -3.694919}, {"type": "node", "id": 8807066208, "lat": 40.4413273, "lon": -3.6945389}, {"type": "node", "id": 8807066209, "lat": 40.4414234, "lon": -3.6942857}, {"type": "node", "id": 8807066210, "lat": 40.4414453, "lon": -3.6942908}, {"type": "node", "id": 8807066211, "lat": 40.4412722, "lon": -3.6938108}, {"type": "node", "id": 8807066212, "lat": 40.4412622, "lon": -3.6936948}, {"type": "node", "id": 8807066213, "lat": 40.4412489, "lon": -3.693596}, {"type": "node", "id": 8807066214, "lat": 40.4412275, "lon": -3.693409}, {"type": "node", "id": 8807066215, "lat": 40.4412075, "lon": -3.6931311}, {"type": "node", "id": 8807066216, "lat": 40.4411829, "lon": -3.6927793}, {"type": "node", "id": 8807074817, "lat": 40.4411338, "lon": -3.692662}, {"type": "node", "id": 8807074818, "lat": 40.4411055, "lon": -3.6926433}, {"type": "node", "id": 8807074819, "lat": 40.4411134, "lon": -3.6927414}, {"type": "node", "id": 8807074820, "lat": 40.4411755, "lon": -3.6927317}, {"type": "node", "id": 8807074821, "lat": 40.4413643, "lon": -3.6923685}, {"type": "node", "id": 8807074822, "lat": 40.4411981, "lon": -3.6925295}, {"type": "node", "id": 8807074823, "lat": 40.4408266, "lon": -3.6922817}, {"type": "node", "id": 8807074824, "lat": 40.4408995, "lon": -3.6924607}, {"type": "node", "id": 8807074825, "lat": 40.4409208, "lon": -3.6925135}, {"type": "node", "id": 8807074826, "lat": 40.4409665, "lon": -3.692593}, {"type": "node", "id": 8807074827, "lat": 40.440853, "lon": -3.6926186}, {"type": "node", "id": 8807074828, "lat": 40.4404116, "lon": -3.6928002}, {"type": "node", "id": 8807074829, "lat": 40.4404003, "lon": -3.6927319}, {"type": "node", "id": 8807074830, "lat": 40.4403848, "lon": -3.6927031}, {"type": "node", "id": 8807074831, "lat": 40.4409092, "lon": -3.6926085}, {"type": "node", "id": 8807074832, "lat": 40.4409418, "lon": -3.6926004}, {"type": "node", "id": 8807074833, "lat": 40.4409902, "lon": -3.6926059}, {"type": "node", "id": 8807074834, "lat": 40.4409316, "lon": -3.6925422}, {"type": "node", "id": 8807074835, "lat": 40.4408515, "lon": -3.6923366}, {"type": "node", "id": 8807074836, "lat": 40.4410111, "lon": -3.6926119}, {"type": "node", "id": 8807074837, "lat": 40.4410717, "lon": -3.6926277}, {"type": "node", "id": 8807074838, "lat": 40.4410751, "lon": -3.6926113}, {"type": "node", "id": 8807074839, "lat": 40.4411015, "lon": -3.6925944}, {"type": "node", "id": 8807074840, "lat": 40.4411505, "lon": -3.6926787}, {"type": "node", "id": 8807074841, "lat": 40.4411385, "lon": -3.6920703}, {"type": "node", "id": 8807074842, "lat": 40.4413209, "lon": -3.6910672}, {"type": "node", "id": 8807074843, "lat": 40.4413648, "lon": -3.6910626}, {"type": "node", "id": 8807074844, "lat": 40.4409168, "lon": -3.6921292}, {"type": "node", "id": 8807074845, "lat": 40.4412186, "lon": -3.6921706}, {"type": "node", "id": 8807074846, "lat": 40.4411891, "lon": -3.6921743}, {"type": "node", "id": 8807074847, "lat": 40.4411952, "lon": -3.6921222}, {"type": "node", "id": 8807074848, "lat": 40.4412759, "lon": -3.6920846}, {"type": "node", "id": 8807074850, "lat": 40.4411456, "lon": -3.6921776}, {"type": "node", "id": 8807074851, "lat": 40.44108, "lon": -3.6921745}, {"type": "node", "id": 8807074852, "lat": 40.4410132, "lon": -3.6921645}, {"type": "node", "id": 8807074853, "lat": 40.4409666, "lon": -3.6921502}, {"type": "node", "id": 8807074854, "lat": 40.440968, "lon": -3.6921209}, {"type": "node", "id": 8807074855, "lat": 40.4410477, "lon": -3.6921234}, {"type": "node", "id": 8807074856, "lat": 40.4414712, "lon": -3.6922001}, {"type": "node", "id": 8807074857, "lat": 40.4415525, "lon": -3.6925043}, {"type": "node", "id": 8807074858, "lat": 40.4415167, "lon": -3.6926997}, {"type": "node", "id": 8807074859, "lat": 40.4413361, "lon": -3.6920364}, {"type": "node", "id": 8807074860, "lat": 40.4413923, "lon": -3.6919695}, {"type": "node", "id": 8807074861, "lat": 40.4416431, "lon": -3.6915825}, {"type": "node", "id": 8807074862, "lat": 40.4419384, "lon": -3.691869}, {"type": "node", "id": 8807074863, "lat": 40.4415001, "lon": -3.6920157}, {"type": "node", "id": 8807074864, "lat": 40.4420147, "lon": -3.6918407}, {"type": "node", "id": 8807074865, "lat": 40.4419258, "lon": -3.6913686}, {"type": "node", "id": 8807074866, "lat": 40.4409372, "lon": -3.6912055}, {"type": "node", "id": 8807074867, "lat": 40.4410455, "lon": -3.6912816}, {"type": "node", "id": 8807074868, "lat": 40.4410415, "lon": -3.6913349}, {"type": "node", "id": 8807074869, "lat": 40.4408683, "lon": -3.6913363}, {"type": "node", "id": 8807074870, "lat": 40.4406724, "lon": -3.6912734}, {"type": "node", "id": 8807074871, "lat": 40.4404504, "lon": -3.6911976}, {"type": "node", "id": 8807074872, "lat": 40.4402968, "lon": -3.6911393}, {"type": "node", "id": 8807074873, "lat": 40.4406144, "lon": -3.6911908}, {"type": "node", "id": 8807074874, "lat": 40.4407509, "lon": -3.691231}, {"type": "node", "id": 8807074875, "lat": 40.4410927, "lon": -3.6912312}, {"type": "node", "id": 8807074876, "lat": 40.4409555, "lon": -3.691275}, {"type": "node", "id": 8807074877, "lat": 40.4407872, "lon": -3.6912412}, {"type": "node", "id": 8807074878, "lat": 40.4409305, "lon": -3.6912713, "tags": {"crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 8807074879, "lat": 40.4409238, "lon": -3.6913544}, {"type": "node", "id": 8807074880, "lat": 40.4399274, "lon": -3.691009}, {"type": "node", "id": 8807074881, "lat": 40.4394395, "lon": -3.6908338}, {"type": "node", "id": 8807074882, "lat": 40.4389205, "lon": -3.69064}, {"type": "node", "id": 8807074883, "lat": 40.4388733, "lon": -3.6906132}, {"type": "node", "id": 8807074884, "lat": 40.4399604, "lon": -3.690991}, {"type": "node", "id": 8807074885, "lat": 40.4406683, "lon": -3.6915581}, {"type": "node", "id": 8807074886, "lat": 40.4405789, "lon": -3.691503}, {"type": "node", "id": 8807074887, "lat": 40.4406897, "lon": -3.6914622}, {"type": "node", "id": 8807074888, "lat": 40.4402522, "lon": -3.6915488}, {"type": "node", "id": 8807074889, "lat": 40.440747, "lon": -3.6916113}, {"type": "node", "id": 8807074890, "lat": 40.4408055, "lon": -3.691658}, {"type": "node", "id": 8807074891, "lat": 40.4412074, "lon": -3.6909909}, {"type": "node", "id": 8807074892, "lat": 40.4411841, "lon": -3.6909094}, {"type": "node", "id": 8807074900, "lat": 40.4413567, "lon": -3.6926446}, {"type": "node", "id": 8807074901, "lat": 40.4465561, "lon": -3.695472}, {"type": "node", "id": 8807074902, "lat": 40.4465845, "lon": -3.6955093}, {"type": "node", "id": 8807074903, "lat": 40.4466165, "lon": -3.6955339}, {"type": "node", "id": 8807074904, "lat": 40.4465347, "lon": -3.6954274}, {"type": "node", "id": 8815557566, "lat": 40.4458966, "lon": -3.6884886, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8815557567, "lat": 40.4451425, "lon": -3.6895763}, {"type": "node", "id": 8815557568, "lat": 40.4450616, "lon": -3.6895463}, {"type": "node", "id": 8815557569, "lat": 40.444909, "lon": -3.6895453}, {"type": "node", "id": 8815557570, "lat": 40.4449927, "lon": -3.6895458, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8822145839, "lat": 40.4349601, "lon": -3.7197809}, {"type": "node", "id": 8822145840, "lat": 40.4349629, "lon": -3.7198015}, {"type": "node", "id": 8822145841, "lat": 40.4349602, "lon": -3.7197657}, {"type": "node", "id": 8822145842, "lat": 40.4349688, "lon": -3.7197188}, {"type": "node", "id": 8822145843, "lat": 40.4349952, "lon": -3.7196655}, {"type": "node", "id": 8822145844, "lat": 40.4349642, "lon": -3.7197346}, {"type": "node", "id": 8822145845, "lat": 40.4361167, "lon": -3.7211133}, {"type": "node", "id": 8822145846, "lat": 40.4355355, "lon": -3.7202361}, {"type": "node", "id": 8822146144, "lat": 40.4364454, "lon": -3.7216177}, {"type": "node", "id": 8822146145, "lat": 40.4364235, "lon": -3.7216068}, {"type": "node", "id": 8822146146, "lat": 40.4364053, "lon": -3.721599}, {"type": "node", "id": 8822146147, "lat": 40.4363713, "lon": -3.7215814}, {"type": "node", "id": 8822146148, "lat": 40.436299, "lon": -3.7215444}, {"type": "node", "id": 8822146149, "lat": 40.4362783, "lon": -3.7215293}, {"type": "node", "id": 8822146150, "lat": 40.4363304, "lon": -3.7215613}, {"type": "node", "id": 8822146151, "lat": 40.4363909, "lon": -3.7215916}, {"type": "node", "id": 8822174612, "lat": 40.4349979, "lon": -3.7196065}, {"type": "node", "id": 8824409707, "lat": 40.4489399, "lon": -3.7020596, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8824409708, "lat": 40.4489459, "lon": -3.7021207, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8824409709, "lat": 40.4490371, "lon": -3.7021138}, {"type": "node", "id": 8824409710, "lat": 40.4490533, "lon": -3.7021264}, {"type": "node", "id": 8824409711, "lat": 40.4490402, "lon": -3.7015361}, {"type": "node", "id": 8824409712, "lat": 40.4485482, "lon": -3.7022976}, {"type": "node", "id": 8824409713, "lat": 40.448589, "lon": -3.7022751}, {"type": "node", "id": 8824409714, "lat": 40.4488242, "lon": -3.7020029}, {"type": "node", "id": 8824409715, "lat": 40.4488381, "lon": -3.7019736}, {"type": "node", "id": 8824409716, "lat": 40.4490355, "lon": -3.7020364}, {"type": "node", "id": 8824423717, "lat": 40.4490484, "lon": -3.7020185}, {"type": "node", "id": 8824423718, "lat": 40.4490499, "lon": -3.7019627}, {"type": "node", "id": 8846574699, "lat": 40.4439044, "lon": -3.7141322}, {"type": "node", "id": 8846574700, "lat": 40.4438993, "lon": -3.7140404, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 8846574701, "lat": 40.4439091, "lon": -3.713987, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8846574702, "lat": 40.4443723, "lon": -3.7139518}, {"type": "node", "id": 8846574703, "lat": 40.4444008, "lon": -3.7140037}, {"type": "node", "id": 8846574704, "lat": 40.444403, "lon": -3.7140944}, {"type": "node", "id": 8851032220, "lat": 40.4479452, "lon": -3.7038221}, {"type": "node", "id": 8863732308, "lat": 40.4236887, "lon": -3.695595}, {"type": "node", "id": 8863732309, "lat": 40.4236673, "lon": -3.6954899}, {"type": "node", "id": 8863732310, "lat": 40.4236435, "lon": -3.6950921, "tags": {"highway": "give_way"}}, {"type": "node", "id": 8866381039, "lat": 40.4291526, "lon": -3.7027834}, {"type": "node", "id": 8866381040, "lat": 40.4298355, "lon": -3.7059758}, {"type": "node", "id": 8866381041, "lat": 40.4299192, "lon": -3.7057883}, {"type": "node", "id": 8866381042, "lat": 40.4299599, "lon": -3.7034922}, {"type": "node", "id": 8866381043, "lat": 40.4300715, "lon": -3.703276}, {"type": "node", "id": 8866381044, "lat": 40.4301526, "lon": -3.7030122}, {"type": "node", "id": 8866381045, "lat": 40.4302005, "lon": -3.702997}, {"type": "node", "id": 8911132530, "lat": 40.4293127, "lon": -3.6878483}, {"type": "node", "id": 8911132531, "lat": 40.4284182, "lon": -3.6877844, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8911132532, "lat": 40.428383, "lon": -3.6874371}, {"type": "node", "id": 8911132534, "lat": 40.4283669, "lon": -3.6873024}, {"type": "node", "id": 8916338259, "lat": 40.4338524, "lon": -3.7087809}, {"type": "node", "id": 8916338260, "lat": 40.4338489, "lon": -3.7086116}, {"type": "node", "id": 8916338261, "lat": 40.4329611, "lon": -3.7086828}, {"type": "node", "id": 8916338262, "lat": 40.4329362, "lon": -3.7086606}, {"type": "node", "id": 8919158985, "lat": 40.4503076, "lon": -3.7225497}, {"type": "node", "id": 8919159000, "lat": 40.4515317, "lon": -3.7224301}, {"type": "node", "id": 8919225329, "lat": 40.4507646, "lon": -3.7217495}, {"type": "node", "id": 8919225425, "lat": 40.4508446, "lon": -3.7200014}, {"type": "node", "id": 8919225426, "lat": 40.450833, "lon": -3.7200645}, {"type": "node", "id": 8919225427, "lat": 40.4508301, "lon": -3.7201908}, {"type": "node", "id": 8919225428, "lat": 40.4508522, "lon": -3.7202726}, {"type": "node", "id": 8919225429, "lat": 40.4508286, "lon": -3.7203475}, {"type": "node", "id": 8919225430, "lat": 40.4507673, "lon": -3.7198527}, {"type": "node", "id": 8919225431, "lat": 40.4505945, "lon": -3.7198377}, {"type": "node", "id": 8919225432, "lat": 40.4507131, "lon": -3.7197327}, {"type": "node", "id": 8919225433, "lat": 40.4507849, "lon": -3.7197764}, {"type": "node", "id": 8919225434, "lat": 40.4507984, "lon": -3.7197225}, {"type": "node", "id": 8919225435, "lat": 40.450819, "lon": -3.719645}, {"type": "node", "id": 8919225436, "lat": 40.4507169, "lon": -3.7198365}, {"type": "node", "id": 8919225437, "lat": 40.4506624, "lon": -3.7198342}, {"type": "node", "id": 8919225438, "lat": 40.4505875, "lon": -3.7198439}, {"type": "node", "id": 8919931548, "lat": 40.4508799, "lon": -3.7200893, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8919931549, "lat": 40.4508321, "lon": -3.7201055, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 8930620532, "lat": 40.4462771, "lon": -3.6957239}, {"type": "node", "id": 8930620533, "lat": 40.4451213, "lon": -3.695791}, {"type": "node", "id": 8931354149, "lat": 40.4251598, "lon": -3.6902254}, {"type": "node", "id": 8933854104, "lat": 40.4246078, "lon": -3.6896894}, {"type": "node", "id": 8935124345, "lat": 40.4250204, "lon": -3.6940027}, {"type": "node", "id": 8935124346, "lat": 40.4250659, "lon": -3.6939253}, {"type": "node", "id": 8935124347, "lat": 40.4250847, "lon": -3.6939124}, {"type": "node", "id": 8935124348, "lat": 40.4253105, "lon": -3.6938343, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8935124349, "lat": 40.4254763, "lon": -3.69378, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 8935124350, "lat": 40.4257219, "lon": -3.6936946}, {"type": "node", "id": 8935124351, "lat": 40.4257491, "lon": -3.6936891}, {"type": "node", "id": 8936373768, "lat": 40.4419979, "lon": -3.7086145}, {"type": "node", "id": 8936373769, "lat": 40.4420895, "lon": -3.7087116}, {"type": "node", "id": 8936377434, "lat": 40.4253728, "lon": -3.6896573}, {"type": "node", "id": 8936377435, "lat": 40.4252622, "lon": -3.6896139}, {"type": "node", "id": 8953713869, "lat": 40.4522253, "lon": -3.6957923}, {"type": "node", "id": 8953723325, "lat": 40.430687, "lon": -3.6980093}, {"type": "node", "id": 8953723326, "lat": 40.4307221, "lon": -3.6978571}, {"type": "node", "id": 8953723327, "lat": 40.4306997, "lon": -3.6979311, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8953723328, "lat": 40.4308059, "lon": -3.6980623}, {"type": "node", "id": 8953723329, "lat": 40.4307058, "lon": -3.6980335}, {"type": "node", "id": 8953723330, "lat": 40.4307503, "lon": -3.6980463, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 8953723331, "lat": 40.4306783, "lon": -3.6982742}, {"type": "node", "id": 8953723332, "lat": 40.4306201, "lon": -3.6979838}, {"type": "node", "id": 8960475134, "lat": 40.4491499, "lon": -3.7144322}, {"type": "node", "id": 8960475860, "lat": 40.4487828, "lon": -3.7133507}, {"type": "node", "id": 8960475861, "lat": 40.4488275, "lon": -3.7133996}, {"type": "node", "id": 8963957716, "lat": 40.4376947, "lon": -3.6945081, "tags": {"barrier": "gate"}}, {"type": "node", "id": 8963996217, "lat": 40.4376551, "lon": -3.6941524, "tags": {"access": "private", "amenity": "parking_entrance"}}, {"type": "node", "id": 8963996218, "lat": 40.4376735, "lon": -3.6946027}, {"type": "node", "id": 8963996219, "lat": 40.4376802, "lon": -3.6941515, "tags": {"access": "private", "amenity": "parking_entrance"}}, {"type": "node", "id": 9020774011, "lat": 40.4448638, "lon": -3.686256}, {"type": "node", "id": 9020774012, "lat": 40.4448693, "lon": -3.6864772}, {"type": "node", "id": 9020774013, "lat": 40.4447997, "lon": -3.6864745, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 9024683703, "lat": 40.4272481, "lon": -3.7038148}, {"type": "node", "id": 9047955459, "lat": 40.4239636, "lon": -3.7021772}, {"type": "node", "id": 9049533282, "lat": 40.4268261, "lon": -3.6938238}, {"type": "node", "id": 9049533283, "lat": 40.4268668, "lon": -3.693897}, {"type": "node", "id": 9049533284, "lat": 40.4275457, "lon": -3.693838}, {"type": "node", "id": 9050570326, "lat": 40.4270124, "lon": -3.6863955}, {"type": "node", "id": 9050570327, "lat": 40.426552, "lon": -3.6864595}, {"type": "node", "id": 9051008009, "lat": 40.4249709, "lon": -3.7008257, "tags": {"crossing": "zebra", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 9053166224, "lat": 40.4400345, "lon": -3.6971797}, {"type": "node", "id": 9053166225, "lat": 40.4401705, "lon": -3.6975517}, {"type": "node", "id": 9053166226, "lat": 40.4401784, "lon": -3.6976497}, {"type": "node", "id": 9054511958, "lat": 40.4228969, "lon": -3.6888088}, {"type": "node", "id": 9054511963, "lat": 40.4232118, "lon": -3.688725}, {"type": "node", "id": 9054511966, "lat": 40.4368154, "lon": -3.6863066}, {"type": "node", "id": 9054511967, "lat": 40.4414662, "lon": -3.6881622}, {"type": "node", "id": 9054511970, "lat": 40.4236027, "lon": -3.6901429, "tags": {"entrance": "yes"}}, {"type": "node", "id": 9054511974, "lat": 40.4233709, "lon": -3.6887366}, {"type": "node", "id": 9054511975, "lat": 40.4368131, "lon": -3.6860674}, {"type": "node", "id": 9054511977, "lat": 40.4232493, "lon": -3.6886614}, {"type": "node", "id": 9054511979, "lat": 40.4370337, "lon": -3.6860138}, {"type": "node", "id": 9054511981, "lat": 40.4229537, "lon": -3.6888542}, {"type": "node", "id": 9054511983, "lat": 40.4404909, "lon": -3.6878265}, {"type": "node", "id": 9054511990, "lat": 40.4371224, "lon": -3.6862886}, {"type": "node", "id": 9054511991, "lat": 40.4414951, "lon": -3.6881713}, {"type": "node", "id": 9054511993, "lat": 40.4228031, "lon": -3.6888677}, {"type": "node", "id": 9054511995, "lat": 40.4237961, "lon": -3.690351}, {"type": "node", "id": 9054511996, "lat": 40.4229584, "lon": -3.6889365, "tags": {"entrance": "main"}}, {"type": "node", "id": 9054511999, "lat": 40.4369365, "lon": -3.6860209}, {"type": "node", "id": 9054512001, "lat": 40.4368183, "lon": -3.6863747}, {"type": "node", "id": 9054512002, "lat": 40.4414512, "lon": -3.6881762}, {"type": "node", "id": 9054512004, "lat": 40.4227748, "lon": -3.6890335}, {"type": "node", "id": 9054512006, "lat": 40.4404979, "lon": -3.6878012}, {"type": "node", "id": 9054512009, "lat": 40.4232985, "lon": -3.6885656}, {"type": "node", "id": 9054512011, "lat": 40.4408384, "lon": -3.6883145}, {"type": "node", "id": 9054512013, "lat": 40.4370714, "lon": -3.6860297}, {"type": "node", "id": 9054512015, "lat": 40.4231988, "lon": -3.6886683}, {"type": "node", "id": 9054521317, "lat": 40.4368245, "lon": -3.686037}, {"type": "node", "id": 9054521322, "lat": 40.4232791, "lon": -3.6883901, "tags": {"barrier": "gate"}}, {"type": "node", "id": 9054521326, "lat": 40.4371252, "lon": -3.6863434}, {"type": "node", "id": 9054521327, "lat": 40.44148, "lon": -3.6881639}, {"type": "node", "id": 9054521329, "lat": 40.4227618, "lon": -3.6889422}, {"type": "node", "id": 9054521331, "lat": 40.4369334, "lon": -3.6859313, "tags": {"entrance": "main"}}, {"type": "node", "id": 9054521332, "lat": 40.4236735, "lon": -3.6904057}, {"type": "node", "id": 9054521333, "lat": 40.4237392, "lon": -3.6901353, "tags": {"entrance": "main"}}, {"type": "node", "id": 9054521334, "lat": 40.4232629, "lon": -3.6882332}, {"type": "node", "id": 9054521336, "lat": 40.4408167, "lon": -3.6884084}, {"type": "node", "id": 9054521339, "lat": 40.4231251, "lon": -3.6887653}, {"type": "node", "id": 9054521340, "lat": 40.436854, "lon": -3.6860269}, {"type": "node", "id": 9054521342, "lat": 40.4414445, "lon": -3.6881993}, {"type": "node", "id": 9054521348, "lat": 40.4233484, "lon": -3.6886509}, {"type": "node", "id": 9054521349, "lat": 40.4370995, "lon": -3.6860766}, {"type": "node", "id": 9063249262, "lat": 40.4266267, "lon": -3.7154192}, {"type": "node", "id": 9063249263, "lat": 40.4266486, "lon": -3.7154413}, {"type": "node", "id": 9063249264, "lat": 40.4269615, "lon": -3.7150678}, {"type": "node", "id": 9083393653, "lat": 40.4258985, "lon": -3.7007064}, {"type": "node", "id": 9083393655, "lat": 40.4259524, "lon": -3.7005871}, {"type": "node", "id": 9083393657, "lat": 40.4261944, "lon": -3.7005415}, {"type": "node", "id": 9083393659, "lat": 40.4260775, "lon": -3.7004471}, {"type": "node", "id": 9083393661, "lat": 40.4258974, "lon": -3.7007087}, {"type": "node", "id": 9083393662, "lat": 40.4260009, "lon": -3.7006108}, {"type": "node", "id": 9083393663, "lat": 40.4258858, "lon": -3.7006965}, {"type": "node", "id": 9083393665, "lat": 40.4260234, "lon": -3.7008059}, {"type": "node", "id": 9083393666, "lat": 40.4258834, "lon": -3.7006947, "tags": {"door": "hinged", "entrance": "main", "wheelchair": "no"}}, {"type": "node", "id": 9083393668, "lat": 40.4261178, "lon": -3.7007052}, {"type": "node", "id": 9092836278, "lat": 40.4307802, "lon": -3.7210723}, {"type": "node", "id": 9092836279, "lat": 40.4309325, "lon": -3.7207131}, {"type": "node", "id": 9115409840, "lat": 40.4473992, "lon": -3.7176007}, {"type": "node", "id": 9115409841, "lat": 40.4475844, "lon": -3.7174653}, {"type": "node", "id": 9115409842, "lat": 40.4489382, "lon": -3.7166016}, {"type": "node", "id": 9115409843, "lat": 40.4489943, "lon": -3.7165976}, {"type": "node", "id": 9115409844, "lat": 40.4490403, "lon": -3.7166217}, {"type": "node", "id": 9115409845, "lat": 40.4486064, "lon": -3.7165769}, {"type": "node", "id": 9115409846, "lat": 40.448669, "lon": -3.7167548}, {"type": "node", "id": 9115409847, "lat": 40.4486058, "lon": -3.7165135}, {"type": "node", "id": 9115409848, "lat": 40.4487749, "lon": -3.7164212}, {"type": "node", "id": 9115409849, "lat": 40.4466093, "lon": -3.7139675}, {"type": "node", "id": 9115409850, "lat": 40.4466465, "lon": -3.7140889}, {"type": "node", "id": 9115409851, "lat": 40.4461985, "lon": -3.713804}, {"type": "node", "id": 9115409852, "lat": 40.4461862, "lon": -3.713804}, {"type": "node", "id": 9115409853, "lat": 40.446174, "lon": -3.7138215}, {"type": "node", "id": 9115409854, "lat": 40.4460484, "lon": -3.7143559}, {"type": "node", "id": 9115409855, "lat": 40.4459888, "lon": -3.7147858}, {"type": "node", "id": 9115409857, "lat": 40.4463806, "lon": -3.7149695}, {"type": "node", "id": 9115409858, "lat": 40.4464148, "lon": -3.7149825}, {"type": "node", "id": 9115409859, "lat": 40.4464304, "lon": -3.7149742}, {"type": "node", "id": 9115409860, "lat": 40.446436, "lon": -3.7149567}, {"type": "node", "id": 9115409861, "lat": 40.4464118, "lon": -3.7149571}, {"type": "node", "id": 9115409862, "lat": 40.4465536, "lon": -3.7143921}, {"type": "node", "id": 9115409863, "lat": 40.4465452, "lon": -3.7143888}, {"type": "node", "id": 9115409864, "lat": 40.4466172, "lon": -3.7141219}, {"type": "node", "id": 9115409865, "lat": 40.4466419, "lon": -3.7141101}, {"type": "node", "id": 9115409867, "lat": 40.4466621, "lon": -3.7140236}, {"type": "node", "id": 9115409868, "lat": 40.4466577, "lon": -3.7139978}, {"type": "node", "id": 9115409869, "lat": 40.4466475, "lon": -3.7139827}, {"type": "node", "id": 9115409871, "lat": 40.4467979, "lon": -3.7138068}, {"type": "node", "id": 9115409872, "lat": 40.4468999, "lon": -3.7136117}, {"type": "node", "id": 9115409873, "lat": 40.4470166, "lon": -3.7136631}, {"type": "node", "id": 9115409874, "lat": 40.4467945, "lon": -3.7141324}, {"type": "node", "id": 9115409875, "lat": 40.4468517, "lon": -3.7138957}, {"type": "node", "id": 9115409876, "lat": 40.4484158, "lon": -3.7127769}, {"type": "node", "id": 9115409877, "lat": 40.4485325, "lon": -3.7128283}, {"type": "node", "id": 9115409878, "lat": 40.4477778, "lon": -3.7142721}, {"type": "node", "id": 9115409883, "lat": 40.4480268, "lon": -3.7144156}, {"type": "node", "id": 9115409887, "lat": 40.4484321, "lon": -3.7127073}, {"type": "node", "id": 9115409888, "lat": 40.4472265, "lon": -3.7121824}, {"type": "node", "id": 9115409890, "lat": 40.4472064, "lon": -3.7121863}, {"type": "node", "id": 9115409893, "lat": 40.446797, "lon": -3.7138684}, {"type": "node", "id": 9115409895, "lat": 40.4480033, "lon": -3.7147154}, {"type": "node", "id": 9115409896, "lat": 40.4478988, "lon": -3.7144367}, {"type": "node", "id": 9116676507, "lat": 40.4463765, "lon": -3.7154261}, {"type": "node", "id": 9116676508, "lat": 40.446364, "lon": -3.7154251}, {"type": "node", "id": 9116676509, "lat": 40.4463413, "lon": -3.7155049}, {"type": "node", "id": 9116676510, "lat": 40.4463082, "lon": -3.715577}, {"type": "node", "id": 9116676511, "lat": 40.4462689, "lon": -3.7156343}, {"type": "node", "id": 9116676512, "lat": 40.4462265, "lon": -3.7156819}, {"type": "node", "id": 9116676513, "lat": 40.4461689, "lon": -3.7157091}, {"type": "node", "id": 9116676514, "lat": 40.4461617, "lon": -3.7157285}, {"type": "node", "id": 9116676515, "lat": 40.4467131, "lon": -3.7171133}, {"type": "node", "id": 9116676516, "lat": 40.4467496, "lon": -3.7172285}, {"type": "node", "id": 9116676717, "lat": 40.4467835, "lon": -3.7174173}, {"type": "node", "id": 9116676718, "lat": 40.4467945, "lon": -3.7175799}, {"type": "node", "id": 9116676719, "lat": 40.4467844, "lon": -3.717915}, {"type": "node", "id": 9116676720, "lat": 40.4468409, "lon": -3.7179413}, {"type": "node", "id": 9116676721, "lat": 40.4472216, "lon": -3.7175444}, {"type": "node", "id": 9116676722, "lat": 40.4469195, "lon": -3.7191248}, {"type": "node", "id": 9116676723, "lat": 40.446819, "lon": -3.7183366}, {"type": "node", "id": 9116676724, "lat": 40.4468659, "lon": -3.718687}, {"type": "node", "id": 9116676725, "lat": 40.4468919, "lon": -3.7188996}, {"type": "node", "id": 9116676726, "lat": 40.4468977, "lon": -3.7189879}, {"type": "node", "id": 9116676727, "lat": 40.4469575, "lon": -3.7191946}, {"type": "node", "id": 9116676728, "lat": 40.447007, "lon": -3.7192714}, {"type": "node", "id": 9116676729, "lat": 40.4470619, "lon": -3.7193093}, {"type": "node", "id": 9116676730, "lat": 40.4474211, "lon": -3.7194467}, {"type": "node", "id": 9116676731, "lat": 40.4468567, "lon": -3.719381}, {"type": "node", "id": 9116676732, "lat": 40.446772, "lon": -3.7194065}, {"type": "node", "id": 9116676733, "lat": 40.4467123, "lon": -3.7192489}, {"type": "node", "id": 9116676734, "lat": 40.4466511, "lon": -3.7193763}, {"type": "node", "id": 9116676735, "lat": 40.4465648, "lon": -3.7195138}, {"type": "node", "id": 9116676736, "lat": 40.4465036, "lon": -3.7195701}, {"type": "node", "id": 9116676738, "lat": 40.4459224, "lon": -3.7199932}, {"type": "node", "id": 9116676739, "lat": 40.4458004, "lon": -3.7201106}, {"type": "node", "id": 9116676740, "lat": 40.445729, "lon": -3.7201884}, {"type": "node", "id": 9116676741, "lat": 40.4456642, "lon": -3.7202729}, {"type": "node", "id": 9116676742, "lat": 40.4455861, "lon": -3.7204418}, {"type": "node", "id": 9116676743, "lat": 40.4455519, "lon": -3.72058}, {"type": "node", "id": 9116858052, "lat": 40.4485784, "lon": -3.7120583, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858053, "lat": 40.4485899, "lon": -3.7120108}, {"type": "node", "id": 9116858054, "lat": 40.4485667, "lon": -3.7121069}, {"type": "node", "id": 9116858055, "lat": 40.4485111, "lon": -3.7125809, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858056, "lat": 40.4485785, "lon": -3.7127348, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858057, "lat": 40.4485878, "lon": -3.7126967}, {"type": "node", "id": 9116858058, "lat": 40.4485624, "lon": -3.712798}, {"type": "node", "id": 9116858059, "lat": 40.4484657, "lon": -3.7125576}, {"type": "node", "id": 9116858060, "lat": 40.4485762, "lon": -3.7126144}, {"type": "node", "id": 9116858061, "lat": 40.4485611, "lon": -3.7126856}, {"type": "node", "id": 9116858062, "lat": 40.4484196, "lon": -3.7126641, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858063, "lat": 40.448433, "lon": -3.7126124}, {"type": "node", "id": 9116858064, "lat": 40.4484108, "lon": -3.712698}, {"type": "node", "id": 9116858065, "lat": 40.4473431, "lon": -3.7113953, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858066, "lat": 40.4473958, "lon": -3.7115492, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858067, "lat": 40.4472564, "lon": -3.7121386, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858068, "lat": 40.4471408, "lon": -3.712023}, {"type": "node", "id": 9116858071, "lat": 40.4472973, "lon": -3.7113748}, {"type": "node", "id": 9116858072, "lat": 40.4474003, "lon": -3.711421}, {"type": "node", "id": 9116858073, "lat": 40.4474067, "lon": -3.7115044}, {"type": "node", "id": 9116858074, "lat": 40.4473876, "lon": -3.7115832}, {"type": "node", "id": 9116858075, "lat": 40.4471825, "lon": -3.7120393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858076, "lat": 40.4472413, "lon": -3.7120624}, {"type": "node", "id": 9116858077, "lat": 40.447264, "lon": -3.7121091}, {"type": "node", "id": 9116858078, "lat": 40.4472434, "lon": -3.7121897}, {"type": "node", "id": 9116858079, "lat": 40.4484371, "lon": -3.7126141}, {"type": "node", "id": 9116858080, "lat": 40.4472331, "lon": -3.7120958}, {"type": "node", "id": 9116858081, "lat": 40.4473586, "lon": -3.7115842}, {"type": "node", "id": 9116858082, "lat": 40.447372, "lon": -3.7115763}, {"type": "node", "id": 9116858083, "lat": 40.4485718, "lon": -3.7121092}, {"type": "node", "id": 9116858084, "lat": 40.4484519, "lon": -3.7126158}, {"type": "node", "id": 9116858085, "lat": 40.4472642, "lon": -3.7176266, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858086, "lat": 40.4472178, "lon": -3.7175484}, {"type": "node", "id": 9116858087, "lat": 40.4473067, "lon": -3.7176982}, {"type": "node", "id": 9116858088, "lat": 40.4463335, "lon": -3.7154115, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858089, "lat": 40.4462935, "lon": -3.7153936}, {"type": "node", "id": 9116858090, "lat": 40.449111, "lon": -3.7187101, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858091, "lat": 40.4490426, "lon": -3.7187001}, {"type": "node", "id": 9116858092, "lat": 40.4491605, "lon": -3.7187173}, {"type": "node", "id": 9116858093, "lat": 40.4468394, "lon": -3.7180485, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 9116858094, "lat": 40.4472675, "lon": -3.7174927, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9116858095, "lat": 40.4463823, "lon": -3.7154407}, {"type": "node", "id": 9116858096, "lat": 40.4464745, "lon": -3.7153501}, {"type": "node", "id": 9116858097, "lat": 40.4466241, "lon": -3.7139, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858098, "lat": 40.4468297, "lon": -3.7139867, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9116858099, "lat": 40.4467496, "lon": -3.7137865, "tags": {"highway": "traffic_signals", "traffic_signals": "signal"}}, {"type": "node", "id": 9116858100, "lat": 40.4469939, "lon": -3.7125228, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858101, "lat": 40.4470375, "lon": -3.7126244, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9116858102, "lat": 40.44698, "lon": -3.7125788}, {"type": "node", "id": 9116858103, "lat": 40.4469992, "lon": -3.7126072}, {"type": "node", "id": 9116858104, "lat": 40.44709, "lon": -3.712648}, {"type": "node", "id": 9116858105, "lat": 40.4480328, "lon": -3.7143904}, {"type": "node", "id": 9116858106, "lat": 40.4484595, "lon": -3.7127961, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing"}}, {"type": "node", "id": 9116858107, "lat": 40.4486458, "lon": -3.7166888, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9116858108, "lat": 40.4486943, "lon": -3.7164652, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9128991226, "lat": 40.4284325, "lon": -3.6879424}, {"type": "node", "id": 9130000726, "lat": 40.4331383, "lon": -3.6900338}, {"type": "node", "id": 9139732325, "lat": 40.4508463, "lon": -3.6952871}, {"type": "node", "id": 9139732326, "lat": 40.4507789, "lon": -3.6952899}, {"type": "node", "id": 9152508753, "lat": 40.4505689, "lon": -3.6927975}, {"type": "node", "id": 9152508754, "lat": 40.4505679, "lon": -3.6927749}, {"type": "node", "id": 9157684230, "lat": 40.4347348, "lon": -3.6989931}, {"type": "node", "id": 9157684231, "lat": 40.434707, "lon": -3.6989439}, {"type": "node", "id": 9157684232, "lat": 40.4346714, "lon": -3.6988328}, {"type": "node", "id": 9157684233, "lat": 40.4335192, "lon": -3.7004725}, {"type": "node", "id": 9157684234, "lat": 40.4335363, "lon": -3.700516}, {"type": "node", "id": 9157684235, "lat": 40.4341676, "lon": -3.7014459}, {"type": "node", "id": 9157684236, "lat": 40.4341293, "lon": -3.7014664}, {"type": "node", "id": 9157684237, "lat": 40.4332231, "lon": -3.7010764}, {"type": "node", "id": 9157684238, "lat": 40.4332246, "lon": -3.7010054}, {"type": "node", "id": 9157684239, "lat": 40.4332191, "lon": -3.7009377}, {"type": "node", "id": 9157684240, "lat": 40.43321, "lon": -3.7008825}, {"type": "node", "id": 9157684241, "lat": 40.4331964, "lon": -3.7008296}, {"type": "node", "id": 9157684242, "lat": 40.433188, "lon": -3.7008068}, {"type": "node", "id": 9157684243, "lat": 40.4335407, "lon": -3.7005723}, {"type": "node", "id": 9157684244, "lat": 40.4335613, "lon": -3.7005729}, {"type": "node", "id": 9157684245, "lat": 40.4343071, "lon": -3.700882}, {"type": "node", "id": 9157684246, "lat": 40.4343278, "lon": -3.7007984}, {"type": "node", "id": 9157684247, "lat": 40.4335576, "lon": -3.7004838}, {"type": "node", "id": 9157684248, "lat": 40.4335527, "lon": -3.7004725}, {"type": "node", "id": 9157684249, "lat": 40.4336846, "lon": -3.6999345}, {"type": "node", "id": 9157684250, "lat": 40.4336937, "lon": -3.699928}, {"type": "node", "id": 9157684251, "lat": 40.4344651, "lon": -3.7002435}, {"type": "node", "id": 9157684252, "lat": 40.4343172, "lon": -3.700841, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9157684253, "lat": 40.4344987, "lon": -3.7001076}, {"type": "node", "id": 9157684254, "lat": 40.4337331, "lon": -3.6997889}, {"type": "node", "id": 9157684255, "lat": 40.4337251, "lon": -3.699772}, {"type": "node", "id": 9157684256, "lat": 40.4338656, "lon": -3.6992131}, {"type": "node", "id": 9157684257, "lat": 40.4338742, "lon": -3.6992046}, {"type": "node", "id": 9157684258, "lat": 40.4346446, "lon": -3.699518}, {"type": "node", "id": 9157684259, "lat": 40.434482, "lon": -3.7001751, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684260, "lat": 40.4346652, "lon": -3.6994346}, {"type": "node", "id": 9157684261, "lat": 40.4338917, "lon": -3.6991244}, {"type": "node", "id": 9157684262, "lat": 40.433886, "lon": -3.6991127}, {"type": "node", "id": 9157684263, "lat": 40.4340363, "lon": -3.6985129}, {"type": "node", "id": 9157684264, "lat": 40.4347031, "lon": -3.6992814}, {"type": "node", "id": 9157684265, "lat": 40.4347379, "lon": -3.6991387}, {"type": "node", "id": 9157684266, "lat": 40.4346973, "lon": -3.6992472}, {"type": "node", "id": 9157684267, "lat": 40.4347176, "lon": -3.6991602}, {"type": "node", "id": 9157684311, "lat": 40.4335804, "lon": -3.7004932}, {"type": "node", "id": 9157684312, "lat": 40.4335715, "lon": -3.7005306, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684313, "lat": 40.4337179, "lon": -3.6999379}, {"type": "node", "id": 9157684314, "lat": 40.4337524, "lon": -3.699797}, {"type": "node", "id": 9157684315, "lat": 40.4337322, "lon": -3.69988, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684316, "lat": 40.4338902, "lon": -3.6992111}, {"type": "node", "id": 9157684317, "lat": 40.4339103, "lon": -3.6991318}, {"type": "node", "id": 9157684318, "lat": 40.4339009, "lon": -3.6991689, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684319, "lat": 40.4339777, "lon": -3.6984876}, {"type": "node", "id": 9157684320, "lat": 40.4340083, "lon": -3.6985006, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684321, "lat": 40.4344523, "lon": -3.7002952}, {"type": "node", "id": 9157684322, "lat": 40.4346493, "lon": -3.7003769}, {"type": "node", "id": 9157684323, "lat": 40.4345486, "lon": -3.7003351, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684324, "lat": 40.4343749, "lon": -3.7015358}, {"type": "node", "id": 9157684325, "lat": 40.4342652, "lon": -3.7014882, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9157684326, "lat": 40.4329411, "lon": -3.7003426, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 9157684327, "lat": 40.4329153, "lon": -3.7004666}, {"type": "node", "id": 9157684328, "lat": 40.4331542, "lon": -3.7007341}, {"type": "node", "id": 9157684329, "lat": 40.4330412, "lon": -3.7005991}, {"type": "node", "id": 9157684330, "lat": 40.433209, "lon": -3.7007928}, {"type": "node", "id": 9157684331, "lat": 40.4331564, "lon": -3.7010556}, {"type": "node", "id": 9157684332, "lat": 40.4332449, "lon": -3.7010846}, {"type": "node", "id": 9157684333, "lat": 40.4346566, "lon": -3.6994692, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9158965236, "lat": 40.4507667, "lon": -3.6914528}, {"type": "node", "id": 9158965237, "lat": 40.4507593, "lon": -3.6913271}, {"type": "node", "id": 9158965238, "lat": 40.4508096, "lon": -3.6914495}, {"type": "node", "id": 9164484290, "lat": 40.4329662, "lon": -3.7004903}, {"type": "node", "id": 9164484291, "lat": 40.4335269, "lon": -3.698299}, {"type": "node", "id": 9164484292, "lat": 40.4334928, "lon": -3.7004364}, {"type": "node", "id": 9164484293, "lat": 40.4336799, "lon": -3.6999538}, {"type": "node", "id": 9164484294, "lat": 40.4336191, "lon": -3.6999287}, {"type": "node", "id": 9164484295, "lat": 40.4336498, "lon": -3.6999413, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484296, "lat": 40.4336605, "lon": -3.6998976, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9164484297, "lat": 40.4336218, "lon": -3.6999176}, {"type": "node", "id": 9164484298, "lat": 40.4336634, "lon": -3.6997505}, {"type": "node", "id": 9164484299, "lat": 40.4336171, "lon": -3.6998938}, {"type": "node", "id": 9164484300, "lat": 40.433208, "lon": -3.6997279}, {"type": "node", "id": 9164484301, "lat": 40.4331532, "lon": -3.6997592}, {"type": "node", "id": 9164484302, "lat": 40.4332048, "lon": -3.6995578}, {"type": "node", "id": 9164484303, "lat": 40.4332132, "lon": -3.6995785}, {"type": "node", "id": 9164484304, "lat": 40.4336509, "lon": -3.6997618}, {"type": "node", "id": 9164484305, "lat": 40.4331818, "lon": -3.6997429}, {"type": "node", "id": 9164484306, "lat": 40.4332229, "lon": -3.6995826}, {"type": "node", "id": 9164484307, "lat": 40.4332053, "lon": -3.6996512, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484308, "lat": 40.4335969, "lon": -3.6998856}, {"type": "node", "id": 9164484309, "lat": 40.4336292, "lon": -3.6997527}, {"type": "node", "id": 9164484310, "lat": 40.433611, "lon": -3.6998276, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484311, "lat": 40.4338027, "lon": -3.6991908}, {"type": "node", "id": 9164484312, "lat": 40.43383, "lon": -3.6990812}, {"type": "node", "id": 9164484313, "lat": 40.4337976, "lon": -3.6991764}, {"type": "node", "id": 9164484314, "lat": 40.4333616, "lon": -3.6989958}, {"type": "node", "id": 9164484315, "lat": 40.4333467, "lon": -3.6990034}, {"type": "node", "id": 9164484316, "lat": 40.4333741, "lon": -3.698896}, {"type": "node", "id": 9164484317, "lat": 40.4333802, "lon": -3.6989127}, {"type": "node", "id": 9164484318, "lat": 40.4338184, "lon": -3.699091}, {"type": "node", "id": 9164484319, "lat": 40.433862, "lon": -3.6992274}, {"type": "node", "id": 9164484320, "lat": 40.4337998, "lon": -3.6992022}, {"type": "node", "id": 9164484321, "lat": 40.4338306, "lon": -3.6992147, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9164484322, "lat": 40.4337791, "lon": -3.6991687}, {"type": "node", "id": 9164484323, "lat": 40.4338003, "lon": -3.6990836}, {"type": "node", "id": 9164484324, "lat": 40.4337905, "lon": -3.699123, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484325, "lat": 40.433892, "lon": -3.6990887}, {"type": "node", "id": 9164484326, "lat": 40.4338344, "lon": -3.6990634}, {"type": "node", "id": 9164484327, "lat": 40.4338649, "lon": -3.6990768, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9164484328, "lat": 40.4333621, "lon": -3.6989426, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 9164484333, "lat": 40.4338881, "lon": -3.6984074}, {"type": "node", "id": 9164484334, "lat": 40.4338569, "lon": -3.6984327}, {"type": "node", "id": 9164484335, "lat": 40.4331487, "lon": -3.7006702}, {"type": "node", "id": 9164484336, "lat": 40.4331186, "lon": -3.7006258}, {"type": "node", "id": 9164484337, "lat": 40.433094, "lon": -3.7005947}, {"type": "node", "id": 9164484338, "lat": 40.4330645, "lon": -3.7005658}, {"type": "node", "id": 9164484339, "lat": 40.4330339, "lon": -3.7005384}, {"type": "node", "id": 9164484340, "lat": 40.4330044, "lon": -3.7005144}, {"type": "node", "id": 9164484341, "lat": 40.4335577, "lon": -3.7004522}, {"type": "node", "id": 9164484342, "lat": 40.4334954, "lon": -3.7004258}, {"type": "node", "id": 9164484343, "lat": 40.4335274, "lon": -3.7004393, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484344, "lat": 40.4336665, "lon": -3.6997381}, {"type": "node", "id": 9164484345, "lat": 40.4337272, "lon": -3.6997637}, {"type": "node", "id": 9164484346, "lat": 40.4336969, "lon": -3.6997509, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9164484347, "lat": 40.4334165, "lon": -3.6982514}, {"type": "node", "id": 9164484348, "lat": 40.4334691, "lon": -3.6982735, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals": "signal"}}, {"type": "node", "id": 9164484349, "lat": 40.4335434, "lon": -3.6982901}, {"type": "node", "id": 9165503376, "lat": 40.4324181, "lon": -3.700034}, {"type": "node", "id": 9165503377, "lat": 40.4324523, "lon": -3.700002}, {"type": "node", "id": 9165503378, "lat": 40.4324423, "lon": -3.7000279}, {"type": "node", "id": 9165503396, "lat": 40.4328335, "lon": -3.7005262}, {"type": "node", "id": 9165503397, "lat": 40.433048, "lon": -3.6996873}, {"type": "node", "id": 9165503398, "lat": 40.4330393, "lon": -3.699658}, {"type": "node", "id": 9165503399, "lat": 40.432391, "lon": -3.7000791, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 9165503400, "lat": 40.4324689, "lon": -3.7000333, "tags": {"barrier": "kerb", "kerb": "flush"}}, {"type": "node", "id": 9165503401, "lat": 40.4329738, "lon": -3.6980419}, {"type": "node", "id": 9165503402, "lat": 40.4326244, "lon": -3.6994881}, {"type": "node", "id": 9165503403, "lat": 40.4326043, "lon": -3.6994991}, {"type": "node", "id": 9165503404, "lat": 40.4326492, "lon": -3.6993219}, {"type": "node", "id": 9165503405, "lat": 40.4326566, "lon": -3.6993482}, {"type": "node", "id": 9165503406, "lat": 40.4330752, "lon": -3.6995198}, {"type": "node", "id": 9165503407, "lat": 40.4330933, "lon": -3.6995106}, {"type": "node", "id": 9165503408, "lat": 40.4327858, "lon": -3.6987835}, {"type": "node", "id": 9165503409, "lat": 40.4328209, "lon": -3.6987635}, {"type": "node", "id": 9165503410, "lat": 40.4332253, "lon": -3.6989391}, {"type": "node", "id": 9165503411, "lat": 40.4332349, "lon": -3.6989588}, {"type": "node", "id": 9165503412, "lat": 40.4332628, "lon": -3.6988503}, {"type": "node", "id": 9165503413, "lat": 40.4332489, "lon": -3.6988592}, {"type": "node", "id": 9165503414, "lat": 40.4328233, "lon": -3.6986859}, {"type": "node", "id": 9165503415, "lat": 40.4328159, "lon": -3.6986647}, {"type": "node", "id": 9165503416, "lat": 40.4328392, "lon": -3.6986923}, {"type": "node", "id": 9165505517, "lat": 40.4328313, "lon": -3.698723, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505518, "lat": 40.4334081, "lon": -3.6982261}, {"type": "node", "id": 9165505519, "lat": 40.4332508, "lon": -3.6988969, "tags": {"crossing": "unmarked", "highway": "crossing"}}, {"type": "node", "id": 9165505520, "lat": 40.4330573, "lon": -3.6995885, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505521, "lat": 40.4329953, "lon": -3.7003764}, {"type": "node", "id": 9165505522, "lat": 40.4328879, "lon": -3.700311}, {"type": "node", "id": 9165505523, "lat": 40.4326411, "lon": -3.699495}, {"type": "node", "id": 9165505524, "lat": 40.4326745, "lon": -3.6993556}, {"type": "node", "id": 9165505525, "lat": 40.4326571, "lon": -3.6994281, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505526, "lat": 40.4329094, "lon": -3.6980127}, {"type": "node", "id": 9165505527, "lat": 40.4329447, "lon": -3.6980288, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9165505529, "lat": 40.4324366, "lon": -3.7000523, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9165525062, "lat": 40.4331231, "lon": -3.7012634}, {"type": "node", "id": 9165525139, "lat": 40.4331078, "lon": -3.7012986}, {"type": "node", "id": 9165530284, "lat": 40.4328546, "lon": -3.7004428}, {"type": "node", "id": 9169688099, "lat": 40.4325917, "lon": -3.6993099}, {"type": "node", "id": 9169688100, "lat": 40.4325769, "lon": -3.6993196}, {"type": "node", "id": 9169688101, "lat": 40.4316753, "lon": -3.698953}, {"type": "node", "id": 9169688102, "lat": 40.4325878, "lon": -3.6994424, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688103, "lat": 40.4329535, "lon": -3.6979959, "tags": {"highway": "stop"}}, {"type": "node", "id": 9169688165, "lat": 40.4325373, "lon": -3.6994562}, {"type": "node", "id": 9169688166, "lat": 40.4325467, "lon": -3.6994756}, {"type": "node", "id": 9169688167, "lat": 40.4324134, "lon": -3.6999897}, {"type": "node", "id": 9169688168, "lat": 40.4324036, "lon": -3.6999947}, {"type": "node", "id": 9169688169, "lat": 40.4312871, "lon": -3.6994875}, {"type": "node", "id": 9169688170, "lat": 40.4312458, "lon": -3.6994486}, {"type": "node", "id": 9169688171, "lat": 40.4315816, "lon": -3.6990636}, {"type": "node", "id": 9169688172, "lat": 40.431594, "lon": -3.6989925, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688173, "lat": 40.4313074, "lon": -3.6993779}, {"type": "node", "id": 9169688174, "lat": 40.4311482, "lon": -3.6991594}, {"type": "node", "id": 9169688175, "lat": 40.4312318, "lon": -3.6992741, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688176, "lat": 40.4312203, "lon": -3.6994911, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688177, "lat": 40.432439, "lon": -3.700724}, {"type": "node", "id": 9169688178, "lat": 40.4323582, "lon": -3.7006873}, {"type": "node", "id": 9169688179, "lat": 40.4314369, "lon": -3.7003043}, {"type": "node", "id": 9169688180, "lat": 40.4315902, "lon": -3.699732}, {"type": "node", "id": 9169688181, "lat": 40.4316056, "lon": -3.6997252}, {"type": "node", "id": 9169688182, "lat": 40.4316853, "lon": -3.700412}, {"type": "node", "id": 9169688183, "lat": 40.4318309, "lon": -3.7004554}, {"type": "node", "id": 9169688184, "lat": 40.4313815, "lon": -3.7002824, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688185, "lat": 40.4313715, "lon": -3.7003186, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9169688186, "lat": 40.4315744, "lon": -3.6997256}, {"type": "node", "id": 9169688187, "lat": 40.4315375, "lon": -3.6997106, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9169688188, "lat": 40.4325149, "lon": -3.699447}, {"type": "node", "id": 9169688189, "lat": 40.4325464, "lon": -3.6993072}, {"type": "node", "id": 9169688190, "lat": 40.4325307, "lon": -3.6993769, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9172003699, "lat": 40.4330902, "lon": -3.701952}, {"type": "node", "id": 9172003700, "lat": 40.4331011, "lon": -3.7019937}, {"type": "node", "id": 9172003701, "lat": 40.4331041, "lon": -3.7020418}, {"type": "node", "id": 9172003702, "lat": 40.4326323, "lon": -3.701603}, {"type": "node", "id": 9172003703, "lat": 40.4329747, "lon": -3.7016113}, {"type": "node", "id": 9172003704, "lat": 40.4329596, "lon": -3.7015925}, {"type": "node", "id": 9172003705, "lat": 40.4327201, "lon": -3.7016077}, {"type": "node", "id": 9172003706, "lat": 40.4327793, "lon": -3.7016122}, {"type": "node", "id": 9172003707, "lat": 40.4328351, "lon": -3.7016043}, {"type": "node", "id": 9172003708, "lat": 40.4328839, "lon": -3.7015939}, {"type": "node", "id": 9172009163, "lat": 40.4320356, "lon": -3.7016248}, {"type": "node", "id": 9172009164, "lat": 40.43204, "lon": -3.7015979}, {"type": "node", "id": 9172009165, "lat": 40.4320262, "lon": -3.7015524}, {"type": "node", "id": 9175086669, "lat": 40.4335778, "lon": -3.7038677}, {"type": "node", "id": 9175086670, "lat": 40.4335532, "lon": -3.7038915}, {"type": "node", "id": 9175086671, "lat": 40.4335097, "lon": -3.7039048}, {"type": "node", "id": 9175086672, "lat": 40.4334735, "lon": -3.703921}, {"type": "node", "id": 9175086673, "lat": 40.4334359, "lon": -3.70394}, {"type": "node", "id": 9175086674, "lat": 40.4333997, "lon": -3.7039676}, {"type": "node", "id": 9175086675, "lat": 40.4333606, "lon": -3.7040009}, {"type": "node", "id": 9175086676, "lat": 40.4333281, "lon": -3.704038}, {"type": "node", "id": 9175086677, "lat": 40.4332955, "lon": -3.7040753}, {"type": "node", "id": 9175086678, "lat": 40.4327254, "lon": -3.7038359}, {"type": "node", "id": 9175086679, "lat": 40.4330277, "lon": -3.7025212}, {"type": "node", "id": 9175086680, "lat": 40.4330501, "lon": -3.702506}, {"type": "node", "id": 9175086681, "lat": 40.4338566, "lon": -3.7027247}, {"type": "node", "id": 9175086685, "lat": 40.4330733, "lon": -3.7024174}, {"type": "node", "id": 9175086686, "lat": 40.4330661, "lon": -3.7024021}, {"type": "node", "id": 9175086687, "lat": 40.4331532, "lon": -3.702064}, {"type": "node", "id": 9175086688, "lat": 40.4331565, "lon": -3.7020312}, {"type": "node", "id": 9175086689, "lat": 40.4331521, "lon": -3.7019831}, {"type": "node", "id": 9175086690, "lat": 40.4331416, "lon": -3.7019372}, {"type": "node", "id": 9175086691, "lat": 40.4329814, "lon": -3.7014749}, {"type": "node", "id": 9175086692, "lat": 40.4330089, "lon": -3.7015544}, {"type": "node", "id": 9175086693, "lat": 40.4330738, "lon": -3.7025125}, {"type": "node", "id": 9175086694, "lat": 40.4330935, "lon": -3.7024225}, {"type": "node", "id": 9175086695, "lat": 40.4330833, "lon": -3.7024692, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9175086696, "lat": 40.4335968, "lon": -3.7037896}, {"type": "node", "id": 9175086697, "lat": 40.4337968, "lon": -3.7038697}, {"type": "node", "id": 9175086698, "lat": 40.4338374, "lon": -3.7028017}, {"type": "node", "id": 9175086699, "lat": 40.4340467, "lon": -3.7028681}, {"type": "node", "id": 9175086700, "lat": 40.4338813, "lon": -3.7026213}, {"type": "node", "id": 9175086701, "lat": 40.4340798, "lon": -3.7018065}, {"type": "node", "id": 9175086702, "lat": 40.4340646, "lon": -3.701763}, {"type": "node", "id": 9175086703, "lat": 40.4331696, "lon": -3.7013727}, {"type": "node", "id": 9175086704, "lat": 40.4342904, "lon": -3.7018908}, {"type": "node", "id": 9175086705, "lat": 40.4332781, "lon": -3.7040813}, {"type": "node", "id": 9213584626, "lat": 40.4362065, "lon": -3.7102596}, {"type": "node", "id": 9213584627, "lat": 40.4362447, "lon": -3.7114306}, {"type": "node", "id": 9213584628, "lat": 40.4362394, "lon": -3.7112707}, {"type": "node", "id": 9213584629, "lat": 40.4353116, "lon": -3.7113407}, {"type": "node", "id": 9266993695, "lat": 40.4395337, "lon": -3.6992423, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993696, "lat": 40.4395972, "lon": -3.699129, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993697, "lat": 40.4396692, "lon": -3.6992309, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9266993698, "lat": 40.4395312, "lon": -3.6991963}, {"type": "node", "id": 9266993699, "lat": 40.4396007, "lon": -3.6992052, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9266993700, "lat": 40.4395592, "lon": -3.6991284}, {"type": "node", "id": 9266993701, "lat": 40.4395228, "lon": -3.698417}, {"type": "node", "id": 9266993702, "lat": 40.4396441, "lon": -3.6991302}, {"type": "node", "id": 9275138544, "lat": 40.4351935, "lon": -3.7086813}, {"type": "node", "id": 9275138545, "lat": 40.4351853, "lon": -3.7084815}, {"type": "node", "id": 9275138546, "lat": 40.4360856, "lon": -3.7084145}, {"type": "node", "id": 9275138547, "lat": 40.4360897, "lon": -3.7085969}, {"type": "node", "id": 9281641932, "lat": 40.4321914, "lon": -3.7035984}, {"type": "node", "id": 9281641933, "lat": 40.4321817, "lon": -3.7035467}, {"type": "node", "id": 9281641934, "lat": 40.4324796, "lon": -3.7023808}, {"type": "node", "id": 9281641935, "lat": 40.4325029, "lon": -3.7023655}, {"type": "node", "id": 9281641936, "lat": 40.4329644, "lon": -3.7024927}, {"type": "node", "id": 9281641937, "lat": 40.432973, "lon": -3.7025096}, {"type": "node", "id": 9281641938, "lat": 40.4326585, "lon": -3.7037754}, {"type": "node", "id": 9281641939, "lat": 40.4326365, "lon": -3.7037959}, {"type": "node", "id": 9281641940, "lat": 40.4327175, "lon": -3.7037956}, {"type": "node", "id": 9281641941, "lat": 40.4320631, "lon": -3.7035363}, {"type": "node", "id": 9281641942, "lat": 40.4321262, "lon": -3.7035685, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9281641971, "lat": 40.4330202, "lon": -3.7025519}, {"type": "node", "id": 9281641972, "lat": 40.4329668, "lon": -3.7025343}, {"type": "node", "id": 9281641973, "lat": 40.4329907, "lon": -3.7025422, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9281641974, "lat": 40.4325388, "lon": -3.7022767}, {"type": "node", "id": 9281641975, "lat": 40.4325159, "lon": -3.7022515}, {"type": "node", "id": 9281641976, "lat": 40.4326706, "lon": -3.7016679}, {"type": "node", "id": 9281641977, "lat": 40.4326902, "lon": -3.7016414}, {"type": "node", "id": 9281641978, "lat": 40.4327294, "lon": -3.7016502}, {"type": "node", "id": 9281641979, "lat": 40.4327649, "lon": -3.7016526}, {"type": "node", "id": 9281641980, "lat": 40.4328066, "lon": -3.701651}, {"type": "node", "id": 9281641981, "lat": 40.4328428, "lon": -3.7016438}, {"type": "node", "id": 9281641982, "lat": 40.4328814, "lon": -3.7016325}, {"type": "node", "id": 9281641983, "lat": 40.4329059, "lon": -3.7016245}, {"type": "node", "id": 9281641984, "lat": 40.4329188, "lon": -3.7016317}, {"type": "node", "id": 9281641985, "lat": 40.433061, "lon": -3.702052}, {"type": "node", "id": 9281641986, "lat": 40.4329813, "lon": -3.7023822}, {"type": "node", "id": 9281641987, "lat": 40.4329641, "lon": -3.702395}, {"type": "node", "id": 9281641988, "lat": 40.4329449, "lon": -3.7024873}, {"type": "node", "id": 9281641989, "lat": 40.4329887, "lon": -3.7023515}, {"type": "node", "id": 9281641990, "lat": 40.4330725, "lon": -3.7023773}, {"type": "node", "id": 9281642021, "lat": 40.4324542, "lon": -3.7022686, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281668024, "lat": 40.4320573, "lon": -3.7016206, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 9281668025, "lat": 40.4320483, "lon": -3.7016484}, {"type": "node", "id": 9281668026, "lat": 40.4319416, "lon": -3.7020984}, {"type": "node", "id": 9281668027, "lat": 40.4319558, "lon": -3.7021179}, {"type": "node", "id": 9281668028, "lat": 40.4323822, "lon": -3.7022332}, {"type": "node", "id": 9281668029, "lat": 40.4324003, "lon": -3.7022251}, {"type": "node", "id": 9281668030, "lat": 40.4325856, "lon": -3.7015091}, {"type": "node", "id": 9281668031, "lat": 40.4324034, "lon": -3.7022131}, {"type": "node", "id": 9281668032, "lat": 40.4324747, "lon": -3.7024001}, {"type": "node", "id": 9281668033, "lat": 40.4323743, "lon": -3.7023387}, {"type": "node", "id": 9281668034, "lat": 40.4320181, "lon": -3.7015007}, {"type": "node", "id": 9281668035, "lat": 40.4319352, "lon": -3.7022256}, {"type": "node", "id": 9281668036, "lat": 40.4319452, "lon": -3.702173, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9281668037, "lat": 40.431882, "lon": -3.7020762}, {"type": "node", "id": 9281668038, "lat": 40.4318984, "lon": -3.7021294, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281668039, "lat": 40.4318839, "lon": -3.7021837, "tags": {"highway": "give_way"}}, {"type": "node", "id": 9281668040, "lat": 40.4325623, "lon": -3.7015989}, {"type": "node", "id": 9285824690, "lat": 40.4320766, "lon": -3.703527}, {"type": "node", "id": 9285824691, "lat": 40.4320519, "lon": -3.703544}, {"type": "node", "id": 9285824692, "lat": 40.431638, "lon": -3.7033637}, {"type": "node", "id": 9285824693, "lat": 40.4316298, "lon": -3.7033283}, {"type": "node", "id": 9285824694, "lat": 40.431906, "lon": -3.7022315}, {"type": "node", "id": 9285824695, "lat": 40.4319171, "lon": -3.7022222}, {"type": "node", "id": 9290677518, "lat": 40.4337444, "lon": -3.7186415}, {"type": "node", "id": 9290677519, "lat": 40.4337439, "lon": -3.7186396}, {"type": "node", "id": 9290677520, "lat": 40.4337438, "lon": -3.7186354}, {"type": "node", "id": 9290677521, "lat": 40.4337449, "lon": -3.7186315}, {"type": "node", "id": 9290677522, "lat": 40.433747, "lon": -3.7186285}, {"type": "node", "id": 9290677523, "lat": 40.4337499, "lon": -3.7186267}, {"type": "node", "id": 9290677524, "lat": 40.4337531, "lon": -3.7186265}, {"type": "node", "id": 9290677525, "lat": 40.433756, "lon": -3.718628}, {"type": "node", "id": 9290677526, "lat": 40.4337584, "lon": -3.7186308}, {"type": "node", "id": 9290677527, "lat": 40.4337597, "lon": -3.7186345}, {"type": "node", "id": 9290677528, "lat": 40.43376, "lon": -3.7186366}, {"type": "node", "id": 9290677529, "lat": 40.4337593, "lon": -3.7186412}, {"type": "node", "id": 9290677530, "lat": 40.4337583, "lon": -3.7186435}, {"type": "node", "id": 9290677531, "lat": 40.4337569, "lon": -3.7186454}, {"type": "node", "id": 9290677532, "lat": 40.4337533, "lon": -3.7186476}, {"type": "node", "id": 9290677533, "lat": 40.4337513, "lon": -3.7186478}, {"type": "node", "id": 9290677534, "lat": 40.4337463, "lon": -3.7186449}, {"type": "node", "id": 9290677535, "lat": 40.4337494, "lon": -3.7186473}, {"type": "node", "id": 9290677536, "lat": 40.4337452, "lon": -3.7186433}, {"type": "node", "id": 9290677537, "lat": 40.4337437, "lon": -3.7186375}, {"type": "node", "id": 9290677538, "lat": 40.4337442, "lon": -3.7186334}, {"type": "node", "id": 9290677539, "lat": 40.4337459, "lon": -3.7186298}, {"type": "node", "id": 9290677540, "lat": 40.4337553, "lon": -3.7186468}, {"type": "node", "id": 9290677541, "lat": 40.4337592, "lon": -3.7186326}, {"type": "node", "id": 9290677542, "lat": 40.4337573, "lon": -3.7186292}, {"type": "node", "id": 9290677543, "lat": 40.4337546, "lon": -3.718627}, {"type": "node", "id": 9290677544, "lat": 40.4337515, "lon": -3.7186264}, {"type": "node", "id": 9290677545, "lat": 40.4337484, "lon": -3.7186274}, {"type": "node", "id": 9292464420, "lat": 40.4476541, "lon": -3.7195313}, {"type": "node", "id": 9294123999, "lat": 40.4508474, "lon": -3.7113765}, {"type": "node", "id": 9294124000, "lat": 40.4509281, "lon": -3.7111176}, {"type": "node", "id": 9294124001, "lat": 40.4509816, "lon": -3.7111387, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9294124002, "lat": 40.450935, "lon": -3.7110354}, {"type": "node", "id": 9294124003, "lat": 40.4504519, "lon": -3.7113566}, {"type": "node", "id": 9294124006, "lat": 40.4499813, "lon": -3.7110064}, {"type": "node", "id": 9294124029, "lat": 40.4494848, "lon": -3.7115351, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 9315046498, "lat": 40.4446658, "lon": -3.7081692}, {"type": "node", "id": 9315068122, "lat": 40.4427712, "lon": -3.7141376}, {"type": "node", "id": 9315068123, "lat": 40.4427473, "lon": -3.7141267}, {"type": "node", "id": 9318806808, "lat": 40.4285427, "lon": -3.6903171}, {"type": "node", "id": 9318806809, "lat": 40.4285449, "lon": -3.6903062}, {"type": "node", "id": 9318806810, "lat": 40.4285497, "lon": -3.6902969}, {"type": "node", "id": 9318806811, "lat": 40.4285565, "lon": -3.6902901}, {"type": "node", "id": 9318806812, "lat": 40.4285728, "lon": -3.6902865}, {"type": "node", "id": 9318806813, "lat": 40.4285805, "lon": -3.6902898}, {"type": "node", "id": 9318806814, "lat": 40.4285872, "lon": -3.690296}, {"type": "node", "id": 9318806815, "lat": 40.428592, "lon": -3.6903046}, {"type": "node", "id": 9318806816, "lat": 40.4285947, "lon": -3.6903259}, {"type": "node", "id": 9318816417, "lat": 40.4285921, "lon": -3.6903365}, {"type": "node", "id": 9318816418, "lat": 40.428587, "lon": -3.6903454}, {"type": "node", "id": 9318816419, "lat": 40.4285801, "lon": -3.6903518}, {"type": "node", "id": 9318816420, "lat": 40.4285642, "lon": -3.6903546}, {"type": "node", "id": 9318816421, "lat": 40.4285569, "lon": -3.6903514}, {"type": "node", "id": 9318816422, "lat": 40.4285507, "lon": -3.6903456}, {"type": "node", "id": 9318816423, "lat": 40.428546, "lon": -3.6903377}, {"type": "node", "id": 9318816443, "lat": 40.4286874, "lon": -3.6902901}, {"type": "node", "id": 9318816444, "lat": 40.4287084, "lon": -3.6904991}, {"type": "node", "id": 9318816445, "lat": 40.4287199, "lon": -3.6904552}, {"type": "node", "id": 9318816446, "lat": 40.4286756, "lon": -3.6901586}, {"type": "node", "id": 9318816447, "lat": 40.4285938, "lon": -3.6901104}, {"type": "node", "id": 9318816448, "lat": 40.4284707, "lon": -3.6905135}, {"type": "node", "id": 9318816449, "lat": 40.4284487, "lon": -3.6904897}, {"type": "node", "id": 9318816450, "lat": 40.4284124, "lon": -3.6901699}, {"type": "node", "id": 9318816451, "lat": 40.4284385, "lon": -3.690144}, {"type": "node", "id": 9318816452, "lat": 40.4287003, "lon": -3.6902876}, {"type": "node", "id": 9318816453, "lat": 40.428585, "lon": -3.6905116}, {"type": "node", "id": 9318816454, "lat": 40.4284301, "lon": -3.6903554}, {"type": "node", "id": 9318816463, "lat": 40.4281009, "lon": -3.6901544}, {"type": "node", "id": 9318816464, "lat": 40.4280881, "lon": -3.6901661}, {"type": "node", "id": 9318816465, "lat": 40.4280796, "lon": -3.6901823}, {"type": "node", "id": 9318816466, "lat": 40.4280777, "lon": -3.6902021}, {"type": "node", "id": 9318816467, "lat": 40.4281205, "lon": -3.6909979}, {"type": "node", "id": 9318816468, "lat": 40.4281304, "lon": -3.6910134}, {"type": "node", "id": 9318816469, "lat": 40.4293734, "lon": -3.6909706}, {"type": "node", "id": 9318816470, "lat": 40.4293996, "lon": -3.6909333}, {"type": "node", "id": 9318816471, "lat": 40.4293551, "lon": -3.6898744}, {"type": "node", "id": 9354013613, "lat": 40.4464337, "lon": -3.6913549}, {"type": "node", "id": 9397668135, "lat": 40.4254157, "lon": -3.6937474}, {"type": "node", "id": 9397668157, "lat": 40.4258217, "lon": -3.693613, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9397668168, "lat": 40.4254214, "lon": -3.6937745}, {"type": "node", "id": 9397668169, "lat": 40.4254301, "lon": -3.6938195}, {"type": "node", "id": 9397668170, "lat": 40.4254346, "lon": -3.6938407}, {"type": "node", "id": 9397668171, "lat": 40.4254512, "lon": -3.693926}, {"type": "node", "id": 9397668172, "lat": 40.4254387, "lon": -3.6938598, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9397718488, "lat": 40.4251038, "lon": -3.692375, "tags": {"highway": "crossing"}}, {"type": "node", "id": 9398011424, "lat": 40.4250072, "lon": -3.6940072}, {"type": "node", "id": 9398011425, "lat": 40.4250427, "lon": -3.6939504}, {"type": "node", "id": 9439650452, "lat": 40.4457589, "lon": -3.688508, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 9439650455, "lat": 40.4327753, "lon": -3.720694, "tags": {"barrier": "gate"}}, {"type": "node", "id": 9439650456, "lat": 40.4328023, "lon": -3.7206314, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 9439650457, "lat": 40.4327517, "lon": -3.7207533}, {"type": "node", "id": 9439650458, "lat": 40.4328252, "lon": -3.7205761}, {"type": "node", "id": 9439650459, "lat": 40.4327477, "lon": -3.719385, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 9439650460, "lat": 40.4326851, "lon": -3.7195275, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 9439650461, "lat": 40.4325682, "lon": -3.7218135}, {"type": "node", "id": 9439650462, "lat": 40.4324621, "lon": -3.721734}, {"type": "node", "id": 9439650463, "lat": 40.4324634, "lon": -3.7217076}, {"type": "node", "id": 9439650464, "lat": 40.4327984, "lon": -3.7208715, "tags": {"barrier": "gate"}}, {"type": "node", "id": 9439650465, "lat": 40.4328272, "lon": -3.720807}, {"type": "node", "id": 9440297883, "lat": 40.4327648, "lon": -3.7215084}, {"type": "node", "id": 9440297884, "lat": 40.4332709, "lon": -3.7218642}, {"type": "node", "id": 9440297885, "lat": 40.4326406, "lon": -3.7218053}, {"type": "node", "id": 9440297886, "lat": 40.4331428, "lon": -3.7221699}, {"type": "node", "id": 9440297887, "lat": 40.4325128, "lon": -3.7221106}, {"type": "node", "id": 9440297888, "lat": 40.4330154, "lon": -3.7224739}, {"type": "node", "id": 9440297889, "lat": 40.4323878, "lon": -3.7224093}, {"type": "node", "id": 9440297890, "lat": 40.4328883, "lon": -3.722777}, {"type": "node", "id": 9440297891, "lat": 40.4333812, "lon": -3.7216012}, {"type": "node", "id": 9440297892, "lat": 40.4327862, "lon": -3.7230171}, {"type": "node", "id": 9440297893, "lat": 40.4324226, "lon": -3.7217825}, {"type": "node", "id": 9440297894, "lat": 40.4325978, "lon": -3.7219074}, {"type": "node", "id": 9440297895, "lat": 40.4328831, "lon": -3.7212259}, {"type": "node", "id": 9440297896, "lat": 40.4322865, "lon": -3.7226513}, {"type": "node", "id": 9440297915, "lat": 40.4334092, "lon": -3.7216222}, {"type": "node", "id": 9468406678, "lat": 40.438246, "lon": -3.6977609}, {"type": "node", "id": 9468406679, "lat": 40.4381883, "lon": -3.6963463}, {"type": "node", "id": 9468406680, "lat": 40.4367134, "lon": -3.6965267}, {"type": "node", "id": 9468406681, "lat": 40.4382417, "lon": -3.6978133, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468406682, "lat": 40.4367368, "lon": -3.6978569}, {"type": "node", "id": 9468406683, "lat": 40.4366976, "lon": -3.6978644, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468406684, "lat": 40.4367287, "lon": -3.6979412, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468415547, "lat": 40.4382375, "lon": -3.6978648}, {"type": "node", "id": 9468415548, "lat": 40.4373335, "lon": -3.6979561}, {"type": "node", "id": 9468415549, "lat": 40.437279, "lon": -3.6979704}, {"type": "node", "id": 9468415550, "lat": 40.4367211, "lon": -3.6980201}, {"type": "node", "id": 9468415551, "lat": 40.4367288, "lon": -3.6988271}, {"type": "node", "id": 9468415552, "lat": 40.4373057, "lon": -3.6979634, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 9468418944, "lat": 40.4366403, "lon": -3.6978753}, {"type": "node", "id": 9468418945, "lat": 40.4366158, "lon": -3.6964591}, {"type": "node", "id": 9468418946, "lat": 40.4356816, "lon": -3.6965428}, {"type": "node", "id": 9468418947, "lat": 40.4357519, "lon": -3.6979741}, {"type": "node", "id": 9468418948, "lat": 40.4366369, "lon": -3.697949, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468418949, "lat": 40.4361807, "lon": -3.6980527}, {"type": "node", "id": 9468418950, "lat": 40.436088, "lon": -3.6980602}, {"type": "node", "id": 9468418951, "lat": 40.4361339, "lon": -3.6980565, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468418952, "lat": 40.436171, "lon": -3.6979275}, {"type": "node", "id": 9468418953, "lat": 40.4361757, "lon": -3.697988, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421730, "lat": 40.4356741, "lon": -3.6979785}, {"type": "node", "id": 9468421731, "lat": 40.4356137, "lon": -3.6965408}, {"type": "node", "id": 9468421732, "lat": 40.4350731, "lon": -3.6965752}, {"type": "node", "id": 9468421733, "lat": 40.4350535, "lon": -3.6980236}, {"type": "node", "id": 9468421734, "lat": 40.4357219, "lon": -3.6979758, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421735, "lat": 40.4356765, "lon": -3.6980301, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421736, "lat": 40.4357658, "lon": -3.6980226, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421737, "lat": 40.4357278, "lon": -3.698096, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468421738, "lat": 40.4350691, "lon": -3.6980806, "tags": {"crossing": "marked", "highway": "crossing"}}, {"type": "node", "id": 9468439514, "lat": 40.435603, "lon": -3.6964387}, {"type": "node", "id": 9468439515, "lat": 40.4351019, "lon": -3.6948719}, {"type": "node", "id": 9468439516, "lat": 40.4350708, "lon": -3.6964897}, {"type": "node", "id": 9468442517, "lat": 40.4356095, "lon": -3.6965005, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 9468442518, "lat": 40.4350722, "lon": -3.696543, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468442519, "lat": 40.4356521, "lon": -3.6965419, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9468483005, "lat": 40.4383819, "lon": -3.7000638}, {"type": "node", "id": 9483986399, "lat": 40.4255339, "lon": -3.7184023}, {"type": "node", "id": 9484310903, "lat": 40.4385438, "lon": -3.7043451}, {"type": "node", "id": 9484310904, "lat": 40.438545, "lon": -3.704115}, {"type": "node", "id": 9484310905, "lat": 40.4386007, "lon": -3.7043517}, {"type": "node", "id": 9484310906, "lat": 40.438559, "lon": -3.704541}, {"type": "node", "id": 9484310907, "lat": 40.4385825, "lon": -3.7052412}, {"type": "node", "id": 9484310908, "lat": 40.4386151, "lon": -3.7059549}, {"type": "node", "id": 9484310909, "lat": 40.4385356, "lon": -3.7040043}, {"type": "node", "id": 9484310910, "lat": 40.438765, "lon": -3.7039868}, {"type": "node", "id": 9484310911, "lat": 40.4387835, "lon": -3.7040978}, {"type": "node", "id": 9484310912, "lat": 40.4387022, "lon": -3.7027918}, {"type": "node", "id": 9484310913, "lat": 40.4385993, "lon": -3.701037}, {"type": "node", "id": 9484310914, "lat": 40.4385835, "lon": -3.7004923}, {"type": "node", "id": 9484310915, "lat": 40.4383768, "lon": -3.7005064}, {"type": "node", "id": 9492744666, "lat": 40.4378773, "lon": -3.7041255}, {"type": "node", "id": 9492744667, "lat": 40.437654, "lon": -3.7043554}, {"type": "node", "id": 9492744668, "lat": 40.4371606, "lon": -3.7041493}, {"type": "node", "id": 9496525310, "lat": 40.4412492, "lon": -3.692959, "tags": {"access": "private", "amenity": "parking_entrance", "barrier": "entrance", "entrance": "exit", "parking": "underground"}}, {"type": "node", "id": 9496525311, "lat": 40.4412347, "lon": -3.6927382}, {"type": "node", "id": 9496525312, "lat": 40.4412278, "lon": -3.6927087}, {"type": "node", "id": 9496525313, "lat": 40.4411983, "lon": -3.6926933}, {"type": "node", "id": 9517181761, "lat": 40.4491102, "lon": -3.6893229}, {"type": "node", "id": 9533539673, "lat": 40.4444922, "lon": -3.6934332}, {"type": "node", "id": 9533539675, "lat": 40.4457038, "lon": -3.6929688}, {"type": "node", "id": 9533539676, "lat": 40.4454752, "lon": -3.6929871}, {"type": "node", "id": 9533539677, "lat": 40.4452578, "lon": -3.6930074}, {"type": "node", "id": 9533539678, "lat": 40.4452452, "lon": -3.692699}, {"type": "node", "id": 9533539679, "lat": 40.4454677, "lon": -3.692398}, {"type": "node", "id": 9533539680, "lat": 40.445439, "lon": -3.6925217}, {"type": "node", "id": 9533539681, "lat": 40.4454063, "lon": -3.6925381}, {"type": "node", "id": 9533539682, "lat": 40.4453781, "lon": -3.6925653}, {"type": "node", "id": 9533539683, "lat": 40.4453564, "lon": -3.6926014}, {"type": "node", "id": 9533539684, "lat": 40.4453429, "lon": -3.6926438}, {"type": "node", "id": 9533539685, "lat": 40.4453384, "lon": -3.6926902}, {"type": "node", "id": 9533539686, "lat": 40.4453433, "lon": -3.6927349}, {"type": "node", "id": 9533539687, "lat": 40.4453572, "lon": -3.6927771}, {"type": "node", "id": 9533539688, "lat": 40.4453792, "lon": -3.6928129}, {"type": "node", "id": 9533539689, "lat": 40.4454076, "lon": -3.6928396}, {"type": "node", "id": 9533539690, "lat": 40.4454405, "lon": -3.6928555}, {"type": "node", "id": 9533539691, "lat": 40.4455072, "lon": -3.6928519}, {"type": "node", "id": 9533539692, "lat": 40.4455366, "lon": -3.6928344}, {"type": "node", "id": 9533539693, "lat": 40.4455619, "lon": -3.6928079}, {"type": "node", "id": 9533539694, "lat": 40.4455814, "lon": -3.6927741}, {"type": "node", "id": 9533539695, "lat": 40.445594, "lon": -3.692735}, {"type": "node", "id": 9533539696, "lat": 40.4455954, "lon": -3.6926489}, {"type": "node", "id": 9533539697, "lat": 40.4455834, "lon": -3.6926075}, {"type": "node", "id": 9533539698, "lat": 40.4455638, "lon": -3.6925715}, {"type": "node", "id": 9533539699, "lat": 40.4455377, "lon": -3.6925433}, {"type": "node", "id": 9533539700, "lat": 40.4455071, "lon": -3.6925248}, {"type": "node", "id": 9533539701, "lat": 40.4454754, "lon": -3.6928593}, {"type": "node", "id": 9533539702, "lat": 40.4454738, "lon": -3.6925174}, {"type": "node", "id": 9533539703, "lat": 40.4455988, "lon": -3.692693}, {"type": "node", "id": 9533539704, "lat": 40.4456978, "lon": -3.6926843}, {"type": "node", "id": 9533539705, "lat": 40.4454111, "lon": -3.6943138}, {"type": "node", "id": 9533539706, "lat": 40.4457274, "lon": -3.6942936}, {"type": "node", "id": 9533539707, "lat": 40.4451061, "lon": -3.6930266}, {"type": "node", "id": 9533539708, "lat": 40.4437932, "lon": -3.6934879}, {"type": "node", "id": 9533539711, "lat": 40.4433396, "lon": -3.6935234}, {"type": "node", "id": 9533539712, "lat": 40.4451308, "lon": -3.6933832}, {"type": "node", "id": 9533539713, "lat": 40.4420884, "lon": -3.692574}, {"type": "node", "id": 9533539714, "lat": 40.4421358, "lon": -3.6936177}, {"type": "node", "id": 9533539715, "lat": 40.4433973, "lon": -3.6935189}, {"type": "node", "id": 9533539716, "lat": 40.4437355, "lon": -3.6934924}, {"type": "node", "id": 9533552117, "lat": 40.4446822, "lon": -3.6934183}, {"type": "node", "id": 9533552118, "lat": 40.4446809, "lon": -3.6933901}, {"type": "node", "id": 9549391151, "lat": 40.4458919, "lon": -3.7237376}, {"type": "node", "id": 9549391154, "lat": 40.4457118, "lon": -3.7244769}, {"type": "node", "id": 9549391155, "lat": 40.4461902, "lon": -3.7127223}, {"type": "node", "id": 9549391156, "lat": 40.446194, "lon": -3.7124046}, {"type": "node", "id": 9549391158, "lat": 40.4464817, "lon": -3.7167594}, {"type": "node", "id": 9549391159, "lat": 40.4464958, "lon": -3.7167943}, {"type": "node", "id": 9549391167, "lat": 40.4465678, "lon": -3.7167449}, {"type": "node", "id": 9549391168, "lat": 40.4465539, "lon": -3.7167097}, {"type": "node", "id": 9559214847, "lat": 40.4450229, "lon": -3.691855}, {"type": "node", "id": 9559283921, "lat": 40.4435783, "lon": -3.6923685, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 9559283922, "lat": 40.4434621, "lon": -3.6925617, "tags": {"traffic_calming": "bump"}}, {"type": "node", "id": 9559283923, "lat": 40.4434647, "lon": -3.691948}, {"type": "node", "id": 9559283924, "lat": 40.4434179, "lon": -3.6920676}, {"type": "node", "id": 9559283925, "lat": 40.4434234, "lon": -3.6921925}, {"type": "node", "id": 9559283926, "lat": 40.4434534, "lon": -3.6922461}, {"type": "node", "id": 9559283927, "lat": 40.4434605, "lon": -3.6924504, "tags": {"access": "private", "barrier": "lift_gate", "lift_gate:type": "single", "motor_vehicle": "yes", "motorcar": "yes"}}, {"type": "node", "id": 9559283928, "lat": 40.4435806, "lon": -3.6924308, "tags": {"access": "private", "barrier": "lift_gate", "lift_gate:type": "single", "motor_vehicle": "yes", "motorcar": "yes"}}, {"type": "node", "id": 9559283929, "lat": 40.4435346, "lon": -3.6917656}, {"type": "node", "id": 9559283930, "lat": 40.4435996, "lon": -3.6916749}, {"type": "node", "id": 9559283932, "lat": 40.4435698, "lon": -3.692245}, {"type": "node", "id": 9559283933, "lat": 40.4435393, "lon": -3.692181}, {"type": "node", "id": 9559283934, "lat": 40.4435324, "lon": -3.6920567}, {"type": "node", "id": 9559298067, "lat": 40.4434569, "lon": -3.6923485}, {"type": "node", "id": 9559298068, "lat": 40.4434732, "lon": -3.6923655}, {"type": "node", "id": 9559298069, "lat": 40.4434985, "lon": -3.6923915}, {"type": "node", "id": 9559298070, "lat": 40.4435212, "lon": -3.6923962}, {"type": "node", "id": 9559298071, "lat": 40.4435439, "lon": -3.6923886}, {"type": "node", "id": 9559298072, "lat": 40.4435595, "lon": -3.6923621}, {"type": "node", "id": 9559298073, "lat": 40.4435753, "lon": -3.6923241}, {"type": "node", "id": 9569328012, "lat": 40.4527879, "lon": -3.7029451}, {"type": "node", "id": 9569418943, "lat": 40.444796, "lon": -3.6918924}, {"type": "node", "id": 9569418944, "lat": 40.4448013, "lon": -3.6920078}, {"type": "node", "id": 9569418945, "lat": 40.4449494, "lon": -3.691996}, {"type": "node", "id": 9569418946, "lat": 40.4451665, "lon": -3.6919346}, {"type": "node", "id": 9569418947, "lat": 40.4450271, "lon": -3.6919445}, {"type": "node", "id": 9569418948, "lat": 40.4451672, "lon": -3.6919561}, {"type": "node", "id": 9569418949, "lat": 40.445028, "lon": -3.6919667}, {"type": "node", "id": 9571292152, "lat": 40.4459349, "lon": -3.6916878}, {"type": "node", "id": 9571292153, "lat": 40.4458241, "lon": -3.691696}, {"type": "node", "id": 9571292154, "lat": 40.4451684, "lon": -3.6919951}, {"type": "node", "id": 9571292155, "lat": 40.4451534, "lon": -3.6919957, "tags": {"fee": "no", "handrail": "yes", "highway": "elevator", "indoor": "yes", "level": "0;-1;-2;-3"}}, {"type": "node", "id": 9571292156, "lat": 40.4450292, "lon": -3.6920034}, {"type": "node", "id": 9601998680, "lat": 40.446035, "lon": -3.695738}, {"type": "node", "id": 9601998681, "lat": 40.4460868, "lon": -3.6971543}, {"type": "node", "id": 9601998682, "lat": 40.4460437, "lon": -3.6959771}, {"type": "node", "id": 9601998683, "lat": 40.4462891, "lon": -3.69596}, {"type": "node", "id": 9601998684, "lat": 40.4460585, "lon": -3.6963823}, {"type": "node", "id": 9601998685, "lat": 40.4463099, "lon": -3.6963675}, {"type": "node", "id": 9601998686, "lat": 40.446072, "lon": -3.6967498}, {"type": "node", "id": 9601998687, "lat": 40.4463283, "lon": -3.6967298}, {"type": "node", "id": 9601998688, "lat": 40.4460841, "lon": -3.697082}, {"type": "node", "id": 9601998689, "lat": 40.4463417, "lon": -3.6970578}, {"type": "node", "id": 9601998712, "lat": 40.4455985, "lon": -3.6957929, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 9601998713, "lat": 40.4455987, "lon": -3.6957633}, {"type": "node", "id": 9601998714, "lat": 40.4455973, "lon": -3.695693}, {"type": "node", "id": 9602013218, "lat": 40.4457338, "lon": -3.6971033, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 9602013219, "lat": 40.445737, "lon": -3.6971809}, {"type": "node", "id": 9641674962, "lat": 40.427346, "lon": -3.7094154}, {"type": "node", "id": 9672874689, "lat": 40.4346229, "lon": -3.6985884, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 9672874690, "lat": 40.43502, "lon": -3.6966266, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874691, "lat": 40.4350606, "lon": -3.6949611, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874692, "lat": 40.4351064, "lon": -3.6932646, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 9672874693, "lat": 40.4348814, "lon": -3.6820989, "tags": {"crossing": "no", "highway": "traffic_signals", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 9677517207, "lat": 40.4312495, "lon": -3.7072549}, {"type": "node", "id": 9677652704, "lat": 40.4283313, "lon": -3.7080737}, {"type": "node", "id": 9680512475, "lat": 40.4459051, "lon": -3.713662}, {"type": "node", "id": 9680512476, "lat": 40.4461356, "lon": -3.7136238}, {"type": "node", "id": 9680512477, "lat": 40.4461825, "lon": -3.7136018, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9680512478, "lat": 40.4462046, "lon": -3.7135916}, {"type": "node", "id": 9680512479, "lat": 40.4461548, "lon": -3.7136146}, {"type": "node", "id": 9680512480, "lat": 40.446149, "lon": -3.7136557}, {"type": "node", "id": 9680512481, "lat": 40.4461708, "lon": -3.7137658}, {"type": "node", "id": 9680512482, "lat": 40.4462169, "lon": -3.713747, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9680512483, "lat": 40.4462405, "lon": -3.7137372}, {"type": "node", "id": 9680512484, "lat": 40.4461778, "lon": -3.7137631}, {"type": "node", "id": 9680512485, "lat": 40.4461683, "lon": -3.7137242}, {"type": "node", "id": 9680512486, "lat": 40.4459661, "lon": -3.713369}, {"type": "node", "id": 9680512487, "lat": 40.4459779, "lon": -3.7133214}, {"type": "node", "id": 9680512488, "lat": 40.4459917, "lon": -3.7132652}, {"type": "node", "id": 9680512489, "lat": 40.4459801, "lon": -3.7133124}, {"type": "node", "id": 9680512490, "lat": 40.4459936, "lon": -3.7132578}, {"type": "node", "id": 9680512491, "lat": 40.4460053, "lon": -3.7132104}, {"type": "node", "id": 9680512492, "lat": 40.4460286, "lon": -3.7131141}, {"type": "node", "id": 9680512493, "lat": 40.4460245, "lon": -3.7131317}, {"type": "node", "id": 9680512494, "lat": 40.445955, "lon": -3.713414}, {"type": "node", "id": 9680512495, "lat": 40.4460488, "lon": -3.7130318}, {"type": "node", "id": 9680512496, "lat": 40.446045, "lon": -3.7130471}, {"type": "node", "id": 9680512497, "lat": 40.4458382, "lon": -3.7138537}, {"type": "node", "id": 9680512498, "lat": 40.4458292, "lon": -3.7138902}, {"type": "node", "id": 9680512499, "lat": 40.4458262, "lon": -3.7139023}, {"type": "node", "id": 9680512500, "lat": 40.4458165, "lon": -3.7139418}, {"type": "node", "id": 9680512501, "lat": 40.445814, "lon": -3.7139519}, {"type": "node", "id": 9680512502, "lat": 40.4458049, "lon": -3.7139886}, {"type": "node", "id": 9680512503, "lat": 40.4458683, "lon": -3.7138072}, {"type": "node", "id": 9680512504, "lat": 40.4459298, "lon": -3.7135647}, {"type": "node", "id": 9680512505, "lat": 40.4458585, "lon": -3.7138455}, {"type": "node", "id": 9680512506, "lat": 40.4458182, "lon": -3.7140044}, {"type": "node", "id": 9680512507, "lat": 40.4459599, "lon": -3.7134461}, {"type": "node", "id": 9680512508, "lat": 40.4459492, "lon": -3.7133759}, {"type": "node", "id": 9680512509, "lat": 40.4459946, "lon": -3.7131969}, {"type": "node", "id": 9680512510, "lat": 40.4460196, "lon": -3.7131526}, {"type": "node", "id": 9680512511, "lat": 40.4460211, "lon": -3.7132072}, {"type": "node", "id": 9680512512, "lat": 40.4459747, "lon": -3.7133876}, {"type": "node", "id": 9680512513, "lat": 40.4458142, "lon": -3.7140203}, {"type": "node", "id": 9680512514, "lat": 40.4458471, "lon": -3.7138178}, {"type": "node", "id": 9680512515, "lat": 40.4457971, "lon": -3.7140203}, {"type": "node", "id": 9680512516, "lat": 40.4456854, "lon": -3.7140274}, {"type": "node", "id": 9680529817, "lat": 40.4456938, "lon": -3.7140268}, {"type": "node", "id": 9680529818, "lat": 40.44563, "lon": -3.7140585}, {"type": "node", "id": 9680529819, "lat": 40.4456499, "lon": -3.7140297}, {"type": "node", "id": 9680529820, "lat": 40.4462106, "lon": -3.7136809}, {"type": "node", "id": 9680529821, "lat": 40.4462516, "lon": -3.7136976}, {"type": "node", "id": 9680529822, "lat": 40.4462444, "lon": -3.7136947}, {"type": "node", "id": 9680529823, "lat": 40.4462836, "lon": -3.7137107}, {"type": "node", "id": 9680529824, "lat": 40.4462903, "lon": -3.7137135}, {"type": "node", "id": 9680529825, "lat": 40.4463241, "lon": -3.7137273}, {"type": "node", "id": 9680529826, "lat": 40.4463298, "lon": -3.7137297}, {"type": "node", "id": 9680529827, "lat": 40.446364, "lon": -3.7137436}, {"type": "node", "id": 9680529828, "lat": 40.4463796, "lon": -3.7137283}, {"type": "node", "id": 9680529829, "lat": 40.4462155, "lon": -3.7136602}, {"type": "node", "id": 9680529830, "lat": 40.4461823, "lon": -3.7136693}, {"type": "node", "id": 9680529831, "lat": 40.4462056, "lon": -3.7137031}, {"type": "node", "id": 9680529832, "lat": 40.4463686, "lon": -3.7137722}, {"type": "node", "id": 9680529833, "lat": 40.4465099, "lon": -3.7132798}, {"type": "node", "id": 9680529834, "lat": 40.4465009, "lon": -3.7132835}, {"type": "node", "id": 9680529835, "lat": 40.4464693, "lon": -3.7132967}, {"type": "node", "id": 9680529836, "lat": 40.4464604, "lon": -3.7133004}, {"type": "node", "id": 9680529837, "lat": 40.4464272, "lon": -3.7133143}, {"type": "node", "id": 9680529838, "lat": 40.4464301, "lon": -3.7133373}, {"type": "node", "id": 9680529839, "lat": 40.4464009, "lon": -3.7133252}, {"type": "node", "id": 9680529840, "lat": 40.4464184, "lon": -3.7132937}, {"type": "node", "id": 9680529841, "lat": 40.4465485, "lon": -3.7132378}, {"type": "node", "id": 9680529842, "lat": 40.4465792, "lon": -3.7132509}, {"type": "node", "id": 9680529843, "lat": 40.4465597, "lon": -3.7132837}, {"type": "node", "id": 9680529844, "lat": 40.4466262, "lon": -3.7137616}, {"type": "node", "id": 9680529845, "lat": 40.44662, "lon": -3.7137642}, {"type": "node", "id": 9680529846, "lat": 40.446588, "lon": -3.7137773}, {"type": "node", "id": 9680529847, "lat": 40.4465804, "lon": -3.7137805}, {"type": "node", "id": 9680529848, "lat": 40.4465472, "lon": -3.7137941}, {"type": "node", "id": 9680529849, "lat": 40.446547, "lon": -3.7138215}, {"type": "node", "id": 9680529850, "lat": 40.4466781, "lon": -3.7137662}, {"type": "node", "id": 9680529851, "lat": 40.4466998, "lon": -3.7137313}, {"type": "node", "id": 9680529852, "lat": 40.4466667, "lon": -3.7137185}, {"type": "node", "id": 9680529853, "lat": 40.4465365, "lon": -3.7137727}, {"type": "node", "id": 9680529854, "lat": 40.4465178, "lon": -3.7138063}, {"type": "node", "id": 9680529855, "lat": 40.4465429, "lon": -3.713266}, {"type": "node", "id": 9680529856, "lat": 40.4466594, "lon": -3.713748}, {"type": "node", "id": 9680529857, "lat": 40.4464998, "lon": -3.7138137}, {"type": "node", "id": 9680529858, "lat": 40.4467154, "lon": -3.7137249}, {"type": "node", "id": 9680529859, "lat": 40.4466758, "lon": -3.7135647}, {"type": "node", "id": 9680529860, "lat": 40.4466358, "lon": -3.7134}, {"type": "node", "id": 9680529861, "lat": 40.446597, "lon": -3.7132435}, {"type": "node", "id": 9680529862, "lat": 40.4463824, "lon": -3.713333}, {"type": "node", "id": 9680529863, "lat": 40.4464782, "lon": -3.7137266}, {"type": "node", "id": 9680529864, "lat": 40.4464051, "lon": -3.7137605}, {"type": "node", "id": 9680529865, "lat": 40.4460668, "lon": -3.713408}, {"type": "node", "id": 9680529866, "lat": 40.4460797, "lon": -3.7133564}, {"type": "node", "id": 9680529867, "lat": 40.4460819, "lon": -3.7133475}, {"type": "node", "id": 9680529868, "lat": 40.4460941, "lon": -3.7132984}, {"type": "node", "id": 9680529869, "lat": 40.4460964, "lon": -3.7132894}, {"type": "node", "id": 9680529870, "lat": 40.4461087, "lon": -3.7132399}, {"type": "node", "id": 9680529871, "lat": 40.4461311, "lon": -3.7131503}, {"type": "node", "id": 9680529872, "lat": 40.4461428, "lon": -3.7131035}, {"type": "node", "id": 9680529873, "lat": 40.4461459, "lon": -3.7130908}, {"type": "node", "id": 9680529874, "lat": 40.4461576, "lon": -3.713044}, {"type": "node", "id": 9680529875, "lat": 40.44616, "lon": -3.7130346}, {"type": "node", "id": 9680529876, "lat": 40.4461722, "lon": -3.7129854}, {"type": "node", "id": 9680529877, "lat": 40.4462235, "lon": -3.71278}, {"type": "node", "id": 9680529878, "lat": 40.4462214, "lon": -3.7127884}, {"type": "node", "id": 9680529879, "lat": 40.4462089, "lon": -3.7128385}, {"type": "node", "id": 9680529880, "lat": 40.4462066, "lon": -3.7128477}, {"type": "node", "id": 9680529881, "lat": 40.4461942, "lon": -3.7128973}, {"type": "node", "id": 9680529882, "lat": 40.4461817, "lon": -3.7129475}, {"type": "node", "id": 9680529883, "lat": 40.4461686, "lon": -3.7129407}, {"type": "node", "id": 9680529884, "lat": 40.4461962, "lon": -3.712955}, {"type": "node", "id": 9680529885, "lat": 40.4461184, "lon": -3.7132013}, {"type": "node", "id": 9680529886, "lat": 40.4461052, "lon": -3.7131952}, {"type": "node", "id": 9680529887, "lat": 40.4461328, "lon": -3.713208}, {"type": "node", "id": 9680529888, "lat": 40.4460964, "lon": -3.7132304}, {"type": "node", "id": 9680529889, "lat": 40.4461145, "lon": -3.7131576}, {"type": "node", "id": 9680529890, "lat": 40.4461596, "lon": -3.712977}, {"type": "node", "id": 9680529891, "lat": 40.446178, "lon": -3.712903}, {"type": "node", "id": 9680529892, "lat": 40.4462065, "lon": -3.7129139}, {"type": "node", "id": 9680529893, "lat": 40.4461881, "lon": -3.7129874}, {"type": "node", "id": 9680529894, "lat": 40.4461424, "lon": -3.7131697}, {"type": "node", "id": 9680529895, "lat": 40.4461243, "lon": -3.7132417}, {"type": "node", "id": 9680529896, "lat": 40.4460785, "lon": -3.7134245}, {"type": "node", "id": 9680529897, "lat": 40.4462518, "lon": -3.7127332}, {"type": "node", "id": 9680529898, "lat": 40.4462448, "lon": -3.7126945}, {"type": "node", "id": 9680529899, "lat": 40.4462235, "lon": -3.7127208}, {"type": "node", "id": 9680529900, "lat": 40.4460512, "lon": -3.7134114}, {"type": "node", "id": 9680529901, "lat": 40.4460559, "lon": -3.7134518}, {"type": "node", "id": 9680529902, "lat": 40.4462357, "lon": -3.7127313}, {"type": "node", "id": 9680529903, "lat": 40.4460183, "lon": -3.7136022}, {"type": "node", "id": 9680529904, "lat": 40.4462562, "lon": -3.712649}, {"type": "node", "id": 9680529905, "lat": 40.4463106, "lon": -3.7126788}, {"type": "node", "id": 9680529906, "lat": 40.4463245, "lon": -3.7126309}, {"type": "node", "id": 9680529907, "lat": 40.4462987, "lon": -3.7127187, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9680529908, "lat": 40.4462066, "lon": -3.7126226}, {"type": "node", "id": 9680529909, "lat": 40.4461933, "lon": -3.7126621, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9680529910, "lat": 40.4462221, "lon": -3.7125756}, {"type": "node", "id": 9680529911, "lat": 40.4463493, "lon": -3.7132053}, {"type": "node", "id": 9680529912, "lat": 40.4463597, "lon": -3.7132475}, {"type": "node", "id": 9680529913, "lat": 40.4463617, "lon": -3.7132556}, {"type": "node", "id": 9680529914, "lat": 40.4463719, "lon": -3.7132972}, {"type": "node", "id": 9680529915, "lat": 40.4463736, "lon": -3.713304}, {"type": "node", "id": 9680529916, "lat": 40.4463839, "lon": -3.7133458}, {"type": "node", "id": 9680529917, "lat": 40.4463862, "lon": -3.7133551}, {"type": "node", "id": 9680529918, "lat": 40.446413, "lon": -3.7133923}, {"type": "node", "id": 9680529919, "lat": 40.4463615, "lon": -3.7131851}, {"type": "node", "id": 9680529920, "lat": 40.446339, "lon": -3.7131632}, {"type": "node", "id": 9680529921, "lat": 40.4463286, "lon": -3.7131992}, {"type": "node", "id": 9680529922, "lat": 40.4463806, "lon": -3.7134074}, {"type": "node", "id": 9680529923, "lat": 40.4464038, "lon": -3.7134266}, {"type": "node", "id": 9680529924, "lat": 40.4462715, "lon": -3.7131071}, {"type": "node", "id": 9680529925, "lat": 40.4462539, "lon": -3.7130994}, {"type": "node", "id": 9680529926, "lat": 40.4462363, "lon": -3.7130917}, {"type": "node", "id": 9680529927, "lat": 40.446258, "lon": -3.71301}, {"type": "node", "id": 9680529928, "lat": 40.4462931, "lon": -3.7130261}, {"type": "node", "id": 9680529929, "lat": 40.4462154, "lon": -3.7131698}, {"type": "node", "id": 9680529930, "lat": 40.4462509, "lon": -3.7131844}, {"type": "node", "id": 9680529931, "lat": 40.4461579, "lon": -3.7135328}, {"type": "node", "id": 9680529932, "lat": 40.4463467, "lon": -3.7128254}, {"type": "node", "id": 9680529933, "lat": 40.4463414, "lon": -3.7127702}, {"type": "node", "id": 9680529934, "lat": 40.4463115, "lon": -3.7128096}, {"type": "node", "id": 9680529935, "lat": 40.4461229, "lon": -3.7135167}, {"type": "node", "id": 9680529936, "lat": 40.4463973, "lon": -3.7134002}, {"type": "node", "id": 9680529937, "lat": 40.4463316, "lon": -3.7131335}, {"type": "node", "id": 9680529938, "lat": 40.4464197, "lon": -3.7134913}, {"type": "node", "id": 9680529939, "lat": 40.4462986, "lon": -3.7138989}, {"type": "node", "id": 9680529940, "lat": 40.4463353, "lon": -3.7138833}, {"type": "node", "id": 9680529941, "lat": 40.4463284, "lon": -3.7138862}, {"type": "node", "id": 9680529942, "lat": 40.4463731, "lon": -3.7138672}, {"type": "node", "id": 9680529943, "lat": 40.4463655, "lon": -3.7138705}, {"type": "node", "id": 9680529944, "lat": 40.4464101, "lon": -3.7138515}, {"type": "node", "id": 9680529945, "lat": 40.4464042, "lon": -3.713854}, {"type": "node", "id": 9680529946, "lat": 40.4464438, "lon": -3.7138371}, {"type": "node", "id": 9680529947, "lat": 40.4464493, "lon": -3.7138597}, {"type": "node", "id": 9680529948, "lat": 40.4464793, "lon": -3.713822}, {"type": "node", "id": 9680529949, "lat": 40.4464388, "lon": -3.7138164}, {"type": "node", "id": 9680529950, "lat": 40.4462801, "lon": -3.7138818}, {"type": "node", "id": 9680529951, "lat": 40.4462549, "lon": -3.7139175}, {"type": "node", "id": 9680529952, "lat": 40.4462916, "lon": -3.7139267}, {"type": "node", "id": 9680529953, "lat": 40.4463587, "lon": -3.7127048}, {"type": "node", "id": 9680529954, "lat": 40.4461255, "lon": -3.7135828}, {"type": "node", "id": 9680529955, "lat": 40.4462127, "lon": -3.7139355}, {"type": "node", "id": 9680529956, "lat": 40.4464995, "lon": -3.7138134}, {"type": "node", "id": 9680529957, "lat": 40.4464592, "lon": -3.713656}, {"type": "node", "id": 9680529958, "lat": 40.4464301, "lon": -3.7124976}, {"type": "node", "id": 9680529959, "lat": 40.4463867, "lon": -3.7126371}, {"type": "node", "id": 9680529960, "lat": 40.4461685, "lon": -3.7125439}, {"type": "node", "id": 9680529961, "lat": 40.4462135, "lon": -3.7124031}, {"type": "node", "id": 9680529962, "lat": 40.446232, "lon": -3.7123449}, {"type": "node", "id": 9680529963, "lat": 40.4461526, "lon": -3.7125934}, {"type": "node", "id": 9680529964, "lat": 40.4463647, "lon": -3.712708}, {"type": "node", "id": 9680529965, "lat": 40.4464596, "lon": -3.7124029}, {"type": "node", "id": 9680529966, "lat": 40.4461695, "lon": -3.7124849}, {"type": "node", "id": 9680529967, "lat": 40.4461582, "lon": -3.7125214}, {"type": "node", "id": 9680529968, "lat": 40.4461722, "lon": -3.7124763}, {"type": "node", "id": 9680529969, "lat": 40.4461833, "lon": -3.7124406}, {"type": "node", "id": 9680529970, "lat": 40.4461857, "lon": -3.712433}, {"type": "node", "id": 9680529971, "lat": 40.4461965, "lon": -3.7123982}, {"type": "node", "id": 9680529972, "lat": 40.4464061, "lon": -3.7126329}, {"type": "node", "id": 9680529973, "lat": 40.4464172, "lon": -3.7125975}, {"type": "node", "id": 9680529974, "lat": 40.4464207, "lon": -3.7125864}, {"type": "node", "id": 9680529975, "lat": 40.4464311, "lon": -3.7125528}, {"type": "node", "id": 9680529976, "lat": 40.446434, "lon": -3.7125437}, {"type": "node", "id": 9680529977, "lat": 40.4464444, "lon": -3.7125101}, {"type": "node", "id": 9680529978, "lat": 40.4464151, "lon": -3.7123768}, {"type": "node", "id": 9680529979, "lat": 40.446475, "lon": -3.712412}, {"type": "node", "id": 9680529980, "lat": 40.4463801, "lon": -3.7127164}, {"type": "node", "id": 9680529981, "lat": 40.4461382, "lon": -3.7125856}, {"type": "node", "id": 9680529982, "lat": 40.4462158, "lon": -3.7123362}, {"type": "node", "id": 9680529983, "lat": 40.4462773, "lon": -3.7123694}, {"type": "node", "id": 9680529984, "lat": 40.4467689, "lon": -3.711059}, {"type": "node", "id": 9680529985, "lat": 40.4467974, "lon": -3.7110715}, {"type": "node", "id": 9680529986, "lat": 40.4467864, "lon": -3.7109891}, {"type": "node", "id": 9680529987, "lat": 40.4468151, "lon": -3.7110003}, {"type": "node", "id": 9680529988, "lat": 40.446794, "lon": -3.7110255}, {"type": "node", "id": 9680529989, "lat": 40.4467789, "lon": -3.7110189}, {"type": "node", "id": 9680529990, "lat": 40.4468074, "lon": -3.7110314}, {"type": "node", "id": 9680529991, "lat": 40.4467423, "lon": -3.7112935}, {"type": "node", "id": 9680529992, "lat": 40.44687, "lon": -3.7107792}, {"type": "node", "id": 9680529993, "lat": 40.4468424, "lon": -3.7107658}, {"type": "node", "id": 9680529994, "lat": 40.4467133, "lon": -3.7112804}, {"type": "node", "id": 9680529995, "lat": 40.446724, "lon": -3.7113094}, {"type": "node", "id": 9680529996, "lat": 40.4468538, "lon": -3.7107828}, {"type": "node", "id": 9680529997, "lat": 40.4468384, "lon": -3.7108453}, {"type": "node", "id": 9680529998, "lat": 40.446836, "lon": -3.710855}, {"type": "node", "id": 9680529999, "lat": 40.446821, "lon": -3.710916}, {"type": "node", "id": 9680530000, "lat": 40.4468186, "lon": -3.7109256}, {"type": "node", "id": 9680530001, "lat": 40.446804, "lon": -3.7109849}, {"type": "node", "id": 9680530002, "lat": 40.446782, "lon": -3.711074}, {"type": "node", "id": 9680530003, "lat": 40.4467665, "lon": -3.711137}, {"type": "node", "id": 9680530004, "lat": 40.4467641, "lon": -3.7111469}, {"type": "node", "id": 9680530005, "lat": 40.4467489, "lon": -3.7112085}, {"type": "node", "id": 9680530006, "lat": 40.4467465, "lon": -3.7112183}, {"type": "node", "id": 9680530007, "lat": 40.4467317, "lon": -3.7112782}, {"type": "node", "id": 9680530008, "lat": 40.4470156, "lon": -3.7101234}, {"type": "node", "id": 9680530009, "lat": 40.4470128, "lon": -3.7101347}, {"type": "node", "id": 9680530010, "lat": 40.4470042, "lon": -3.7101688}, {"type": "node", "id": 9680530011, "lat": 40.4470016, "lon": -3.7101792}, {"type": "node", "id": 9680530012, "lat": 40.4470245, "lon": -3.7100879}, {"type": "node", "id": 9680530013, "lat": 40.4469927, "lon": -3.7102146}, {"type": "node", "id": 9680530014, "lat": 40.447037, "lon": -3.7100379}, {"type": "node", "id": 9680530015, "lat": 40.4469753, "lon": -3.7102128}, {"type": "node", "id": 9680530016, "lat": 40.4470109, "lon": -3.7100651}, {"type": "node", "id": 9680530017, "lat": 40.44695, "lon": -3.7102944}, {"type": "node", "id": 9680530018, "lat": 40.4469349, "lon": -3.7103553}, {"type": "node", "id": 9680530019, "lat": 40.4469327, "lon": -3.7103641}, {"type": "node", "id": 9680530020, "lat": 40.4469171, "lon": -3.7104268}, {"type": "node", "id": 9680530021, "lat": 40.4469146, "lon": -3.7104367}, {"type": "node", "id": 9680530022, "lat": 40.4468997, "lon": -3.710497}, {"type": "node", "id": 9680530023, "lat": 40.4469391, "lon": -3.7102808}, {"type": "node", "id": 9680530024, "lat": 40.446967, "lon": -3.7102937}, {"type": "node", "id": 9680530025, "lat": 40.4469666, "lon": -3.7102488}, {"type": "node", "id": 9680530026, "lat": 40.4469618, "lon": -3.7102469}, {"type": "node", "id": 9680530027, "lat": 40.4469773, "lon": -3.7102531}, {"type": "node", "id": 9680530028, "lat": 40.4469108, "lon": -3.7105143}, {"type": "node", "id": 9680530029, "lat": 40.4468828, "lon": -3.7105006}, {"type": "node", "id": 9680530030, "lat": 40.4469491, "lon": -3.7102417}, {"type": "node", "id": 9680530031, "lat": 40.4470193, "lon": -3.7100305}, {"type": "node", "id": 9680530032, "lat": 40.4471083, "lon": -3.7100677}, {"type": "node", "id": 9680530033, "lat": 40.4471286, "lon": -3.7099864}, {"type": "node", "id": 9680530034, "lat": 40.4471262, "lon": -3.7099963}, {"type": "node", "id": 9680530035, "lat": 40.4470901, "lon": -3.7101385}, {"type": "node", "id": 9680530036, "lat": 40.447088, "lon": -3.7101469}, {"type": "node", "id": 9680530037, "lat": 40.4471165, "lon": -3.7100358}, {"type": "node", "id": 9680530038, "lat": 40.4468928, "lon": -3.7105246}, {"type": "node", "id": 9680530039, "lat": 40.4468675, "lon": -3.7107275}, {"type": "node", "id": 9680530040, "lat": 40.4467183, "lon": -3.7113324}, {"type": "node", "id": 9680530041, "lat": 40.4465522, "lon": -3.7113386}, {"type": "node", "id": 9680530042, "lat": 40.4467701, "lon": -3.7114252}, {"type": "node", "id": 9680530043, "lat": 40.4465083, "lon": -3.7114818}, {"type": "node", "id": 9680530044, "lat": 40.4465788, "lon": -3.7112516}, {"type": "node", "id": 9680530045, "lat": 40.446483, "lon": -3.7115647}, {"type": "node", "id": 9680530046, "lat": 40.4467243, "lon": -3.7115677}, {"type": "node", "id": 9680530047, "lat": 40.4467871, "lon": -3.7113723}, {"type": "node", "id": 9680530048, "lat": 40.4467058, "lon": -3.7116252}, {"type": "node", "id": 9680530049, "lat": 40.4465341, "lon": -3.7113414}, {"type": "node", "id": 9680530050, "lat": 40.4465235, "lon": -3.7113758}, {"type": "node", "id": 9680530051, "lat": 40.446521, "lon": -3.711384}, {"type": "node", "id": 9680530052, "lat": 40.4465101, "lon": -3.7114195}, {"type": "node", "id": 9680530053, "lat": 40.4465064, "lon": -3.7114314}, {"type": "node", "id": 9680530054, "lat": 40.4467578, "lon": -3.7115214}, {"type": "node", "id": 9680530055, "lat": 40.4467547, "lon": -3.7115313}, {"type": "node", "id": 9680530056, "lat": 40.4467682, "lon": -3.7114879}, {"type": "node", "id": 9680530057, "lat": 40.4467715, "lon": -3.7114774}, {"type": "node", "id": 9680530058, "lat": 40.4467825, "lon": -3.711442}, {"type": "node", "id": 9680530059, "lat": 40.4464961, "lon": -3.7114647}, {"type": "node", "id": 9680530060, "lat": 40.4467439, "lon": -3.7115662}, {"type": "node", "id": 9680530061, "lat": 40.4465245, "lon": -3.7115876}, {"type": "node", "id": 9680530062, "lat": 40.4464679, "lon": -3.7115563}, {"type": "node", "id": 9680530063, "lat": 40.4465643, "lon": -3.7112432}, {"type": "node", "id": 9680530064, "lat": 40.4468016, "lon": -3.7113807}, {"type": "node", "id": 9680530065, "lat": 40.4467225, "lon": -3.7116348}, {"type": "node", "id": 9680530066, "lat": 40.4466609, "lon": -3.7115993}, {"type": "node", "id": 9682523779, "lat": 40.4384369, "lon": -3.6992565}, {"type": "node", "id": 9682523780, "lat": 40.4383565, "lon": -3.6992601, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9682523781, "lat": 40.438374, "lon": -3.6992596}, {"type": "node", "id": 9682523782, "lat": 40.4385076, "lon": -3.6993019}, {"type": "node", "id": 9682523783, "lat": 40.4385411, "lon": -3.699299}, {"type": "node", "id": 9682523784, "lat": 40.4383545, "lon": -3.6993637}, {"type": "node", "id": 9682523785, "lat": 40.4383705, "lon": -3.6993613}, {"type": "node", "id": 9682523786, "lat": 40.4383779, "lon": -3.6995011}, {"type": "node", "id": 9682523787, "lat": 40.438362, "lon": -3.6995013}, {"type": "node", "id": 9682523788, "lat": 40.4385297, "lon": -3.6990793}, {"type": "node", "id": 9682523789, "lat": 40.4385434, "lon": -3.6990784}, {"type": "node", "id": 9682523790, "lat": 40.4385518, "lon": -3.6992195}, {"type": "node", "id": 9682523791, "lat": 40.4385368, "lon": -3.6992196}, {"type": "node", "id": 9682523792, "lat": 40.4385401, "lon": -3.6992851}, {"type": "node", "id": 9682523793, "lat": 40.4385425, "lon": -3.6993315, "tags": {"highway": "elevator"}}, {"type": "node", "id": 9682523794, "lat": 40.4385263, "lon": -3.6990139}, {"type": "node", "id": 9682523795, "lat": 40.43838, "lon": -3.6995405}, {"type": "node", "id": 9682523796, "lat": 40.438439, "lon": -3.6992932}, {"type": "node", "id": 9682523797, "lat": 40.4384918, "lon": -3.6990173}, {"type": "node", "id": 9682523798, "lat": 40.4385394, "lon": -3.6990127}, {"type": "node", "id": 9682523799, "lat": 40.4385556, "lon": -3.6992839}, {"type": "node", "id": 9682523800, "lat": 40.4383672, "lon": -3.699299}, {"type": "node", "id": 9682523801, "lat": 40.4383524, "lon": -3.6993245}, {"type": "node", "id": 9682523802, "lat": 40.4383642, "lon": -3.6995419}, {"type": "node", "id": 9682523803, "lat": 40.4383896, "lon": -3.6995397}, {"type": "node", "id": 9682523804, "lat": 40.4383715, "lon": -3.6995692}, {"type": "node", "id": 9682523805, "lat": 40.4383745, "lon": -3.6996228}, {"type": "node", "id": 9682523806, "lat": 40.4383753, "lon": -3.6996361}, {"type": "node", "id": 9682523807, "lat": 40.4383783, "lon": -3.6996891}, {"type": "node", "id": 9682523808, "lat": 40.4385576, "lon": -3.6995518}, {"type": "node", "id": 9682523809, "lat": 40.4385604, "lon": -3.6996044}, {"type": "node", "id": 9682523810, "lat": 40.4385611, "lon": -3.6996174}, {"type": "node", "id": 9682523811, "lat": 40.4385641, "lon": -3.6996748}, {"type": "node", "id": 9682523812, "lat": 40.4384524, "lon": -3.6995256}, {"type": "node", "id": 9682523813, "lat": 40.4383992, "lon": -3.6997125}, {"type": "node", "id": 9682523814, "lat": 40.4383797, "lon": -3.6997144}, {"type": "node", "id": 9682523815, "lat": 40.4383695, "lon": -3.6995333}, {"type": "node", "id": 9682523816, "lat": 40.4385558, "lon": -3.6995159}, {"type": "node", "id": 9682524417, "lat": 40.4385655, "lon": -3.6997}, {"type": "node", "id": 9682524418, "lat": 40.43853, "lon": -3.6997046}, {"type": "node", "id": 9682524419, "lat": 40.4383872, "lon": -3.6989283}, {"type": "node", "id": 9682524420, "lat": 40.4383844, "lon": -3.6988804}, {"type": "node", "id": 9682524421, "lat": 40.4383837, "lon": -3.698867}, {"type": "node", "id": 9682524422, "lat": 40.4383807, "lon": -3.6988162}, {"type": "node", "id": 9682524423, "lat": 40.43838, "lon": -3.6988042}, {"type": "node", "id": 9682524424, "lat": 40.4383772, "lon": -3.6987572}, {"type": "node", "id": 9682524425, "lat": 40.4383766, "lon": -3.6987469}, {"type": "node", "id": 9682524426, "lat": 40.4383739, "lon": -3.6987008}, {"type": "node", "id": 9682524427, "lat": 40.4384045, "lon": -3.6990319}, {"type": "node", "id": 9682524428, "lat": 40.4383378, "lon": -3.6990405}, {"type": "node", "id": 9682524429, "lat": 40.4384271, "lon": -3.6990881}, {"type": "node", "id": 9682524430, "lat": 40.4383694, "lon": -3.6986229}, {"type": "node", "id": 9682524431, "lat": 40.4383545, "lon": -3.6987125}, {"type": "node", "id": 9682524432, "lat": 40.4383933, "lon": -3.6987106}, {"type": "node", "id": 9682524433, "lat": 40.4383496, "lon": -3.6986246}, {"type": "node", "id": 9682524434, "lat": 40.4383679, "lon": -3.6989506}, {"type": "node", "id": 9682524435, "lat": 40.4383914, "lon": -3.6989996}, {"type": "node", "id": 9682524436, "lat": 40.4384052, "lon": -3.6989476}, {"type": "node", "id": 9682524437, "lat": 40.4383888, "lon": -3.6986212}, {"type": "node", "id": 9682524438, "lat": 40.4383091, "lon": -3.6986282}, {"type": "node", "id": 9682524439, "lat": 40.4383001, "lon": -3.698454}, {"type": "node", "id": 9682524440, "lat": 40.4383009, "lon": -3.6984693}, {"type": "node", "id": 9682524441, "lat": 40.4383131, "lon": -3.6987045}, {"type": "node", "id": 9682524442, "lat": 40.438314, "lon": -3.6987217}, {"type": "node", "id": 9682524443, "lat": 40.4382943, "lon": -3.6983626}, {"type": "node", "id": 9682524444, "lat": 40.4382957, "lon": -3.6983822}, {"type": "node", "id": 9682524445, "lat": 40.4383186, "lon": -3.6988051}, {"type": "node", "id": 9682524446, "lat": 40.4383194, "lon": -3.6988193}, {"type": "node", "id": 9684595514, "lat": 40.4203393, "lon": -3.6895522, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 9684595515, "lat": 40.4204388, "lon": -3.6898041}, {"type": "node", "id": 9684595516, "lat": 40.4204744, "lon": -3.6899464, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 9684664017, "lat": 40.420466, "lon": -3.6899987}, {"type": "node", "id": 9684850519, "lat": 40.4213507, "lon": -3.6896697, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 9684850520, "lat": 40.4213684, "lon": -3.6897208}, {"type": "node", "id": 9699225795, "lat": 40.4426375, "lon": -3.7154276, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 9699225796, "lat": 40.4426111, "lon": -3.7154897}, {"type": "node", "id": 9699225797, "lat": 40.4426826, "lon": -3.7155715}, {"type": "node", "id": 9699225798, "lat": 40.4427245, "lon": -3.7156244}, {"type": "node", "id": 9699225799, "lat": 40.4426886, "lon": -3.7153918}, {"type": "node", "id": 9699225800, "lat": 40.4426352, "lon": -3.7155165, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 9699225801, "lat": 40.4426601, "lon": -3.7154206}, {"type": "node", "id": 9699225802, "lat": 40.4426942, "lon": -3.715347, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 9699225803, "lat": 40.4427072, "lon": -3.7156015, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 9712059178, "lat": 40.4243176, "lon": -3.7073918, "tags": {"crossing": "marked", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9712059180, "lat": 40.4243307, "lon": -3.7074604, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9802859469, "lat": 40.4493664, "lon": -3.7118283}, {"type": "node", "id": 9802859470, "lat": 40.4493779, "lon": -3.7117641}, {"type": "node", "id": 9802859471, "lat": 40.449425, "lon": -3.7117897}, {"type": "node", "id": 9802859472, "lat": 40.4493796, "lon": -3.7123208}, {"type": "node", "id": 9802859473, "lat": 40.4493201, "lon": -3.712308}, {"type": "node", "id": 9802859474, "lat": 40.449269, "lon": -3.7128411}, {"type": "node", "id": 9802859475, "lat": 40.4493403, "lon": -3.7128666}, {"type": "node", "id": 9802859476, "lat": 40.4493403, "lon": -3.7129645}, {"type": "node", "id": 9808450426, "lat": 40.4482243, "lon": -3.7155726}, {"type": "node", "id": 9839677014, "lat": 40.430293, "lon": -3.7117314}, {"type": "node", "id": 9879403066, "lat": 40.430623, "lon": -3.693635, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403067, "lat": 40.4305441, "lon": -3.6935195, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403068, "lat": 40.4312894, "lon": -3.6950236, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403069, "lat": 40.4312872, "lon": -3.6952095, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403070, "lat": 40.4312237, "lon": -3.6951395, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403071, "lat": 40.4318337, "lon": -3.6950938, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403072, "lat": 40.4317012, "lon": -3.6952254, "tags": {"highway": "crossing", "source": "PNOA", "source:date": "2020"}}, {"type": "node", "id": 9879403073, "lat": 40.4318246, "lon": -3.693415, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403074, "lat": 40.4317475, "lon": -3.6933283, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403075, "lat": 40.4317426, "lon": -3.6935144, "tags": {"crossing": "marked", "highway": "crossing", "source": "PNOA", "source:date": "2020", "tactile_paving": "yes"}}, {"type": "node", "id": 9879403076, "lat": 40.4316939, "lon": -3.693516}, {"type": "node", "id": 9879403077, "lat": 40.4328745, "lon": -3.6958678, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground", "source": "survey"}}, {"type": "node", "id": 9879403078, "lat": 40.4328351, "lon": -3.6958607}, {"type": "node", "id": 9879403079, "lat": 40.4327361, "lon": -3.6958416}, {"type": "node", "id": 9887424162, "lat": 40.4290436, "lon": -3.7132842}, {"type": "node", "id": 9887424163, "lat": 40.4290327, "lon": -3.7132921}, {"type": "node", "id": 9887424164, "lat": 40.4291077, "lon": -3.7134772}, {"type": "node", "id": 9935842809, "lat": 40.4424484, "lon": -3.7129755}, {"type": "node", "id": 9935842810, "lat": 40.4423701, "lon": -3.7128609}, {"type": "node", "id": 9935842811, "lat": 40.4423046, "lon": -3.7126171}, {"type": "node", "id": 9998366116, "lat": 40.4404654, "lon": -3.7013546}, {"type": "node", "id": 9998406317, "lat": 40.4404146, "lon": -3.7013243}, {"type": "node", "id": 9998406318, "lat": 40.4403441, "lon": -3.7012967}, {"type": "node", "id": 9998406319, "lat": 40.4400576, "lon": -3.7013457}, {"type": "node", "id": 9998406320, "lat": 40.4400969, "lon": -3.7013345}, {"type": "node", "id": 9998406321, "lat": 40.4401281, "lon": -3.7013475}, {"type": "node", "id": 9998406322, "lat": 40.4401847, "lon": -3.7013243}, {"type": "node", "id": 9998406323, "lat": 40.4402213, "lon": -3.7013002}, {"type": "node", "id": 9998406324, "lat": 40.4400335, "lon": -3.7011737}, {"type": "node", "id": 9998406325, "lat": 40.4398878, "lon": -3.7011782}, {"type": "node", "id": 9998406326, "lat": 40.4398823, "lon": -3.7013564}, {"type": "node", "id": 9998406327, "lat": 40.439942, "lon": -3.7013706}, {"type": "node", "id": 9998406328, "lat": 40.4396674, "lon": -3.7013501, "tags": {"access": "no", "barrier": "gate"}}, {"type": "node", "id": 9998406329, "lat": 40.4397179, "lon": -3.7013426}, {"type": "node", "id": 9998406330, "lat": 40.439765, "lon": -3.7012896}, {"type": "node", "id": 9998406331, "lat": 40.4396969, "lon": -3.7011849}, {"type": "node", "id": 9998406332, "lat": 40.4394965, "lon": -3.7008503}, {"type": "node", "id": 9998406333, "lat": 40.4396806, "lon": -3.7009279}, {"type": "node", "id": 9998406334, "lat": 40.439664, "lon": -3.7010833}, {"type": "node", "id": 9998406805, "lat": 40.4393609, "lon": -3.7043239}, {"type": "node", "id": 9998406806, "lat": 40.4410879, "lon": -3.7042642}, {"type": "node", "id": 9998406807, "lat": 40.4417632, "lon": -3.7042321}, {"type": "node", "id": 9998406808, "lat": 40.4418432, "lon": -3.7042419}, {"type": "node", "id": 9998406809, "lat": 40.441795, "lon": -3.7042838}, {"type": "node", "id": 9998406810, "lat": 40.4418547, "lon": -3.7043961}, {"type": "node", "id": 9998406811, "lat": 40.441871, "lon": -3.7049039}, {"type": "node", "id": 9998406812, "lat": 40.4418405, "lon": -3.704984}, {"type": "node", "id": 9998406813, "lat": 40.4421225, "lon": -3.7050848}, {"type": "node", "id": 9998406814, "lat": 40.4420385, "lon": -3.7051105}, {"type": "node", "id": 9999692402, "lat": 40.4418995, "lon": -3.7016121}, {"type": "node", "id": 9999692403, "lat": 40.4418608, "lon": -3.7018642}, {"type": "node", "id": 9999692404, "lat": 40.4404675, "lon": -3.7012735}, {"type": "node", "id": 9999692405, "lat": 40.4385798, "lon": -3.7001296}, {"type": "node", "id": 9999692406, "lat": 40.438613, "lon": -3.7001644}, {"type": "node", "id": 9999692407, "lat": 40.4386205, "lon": -3.7004931}, {"type": "node", "id": 9999692408, "lat": 40.438748, "lon": -3.7005474}, {"type": "node", "id": 9999692409, "lat": 40.4392, "lon": -3.7007306}, {"type": "node", "id": 9999997218, "lat": 40.4359894, "lon": -3.7033781}, {"type": "node", "id": 9999997219, "lat": 40.4360565, "lon": -3.7033725, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "opening_hours": "24/7", "parking": "underground", "source": "survey"}}, {"type": "node", "id": 10000729227, "lat": 40.418895, "lon": -3.6955436}, {"type": "node", "id": 10011023603, "lat": 40.4230399, "lon": -3.6930296}, {"type": "node", "id": 10011023604, "lat": 40.4230273, "lon": -3.6932001}, {"type": "node", "id": 10011023605, "lat": 40.4230594, "lon": -3.6930158}, {"type": "node", "id": 10011023606, "lat": 40.4230306, "lon": -3.6930535}, {"type": "node", "id": 10011023607, "lat": 40.4230276, "lon": -3.693086}, {"type": "node", "id": 10011023608, "lat": 40.4227161, "lon": -3.6931584}, {"type": "node", "id": 10011023609, "lat": 40.4225435, "lon": -3.6932296}, {"type": "node", "id": 10059226229, "lat": 40.4377066, "lon": -3.6948054}, {"type": "node", "id": 10059226230, "lat": 40.4377006, "lon": -3.6946793}, {"type": "node", "id": 10059226231, "lat": 40.4377055, "lon": -3.6947863}, {"type": "node", "id": 10119591011, "lat": 40.4507726, "lon": -3.7152447}, {"type": "node", "id": 10119591012, "lat": 40.4508295, "lon": -3.7152705, "tags": {"barrier": "gate"}}, {"type": "node", "id": 10119591013, "lat": 40.451103, "lon": -3.7154276}, {"type": "node", "id": 10140011252, "lat": 40.4431632, "lon": -3.6839753}, {"type": "node", "id": 10147017766, "lat": 40.4223472, "lon": -3.6915252}, {"type": "node", "id": 10197766006, "lat": 40.4451034, "lon": -3.6949993}, {"type": "node", "id": 10197766007, "lat": 40.4447987, "lon": -3.6951354}, {"type": "node", "id": 10197766008, "lat": 40.4448797, "lon": -3.6950239}, {"type": "node", "id": 10197766009, "lat": 40.4432407, "lon": -3.6946923, "tags": {"access": "private", "barrier": "lift_gate", "locked": "yes"}}, {"type": "node", "id": 10244148852, "lat": 40.4298113, "lon": -3.6933819}, {"type": "node", "id": 10244148853, "lat": 40.4297777, "lon": -3.6933038}, {"type": "node", "id": 10262238697, "lat": 40.4468862, "lon": -3.7248054}, {"type": "node", "id": 10262238698, "lat": 40.4468423, "lon": -3.7248349}, {"type": "node", "id": 10262238699, "lat": 40.4469273, "lon": -3.7249006}, {"type": "node", "id": 10262238700, "lat": 40.4469562, "lon": -3.7249674}, {"type": "node", "id": 10262238704, "lat": 40.4468239, "lon": -3.7248497}, {"type": "node", "id": 10262238705, "lat": 40.4468634, "lon": -3.7249382}, {"type": "node", "id": 10262250915, "lat": 40.4464905, "lon": -3.724874}, {"type": "node", "id": 10262250916, "lat": 40.446515, "lon": -3.724992, "tags": {"barrier": "gate"}}, {"type": "node", "id": 10262250917, "lat": 40.4465147, "lon": -3.7250938}, {"type": "node", "id": 10262250918, "lat": 40.4464943, "lon": -3.725134}, {"type": "node", "id": 10262250919, "lat": 40.4464463, "lon": -3.7251541}, {"type": "node", "id": 10262250920, "lat": 40.4463983, "lon": -3.7251809}, {"type": "node", "id": 10262250921, "lat": 40.4463748, "lon": -3.7252775}, {"type": "node", "id": 10262250922, "lat": 40.4463534, "lon": -3.725484}, {"type": "node", "id": 10262250923, "lat": 40.4465027, "lon": -3.7249333, "tags": {"highway": "crossing"}}, {"type": "node", "id": 10262250924, "lat": 40.4465085, "lon": -3.7249617, "tags": {"highway": "crossing"}}, {"type": "node", "id": 10262250925, "lat": 40.446496, "lon": -3.7249198}, {"type": "node", "id": 10262250946, "lat": 40.4469775, "lon": -3.7250168}, {"type": "node", "id": 10262250947, "lat": 40.446916, "lon": -3.7250564}, {"type": "node", "id": 10262250948, "lat": 40.4470282, "lon": -3.7251341}, {"type": "node", "id": 10262250949, "lat": 40.44697, "lon": -3.7251776}, {"type": "node", "id": 10262250950, "lat": 40.4470813, "lon": -3.7252572}, {"type": "node", "id": 10262250951, "lat": 40.4470235, "lon": -3.7252976}, {"type": "node", "id": 10262250974, "lat": 40.4481268, "lon": -3.7251017}, {"type": "node", "id": 10266331333, "lat": 40.422474, "lon": -3.6903924}, {"type": "node", "id": 10266331334, "lat": 40.4225148, "lon": -3.6905023}, {"type": "node", "id": 10266331335, "lat": 40.4225352, "lon": -3.6905292}, {"type": "node", "id": 10266331336, "lat": 40.4229872, "lon": -3.6903626}, {"type": "node", "id": 10286446604, "lat": 40.4431982, "lon": -3.6837666, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 10286446605, "lat": 40.4432146, "lon": -3.6836694}, {"type": "node", "id": 10308321145, "lat": 40.4328436, "lon": -3.6909021}, {"type": "node", "id": 10540247648, "lat": 40.4432719, "lon": -3.7210935}, {"type": "node", "id": 10540247649, "lat": 40.443386, "lon": -3.7210058}, {"type": "node", "id": 10540247650, "lat": 40.4435583, "lon": -3.7208951}, {"type": "node", "id": 10540247651, "lat": 40.4435605, "lon": -3.7208755}, {"type": "node", "id": 10543548231, "lat": 40.4451877, "lon": -3.6932842}, {"type": "node", "id": 10550528447, "lat": 40.427845, "lon": -3.6884138, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 10550528448, "lat": 40.4279203, "lon": -3.6884046}, {"type": "node", "id": 10550528449, "lat": 40.4273591, "lon": -3.6884733}, {"type": "node", "id": 10550528500, "lat": 40.4452687, "lon": -3.7166213, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 10550528501, "lat": 40.4452018, "lon": -3.7169349}, {"type": "node", "id": 10550528502, "lat": 40.4453947, "lon": -3.7165788}, {"type": "node", "id": 10550528503, "lat": 40.4453233, "lon": -3.7165573}, {"type": "node", "id": 10550528504, "lat": 40.4452957, "lon": -3.7165613}, {"type": "node", "id": 10550528505, "lat": 40.4452763, "lon": -3.7165855}, {"type": "node", "id": 10550528506, "lat": 40.4451915, "lon": -3.7169832}, {"type": "node", "id": 10589006916, "lat": 40.4485208, "lon": -3.7246134}, {"type": "node", "id": 10612891211, "lat": 40.4308059, "lon": -3.6971036}, {"type": "node", "id": 10612891212, "lat": 40.429643, "lon": -3.6976135}, {"type": "node", "id": 10612891213, "lat": 40.4296537, "lon": -3.6974831}, {"type": "node", "id": 10612891214, "lat": 40.4295509, "lon": -3.6986823}, {"type": "node", "id": 10612891215, "lat": 40.4305948, "lon": -3.6991759}, {"type": "node", "id": 10653138763, "lat": 40.4235466, "lon": -3.6930231}, {"type": "node", "id": 10653139005, "lat": 40.4237005, "lon": -3.6905062, "tags": {"barrier": "gate"}}, {"type": "node", "id": 10693694167, "lat": 40.4339227, "lon": -3.7148102}, {"type": "node", "id": 10693694168, "lat": 40.4334881, "lon": -3.7148349}, {"type": "node", "id": 10745001722, "lat": 40.4466351, "lon": -3.7050634}, {"type": "node", "id": 10745001723, "lat": 40.4431761, "lon": -3.7050653}, {"type": "node", "id": 10745001728, "lat": 40.4437356, "lon": -3.7058922}, {"type": "node", "id": 10814462213, "lat": 40.4370386, "lon": -3.699487}, {"type": "node", "id": 10920210170, "lat": 40.4254998, "lon": -3.6876649, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 10920210171, "lat": 40.4264901, "lon": -3.687505}, {"type": "node", "id": 10920210188, "lat": 40.4303521, "lon": -3.687128}, {"type": "node", "id": 10920210189, "lat": 40.4303473, "lon": -3.6870674}, {"type": "node", "id": 10920210190, "lat": 40.4294262, "lon": -3.6872493}, {"type": "node", "id": 10927499914, "lat": 40.4489805, "lon": -3.691175}, {"type": "node", "id": 10927499927, "lat": 40.4502086, "lon": -3.6912191}, {"type": "node", "id": 10927499941, "lat": 40.4499557, "lon": -3.6912002}, {"type": "node", "id": 10927499946, "lat": 40.4473607, "lon": -3.6913295}, {"type": "node", "id": 10927499950, "lat": 40.449048, "lon": -3.6911967}, {"type": "node", "id": 10927499958, "lat": 40.4467009, "lon": -3.6914518}, {"type": "node", "id": 10927499963, "lat": 40.4498551, "lon": -3.6911379}, {"type": "node", "id": 10927499966, "lat": 40.4515098, "lon": -3.6902768}, {"type": "node", "id": 10927499968, "lat": 40.448918, "lon": -3.6905396}, {"type": "node", "id": 10927499973, "lat": 40.4470091, "lon": -3.6907121}, {"type": "node", "id": 10927499974, "lat": 40.4468336, "lon": -3.6907497}, {"type": "node", "id": 10927499975, "lat": 40.44651, "lon": -3.6908046}, {"type": "node", "id": 10927499977, "lat": 40.4523097, "lon": -3.6957854}, {"type": "node", "id": 10927499983, "lat": 40.4525308, "lon": -3.6993633}, {"type": "node", "id": 10927499985, "lat": 40.4524458, "lon": -3.6980823}, {"type": "node", "id": 10927525533, "lat": 40.4464647, "lon": -3.6914068}, {"type": "node", "id": 10927525534, "lat": 40.4463526, "lon": -3.6915169}, {"type": "node", "id": 10927525539, "lat": 40.4464657, "lon": -3.6914733}, {"type": "node", "id": 10927525540, "lat": 40.4484685, "lon": -3.6912457}, {"type": "node", "id": 10927525541, "lat": 40.4485374, "lon": -3.6912118}, {"type": "node", "id": 10927525542, "lat": 40.4499223, "lon": -3.6911774, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 10927525543, "lat": 40.4501863, "lon": -3.6911897}, {"type": "node", "id": 10927525544, "lat": 40.4501654, "lon": -3.691183}, {"type": "node", "id": 10927537016, "lat": 40.4511214, "lon": -3.690323}, {"type": "node", "id": 10927537017, "lat": 40.4510984, "lon": -3.6903159}, {"type": "node", "id": 10927537018, "lat": 40.4494105, "lon": -3.6904904}, {"type": "node", "id": 10927537019, "lat": 40.447253, "lon": -3.6907059}, {"type": "node", "id": 10927537020, "lat": 40.4472282, "lon": -3.6906827}, {"type": "node", "id": 10927537021, "lat": 40.4472379, "lon": -3.6906995}, {"type": "node", "id": 10927537022, "lat": 40.447216, "lon": -3.690674}, {"type": "node", "id": 10927537023, "lat": 40.4510594, "lon": -3.6903186}, {"type": "node", "id": 10927537024, "lat": 40.4515225, "lon": -3.6902754}, {"type": "node", "id": 10927537025, "lat": 40.4491204, "lon": -3.6905194}, {"type": "node", "id": 10927537026, "lat": 40.4490875, "lon": -3.6904378}, {"type": "node", "id": 10927537027, "lat": 40.4489807, "lon": -3.6905334}, {"type": "node", "id": 10927537028, "lat": 40.4489318, "lon": -3.6904544}, {"type": "node", "id": 10927537029, "lat": 40.4471585, "lon": -3.6906835}, {"type": "node", "id": 10927537030, "lat": 40.4515412, "lon": -3.691088}, {"type": "node", "id": 10966335602, "lat": 40.443159, "lon": -3.7078971}, {"type": "node", "id": 10966335603, "lat": 40.4434188, "lon": -3.7071573}, {"type": "node", "id": 10966341110, "lat": 40.4431657, "lon": -3.707765}, {"type": "node", "id": 10966341111, "lat": 40.4431759, "lon": -3.7077034}, {"type": "node", "id": 10966341112, "lat": 40.4432116, "lon": -3.707635}, {"type": "node", "id": 10966341113, "lat": 40.4432509, "lon": -3.707594}, {"type": "node", "id": 10966341114, "lat": 40.443279, "lon": -3.7075558}, {"type": "node", "id": 10966341115, "lat": 40.443299, "lon": -3.7074977}, {"type": "node", "id": 10966341116, "lat": 40.4433172, "lon": -3.7073614}, {"type": "node", "id": 10966341117, "lat": 40.4432732, "lon": -3.7073349}, {"type": "node", "id": 10966341122, "lat": 40.4442038, "lon": -3.7085394}, {"type": "node", "id": 10966341143, "lat": 40.4423033, "lon": -3.7082949}, {"type": "node", "id": 10966341144, "lat": 40.4424925, "lon": -3.708426}, {"type": "node", "id": 10966341176, "lat": 40.4422979, "lon": -3.7073656}, {"type": "node", "id": 10966341177, "lat": 40.4419979, "lon": -3.7081758}, {"type": "node", "id": 10966341178, "lat": 40.4415922, "lon": -3.7069259}, {"type": "node", "id": 10966341179, "lat": 40.4439697, "lon": -3.7083955}, {"type": "node", "id": 10966341180, "lat": 40.4439383, "lon": -3.7084866}, {"type": "node", "id": 10966341181, "lat": 40.4438962, "lon": -3.7086857}, {"type": "node", "id": 10966341182, "lat": 40.4438526, "lon": -3.7088567}, {"type": "node", "id": 10966341183, "lat": 40.4437893, "lon": -3.7089898}, {"type": "node", "id": 10966341184, "lat": 40.443724, "lon": -3.7091008}, {"type": "node", "id": 10966341185, "lat": 40.4436357, "lon": -3.7092309}, {"type": "node", "id": 10966341186, "lat": 40.4422807, "lon": -3.708358}, {"type": "node", "id": 10966341187, "lat": 40.442586, "lon": -3.7075448}, {"type": "node", "id": 10966341188, "lat": 40.4423787, "lon": -3.7080842}, {"type": "node", "id": 10966341189, "lat": 40.4435144, "lon": -3.7089827}, {"type": "node", "id": 10966341190, "lat": 40.4440383, "lon": -3.7089962}, {"type": "node", "id": 10966341191, "lat": 40.4441771, "lon": -3.708626}, {"type": "node", "id": 10966341192, "lat": 40.4435208, "lon": -3.7087654}, {"type": "node", "id": 10966341193, "lat": 40.4427738, "lon": -3.7077808}, {"type": "node", "id": 10966341194, "lat": 40.4428152, "lon": -3.7076857}, {"type": "node", "id": 10966341195, "lat": 40.4424692, "lon": -3.7084795}, {"type": "node", "id": 10966341196, "lat": 40.4432734, "lon": -3.7079674}, {"type": "node", "id": 10966341197, "lat": 40.442966, "lon": -3.7087995}, {"type": "node", "id": 10966341198, "lat": 40.4430922, "lon": -3.7088808}, {"type": "node", "id": 10966341199, "lat": 40.4435397, "lon": -3.7081311}, {"type": "node", "id": 10966341200, "lat": 40.4435094, "lon": -3.7091496}, {"type": "node", "id": 10966341201, "lat": 40.442792, "lon": -3.7076715}, {"type": "node", "id": 10966341202, "lat": 40.4440403, "lon": -3.7083792}, {"type": "node", "id": 10966341203, "lat": 40.4427807, "lon": -3.7068808}, {"type": "node", "id": 10966341204, "lat": 40.4428692, "lon": -3.7070516}, {"type": "node", "id": 10966341205, "lat": 40.4433404, "lon": -3.7071071}, {"type": "node", "id": 10966341206, "lat": 40.4430627, "lon": -3.7078379}, {"type": "node", "id": 10966341207, "lat": 40.4443709, "lon": -3.7086421}, {"type": "node", "id": 10966341208, "lat": 40.4425472, "lon": -3.707521}, {"type": "node", "id": 10966341209, "lat": 40.4428197, "lon": -3.706774}, {"type": "node", "id": 10966341289, "lat": 40.4428074, "lon": -3.7072606}, {"type": "node", "id": 10966341290, "lat": 40.4428585, "lon": -3.7070932}, {"type": "node", "id": 10966341291, "lat": 40.4426268, "lon": -3.7073493}, {"type": "node", "id": 10966341292, "lat": 40.4427788, "lon": -3.707234}, {"type": "node", "id": 10966341293, "lat": 40.442835, "lon": -3.7072863}, {"type": "node", "id": 10966341294, "lat": 40.4429554, "lon": -3.7070891}, {"type": "node", "id": 10966341295, "lat": 40.4429462, "lon": -3.7072326}, {"type": "node", "id": 10966341296, "lat": 40.4430024, "lon": -3.7073037}, {"type": "node", "id": 10966341297, "lat": 40.443255, "lon": -3.7073232}, {"type": "node", "id": 10966341298, "lat": 40.4428625, "lon": -3.7074861}, {"type": "node", "id": 10966341299, "lat": 40.4429717, "lon": -3.7075022}, {"type": "node", "id": 10966341300, "lat": 40.4431106, "lon": -3.7077074}, {"type": "node", "id": 10968366776, "lat": 40.4425741, "lon": -3.7082388}, {"type": "node", "id": 10968366777, "lat": 40.4430377, "lon": -3.7086055}, {"type": "node", "id": 10968366778, "lat": 40.4431562, "lon": -3.7082848}, {"type": "node", "id": 10968366779, "lat": 40.4431863, "lon": -3.7087231}, {"type": "node", "id": 10968366780, "lat": 40.4433195, "lon": -3.7085}, {"type": "node", "id": 10968366784, "lat": 40.4418904, "lon": -3.7071117}, {"type": "node", "id": 10968366785, "lat": 40.4418575, "lon": -3.7071929}, {"type": "node", "id": 10968366786, "lat": 40.4420925, "lon": -3.7072376}, {"type": "node", "id": 10968366787, "lat": 40.4420593, "lon": -3.7073197}, {"type": "node", "id": 10968366788, "lat": 40.4417377, "lon": -3.7070166}, {"type": "node", "id": 10968366789, "lat": 40.4417051, "lon": -3.7070972}, {"type": "node", "id": 10968366790, "lat": 40.4422667, "lon": -3.70745}, {"type": "node", "id": 10968366792, "lat": 40.4433637, "lon": -3.7072822}, {"type": "node", "id": 10968366793, "lat": 40.4433361, "lon": -3.7073151}, {"type": "node", "id": 10968366794, "lat": 40.443304, "lon": -3.7074278}, {"type": "node", "id": 10968366795, "lat": 40.4433851, "lon": -3.7076779}, {"type": "node", "id": 10968366796, "lat": 40.4431759, "lon": -3.7058417}, {"type": "node", "id": 10968366797, "lat": 40.4444728, "lon": -3.7087016}, {"type": "node", "id": 10968366799, "lat": 40.4442912, "lon": -3.7090062}, {"type": "node", "id": 10968366800, "lat": 40.4438635, "lon": -3.7093777}, {"type": "node", "id": 10992413029, "lat": 40.4495703, "lon": -3.7209612}, {"type": "node", "id": 10992413030, "lat": 40.4498519, "lon": -3.7206634}, {"type": "node", "id": 10992413031, "lat": 40.4502663, "lon": -3.7202236}, {"type": "node", "id": 10992413032, "lat": 40.4505643, "lon": -3.7199178}, {"type": "node", "id": 10992413033, "lat": 40.4506184, "lon": -3.7198776}, {"type": "node", "id": 10992413034, "lat": 40.4506735, "lon": -3.7198735}, {"type": "node", "id": 10992413035, "lat": 40.4507194, "lon": -3.7198856}, {"type": "node", "id": 10992413036, "lat": 40.450749, "lon": -3.7198977}, {"type": "node", "id": 10992413037, "lat": 40.450791, "lon": -3.719944}, {"type": "node", "id": 10992413038, "lat": 40.4487038, "lon": -3.7212817}, {"type": "node", "id": 10992413039, "lat": 40.4487426, "lon": -3.7213139}, {"type": "node", "id": 10992413040, "lat": 40.448811, "lon": -3.7213327}, {"type": "node", "id": 10992413041, "lat": 40.448912, "lon": -3.721279}, {"type": "node", "id": 10992413042, "lat": 40.4490192, "lon": -3.7212052}, {"type": "node", "id": 10992413043, "lat": 40.4493539, "lon": -3.7209826}, {"type": "node", "id": 10992413044, "lat": 40.4494866, "lon": -3.7209022}, {"type": "node", "id": 10992413045, "lat": 40.4496182, "lon": -3.7207707}, {"type": "node", "id": 10992413046, "lat": 40.4502069, "lon": -3.7202839}, {"type": "node", "id": 10992413047, "lat": 40.4501628, "lon": -3.7202155}, {"type": "node", "id": 10992413048, "lat": 40.4508198, "lon": -3.7199179}, {"type": "node", "id": 10992413049, "lat": 40.450799, "lon": -3.7198548}, {"type": "node", "id": 10992413050, "lat": 40.4508021, "lon": -3.7197957}, {"type": "node", "id": 10992413051, "lat": 40.4508133, "lon": -3.7197542}, {"type": "node", "id": 10992413052, "lat": 40.4508408, "lon": -3.7196885}, {"type": "node", "id": 10992413053, "lat": 40.4508857, "lon": -3.7196603}, {"type": "node", "id": 10992413054, "lat": 40.4509664, "lon": -3.7196616}, {"type": "node", "id": 10992413055, "lat": 40.4510398, "lon": -3.7196965}, {"type": "node", "id": 10992413056, "lat": 40.4511245, "lon": -3.7197783}, {"type": "node", "id": 10992413057, "lat": 40.4511878, "lon": -3.7198762}, {"type": "node", "id": 10992413058, "lat": 40.4512072, "lon": -3.7199446}, {"type": "node", "id": 10992413059, "lat": 40.4511837, "lon": -3.7200479}, {"type": "node", "id": 10992413060, "lat": 40.451148, "lon": -3.7202557}, {"type": "node", "id": 10992413061, "lat": 40.4511307, "lon": -3.7204194}, {"type": "node", "id": 10992413062, "lat": 40.4511266, "lon": -3.7204878}, {"type": "node", "id": 10992413063, "lat": 40.4511307, "lon": -3.7206232}, {"type": "node", "id": 10992413064, "lat": 40.4511541, "lon": -3.7207788}, {"type": "node", "id": 10992413065, "lat": 40.4511786, "lon": -3.7209022}, {"type": "node", "id": 10992413066, "lat": 40.4512164, "lon": -3.721043}, {"type": "node", "id": 10992413067, "lat": 40.4512531, "lon": -3.7211154}, {"type": "node", "id": 10992413068, "lat": 40.4514113, "lon": -3.7213635}, {"type": "node", "id": 10992413069, "lat": 40.4514889, "lon": -3.7214601}, {"type": "node", "id": 10992413070, "lat": 40.4516103, "lon": -3.7215633}, {"type": "node", "id": 10992413071, "lat": 40.4517379, "lon": -3.7216304}, {"type": "node", "id": 10992413072, "lat": 40.4518256, "lon": -3.7216787}, {"type": "node", "id": 10992413073, "lat": 40.451891, "lon": -3.7217243}, {"type": "node", "id": 10992413074, "lat": 40.4519491, "lon": -3.7218168}, {"type": "node", "id": 10992413075, "lat": 40.4520308, "lon": -3.7219817}, {"type": "node", "id": 10992413076, "lat": 40.4520859, "lon": -3.7221105}, {"type": "node", "id": 10992413077, "lat": 40.4521665, "lon": -3.7223304}, {"type": "node", "id": 10992413078, "lat": 40.4522073, "lon": -3.7224324}, {"type": "node", "id": 10992413079, "lat": 40.4522328, "lon": -3.7225718}, {"type": "node", "id": 10992413080, "lat": 40.4522532, "lon": -3.722663}, {"type": "node", "id": 10992413081, "lat": 40.4522685, "lon": -3.7227837}, {"type": "node", "id": 10992413082, "lat": 40.4522818, "lon": -3.7228642}, {"type": "node", "id": 10992413083, "lat": 40.4522747, "lon": -3.7229245}, {"type": "node", "id": 10992413084, "lat": 40.4522543, "lon": -3.7229876}, {"type": "node", "id": 10992413085, "lat": 40.4522318, "lon": -3.7230291}, {"type": "node", "id": 10992413086, "lat": 40.4521287, "lon": -3.7231203}, {"type": "node", "id": 11016216297, "lat": 40.4465074, "lon": -3.6908754}, {"type": "node", "id": 11056722063, "lat": 40.4332004, "lon": -3.6915518}, {"type": "node", "id": 11056722064, "lat": 40.4330698, "lon": -3.6916665}, {"type": "node", "id": 11056722065, "lat": 40.4329483, "lon": -3.6916948}, {"type": "node", "id": 11056722066, "lat": 40.4328399, "lon": -3.6916686}, {"type": "node", "id": 11056722067, "lat": 40.4327946, "lon": -3.6916348}, {"type": "node", "id": 11056722068, "lat": 40.4327667, "lon": -3.6916038}, {"type": "node", "id": 11056722069, "lat": 40.4327195, "lon": -3.6915399}, {"type": "node", "id": 11056722070, "lat": 40.4326714, "lon": -3.6914778}, {"type": "node", "id": 11056722071, "lat": 40.432668, "lon": -3.691445}, {"type": "node", "id": 11056722072, "lat": 40.432669, "lon": -3.6914551, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11056722073, "lat": 40.4329337, "lon": -3.6916935, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11061512910, "lat": 40.4449416, "lon": -3.7086808, "tags": {"barrier": "gate"}}, {"type": "node", "id": 11061512911, "lat": 40.4428179, "lon": -3.7094253, "tags": {"barrier": "gate"}}, {"type": "node", "id": 11061512912, "lat": 40.4434932, "lon": -3.7073848}, {"type": "node", "id": 11061512913, "lat": 40.4432492, "lon": -3.7073388}, {"type": "node", "id": 11061512914, "lat": 40.4432362, "lon": -3.7073217}, {"type": "node", "id": 11061512915, "lat": 40.4433067, "lon": -3.7074144}, {"type": "node", "id": 11061512916, "lat": 40.4434249, "lon": -3.7075699}, {"type": "node", "id": 11061512917, "lat": 40.4436152, "lon": -3.7076065}, {"type": "node", "id": 11061512918, "lat": 40.4435298, "lon": -3.7077078}, {"type": "node", "id": 11061512919, "lat": 40.4431451, "lon": -3.7073147}, {"type": "node", "id": 11061512920, "lat": 40.4432233, "lon": -3.7074076}, {"type": "node", "id": 11061512921, "lat": 40.443405, "lon": -3.7076238}, {"type": "node", "id": 11097973983, "lat": 40.4381548, "lon": -3.6846758}, {"type": "node", "id": 11097973985, "lat": 40.4381836, "lon": -3.6847217}, {"type": "node", "id": 11097973987, "lat": 40.4382806, "lon": -3.6845746}, {"type": "node", "id": 11097973988, "lat": 40.4383815, "lon": -3.6844517}, {"type": "node", "id": 11097973989, "lat": 40.4388045, "lon": -3.6837217}, {"type": "node", "id": 11097973990, "lat": 40.4388987, "lon": -3.6835368}, {"type": "node", "id": 11097973991, "lat": 40.4391751, "lon": -3.6829079}, {"type": "node", "id": 11097973992, "lat": 40.4392299, "lon": -3.6827937}, {"type": "node", "id": 11097973993, "lat": 40.4379479, "lon": -3.6850801}, {"type": "node", "id": 11097973994, "lat": 40.4378824, "lon": -3.685196}, {"type": "node", "id": 11097973995, "lat": 40.4378544, "lon": -3.6852458}, {"type": "node", "id": 11097973996, "lat": 40.4378011, "lon": -3.6853922}, {"type": "node", "id": 11097973997, "lat": 40.437777, "lon": -3.6855037}, {"type": "node", "id": 11141805128, "lat": 40.4244467, "lon": -3.6991843}, {"type": "node", "id": 11142044321, "lat": 40.446128, "lon": -3.7123896}, {"type": "node", "id": 11142044322, "lat": 40.4461581, "lon": -3.7122025}, {"type": "node", "id": 11145627654, "lat": 40.428372, "lon": -3.709856}, {"type": "node", "id": 11145627655, "lat": 40.428935, "lon": -3.7101251}, {"type": "node", "id": 11149514151, "lat": 40.4479096, "lon": -3.724607, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514152, "lat": 40.4478428, "lon": -3.7245789, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514153, "lat": 40.4478755, "lon": -3.7247942, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11149514154, "lat": 40.4455042, "lon": -3.7209933, "tags": {"direction": "forward", "highway": "stop", "traffic_sign": "ES:R2"}}, {"type": "node", "id": 11149514155, "lat": 40.4485524, "lon": -3.7215425, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11149514156, "lat": 40.4459168, "lon": -3.7273283, "tags": {"highway": "traffic_signals", "traffic_signals": "signal", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11157455813, "lat": 40.4383308, "lon": -3.7177797, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 11159850014, "lat": 40.4318771, "lon": -3.7169282, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11159850015, "lat": 40.4318715, "lon": -3.7168354}, {"type": "node", "id": 11159850016, "lat": 40.4318096, "lon": -3.7168081}, {"type": "node", "id": 11159850017, "lat": 40.4317214, "lon": -3.7168137}, {"type": "node", "id": 11159850018, "lat": 40.4315922, "lon": -3.7167801}, {"type": "node", "id": 11159850019, "lat": 40.431518, "lon": -3.716739}, {"type": "node", "id": 11159850020, "lat": 40.4314928, "lon": -3.7167161}, {"type": "node", "id": 11159850021, "lat": 40.4314008, "lon": -3.7166607}, {"type": "node", "id": 11159850022, "lat": 40.4312909, "lon": -3.716583}, {"type": "node", "id": 11159850023, "lat": 40.431171, "lon": -3.7164945}, {"type": "node", "id": 11159850024, "lat": 40.4310503, "lon": -3.7164061}, {"type": "node", "id": 11159850025, "lat": 40.4308764, "lon": -3.7162754}, {"type": "node", "id": 11159850026, "lat": 40.4316445, "lon": -3.7168083}, {"type": "node", "id": 11159850027, "lat": 40.4307082, "lon": -3.7159444}, {"type": "node", "id": 11159850028, "lat": 40.4297081, "lon": -3.7158186, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11159850029, "lat": 40.4296516, "lon": -3.7157805, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11159850030, "lat": 40.4295714, "lon": -3.715714}, {"type": "node", "id": 11159850031, "lat": 40.4294928, "lon": -3.715651}, {"type": "node", "id": 11159850032, "lat": 40.4293499, "lon": -3.715545}, {"type": "node", "id": 11159850033, "lat": 40.4292305, "lon": -3.7154605}, {"type": "node", "id": 11159850034, "lat": 40.4290651, "lon": -3.7153586}, {"type": "node", "id": 11159850035, "lat": 40.4288997, "lon": -3.7152553}, {"type": "node", "id": 11159850036, "lat": 40.4288503, "lon": -3.7152247}, {"type": "node", "id": 11159850037, "lat": 40.4297522, "lon": -3.7158027}, {"type": "node", "id": 11159850038, "lat": 40.4297905, "lon": -3.7158144}, {"type": "node", "id": 11159850039, "lat": 40.4299024, "lon": -3.7158938}, {"type": "node", "id": 11159850040, "lat": 40.4300268, "lon": -3.7159884}, {"type": "node", "id": 11167102459, "lat": 40.4494691, "lon": -3.7057639}, {"type": "node", "id": 11167102460, "lat": 40.4494375, "lon": -3.7058898}, {"type": "node", "id": 11167102461, "lat": 40.4494171, "lon": -3.7059044}, {"type": "node", "id": 11167102462, "lat": 40.4493891, "lon": -3.705911}, {"type": "node", "id": 11172580730, "lat": 40.4307468, "lon": -3.705388}, {"type": "node", "id": 11172580731, "lat": 40.4308549, "lon": -3.7059061}, {"type": "node", "id": 11172580732, "lat": 40.4306752, "lon": -3.7059747}, {"type": "node", "id": 11172580733, "lat": 40.4307483, "lon": -3.7063342}, {"type": "node", "id": 11172580734, "lat": 40.4308416, "lon": -3.7058363}, {"type": "node", "id": 11172580735, "lat": 40.4307776, "lon": -3.705555}, {"type": "node", "id": 11200852770, "lat": 40.4462843, "lon": -3.6958664}, {"type": "node", "id": 11200863916, "lat": 40.4454728, "lon": -3.7244545}, {"type": "node", "id": 11200863917, "lat": 40.4454165, "lon": -3.7245118}, {"type": "node", "id": 11200863918, "lat": 40.4453747, "lon": -3.7244409}, {"type": "node", "id": 11200863919, "lat": 40.4454686, "lon": -3.7244746}, {"type": "node", "id": 11200863920, "lat": 40.4454598, "lon": -3.7244919}, {"type": "node", "id": 11200863921, "lat": 40.4454473, "lon": -3.7245046}, {"type": "node", "id": 11200863922, "lat": 40.4454323, "lon": -3.7245115}, {"type": "node", "id": 11200863923, "lat": 40.4454022, "lon": -3.7245059}, {"type": "node", "id": 11200863924, "lat": 40.4453898, "lon": -3.7244947}, {"type": "node", "id": 11200863925, "lat": 40.4453806, "lon": -3.7244791}, {"type": "node", "id": 11200863926, "lat": 40.4453754, "lon": -3.7244606}, {"type": "node", "id": 11200863927, "lat": 40.4453788, "lon": -3.7244212}, {"type": "node", "id": 11200863928, "lat": 40.4453872, "lon": -3.7244042}, {"type": "node", "id": 11200863929, "lat": 40.4453993, "lon": -3.7243914}, {"type": "node", "id": 11200863930, "lat": 40.4454138, "lon": -3.7243842}, {"type": "node", "id": 11200863931, "lat": 40.4454441, "lon": -3.7243887}, {"type": "node", "id": 11200863932, "lat": 40.4454569, "lon": -3.7243998}, {"type": "node", "id": 11200863933, "lat": 40.4454665, "lon": -3.7244155}, {"type": "node", "id": 11200863934, "lat": 40.445472, "lon": -3.7244344}, {"type": "node", "id": 11201893843, "lat": 40.4442433, "lon": -3.7040385}, {"type": "node", "id": 11201940666, "lat": 40.443929, "lon": -3.7048739}, {"type": "node", "id": 11201940667, "lat": 40.4439101, "lon": -3.7048243}, {"type": "node", "id": 11201940668, "lat": 40.4438919, "lon": -3.7042236}, {"type": "node", "id": 11201940669, "lat": 40.4440041, "lon": -3.7049216}, {"type": "node", "id": 11201940673, "lat": 40.4442174, "lon": -3.7061954}, {"type": "node", "id": 11201940677, "lat": 40.4433424, "lon": -3.7055261}, {"type": "node", "id": 11201940678, "lat": 40.443336, "lon": -3.7054638}, {"type": "node", "id": 11201940679, "lat": 40.4436847, "lon": -3.7058541}, {"type": "node", "id": 11201940680, "lat": 40.4436401, "lon": -3.7058109}, {"type": "node", "id": 11201940681, "lat": 40.4435344, "lon": -3.705706}, {"type": "node", "id": 11201940682, "lat": 40.4434741, "lon": -3.7056576}, {"type": "node", "id": 11201940683, "lat": 40.4434132, "lon": -3.7056135}, {"type": "node", "id": 11201940684, "lat": 40.4426725, "lon": -3.7050753}, {"type": "node", "id": 11201940685, "lat": 40.4425413, "lon": -3.7050167}, {"type": "node", "id": 11201940686, "lat": 40.4426021, "lon": -3.7050174}, {"type": "node", "id": 11201940687, "lat": 40.4426456, "lon": -3.7050131}, {"type": "node", "id": 11201940688, "lat": 40.44272, "lon": -3.7050122}, {"type": "node", "id": 11201940689, "lat": 40.4424372, "lon": -3.7050077}, {"type": "node", "id": 11201940690, "lat": 40.4424967, "lon": -3.7050154}, {"type": "node", "id": 11201940691, "lat": 40.4423791, "lon": -3.7049847}, {"type": "node", "id": 11201940692, "lat": 40.4424167, "lon": -3.7050658}, {"type": "node", "id": 11201940693, "lat": 40.4424125, "lon": -3.7051035}, {"type": "node", "id": 11201940694, "lat": 40.4424362, "lon": -3.7050361}, {"type": "node", "id": 11203180090, "lat": 40.444154, "lon": -3.6869995}, {"type": "node", "id": 11203180091, "lat": 40.4439341, "lon": -3.6867408}, {"type": "node", "id": 11203180092, "lat": 40.4439149, "lon": -3.6867245}, {"type": "node", "id": 11203180093, "lat": 40.4438953, "lon": -3.6867282}, {"type": "node", "id": 11203180094, "lat": 40.4438684, "lon": -3.6867295}, {"type": "node", "id": 11203180095, "lat": 40.4438421, "lon": -3.6867352}, {"type": "node", "id": 11203180096, "lat": 40.4438306, "lon": -3.6867011}, {"type": "node", "id": 11203180097, "lat": 40.4438219, "lon": -3.6866602}, {"type": "node", "id": 11218044129, "lat": 40.4216355, "lon": -3.6844686}, {"type": "node", "id": 11218044130, "lat": 40.4230669, "lon": -3.6843651}, {"type": "node", "id": 11218044131, "lat": 40.4231207, "lon": -3.6855656}, {"type": "node", "id": 11218044132, "lat": 40.4355467, "lon": -3.6865427}, {"type": "node", "id": 11218056240, "lat": 40.4377362, "lon": -3.685132}, {"type": "node", "id": 11218056243, "lat": 40.4376025, "lon": -3.684195}, {"type": "node", "id": 11218056244, "lat": 40.4376317, "lon": -3.6842023}, {"type": "node", "id": 11218056245, "lat": 40.4376171, "lon": -3.6841951}, {"type": "node", "id": 11218056246, "lat": 40.4376249, "lon": -3.6837785}, {"type": "node", "id": 11218056247, "lat": 40.4376166, "lon": -3.6835085}, {"type": "node", "id": 11218056251, "lat": 40.4377974, "lon": -3.6855471}, {"type": "node", "id": 11218056252, "lat": 40.4377953, "lon": -3.6861823}, {"type": "node", "id": 11218056253, "lat": 40.4377084, "lon": -3.6854082}, {"type": "node", "id": 11218056254, "lat": 40.4377709, "lon": -3.6852009}, {"type": "node", "id": 11218056255, "lat": 40.4377546, "lon": -3.6852375}, {"type": "node", "id": 11218056256, "lat": 40.4377576, "lon": -3.6864955}, {"type": "node", "id": 11218056257, "lat": 40.4377508, "lon": -3.6863908}, {"type": "node", "id": 11218056258, "lat": 40.4378083, "lon": -3.6883219}, {"type": "node", "id": 11218056259, "lat": 40.4378157, "lon": -3.688155}, {"type": "node", "id": 11218056260, "lat": 40.437818, "lon": -3.6881042}, {"type": "node", "id": 11218056261, "lat": 40.4377991, "lon": -3.6880398}, {"type": "node", "id": 11218056262, "lat": 40.437929, "lon": -3.6896223}, {"type": "node", "id": 11218056263, "lat": 40.4379288, "lon": -3.6892767}, {"type": "node", "id": 11218056264, "lat": 40.4379315, "lon": -3.6893667}, {"type": "node", "id": 11218056265, "lat": 40.4379545, "lon": -3.6881881}, {"type": "node", "id": 11218056266, "lat": 40.4379693, "lon": -3.6879244}, {"type": "node", "id": 11218056267, "lat": 40.4379568, "lon": -3.687935}, {"type": "node", "id": 11218056268, "lat": 40.4378829, "lon": -3.6865294}, {"type": "node", "id": 11218056269, "lat": 40.437983, "lon": -3.6897397}, {"type": "node", "id": 11218056270, "lat": 40.4379916, "lon": -3.6895424}, {"type": "node", "id": 11218056271, "lat": 40.4379967, "lon": -3.68933}, {"type": "node", "id": 11218056272, "lat": 40.4379862, "lon": -3.6898868}, {"type": "node", "id": 11218056273, "lat": 40.4379273, "lon": -3.6899138}, {"type": "node", "id": 11218056274, "lat": 40.4379287, "lon": -3.6897743}, {"type": "node", "id": 11218056275, "lat": 40.4378795, "lon": -3.6898901}, {"type": "node", "id": 11218056288, "lat": 40.4378035, "lon": -3.6854948}, {"type": "node", "id": 11218056294, "lat": 40.4418791, "lon": -3.6827581}, {"type": "node", "id": 11218741758, "lat": 40.4357883, "lon": -3.7196337}, {"type": "node", "id": 11220658527, "lat": 40.4257108, "lon": -3.7116964, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing"}}, {"type": "node", "id": 11220735883, "lat": 40.4273446, "lon": -3.7081384, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220735884, "lat": 40.4274444, "lon": -3.7081183, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220754135, "lat": 40.4266496, "lon": -3.7071176, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220757838, "lat": 40.4266918, "lon": -3.7071614, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220757842, "lat": 40.4266151, "lon": -3.7067906, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11220779542, "lat": 40.4260797, "lon": -3.7069722, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779544, "lat": 40.4260932, "lon": -3.7071047, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779549, "lat": 40.4266041, "lon": -3.7066948, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779550, "lat": 40.4257207, "lon": -3.7071855, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11220779557, "lat": 40.4250854, "lon": -3.7073585, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11223357755, "lat": 40.4378296, "lon": -3.6853069}, {"type": "node", "id": 11223357756, "lat": 40.4388265, "lon": -3.6833424}, {"type": "node", "id": 11223357757, "lat": 40.4388594, "lon": -3.6833782}, {"type": "node", "id": 11225233751, "lat": 40.4274723, "lon": -3.7064744, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11225754836, "lat": 40.4345404, "lon": -3.716641}, {"type": "node", "id": 11225754937, "lat": 40.4353907, "lon": -3.716526}, {"type": "node", "id": 11225754938, "lat": 40.434502, "lon": -3.7165739}, {"type": "node", "id": 11225754939, "lat": 40.435356, "lon": -3.7165907}, {"type": "node", "id": 11225754940, "lat": 40.4344382, "lon": -3.7157084}, {"type": "node", "id": 11225754941, "lat": 40.4344856, "lon": -3.7156101}, {"type": "node", "id": 11225754942, "lat": 40.4353104, "lon": -3.7154351}, {"type": "node", "id": 11225754943, "lat": 40.4344813, "lon": -3.7154811}, {"type": "node", "id": 11225754944, "lat": 40.4343925, "lon": -3.7145361}, {"type": "node", "id": 11225754945, "lat": 40.434429, "lon": -3.714469}, {"type": "node", "id": 11225754946, "lat": 40.4352903, "lon": -3.7144186}, {"type": "node", "id": 11225754947, "lat": 40.4353195, "lon": -3.7144546}, {"type": "node", "id": 11225754948, "lat": 40.4352812, "lon": -3.7142676}, {"type": "node", "id": 11225754949, "lat": 40.4354144, "lon": -3.7144474}, {"type": "node", "id": 11225754950, "lat": 40.4354655, "lon": -3.7143898}, {"type": "node", "id": 11225754951, "lat": 40.4354546, "lon": -3.71427}, {"type": "node", "id": 11225754952, "lat": 40.4354035, "lon": -3.7142268}, {"type": "node", "id": 11225754953, "lat": 40.4353086, "lon": -3.7142268}, {"type": "node", "id": 11225754954, "lat": 40.4352539, "lon": -3.7142987}, {"type": "node", "id": 11225754955, "lat": 40.4348743, "lon": -3.7143155}, {"type": "node", "id": 11225754956, "lat": 40.4348487, "lon": -3.714282}, {"type": "node", "id": 11225754957, "lat": 40.4348123, "lon": -3.713275}, {"type": "node", "id": 11225754958, "lat": 40.4348451, "lon": -3.7132391}, {"type": "node", "id": 11225754959, "lat": 40.4352447, "lon": -3.7132127}, {"type": "node", "id": 11225754960, "lat": 40.4352648, "lon": -3.7132463}, {"type": "node", "id": 11225754961, "lat": 40.434794, "lon": -3.7142892}, {"type": "node", "id": 11225754962, "lat": 40.4347557, "lon": -3.7132894}, {"type": "node", "id": 11225754963, "lat": 40.4353579, "lon": -3.7132487}, {"type": "node", "id": 11225754964, "lat": 40.4354181, "lon": -3.7132151}, {"type": "node", "id": 11225754965, "lat": 40.4354108, "lon": -3.7130856}, {"type": "node", "id": 11225754966, "lat": 40.4353597, "lon": -3.7130401}, {"type": "node", "id": 11225754967, "lat": 40.4352611, "lon": -3.7130425}, {"type": "node", "id": 11225754968, "lat": 40.4352447, "lon": -3.7130904}, {"type": "node", "id": 11225754969, "lat": 40.434825, "lon": -3.7131024}, {"type": "node", "id": 11225754970, "lat": 40.4348141, "lon": -3.7126565}, {"type": "node", "id": 11225754971, "lat": 40.434769, "lon": -3.7126567}, {"type": "node", "id": 11225754972, "lat": 40.4347836, "lon": -3.7130988}, {"type": "node", "id": 11225754973, "lat": 40.4343068, "lon": -3.713148}, {"type": "node", "id": 11225754974, "lat": 40.4342776, "lon": -3.7131168}, {"type": "node", "id": 11225754975, "lat": 40.4341845, "lon": -3.7115944}, {"type": "node", "id": 11225754976, "lat": 40.4342301, "lon": -3.7115489}, {"type": "node", "id": 11225754977, "lat": 40.435179, "lon": -3.7114889}, {"type": "node", "id": 11225754978, "lat": 40.4352028, "lon": -3.7115201}, {"type": "node", "id": 11225754979, "lat": 40.4347894, "lon": -3.7131351}, {"type": "node", "id": 11225754980, "lat": 40.4351738, "lon": -3.7113439}, {"type": "node", "id": 11225754981, "lat": 40.4352886, "lon": -3.711529}, {"type": "node", "id": 11225754982, "lat": 40.4343216, "lon": -3.7133334}, {"type": "node", "id": 11225754983, "lat": 40.4343495, "lon": -3.7133033}, {"type": "node", "id": 11225754984, "lat": 40.4343392, "lon": -3.7131432}, {"type": "node", "id": 11225754985, "lat": 40.4347789, "lon": -3.7143218}, {"type": "node", "id": 11225754986, "lat": 40.4344183, "lon": -3.7143368}, {"type": "node", "id": 11225754987, "lat": 40.4343724, "lon": -3.7142895}, {"type": "node", "id": 11225754988, "lat": 40.434715, "lon": -3.7132731}, {"type": "node", "id": 11225754989, "lat": 40.4341938, "lon": -3.7131224}, {"type": "node", "id": 11225754990, "lat": 40.4341053, "lon": -3.7116066}, {"type": "node", "id": 11225754991, "lat": 40.4340528, "lon": -3.7115656}, {"type": "node", "id": 11225754992, "lat": 40.4330514, "lon": -3.7116712}, {"type": "node", "id": 11225754993, "lat": 40.4330072, "lon": -3.7117681}, {"type": "node", "id": 11225754994, "lat": 40.4330449, "lon": -3.7131612}, {"type": "node", "id": 11225754995, "lat": 40.4330957, "lon": -3.7132129}, {"type": "node", "id": 11225754996, "lat": 40.4340829, "lon": -3.7131526}, {"type": "node", "id": 11225754997, "lat": 40.4341698, "lon": -3.7131504}, {"type": "node", "id": 11225754998, "lat": 40.4334242, "lon": -3.7116319}, {"type": "node", "id": 11225754999, "lat": 40.4329078, "lon": -3.7117164}, {"type": "node", "id": 11225755000, "lat": 40.433016, "lon": -3.711557}, {"type": "node", "id": 11225755001, "lat": 40.4341519, "lon": -3.7116011}, {"type": "node", "id": 11225755002, "lat": 40.4341849, "lon": -3.7116003}, {"type": "node", "id": 11225755003, "lat": 40.4340498, "lon": -3.7115116}, {"type": "node", "id": 11225755004, "lat": 40.434048, "lon": -3.711463}, {"type": "node", "id": 11225755005, "lat": 40.4342231, "lon": -3.7114465}, {"type": "node", "id": 11225755006, "lat": 40.4341767, "lon": -3.7113972}, {"type": "node", "id": 11225755007, "lat": 40.4340998, "lon": -3.7113949}, {"type": "node", "id": 11225755008, "lat": 40.4340301, "lon": -3.7104275}, {"type": "node", "id": 11225755009, "lat": 40.4339979, "lon": -3.7103711}, {"type": "node", "id": 11225755010, "lat": 40.4330057, "lon": -3.7104251}, {"type": "node", "id": 11225755011, "lat": 40.4329643, "lon": -3.7104477}, {"type": "node", "id": 11225755012, "lat": 40.4329861, "lon": -3.7115475}, {"type": "node", "id": 11225755013, "lat": 40.433634, "lon": -3.7114982}, {"type": "node", "id": 11225755014, "lat": 40.4332902, "lon": -3.7115309}, {"type": "node", "id": 11225755015, "lat": 40.4332763, "lon": -3.7108219}, {"type": "node", "id": 11225755016, "lat": 40.4333228, "lon": -3.7108219}, {"type": "node", "id": 11225755017, "lat": 40.4333299, "lon": -3.7107444}, {"type": "node", "id": 11225755018, "lat": 40.4333335, "lon": -3.7106834}, {"type": "node", "id": 11225755019, "lat": 40.4333514, "lon": -3.7106458}, {"type": "node", "id": 11225755020, "lat": 40.4333782, "lon": -3.7105965}, {"type": "node", "id": 11225755021, "lat": 40.4334175, "lon": -3.710566}, {"type": "node", "id": 11225755022, "lat": 40.433455, "lon": -3.7105331}, {"type": "node", "id": 11225755023, "lat": 40.4334693, "lon": -3.7104979}, {"type": "node", "id": 11225755024, "lat": 40.4334708, "lon": -3.7103998}, {"type": "node", "id": 11225755025, "lat": 40.4334622, "lon": -3.7106317}, {"type": "node", "id": 11225755026, "lat": 40.4334854, "lon": -3.7107398}, {"type": "node", "id": 11225755027, "lat": 40.4335176, "lon": -3.710782}, {"type": "node", "id": 11225755028, "lat": 40.4335569, "lon": -3.7107938}, {"type": "node", "id": 11225755029, "lat": 40.4335962, "lon": -3.7107961}, {"type": "node", "id": 11225755030, "lat": 40.4334658, "lon": -3.7107985}, {"type": "node", "id": 11225755031, "lat": 40.4334157, "lon": -3.710836}, {"type": "node", "id": 11225755032, "lat": 40.4335355, "lon": -3.71089}, {"type": "node", "id": 11225755033, "lat": 40.4334926, "lon": -3.7109346}, {"type": "node", "id": 11225755034, "lat": 40.4334264, "lon": -3.7109229}, {"type": "node", "id": 11225755035, "lat": 40.4334104, "lon": -3.71089}, {"type": "node", "id": 11225755036, "lat": 40.4335154, "lon": -3.7104699}, {"type": "node", "id": 11225755037, "lat": 40.4335915, "lon": -3.7104672}, {"type": "node", "id": 11225755038, "lat": 40.4341262, "lon": -3.710424}, {"type": "node", "id": 11225755039, "lat": 40.4341674, "lon": -3.7103753}, {"type": "node", "id": 11225755040, "lat": 40.434153, "lon": -3.7101997}, {"type": "node", "id": 11225755041, "lat": 40.4339967, "lon": -3.710197}, {"type": "node", "id": 11225755042, "lat": 40.4341098, "lon": -3.7101808}, {"type": "node", "id": 11225755044, "lat": 40.4339699, "lon": -3.7102267}, {"type": "node", "id": 11225755045, "lat": 40.4336368, "lon": -3.7102348}, {"type": "node", "id": 11225755046, "lat": 40.4335072, "lon": -3.7088076}, {"type": "node", "id": 11225755047, "lat": 40.4338897, "lon": -3.7087779}, {"type": "node", "id": 11225755048, "lat": 40.4339082, "lon": -3.7087995}, {"type": "node", "id": 11225755049, "lat": 40.4340275, "lon": -3.7087833}, {"type": "node", "id": 11225755050, "lat": 40.4330013, "lon": -3.7102775}, {"type": "node", "id": 11225755051, "lat": 40.4335442, "lon": -3.7102477}, {"type": "node", "id": 11225755052, "lat": 40.4335792, "lon": -3.7101829}, {"type": "node", "id": 11225755053, "lat": 40.4334578, "lon": -3.7088103}, {"type": "node", "id": 11225755054, "lat": 40.4329416, "lon": -3.7088535}, {"type": "node", "id": 11225755055, "lat": 40.432919, "lon": -3.7088914}, {"type": "node", "id": 11225755056, "lat": 40.4329519, "lon": -3.7102369}, {"type": "node", "id": 11225755057, "lat": 40.4336311, "lon": -3.710172}, {"type": "node", "id": 11225755058, "lat": 40.4336039, "lon": -3.7101775}, {"type": "node", "id": 11225755059, "lat": 40.432882, "lon": -3.710245}, {"type": "node", "id": 11225755060, "lat": 40.4328841, "lon": -3.7104504}, {"type": "node", "id": 11225755061, "lat": 40.4328224, "lon": -3.7104261}, {"type": "node", "id": 11225755062, "lat": 40.4328224, "lon": -3.7102883}, {"type": "node", "id": 11225755063, "lat": 40.4317714, "lon": -3.7116149}, {"type": "node", "id": 11225755064, "lat": 40.4318042, "lon": -3.7116438}, {"type": "node", "id": 11225755065, "lat": 40.4328697, "lon": -3.711569}, {"type": "node", "id": 11225755066, "lat": 40.4329108, "lon": -3.7115149}, {"type": "node", "id": 11225755067, "lat": 40.4317694, "lon": -3.710499}, {"type": "node", "id": 11225755068, "lat": 40.4317364, "lon": -3.7105314}, {"type": "node", "id": 11225755069, "lat": 40.4329594, "lon": -3.7115071}, {"type": "node", "id": 11225755070, "lat": 40.4329852, "lon": -3.7115042}, {"type": "node", "id": 11225755071, "lat": 40.4328758, "lon": -3.7116771}, {"type": "node", "id": 11225755072, "lat": 40.4329128, "lon": -3.7118203}, {"type": "node", "id": 11225755073, "lat": 40.4318434, "lon": -3.7126903}, {"type": "node", "id": 11225755074, "lat": 40.4317981, "lon": -3.7126606}, {"type": "node", "id": 11225755075, "lat": 40.4317735, "lon": -3.7117932}, {"type": "node", "id": 11225755076, "lat": 40.4318002, "lon": -3.7117716}, {"type": "node", "id": 11225755077, "lat": 40.432919, "lon": -3.7119851}, {"type": "node", "id": 11225755078, "lat": 40.4329663, "lon": -3.7131766}, {"type": "node", "id": 11225755079, "lat": 40.4329231, "lon": -3.7132523}, {"type": "node", "id": 11225755080, "lat": 40.4325406, "lon": -3.7132523}, {"type": "node", "id": 11225755081, "lat": 40.4322012, "lon": -3.7124795}, {"type": "node", "id": 11225755082, "lat": 40.4328799, "lon": -3.7119364}, {"type": "node", "id": 11225755083, "lat": 40.432486, "lon": -3.7132753}, {"type": "node", "id": 11225755084, "lat": 40.431866, "lon": -3.7133306}, {"type": "node", "id": 11225755085, "lat": 40.4318228, "lon": -3.7132874}, {"type": "node", "id": 11225755086, "lat": 40.4318023, "lon": -3.7128011}, {"type": "node", "id": 11225755087, "lat": 40.432149, "lon": -3.7125157}, {"type": "node", "id": 11225755088, "lat": 40.4325052, "lon": -3.7132678}, {"type": "node", "id": 11225755089, "lat": 40.4322179, "lon": -3.7125174}, {"type": "node", "id": 11225755090, "lat": 40.4321675, "lon": -3.7125574}, {"type": "node", "id": 11225755091, "lat": 40.4329313, "lon": -3.7134175}, {"type": "node", "id": 11225755092, "lat": 40.4329566, "lon": -3.7134569}, {"type": "node", "id": 11225755093, "lat": 40.43192, "lon": -3.7144992}, {"type": "node", "id": 11225755094, "lat": 40.4318774, "lon": -3.7144556}, {"type": "node", "id": 11225755095, "lat": 40.4318537, "lon": -3.7135213}, {"type": "node", "id": 11225755096, "lat": 40.4318868, "lon": -3.7134901}, {"type": "node", "id": 11225755097, "lat": 40.4319034, "lon": -3.7144822}, {"type": "node", "id": 11225755098, "lat": 40.4318229, "lon": -3.7156287}, {"type": "node", "id": 11225755099, "lat": 40.4317913, "lon": -3.7156661}, {"type": "node", "id": 11225755100, "lat": 40.4317961, "lon": -3.7146632}, {"type": "node", "id": 11225755101, "lat": 40.4317644, "lon": -3.71463}, {"type": "node", "id": 11225755102, "lat": 40.431755, "lon": -3.7145075}, {"type": "node", "id": 11225755103, "lat": 40.4317881, "lon": -3.7144764}, {"type": "node", "id": 11225755104, "lat": 40.431712, "lon": -3.713513}, {"type": "node", "id": 11225755105, "lat": 40.4317547, "lon": -3.7135628}, {"type": "node", "id": 11225755106, "lat": 40.4317345, "lon": -3.7135233}, {"type": "node", "id": 11225755107, "lat": 40.4317342, "lon": -3.7133033}, {"type": "node", "id": 11225755108, "lat": 40.4318265, "lon": -3.7132911}, {"type": "node", "id": 11225755109, "lat": 40.4317026, "lon": -3.7133386}, {"type": "node", "id": 11225755110, "lat": 40.4312395, "lon": -3.7133676}, {"type": "node", "id": 11225755111, "lat": 40.4311268, "lon": -3.7118583}, {"type": "node", "id": 11225755112, "lat": 40.4311505, "lon": -3.7118355}, {"type": "node", "id": 11225755113, "lat": 40.4316847, "lon": -3.7117856}, {"type": "node", "id": 11225755114, "lat": 40.4317431, "lon": -3.7132432}, {"type": "node", "id": 11225755115, "lat": 40.4311837, "lon": -3.7133719}, {"type": "node", "id": 11225755116, "lat": 40.4311916, "lon": -3.7133221}, {"type": "node", "id": 11225755117, "lat": 40.4310762, "lon": -3.7118417}, {"type": "node", "id": 11225755118, "lat": 40.4303595, "lon": -3.711904}, {"type": "node", "id": 11225755119, "lat": 40.4302705, "lon": -3.7138769}, {"type": "node", "id": 11225755120, "lat": 40.4311288, "lon": -3.7118862}, {"type": "node", "id": 11225755121, "lat": 40.4310791, "lon": -3.7118788}, {"type": "node", "id": 11225755122, "lat": 40.4318266, "lon": -3.7126793}, {"type": "node", "id": 11225755123, "lat": 40.431831, "lon": -3.7127774}, {"type": "node", "id": 11225755124, "lat": 40.4318008, "lon": -3.7117125}, {"type": "node", "id": 11225755125, "lat": 40.4331304, "lon": -3.7133966}, {"type": "node", "id": 11225755126, "lat": 40.4331264, "lon": -3.713211}, {"type": "node", "id": 11225755127, "lat": 40.4330626, "lon": -3.713426}, {"type": "node", "id": 11225755128, "lat": 40.4329445, "lon": -3.713438}, {"type": "node", "id": 11225755129, "lat": 40.4330762, "lon": -3.7131931}, {"type": "node", "id": 11225755130, "lat": 40.4329452, "lon": -3.7132137}, {"type": "node", "id": 11225755131, "lat": 40.4318878, "lon": -3.7133287}, {"type": "node", "id": 11225755132, "lat": 40.4319018, "lon": -3.713489}, {"type": "node", "id": 11225755133, "lat": 40.4342173, "lon": -3.7178961}, {"type": "node", "id": 11225755134, "lat": 40.4343927, "lon": -3.7168206}, {"type": "node", "id": 11225755135, "lat": 40.4343611, "lon": -3.7167625}, {"type": "node", "id": 11225755136, "lat": 40.433141, "lon": -3.7171632}, {"type": "node", "id": 11225755137, "lat": 40.433948, "lon": -3.7177129}, {"type": "node", "id": 11225755138, "lat": 40.434015, "lon": -3.717186}, {"type": "node", "id": 11225755139, "lat": 40.4343361, "lon": -3.7171674}, {"type": "node", "id": 11225755140, "lat": 40.434457, "lon": -3.7173355}, {"type": "node", "id": 11225755141, "lat": 40.4354402, "lon": -3.7172663}, {"type": "node", "id": 11225755142, "lat": 40.4351291, "lon": -3.7172882}, {"type": "node", "id": 11225755143, "lat": 40.4351639, "lon": -3.7179003}, {"type": "node", "id": 11225755144, "lat": 40.4348289, "lon": -3.7179127}, {"type": "node", "id": 11225755145, "lat": 40.4348194, "lon": -3.7177757}, {"type": "node", "id": 11225755146, "lat": 40.4347309, "lon": -3.717784}, {"type": "node", "id": 11225755147, "lat": 40.4347152, "lon": -3.7173174}, {"type": "node", "id": 11225755148, "lat": 40.4351734, "lon": -3.718139}, {"type": "node", "id": 11225755149, "lat": 40.4350201, "lon": -3.7181473}, {"type": "node", "id": 11225755150, "lat": 40.4350059, "lon": -3.7179057}, {"type": "node", "id": 11225755151, "lat": 40.4351252, "lon": -3.7182179}, {"type": "node", "id": 11225755152, "lat": 40.4351191, "lon": -3.7179695}, {"type": "node", "id": 11225755153, "lat": 40.4351915, "lon": -3.7179644}, {"type": "node", "id": 11225755154, "lat": 40.4352031, "lon": -3.718207}, {"type": "node", "id": 11225755155, "lat": 40.4351677, "lon": -3.7179964}, {"type": "node", "id": 11225755156, "lat": 40.4351282, "lon": -3.7179974}, {"type": "node", "id": 11225755157, "lat": 40.4351303, "lon": -3.7180559}, {"type": "node", "id": 11225755158, "lat": 40.435106, "lon": -3.7180878}, {"type": "node", "id": 11225755159, "lat": 40.4350756, "lon": -3.7180918}, {"type": "node", "id": 11225755160, "lat": 40.4350513, "lon": -3.7180732}, {"type": "node", "id": 11225755161, "lat": 40.4350371, "lon": -3.7180147}, {"type": "node", "id": 11225755162, "lat": 40.4350564, "lon": -3.7179761}, {"type": "node", "id": 11225755163, "lat": 40.4350807, "lon": -3.7179708}, {"type": "node", "id": 11225755164, "lat": 40.4350444, "lon": -3.7179912}, {"type": "node", "id": 11225755165, "lat": 40.4350398, "lon": -3.7180547}, {"type": "node", "id": 11225755166, "lat": 40.4348245, "lon": -3.7178494}, {"type": "node", "id": 11225755167, "lat": 40.4351597, "lon": -3.7178259}, {"type": "node", "id": 11225755168, "lat": 40.4350478, "lon": -3.7178337}, {"type": "node", "id": 11225755169, "lat": 40.4350263, "lon": -3.7172954}, {"type": "node", "id": 11225755170, "lat": 40.4350492, "lon": -3.7179042}, {"type": "node", "id": 11228709907, "lat": 40.4257199, "lon": -3.7116351, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228713079, "lat": 40.4265497, "lon": -3.7128878, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11228713086, "lat": 40.4262838, "lon": -3.7125635, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228737727, "lat": 40.4256736, "lon": -3.7116067, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766801, "lat": 40.4274229, "lon": -3.7075765, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766814, "lat": 40.4274266, "lon": -3.7074877, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766815, "lat": 40.4274775, "lon": -3.7075233, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766816, "lat": 40.4273781, "lon": -3.7075397, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766832, "lat": 40.4274557, "lon": -3.7068454, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11228766833, "lat": 40.4274136, "lon": -3.7067938, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230730612, "lat": 40.4290819, "lon": -3.7036836, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771818, "lat": 40.4278994, "lon": -3.705031, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771831, "lat": 40.4278391, "lon": -3.7049765, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771832, "lat": 40.4277971, "lon": -3.7050512, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230771833, "lat": 40.4278605, "lon": -3.7050926, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230772039, "lat": 40.4271667, "lon": -3.7064025, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777622, "lat": 40.4275772, "lon": -3.7036395, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777623, "lat": 40.4275124, "lon": -3.7035787, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777624, "lat": 40.4275537, "lon": -3.7035142, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230777625, "lat": 40.4276197, "lon": -3.7035605, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799213, "lat": 40.4286285, "lon": -3.7034202, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799215, "lat": 40.4287082, "lon": -3.7037488, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799229, "lat": 40.4288393, "lon": -3.7048348, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799230, "lat": 40.4287781, "lon": -3.7047866, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799231, "lat": 40.4287415, "lon": -3.7048549, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11230799232, "lat": 40.4287915, "lon": -3.7049122, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083977, "lat": 40.4276517, "lon": -3.7040035, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083978, "lat": 40.427676, "lon": -3.7039417, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083979, "lat": 40.4276313, "lon": -3.703901, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083989, "lat": 40.4286635, "lon": -3.7036967, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083990, "lat": 40.4286774, "lon": -3.7038179, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234083991, "lat": 40.4286253, "lon": -3.7037634, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11234142746, "lat": 40.4285525, "lon": -3.7033774, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11236540406, "lat": 40.427079, "lon": -3.7045038, "tags": {"addr:city": "Madrid", "addr:housenumber": "3", "addr:postcode": "28004", "addr:street": "Plaza del Dos de Mayo", "entrance": "main"}}, {"type": "node", "id": 11236540407, "lat": 40.4272446, "lon": -3.7044772, "tags": {"addr:city": "Madrid", "addr:housenumber": "4", "addr:postcode": "28004", "addr:street": "Plaza del Dos de Mayo", "entrance": "main"}}, {"type": "node", "id": 11237949945, "lat": 40.4284653, "lon": -3.7159383, "tags": {"crossing": "traffic_signals", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248474979, "lat": 40.425628, "lon": -3.7093952, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing"}}, {"type": "node", "id": 11248474987, "lat": 40.4259427, "lon": -3.7099958, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486981, "lat": 40.4262245, "lon": -3.7106207, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486982, "lat": 40.426184, "lon": -3.7107153, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11248486983, "lat": 40.426093, "lon": -3.7106943, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11250448278, "lat": 40.4219727, "lon": -3.6941744, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11250448289, "lat": 40.4219258, "lon": -3.6949173, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11269072934, "lat": 40.451767, "lon": -3.7062584}, {"type": "node", "id": 11279337787, "lat": 40.4324268, "lon": -3.7194175}, {"type": "node", "id": 11279337788, "lat": 40.4332127, "lon": -3.7235846}, {"type": "node", "id": 11279337789, "lat": 40.4328077, "lon": -3.7207931}, {"type": "node", "id": 11279585502, "lat": 40.4300274, "lon": -3.7106787}, {"type": "node", "id": 11280466187, "lat": 40.4342154, "lon": -3.7190356, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 11280466189, "lat": 40.4335908, "lon": -3.7185983, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 11281513840, "lat": 40.4247509, "lon": -3.7111012}, {"type": "node", "id": 11308306880, "lat": 40.4352609, "lon": -3.719188}, {"type": "node", "id": 11308306881, "lat": 40.4353424, "lon": -3.7193428}, {"type": "node", "id": 11308306882, "lat": 40.4354053, "lon": -3.7195421}, {"type": "node", "id": 11308306883, "lat": 40.4354945, "lon": -3.7197172}, {"type": "node", "id": 11308306884, "lat": 40.4355866, "lon": -3.7198982}, {"type": "node", "id": 11308306885, "lat": 40.4356328, "lon": -3.7199889}, {"type": "node", "id": 11308306886, "lat": 40.4355343, "lon": -3.7197954}, {"type": "node", "id": 11308306887, "lat": 40.4354511, "lon": -3.7196322}, {"type": "node", "id": 11308306888, "lat": 40.4352848, "lon": -3.7193877}, {"type": "node", "id": 11308306889, "lat": 40.4352061, "lon": -3.7192326}, {"type": "node", "id": 11308306890, "lat": 40.4355288, "lon": -3.719002}, {"type": "node", "id": 11308306891, "lat": 40.4356199, "lon": -3.7192503}, {"type": "node", "id": 11308306892, "lat": 40.4357138, "lon": -3.7194178}, {"type": "node", "id": 11308306893, "lat": 40.435808, "lon": -3.7195819}, {"type": "node", "id": 11308306894, "lat": 40.4358961, "lon": -3.7197355}, {"type": "node", "id": 11308306895, "lat": 40.4359142, "lon": -3.719767}, {"type": "node", "id": 11308306896, "lat": 40.4358155, "lon": -3.719595}, {"type": "node", "id": 11308306897, "lat": 40.4356825, "lon": -3.7193632}, {"type": "node", "id": 11308306898, "lat": 40.4356165, "lon": -3.7191769}, {"type": "node", "id": 11343888027, "lat": 40.4453376, "lon": -3.724433, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11343888028, "lat": 40.4455034, "lon": -3.7244564, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11343888029, "lat": 40.4454121, "lon": -3.724553, "tags": {"direction": "backward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 11359780700, "lat": 40.4504766, "lon": -3.7032991}, {"type": "node", "id": 11362355011, "lat": 40.4333688, "lon": -3.6982094}, {"type": "node", "id": 11362355032, "lat": 40.4334605, "lon": -3.6979065}, {"type": "node", "id": 11375162107, "lat": 40.4489653, "lon": -3.7163468}, {"type": "node", "id": 11375162108, "lat": 40.4488115, "lon": -3.716455}, {"type": "node", "id": 11377765528, "lat": 40.4244534, "lon": -3.6909719}, {"type": "node", "id": 11377765529, "lat": 40.4240985, "lon": -3.6941822, "tags": {"barrier": "gate"}}, {"type": "node", "id": 11377765530, "lat": 40.4276173, "lon": -3.7039529, "tags": {"barrier": "bollard"}}, {"type": "node", "id": 11377765531, "lat": 40.4263807, "lon": -3.7041583, "tags": {"barrier": "bollard"}}, {"type": "node", "id": 11377765532, "lat": 40.4270365, "lon": -3.7051542, "tags": {"barrier": "bollard"}}, {"type": "node", "id": 11381137918, "lat": 40.4377476, "lon": -3.7180148, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11381137921, "lat": 40.4377762, "lon": -3.7180099, "tags": {"barrier": "kerb", "kerb": "flush", "wheelchair": "yes"}}, {"type": "node", "id": 11381137922, "lat": 40.4399756, "lon": -3.7178194}, {"type": "node", "id": 11381137923, "lat": 40.4399803, "lon": -3.7179098}, {"type": "node", "id": 11381137924, "lat": 40.4399958, "lon": -3.7180225}, {"type": "node", "id": 11381137925, "lat": 40.4400397, "lon": -3.7183023}, {"type": "node", "id": 11381137926, "lat": 40.440048, "lon": -3.7184514}, {"type": "node", "id": 11381137927, "lat": 40.4400261, "lon": -3.7185622}, {"type": "node", "id": 11381137928, "lat": 40.4400435, "lon": -3.7187818, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381137929, "lat": 40.4400245, "lon": -3.7188227}, {"type": "node", "id": 11381137930, "lat": 40.4395765, "lon": -3.7197493}, {"type": "node", "id": 11381137931, "lat": 40.4398272, "lon": -3.7187667}, {"type": "node", "id": 11381137932, "lat": 40.439836, "lon": -3.7187479}, {"type": "node", "id": 11381137933, "lat": 40.4398105, "lon": -3.7186763}, {"type": "node", "id": 11381137934, "lat": 40.4400599, "lon": -3.7187488}, {"type": "node", "id": 11381137935, "lat": 40.4400884, "lon": -3.7187689}, {"type": "node", "id": 11381137936, "lat": 40.4402752, "lon": -3.7189201}, {"type": "node", "id": 11381137937, "lat": 40.4403295, "lon": -3.7188075}, {"type": "node", "id": 11381137938, "lat": 40.4402588, "lon": -3.7187524}, {"type": "node", "id": 11381137939, "lat": 40.4402817, "lon": -3.7187031}, {"type": "node", "id": 11381137940, "lat": 40.440163, "lon": -3.7186106}, {"type": "node", "id": 11381137941, "lat": 40.4401492, "lon": -3.7185594}, {"type": "node", "id": 11381137942, "lat": 40.4401503, "lon": -3.7182534}, {"type": "node", "id": 11381137945, "lat": 40.4400737, "lon": -3.7178851}, {"type": "node", "id": 11381137946, "lat": 40.440075, "lon": -3.7180258}, {"type": "node", "id": 11381137947, "lat": 40.4400997, "lon": -3.7181955}, {"type": "node", "id": 11381137948, "lat": 40.440129, "lon": -3.7182413}, {"type": "node", "id": 11381137955, "lat": 40.4400352, "lon": -3.7182417}, {"type": "node", "id": 11381137962, "lat": 40.4400019, "lon": -3.7186462}, {"type": "node", "id": 11381137963, "lat": 40.4399686, "lon": -3.7187215}, {"type": "node", "id": 11381137966, "lat": 40.4399393, "lon": -3.7187475}, {"type": "node", "id": 11381137967, "lat": 40.439908, "lon": -3.7187839}, {"type": "node", "id": 11381137968, "lat": 40.4397891, "lon": -3.7190294}, {"type": "node", "id": 11381176969, "lat": 40.439647, "lon": -3.7193224}, {"type": "node", "id": 11381176970, "lat": 40.439536, "lon": -3.719554}, {"type": "node", "id": 11381176971, "lat": 40.4395283, "lon": -3.7195781}, {"type": "node", "id": 11381176972, "lat": 40.4395184, "lon": -3.7196248}, {"type": "node", "id": 11381176973, "lat": 40.4394972, "lon": -3.7196786}, {"type": "node", "id": 11381176974, "lat": 40.4399588, "lon": -3.7188004}, {"type": "node", "id": 11381176975, "lat": 40.4399237, "lon": -3.7188527}, {"type": "node", "id": 11381176976, "lat": 40.4398256, "lon": -3.7190592}, {"type": "node", "id": 11381176977, "lat": 40.4398098, "lon": -3.7190903}, {"type": "node", "id": 11381176978, "lat": 40.4398739, "lon": -3.7191437}, {"type": "node", "id": 11381176979, "lat": 40.4397518, "lon": -3.7193991}, {"type": "node", "id": 11381176980, "lat": 40.4396893, "lon": -3.7193479}, {"type": "node", "id": 11381176981, "lat": 40.4396852, "lon": -3.7193552}, {"type": "node", "id": 11381176982, "lat": 40.43958, "lon": -3.7195686}, {"type": "node", "id": 11381176983, "lat": 40.4395571, "lon": -3.7196381}, {"type": "node", "id": 11381176984, "lat": 40.439817, "lon": -3.7192617}, {"type": "node", "id": 11381176985, "lat": 40.439959, "lon": -3.7187697}, {"type": "node", "id": 11381176986, "lat": 40.4395148, "lon": -3.7196973, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381176987, "lat": 40.4397737, "lon": -3.7190612}, {"type": "node", "id": 11381176988, "lat": 40.4395697, "lon": -3.7197441, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381176989, "lat": 40.439253, "lon": -3.7201864}, {"type": "node", "id": 11381176992, "lat": 40.4392587, "lon": -3.7202742}, {"type": "node", "id": 11381176993, "lat": 40.4392307, "lon": -3.7203041}, {"type": "node", "id": 11381176994, "lat": 40.4393939, "lon": -3.7195375}, {"type": "node", "id": 11381176995, "lat": 40.4394074, "lon": -3.7195502}, {"type": "node", "id": 11381176997, "lat": 40.4395218, "lon": -3.7190008}, {"type": "node", "id": 11381176998, "lat": 40.4395947, "lon": -3.7190632, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11381176999, "lat": 40.4396821, "lon": -3.7191348}, {"type": "node", "id": 11381177009, "lat": 40.4397114, "lon": -3.7174734}, {"type": "node", "id": 11381177010, "lat": 40.4400258, "lon": -3.7175253}, {"type": "node", "id": 11381177011, "lat": 40.4401448, "lon": -3.7175683}, {"type": "node", "id": 11381177012, "lat": 40.4402965, "lon": -3.717652}, {"type": "node", "id": 11381177013, "lat": 40.4409584, "lon": -3.7180024, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11381177014, "lat": 40.4409444, "lon": -3.7179951}, {"type": "node", "id": 11381177015, "lat": 40.4410628, "lon": -3.7176283}, {"type": "node", "id": 11381177016, "lat": 40.4410933, "lon": -3.7175297}, {"type": "node", "id": 11381177017, "lat": 40.4412089, "lon": -3.7171489}, {"type": "node", "id": 11381177018, "lat": 40.441245, "lon": -3.7169851}, {"type": "node", "id": 11381177019, "lat": 40.4412641, "lon": -3.716788}, {"type": "node", "id": 11381177020, "lat": 40.4412658, "lon": -3.7166865}, {"type": "node", "id": 11381177021, "lat": 40.4411993, "lon": -3.7165198}, {"type": "node", "id": 11381177022, "lat": 40.4411491, "lon": -3.7164524}, {"type": "node", "id": 11381177023, "lat": 40.4406365, "lon": -3.7158322}, {"type": "node", "id": 11381177024, "lat": 40.4405615, "lon": -3.7159382}, {"type": "node", "id": 11381177025, "lat": 40.4408695, "lon": -3.7180249, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11381177026, "lat": 40.4410943, "lon": -3.7180697}, {"type": "node", "id": 11381177027, "lat": 40.4410823, "lon": -3.7180686, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381177028, "lat": 40.4408236, "lon": -3.7181788, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381177029, "lat": 40.440811, "lon": -3.7182222}, {"type": "node", "id": 11381177030, "lat": 40.4428673, "lon": -3.7190427, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11381177031, "lat": 40.4427636, "lon": -3.7189879}, {"type": "node", "id": 11381177032, "lat": 40.4401481, "lon": -3.7185146}, {"type": "node", "id": 11381177033, "lat": 40.4397393, "lon": -3.7194117}, {"type": "node", "id": 11381177034, "lat": 40.4398886, "lon": -3.719104}, {"type": "node", "id": 11394143390, "lat": 40.436295, "lon": -3.7187221, "tags": {"addr:housenumber": "2", "addr:street": "Calle Ib\u00e1\u00f1ez Mart\u00edn"}}, {"type": "node", "id": 11394145812, "lat": 40.437814, "lon": -3.7182304, "tags": {"addr:housenumber": "5", "addr:street": "Calle Ib\u00e1\u00f1ez Mart\u00edn"}}, {"type": "node", "id": 11395568487, "lat": 40.4380694, "lon": -3.7186918}, {"type": "node", "id": 11408056408, "lat": 40.4241484, "lon": -3.6940012}, {"type": "node", "id": 11408056409, "lat": 40.4241784, "lon": -3.6939879}, {"type": "node", "id": 11408056410, "lat": 40.4241991, "lon": -3.6939788}, {"type": "node", "id": 11408056411, "lat": 40.4240648, "lon": -3.694038}, {"type": "node", "id": 11408056412, "lat": 40.4241268, "lon": -3.6943125}, {"type": "node", "id": 11408268315, "lat": 40.4352837, "lon": -3.7192313}, {"type": "node", "id": 11486687684, "lat": 40.4304439, "lon": -3.6866591}, {"type": "node", "id": 11486687685, "lat": 40.4305074, "lon": -3.68653}, {"type": "node", "id": 11486687686, "lat": 40.4304972, "lon": -3.6863382, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 11525423807, "lat": 40.4494428, "lon": -3.7037405, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423808, "lat": 40.4455365, "lon": -3.7041067}, {"type": "node", "id": 11525423809, "lat": 40.4455244, "lon": -3.7041297}, {"type": "node", "id": 11525423810, "lat": 40.4454436, "lon": -3.7041545}, {"type": "node", "id": 11525423811, "lat": 40.4454261, "lon": -3.7041209}, {"type": "node", "id": 11525423812, "lat": 40.4453924, "lon": -3.7041049}, {"type": "node", "id": 11525423813, "lat": 40.4444538, "lon": -3.7041562}, {"type": "node", "id": 11525423814, "lat": 40.4444537, "lon": -3.7040315, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423815, "lat": 40.4433602, "lon": -3.7041651}, {"type": "node", "id": 11525423816, "lat": 40.443336, "lon": -3.7041739}, {"type": "node", "id": 11525423817, "lat": 40.4433279, "lon": -3.7041987}, {"type": "node", "id": 11525423818, "lat": 40.443329, "lon": -3.7042374}, {"type": "node", "id": 11525423819, "lat": 40.4432431, "lon": -3.7042323}, {"type": "node", "id": 11525423820, "lat": 40.4432284, "lon": -3.7041988}, {"type": "node", "id": 11525423821, "lat": 40.4432168, "lon": -3.7041825}, {"type": "node", "id": 11525423822, "lat": 40.4431813, "lon": -3.7041683}, {"type": "node", "id": 11525423823, "lat": 40.4424433, "lon": -3.7042146}, {"type": "node", "id": 11525423824, "lat": 40.4424148, "lon": -3.7042286}, {"type": "node", "id": 11525423825, "lat": 40.4424024, "lon": -3.704245}, {"type": "node", "id": 11525423826, "lat": 40.4423971, "lon": -3.7042847}, {"type": "node", "id": 11525423827, "lat": 40.4461984, "lon": -3.7040943}, {"type": "node", "id": 11525423828, "lat": 40.4349973, "lon": -3.7044257}, {"type": "node", "id": 11525423829, "lat": 40.4349663, "lon": -3.704442}, {"type": "node", "id": 11525423830, "lat": 40.4349416, "lon": -3.7044826}, {"type": "node", "id": 11525423831, "lat": 40.4348394, "lon": -3.7044908}, {"type": "node", "id": 11525423832, "lat": 40.4348116, "lon": -3.7044664}, {"type": "node", "id": 11525423833, "lat": 40.4347652, "lon": -3.7044582}, {"type": "node", "id": 11525423834, "lat": 40.4339699, "lon": -3.7044786}, {"type": "node", "id": 11525423835, "lat": 40.4339328, "lon": -3.704503}, {"type": "node", "id": 11525423836, "lat": 40.433908, "lon": -3.7045477}, {"type": "node", "id": 11525423837, "lat": 40.433843, "lon": -3.7046818}, {"type": "node", "id": 11525423838, "lat": 40.4337935, "lon": -3.704751}, {"type": "node", "id": 11525423839, "lat": 40.4337347, "lon": -3.7047997}, {"type": "node", "id": 11525423840, "lat": 40.4336543, "lon": -3.7048241}, {"type": "node", "id": 11525423841, "lat": 40.43358, "lon": -3.7048404}, {"type": "node", "id": 11525423842, "lat": 40.433515, "lon": -3.7048404}, {"type": "node", "id": 11525423843, "lat": 40.4322184, "lon": -3.704942}, {"type": "node", "id": 11525423844, "lat": 40.4321906, "lon": -3.7049705}, {"type": "node", "id": 11525423845, "lat": 40.4321907, "lon": -3.7050584}, {"type": "node", "id": 11525423846, "lat": 40.4323127, "lon": -3.7051231}, {"type": "node", "id": 11525423847, "lat": 40.4322752, "lon": -3.7052494}, {"type": "node", "id": 11525423848, "lat": 40.4321813, "lon": -3.7052247}, {"type": "node", "id": 11525423849, "lat": 40.4318053, "lon": -3.705262}, {"type": "node", "id": 11525423850, "lat": 40.4314356, "lon": -3.7052771}, {"type": "node", "id": 11525423851, "lat": 40.4313554, "lon": -3.7054191}, {"type": "node", "id": 11525423852, "lat": 40.4307712, "lon": -3.7055203, "tags": {"highway": "crossing"}}, {"type": "node", "id": 11525423853, "lat": 40.4300508, "lon": -3.7057868}, {"type": "node", "id": 11525423854, "lat": 40.428975, "lon": -3.7061731}, {"type": "node", "id": 11525423855, "lat": 40.4280531, "lon": -3.7063912, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423856, "lat": 40.4272072, "lon": -3.7065123}, {"type": "node", "id": 11525423857, "lat": 40.4266417, "lon": -3.7067632}, {"type": "node", "id": 11525423858, "lat": 40.4265775, "lon": -3.706784}, {"type": "node", "id": 11525423859, "lat": 40.4255346, "lon": -3.7074299}, {"type": "node", "id": 11525423860, "lat": 40.4255752, "lon": -3.7074253, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423861, "lat": 40.425604, "lon": -3.707398}, {"type": "node", "id": 11525423862, "lat": 40.4252075, "lon": -3.7074907}, {"type": "node", "id": 11525423863, "lat": 40.4241694, "lon": -3.707472}, {"type": "node", "id": 11525423865, "lat": 40.4239374, "lon": -3.7074995, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423866, "lat": 40.4234034, "lon": -3.7075566, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11525423867, "lat": 40.4227378, "lon": -3.7076904}, {"type": "node", "id": 11525423868, "lat": 40.4217698, "lon": -3.707946}, {"type": "node", "id": 11525478869, "lat": 40.424199, "lon": -3.7074698}, {"type": "node", "id": 11525478870, "lat": 40.4233882, "lon": -3.7075597}, {"type": "node", "id": 11525478871, "lat": 40.4228197, "lon": -3.7076745}, {"type": "node", "id": 11525478872, "lat": 40.4231182, "lon": -3.7076022}, {"type": "node", "id": 11525478873, "lat": 40.4217569, "lon": -3.7079733}, {"type": "node", "id": 11533548037, "lat": 40.4273464, "lon": -3.710592}, {"type": "node", "id": 11533548038, "lat": 40.4282883, "lon": -3.7099704}, {"type": "node", "id": 11533548039, "lat": 40.4283912, "lon": -3.709908}, {"type": "node", "id": 11533548040, "lat": 40.4285897, "lon": -3.709771}, {"type": "node", "id": 11533548041, "lat": 40.4287192, "lon": -3.7096885}, {"type": "node", "id": 11533548042, "lat": 40.4287338, "lon": -3.7096836}, {"type": "node", "id": 11533548043, "lat": 40.4287514, "lon": -3.7096866}, {"type": "node", "id": 11533548044, "lat": 40.4287623, "lon": -3.7096984}, {"type": "node", "id": 11533548045, "lat": 40.4288216, "lon": -3.7099432}, {"type": "node", "id": 11533548046, "lat": 40.4288724, "lon": -3.7101512}, {"type": "node", "id": 11533548047, "lat": 40.429413, "lon": -3.7123247}, {"type": "node", "id": 11533548048, "lat": 40.4294212, "lon": -3.7123631}, {"type": "node", "id": 11533548049, "lat": 40.4294193, "lon": -3.7123901}, {"type": "node", "id": 11533548050, "lat": 40.4294079, "lon": -3.7124219}, {"type": "node", "id": 11533548051, "lat": 40.4293886, "lon": -3.7124407}, {"type": "node", "id": 11533548052, "lat": 40.4275061, "lon": -3.7137842}, {"type": "node", "id": 11533548053, "lat": 40.4274871, "lon": -3.7137896}, {"type": "node", "id": 11533548054, "lat": 40.4274669, "lon": -3.7137832}, {"type": "node", "id": 11533548055, "lat": 40.4274455, "lon": -3.713767}, {"type": "node", "id": 11533548056, "lat": 40.4271645, "lon": -3.7134966}, {"type": "node", "id": 11533548057, "lat": 40.4271211, "lon": -3.7134298}, {"type": "node", "id": 11533548058, "lat": 40.4271091, "lon": -3.7134042}, {"type": "node", "id": 11533548059, "lat": 40.4270964, "lon": -3.7133776}, {"type": "node", "id": 11533548060, "lat": 40.42694, "lon": -3.713213}, {"type": "node", "id": 11533548061, "lat": 40.426642, "lon": -3.7129134}, {"type": "node", "id": 11533548062, "lat": 40.426565, "lon": -3.7128224}, {"type": "node", "id": 11533548063, "lat": 40.4265433, "lon": -3.7128012}, {"type": "node", "id": 11533548064, "lat": 40.4264926, "lon": -3.7127599}, {"type": "node", "id": 11533548065, "lat": 40.4263825, "lon": -3.7126232}, {"type": "node", "id": 11533548066, "lat": 40.4263746, "lon": -3.712598}, {"type": "node", "id": 11533548067, "lat": 40.4263816, "lon": -3.7125716}, {"type": "node", "id": 11533548068, "lat": 40.4268321, "lon": -3.7122004}, {"type": "node", "id": 11533572569, "lat": 40.4268032, "lon": -3.7121335}, {"type": "node", "id": 11533572570, "lat": 40.4267938, "lon": -3.712133}, {"type": "node", "id": 11533572571, "lat": 40.4267882, "lon": -3.7121262}, {"type": "node", "id": 11533572572, "lat": 40.4264179, "lon": -3.7112123}, {"type": "node", "id": 11533572573, "lat": 40.4264166, "lon": -3.7112004}, {"type": "node", "id": 11533572574, "lat": 40.4264252, "lon": -3.7111925}, {"type": "node", "id": 11533572575, "lat": 40.4272424, "lon": -3.7105351}, {"type": "node", "id": 11533572576, "lat": 40.42725, "lon": -3.7105558, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572578, "lat": 40.4272621, "lon": -3.7105869, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572579, "lat": 40.4272734, "lon": -3.7106149, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572580, "lat": 40.4272803, "lon": -3.7106351}, {"type": "node", "id": 11533572582, "lat": 40.4280146, "lon": -3.7101304, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572583, "lat": 40.4280193, "lon": -3.7101468}, {"type": "node", "id": 11533572584, "lat": 40.4279964, "lon": -3.7100654, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572585, "lat": 40.4280047, "lon": -3.710099, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572586, "lat": 40.42799, "lon": -3.7100442}, {"type": "node", "id": 11533572587, "lat": 40.4287521, "lon": -3.7096388, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572588, "lat": 40.4287538, "lon": -3.7094481, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572589, "lat": 40.4287514, "lon": -3.7094296}, {"type": "node", "id": 11533572590, "lat": 40.4287526, "lon": -3.709658, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572591, "lat": 40.4287879, "lon": -3.7097031, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572592, "lat": 40.4287656, "lon": -3.7097123}, {"type": "node", "id": 11533572593, "lat": 40.4288649, "lon": -3.7096769, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572594, "lat": 40.4288819, "lon": -3.7096713}, {"type": "node", "id": 11533572595, "lat": 40.4288385, "lon": -3.7097225, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572596, "lat": 40.4287771, "lon": -3.7095391, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572597, "lat": 40.4287231, "lon": -3.7095502, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572598, "lat": 40.4285645, "lon": -3.7096672}, {"type": "node", "id": 11533572599, "lat": 40.4288079, "lon": -3.7094002, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572600, "lat": 40.4290339, "lon": -3.7093449}, {"type": "node", "id": 11533572601, "lat": 40.4288742, "lon": -3.7096738, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572602, "lat": 40.428776, "lon": -3.709708, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572603, "lat": 40.4287522, "lon": -3.7094359, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572604, "lat": 40.4290693, "lon": -3.7106314, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11533572605, "lat": 40.429445, "lon": -3.7125123, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572606, "lat": 40.4294498, "lon": -3.7125234, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572607, "lat": 40.429458, "lon": -3.7125576}, {"type": "node", "id": 11533572608, "lat": 40.429418, "lon": -3.712441, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572609, "lat": 40.4294284, "lon": -3.7124687, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 11533572610, "lat": 40.4294137, "lon": -3.7124297, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572611, "lat": 40.4294919, "lon": -3.7125365, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572612, "lat": 40.4294779, "lon": -3.7125481, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11533572613, "lat": 40.4295465, "lon": -3.7124926, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572614, "lat": 40.4295145, "lon": -3.7125182, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "highway": "crossing", "source": "bing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 11533572615, "lat": 40.4295734, "lon": -3.7124753}, {"type": "node", "id": 11533572616, "lat": 40.4295579, "lon": -3.7124856, "tags": {"highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11533572617, "lat": 40.4284329, "lon": -3.7133312, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572618, "lat": 40.4284528, "lon": -3.7133435}, {"type": "node", "id": 11533572619, "lat": 40.4283733, "lon": -3.7132947, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572620, "lat": 40.4283256, "lon": -3.7133072}, {"type": "node", "id": 11533572621, "lat": 40.4266426, "lon": -3.7128951}, {"type": "node", "id": 11533572622, "lat": 40.4265769, "lon": -3.7128224}, {"type": "node", "id": 11533572623, "lat": 40.426613, "lon": -3.7128596, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11533572624, "lat": 40.4264403, "lon": -3.7111613, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572625, "lat": 40.4264465, "lon": -3.7111787}, {"type": "node", "id": 11533572626, "lat": 40.4264198, "lon": -3.7110974, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572627, "lat": 40.4264305, "lon": -3.7111304, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572628, "lat": 40.4264137, "lon": -3.7110814}, {"type": "node", "id": 11533572629, "lat": 40.426339, "lon": -3.7112291, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572630, "lat": 40.4263447, "lon": -3.711244}, {"type": "node", "id": 11533572631, "lat": 40.4263189, "lon": -3.7111758, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572632, "lat": 40.4263285, "lon": -3.7112001, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572633, "lat": 40.4263144, "lon": -3.7111677}, {"type": "node", "id": 11533572634, "lat": 40.4264212, "lon": -3.7112391, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572635, "lat": 40.4264271, "lon": -3.7112349}, {"type": "node", "id": 11533572636, "lat": 40.4263882, "lon": -3.7112659, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572637, "lat": 40.4264062, "lon": -3.7112513, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11533572638, "lat": 40.4263806, "lon": -3.711273}, {"type": "node", "id": 11533572639, "lat": 40.4263374, "lon": -3.7111258, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572640, "lat": 40.4263303, "lon": -3.7111302}, {"type": "node", "id": 11533572641, "lat": 40.4263618, "lon": -3.7111094, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572642, "lat": 40.4263678, "lon": -3.7110992}, {"type": "node", "id": 11533572643, "lat": 40.4291604, "lon": -3.7106658, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572644, "lat": 40.4291621, "lon": -3.710686}, {"type": "node", "id": 11533572645, "lat": 40.4291518, "lon": -3.7105938, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11533572646, "lat": 40.4291501, "lon": -3.7105719}, {"type": "node", "id": 11533572647, "lat": 40.4261725, "lon": -3.7106435, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11533572648, "lat": 40.4263861, "lon": -3.7112046, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11563811456, "lat": 40.4302306, "lon": -3.6908414}, {"type": "node", "id": 11563811457, "lat": 40.4300914, "lon": -3.6900321}, {"type": "node", "id": 11563811458, "lat": 40.4297149, "lon": -3.6901088}, {"type": "node", "id": 11563811459, "lat": 40.4302067, "lon": -3.6903945}, {"type": "node", "id": 11563811460, "lat": 40.4295332, "lon": -3.6910306, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11563811461, "lat": 40.4294678, "lon": -3.6911625, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11563811462, "lat": 40.4294014, "lon": -3.6910522, "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 11563811463, "lat": 40.4301427, "lon": -3.6900984}, {"type": "node", "id": 11563811464, "lat": 40.4301224, "lon": -3.6900592}, {"type": "node", "id": 11612987873, "lat": 40.4355598, "lon": -3.7199094}, {"type": "node", "id": 11612987874, "lat": 40.4355667, "lon": -3.7198382}, {"type": "node", "id": 11612987875, "lat": 40.4355907, "lon": -3.7197779}, {"type": "node", "id": 11612987876, "lat": 40.4356688, "lon": -3.7196758}, {"type": "node", "id": 11612987877, "lat": 40.4357162, "lon": -3.7196479}, {"type": "node", "id": 11612987878, "lat": 40.435766, "lon": -3.7196352}, {"type": "node", "id": 11612987879, "lat": 40.435811, "lon": -3.7196343}, {"type": "node", "id": 11612987880, "lat": 40.4352872, "lon": -3.719496}, {"type": "node", "id": 11645324625, "lat": 40.4418166, "lon": -3.720912}, {"type": "node", "id": 11645324626, "lat": 40.4418252, "lon": -3.7209191}, {"type": "node", "id": 11645324627, "lat": 40.4419362, "lon": -3.7206872}, {"type": "node", "id": 11645324630, "lat": 40.4420841, "lon": -3.7206443}, {"type": "node", "id": 11645324631, "lat": 40.442084, "lon": -3.7206667}, {"type": "node", "id": 11645324632, "lat": 40.4420955, "lon": -3.7207897}, {"type": "node", "id": 11645324633, "lat": 40.4421204, "lon": -3.7209401}, {"type": "node", "id": 11645324634, "lat": 40.4421752, "lon": -3.7210684}, {"type": "node", "id": 11645324635, "lat": 40.4422762, "lon": -3.7212554}, {"type": "node", "id": 11645324636, "lat": 40.4421921, "lon": -3.7213448}, {"type": "node", "id": 11645324637, "lat": 40.4417035, "lon": -3.7208238, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645324638, "lat": 40.4417555, "lon": -3.7208632, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645324639, "lat": 40.4417152, "lon": -3.7206783, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645324640, "lat": 40.4417654, "lon": -3.7205675, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645324641, "lat": 40.4417408, "lon": -3.7206226, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645324642, "lat": 40.4416253, "lon": -3.7209224, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645324643, "lat": 40.4416171, "lon": -3.7209421, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645324644, "lat": 40.4415962, "lon": -3.7209901, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645324645, "lat": 40.4416192, "lon": -3.7207613}, {"type": "node", "id": 11645324646, "lat": 40.4415791, "lon": -3.7208438}, {"type": "node", "id": 11645324647, "lat": 40.4415699, "lon": -3.7208366}, {"type": "node", "id": 11645324648, "lat": 40.4416067, "lon": -3.7207578}, {"type": "node", "id": 11645324649, "lat": 40.4415862, "lon": -3.7207405}, {"type": "node", "id": 11645324650, "lat": 40.4416142, "lon": -3.7207311}, {"type": "node", "id": 11645324651, "lat": 40.441596, "lon": -3.7207136}, {"type": "node", "id": 11645324652, "lat": 40.4415779, "lon": -3.7207129}, {"type": "node", "id": 11645324663, "lat": 40.442148, "lon": -3.7210096}, {"type": "node", "id": 11645324664, "lat": 40.4425594, "lon": -3.7215369}, {"type": "node", "id": 11645324665, "lat": 40.4424634, "lon": -3.7214573}, {"type": "node", "id": 11645324666, "lat": 40.4425323, "lon": -3.721515}, {"type": "node", "id": 11645324667, "lat": 40.4425224, "lon": -3.7215065}, {"type": "node", "id": 11645324668, "lat": 40.442492, "lon": -3.7214817}, {"type": "node", "id": 11645339769, "lat": 40.4425038, "lon": -3.7214914}, {"type": "node", "id": 11645339770, "lat": 40.4429275, "lon": -3.7214393}, {"type": "node", "id": 11645339771, "lat": 40.4438659, "lon": -3.7215075}, {"type": "node", "id": 11645339772, "lat": 40.4439505, "lon": -3.7214057}, {"type": "node", "id": 11645339776, "lat": 40.4439451, "lon": -3.7212483}, {"type": "node", "id": 11645339777, "lat": 40.4438455, "lon": -3.7211603}, {"type": "node", "id": 11645339778, "lat": 40.4437842, "lon": -3.7210506}, {"type": "node", "id": 11645339779, "lat": 40.4437377, "lon": -3.7209329}, {"type": "node", "id": 11645339780, "lat": 40.4437338, "lon": -3.7208991}, {"type": "node", "id": 11645339781, "lat": 40.443685, "lon": -3.7212556}, {"type": "node", "id": 11645339782, "lat": 40.4436261, "lon": -3.7210777}, {"type": "node", "id": 11645339783, "lat": 40.4439395, "lon": -3.7213433}, {"type": "node", "id": 11645339784, "lat": 40.4439539, "lon": -3.7213458}, {"type": "node", "id": 11645339786, "lat": 40.4437353, "lon": -3.7208722}, {"type": "node", "id": 11645339787, "lat": 40.4435614, "lon": -3.7208629}, {"type": "node", "id": 11645339788, "lat": 40.4420791, "lon": -3.7204685, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 11645339789, "lat": 40.4420188, "lon": -3.7204535, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339790, "lat": 40.4419957, "lon": -3.7204594}, {"type": "node", "id": 11645339791, "lat": 40.4420511, "lon": -3.7204007}, {"type": "node", "id": 11645339792, "lat": 40.4420971, "lon": -3.7203243}, {"type": "node", "id": 11645339793, "lat": 40.4422197, "lon": -3.720048}, {"type": "node", "id": 11645339794, "lat": 40.4422453, "lon": -3.7199713}, {"type": "node", "id": 11645339795, "lat": 40.4422592, "lon": -3.7198998}, {"type": "node", "id": 11645339796, "lat": 40.4422511, "lon": -3.7198367}, {"type": "node", "id": 11645339797, "lat": 40.4422316, "lon": -3.7197764}, {"type": "node", "id": 11645339798, "lat": 40.4422019, "lon": -3.7197281}, {"type": "node", "id": 11645339799, "lat": 40.4420651, "lon": -3.7196067}, {"type": "node", "id": 11645339800, "lat": 40.4415688, "lon": -3.7192031}, {"type": "node", "id": 11645339801, "lat": 40.4415443, "lon": -3.7192079}, {"type": "node", "id": 11645339802, "lat": 40.4414588, "lon": -3.719138}, {"type": "node", "id": 11645339803, "lat": 40.4415046, "lon": -3.7190355, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339804, "lat": 40.4414637, "lon": -3.7191283, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339808, "lat": 40.4421001, "lon": -3.7204269}, {"type": "node", "id": 11645339809, "lat": 40.4421639, "lon": -3.7202753}, {"type": "node", "id": 11645339810, "lat": 40.4420776, "lon": -3.7203647}, {"type": "node", "id": 11645339811, "lat": 40.4419747, "lon": -3.720475}, {"type": "node", "id": 11645339812, "lat": 40.4420077, "lon": -3.7204467}, {"type": "node", "id": 11645339813, "lat": 40.4421454, "lon": -3.7202106}, {"type": "node", "id": 11645339814, "lat": 40.4421122, "lon": -3.7202907}, {"type": "node", "id": 11645339815, "lat": 40.4421298, "lon": -3.7202491, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11645339817, "lat": 40.4415088, "lon": -3.7190286}, {"type": "node", "id": 11645339818, "lat": 40.4409715, "lon": -3.7185811}, {"type": "node", "id": 11645339819, "lat": 40.4409657, "lon": -3.7185726}, {"type": "node", "id": 11645339820, "lat": 40.4409648, "lon": -3.7185646}, {"type": "node", "id": 11645339821, "lat": 40.4410517, "lon": -3.7183666}, {"type": "node", "id": 11645339822, "lat": 40.4410065, "lon": -3.7183797, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339823, "lat": 40.4409987, "lon": -3.7183382, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339824, "lat": 40.4410424, "lon": -3.7183616, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339825, "lat": 40.4409914, "lon": -3.7183344, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339826, "lat": 40.441047, "lon": -3.7183641, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11645339827, "lat": 40.4409839, "lon": -3.7183303}, {"type": "node", "id": 11645339828, "lat": 40.4408204, "lon": -3.7181899, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339829, "lat": 40.4408747, "lon": -3.7180094, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11645339830, "lat": 40.439661, "lon": -3.7175723, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339831, "lat": 40.4397523, "lon": -3.7176465, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339832, "lat": 40.4439153, "lon": -3.7207684, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11645339833, "lat": 40.4439734, "lon": -3.7209369, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339834, "lat": 40.4440722, "lon": -3.7209483, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339835, "lat": 40.4440189, "lon": -3.7209411, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11645339836, "lat": 40.4439587, "lon": -3.7209353}, {"type": "node", "id": 11645339837, "lat": 40.4441094, "lon": -3.7209441}, {"type": "node", "id": 11645339838, "lat": 40.4440873, "lon": -3.7209531}, {"type": "node", "id": 11645339839, "lat": 40.4440627, "lon": -3.7209834}, {"type": "node", "id": 11645339840, "lat": 40.4440535, "lon": -3.7210338}, {"type": "node", "id": 11645339841, "lat": 40.4440504, "lon": -3.721081}, {"type": "node", "id": 11645339843, "lat": 40.4450091, "lon": -3.7210902}, {"type": "node", "id": 11645339844, "lat": 40.4450241, "lon": -3.7210953, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339845, "lat": 40.4451142, "lon": -3.7211213, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339846, "lat": 40.4454473, "lon": -3.7211047}, {"type": "node", "id": 11645339847, "lat": 40.4455949, "lon": -3.7215297}, {"type": "node", "id": 11645339848, "lat": 40.4456301, "lon": -3.721633}, {"type": "node", "id": 11645339849, "lat": 40.4456026, "lon": -3.7215522, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339850, "lat": 40.4456225, "lon": -3.7216122, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339852, "lat": 40.445698, "lon": -3.7214418, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339853, "lat": 40.4457236, "lon": -3.7215143, "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 11645339854, "lat": 40.4457507, "lon": -3.7215693, "tags": {"barrier": "kerb"}}, {"type": "node", "id": 11645339857, "lat": 40.4444193, "lon": -3.7208456, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11645339858, "lat": 40.4443767, "lon": -3.7208385, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11645339859, "lat": 40.4452595, "lon": -3.7209935, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11645339860, "lat": 40.445393, "lon": -3.7210483, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339861, "lat": 40.4453978, "lon": -3.7210753, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645339862, "lat": 40.4454037, "lon": -3.7211014, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339863, "lat": 40.4453015, "lon": -3.7210621}, {"type": "node", "id": 11645339864, "lat": 40.4453554, "lon": -3.7210762}, {"type": "node", "id": 11645339865, "lat": 40.445406, "lon": -3.7211158}, {"type": "node", "id": 11645339867, "lat": 40.446845, "lon": -3.719091, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11645339868, "lat": 40.4468494, "lon": -3.7191888, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339869, "lat": 40.4469033, "lon": -3.7191418, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 11645339870, "lat": 40.4468736, "lon": -3.7191669, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11645339871, "lat": 40.4468842, "lon": -3.719195}, {"type": "node", "id": 11645339872, "lat": 40.4469284, "lon": -3.7192709}, {"type": "node", "id": 11645339873, "lat": 40.4461674, "lon": -3.7199044, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339874, "lat": 40.4462154, "lon": -3.7199382, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11645339875, "lat": 40.4461683, "lon": -3.71983, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339876, "lat": 40.4467934, "lon": -3.7183415, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 11645339877, "lat": 40.4467541, "lon": -3.7183509, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 11645339878, "lat": 40.4467158, "lon": -3.7183584, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 11645339879, "lat": 40.4467083, "lon": -3.7183608, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339880, "lat": 40.446704, "lon": -3.7183643}, {"type": "node", "id": 11645339881, "lat": 40.4468076, "lon": -3.7183402, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11645339882, "lat": 40.4466986, "lon": -3.7183502}, {"type": "node", "id": 11645339883, "lat": 40.4468085, "lon": -3.7182338}, {"type": "node", "id": 11645339884, "lat": 40.4465957, "lon": -3.7183713, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 11645339885, "lat": 40.4465688, "lon": -3.7183364, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 11645339886, "lat": 40.4465371, "lon": -3.7182865, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 11645339887, "lat": 40.4465251, "lon": -3.7182728, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339888, "lat": 40.4466171, "lon": -3.7184007}, {"type": "node", "id": 11645339889, "lat": 40.4466038, "lon": -3.7183821, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "pedestrian_crossing", "traffic_signals:direction": "backward"}}, {"type": "node", "id": 11645339890, "lat": 40.4465856, "lon": -3.7183145, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 11645339891, "lat": 40.4467575, "lon": -3.7183765, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339892, "lat": 40.4467018, "lon": -3.71798, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals": "traffic_lights", "traffic_signals:direction": "forward"}}, {"type": "node", "id": 11645339893, "lat": 40.4479238, "lon": -3.7172422, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 11655970547, "lat": 40.4261605, "lon": -3.6804844}, {"type": "node", "id": 11676998739, "lat": 40.4292813, "lon": -3.6878504}, {"type": "node", "id": 11676998740, "lat": 40.4292611, "lon": -3.6874953, "tags": {"access": "yes", "addr:street": "Calle del Marqu\u00e9s de Villamagna", "amenity": "parking_entrance", "name": "Parking Serranopark Marqu\u00e9s de Villamagna", "parking": "underground", "phone": "+34914362085"}}, {"type": "node", "id": 11676998741, "lat": 40.4292788, "lon": -3.6877994}, {"type": "node", "id": 11690216371, "lat": 40.4403694, "lon": -3.7187912}, {"type": "node", "id": 11690216372, "lat": 40.4403187, "lon": -3.718752}, {"type": "node", "id": 11690216373, "lat": 40.4403844, "lon": -3.7188028, "tags": {"description": "Anatom\u00eda Patol\u00f3gica", "entrance": "yes", "name": "Puerta F"}}, {"type": "node", "id": 11690216374, "lat": 40.4403014, "lon": -3.7187856, "tags": {"barrier": "kerb", "tactile_paving": "no", "wheelchair": "no"}}, {"type": "node", "id": 11690216375, "lat": 40.440333, "lon": -3.7187631}, {"type": "node", "id": 11690216376, "lat": 40.4403117, "lon": -3.7187655}, {"type": "node", "id": 11690678639, "lat": 40.4426632, "lon": -3.7157074}, {"type": "node", "id": 11690678640, "lat": 40.4416194, "lon": -3.7144557}, {"type": "node", "id": 11690678641, "lat": 40.4401551, "lon": -3.7186274}, {"type": "node", "id": 11690678642, "lat": 40.4449637, "lon": -3.7180264}, {"type": "node", "id": 11690678643, "lat": 40.4413498, "lon": -3.7164336}, {"type": "node", "id": 11690678644, "lat": 40.4443667, "lon": -3.7197662, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690678645, "lat": 40.4433909, "lon": -3.716513}, {"type": "node", "id": 11690678646, "lat": 40.4413716, "lon": -3.716761}, {"type": "node", "id": 11690678648, "lat": 40.4413416, "lon": -3.7170405}, {"type": "node", "id": 11690678649, "lat": 40.44446, "lon": -3.7187366, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690678650, "lat": 40.4452668, "lon": -3.7193705}, {"type": "node", "id": 11690678651, "lat": 40.4434749, "lon": -3.7177865}, {"type": "node", "id": 11690678652, "lat": 40.440644, "lon": -3.7158182}, {"type": "node", "id": 11690678653, "lat": 40.4435123, "lon": -3.7157006}, {"type": "node", "id": 11690678655, "lat": 40.4446564, "lon": -3.7183896}, {"type": "node", "id": 11690678656, "lat": 40.4451507, "lon": -3.7196431}, {"type": "node", "id": 11690678657, "lat": 40.4422005, "lon": -3.7150499, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690678658, "lat": 40.445289, "lon": -3.7193709}, {"type": "node", "id": 11690678659, "lat": 40.4442702, "lon": -3.7184753}, {"type": "node", "id": 11690678660, "lat": 40.4438012, "lon": -3.7184669}, {"type": "node", "id": 11690678661, "lat": 40.4444029, "lon": -3.7187501}, {"type": "node", "id": 11690678662, "lat": 40.4437567, "lon": -3.717268}, {"type": "node", "id": 11690678663, "lat": 40.4443373, "lon": -3.7175469}, {"type": "node", "id": 11690678664, "lat": 40.4450416, "lon": -3.7179901}, {"type": "node", "id": 11690678665, "lat": 40.4421719, "lon": -3.7151536, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690678666, "lat": 40.4434611, "lon": -3.7158895}, {"type": "node", "id": 11690678667, "lat": 40.4428211, "lon": -3.7173444, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690678668, "lat": 40.4443967, "lon": -3.7192453}, {"type": "node", "id": 11690717869, "lat": 40.4426949, "lon": -3.719012, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717870, "lat": 40.4428429, "lon": -3.7152506}, {"type": "node", "id": 11690717871, "lat": 40.4452255, "lon": -3.7193529}, {"type": "node", "id": 11690717872, "lat": 40.4413372, "lon": -3.7165011}, {"type": "node", "id": 11690717874, "lat": 40.4435534, "lon": -3.7155845}, {"type": "node", "id": 11690717875, "lat": 40.4412159, "lon": -3.7163697, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690717876, "lat": 40.4444926, "lon": -3.7186728, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717878, "lat": 40.4443298, "lon": -3.7183498}, {"type": "node", "id": 11690717879, "lat": 40.4435459, "lon": -3.7160913, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717880, "lat": 40.4412846, "lon": -3.7163592, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717881, "lat": 40.4443184, "lon": -3.7197632}, {"type": "node", "id": 11690717882, "lat": 40.4427117, "lon": -3.7157005, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717883, "lat": 40.4428133, "lon": -3.7152253, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717884, "lat": 40.4405931, "lon": -3.7183573}, {"type": "node", "id": 11690717885, "lat": 40.4441287, "lon": -3.7170599}, {"type": "node", "id": 11690717886, "lat": 40.4406959, "lon": -3.7183681}, {"type": "node", "id": 11690717887, "lat": 40.4450981, "lon": -3.7179755}, {"type": "node", "id": 11690717888, "lat": 40.4413658, "lon": -3.7166181}, {"type": "node", "id": 11690717889, "lat": 40.4451551, "lon": -3.7183315}, {"type": "node", "id": 11690717890, "lat": 40.4438002, "lon": -3.7198458, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690717891, "lat": 40.4413374, "lon": -3.7164702}, {"type": "node", "id": 11690717892, "lat": 40.440673, "lon": -3.7184244}, {"type": "node", "id": 11690717893, "lat": 40.4436831, "lon": -3.7185443, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690717894, "lat": 40.4447106, "lon": -3.718314}, {"type": "node", "id": 11690717896, "lat": 40.4406913, "lon": -3.7183409}, {"type": "node", "id": 11690717897, "lat": 40.4428083, "lon": -3.715692}, {"type": "node", "id": 11690717898, "lat": 40.443663, "lon": -3.7172904}, {"type": "node", "id": 11690717899, "lat": 40.4409095, "lon": -3.718485}, {"type": "node", "id": 11690717900, "lat": 40.4436752, "lon": -3.7184631, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717902, "lat": 40.4414553, "lon": -3.714557}, {"type": "node", "id": 11690717903, "lat": 40.4443158, "lon": -3.7187661}, {"type": "node", "id": 11690717905, "lat": 40.4436181, "lon": -3.7176611}, {"type": "node", "id": 11690717906, "lat": 40.4408809, "lon": -3.7185038}, {"type": "node", "id": 11690717907, "lat": 40.4434102, "lon": -3.7170576}, {"type": "node", "id": 11690717908, "lat": 40.4448904, "lon": -3.7180745}, {"type": "node", "id": 11690717909, "lat": 40.441356, "lon": -3.7169453}, {"type": "node", "id": 11690717910, "lat": 40.4428231, "lon": -3.7152582}, {"type": "node", "id": 11690717911, "lat": 40.442713, "lon": -3.7173494}, {"type": "node", "id": 11690717912, "lat": 40.4452179, "lon": -3.7194529, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717913, "lat": 40.4412327, "lon": -3.7165845}, {"type": "node", "id": 11690717914, "lat": 40.4413253, "lon": -3.7171491}, {"type": "node", "id": 11690717915, "lat": 40.4452775, "lon": -3.719119}, {"type": "node", "id": 11690717917, "lat": 40.4443274, "lon": -3.7168328}, {"type": "node", "id": 11690717918, "lat": 40.4442952, "lon": -3.7184488}, {"type": "node", "id": 11690717919, "lat": 40.4413711, "lon": -3.7166943}, {"type": "node", "id": 11690717920, "lat": 40.4413376, "lon": -3.7170763}, {"type": "node", "id": 11690717921, "lat": 40.4452149, "lon": -3.7187305}, {"type": "node", "id": 11690717923, "lat": 40.4420739, "lon": -3.7149584}, {"type": "node", "id": 11690717924, "lat": 40.4439362, "lon": -3.717191}, {"type": "node", "id": 11690717925, "lat": 40.444346, "lon": -3.7197916, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717927, "lat": 40.4413677, "lon": -3.7168439}, {"type": "node", "id": 11690717930, "lat": 40.4436654, "lon": -3.718508, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717931, "lat": 40.4421436, "lon": -3.7152746}, {"type": "node", "id": 11690717932, "lat": 40.4436846, "lon": -3.7185579}, {"type": "node", "id": 11690717933, "lat": 40.44522, "lon": -3.7194934}, {"type": "node", "id": 11690717934, "lat": 40.4440485, "lon": -3.7171214}, {"type": "node", "id": 11690717936, "lat": 40.4435897, "lon": -3.7173262}, {"type": "node", "id": 11690717937, "lat": 40.4445299, "lon": -3.7186736}, {"type": "node", "id": 11690717938, "lat": 40.4439037, "lon": -3.7172081}, {"type": "node", "id": 11690717939, "lat": 40.4444931, "lon": -3.718573}, {"type": "node", "id": 11690717940, "lat": 40.4442443, "lon": -3.7185098}, {"type": "node", "id": 11690717941, "lat": 40.4436381, "lon": -3.7194039, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690717942, "lat": 40.4443518, "lon": -3.7168472}, {"type": "node", "id": 11690717943, "lat": 40.4426622, "lon": -3.7156756}, {"type": "node", "id": 11690717944, "lat": 40.4427884, "lon": -3.7153194}, {"type": "node", "id": 11690717945, "lat": 40.4437045, "lon": -3.7152578}, {"type": "node", "id": 11690717946, "lat": 40.4427126, "lon": -3.7189598}, {"type": "node", "id": 11690717947, "lat": 40.4448429, "lon": -3.7181189}, {"type": "node", "id": 11690717948, "lat": 40.4413499, "lon": -3.7172222}, {"type": "node", "id": 11690717949, "lat": 40.4437314, "lon": -3.7194672, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690717950, "lat": 40.4428255, "lon": -3.7162775}, {"type": "node", "id": 11690717952, "lat": 40.4422218, "lon": -3.7151596}, {"type": "node", "id": 11690717953, "lat": 40.4400961, "lon": -3.7187525}, {"type": "node", "id": 11690717954, "lat": 40.4415848, "lon": -3.7144194}, {"type": "node", "id": 11690717956, "lat": 40.4444531, "lon": -3.7187534}, {"type": "node", "id": 11690717957, "lat": 40.4412263, "lon": -3.7164425, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign": "ES:R1"}}, {"type": "node", "id": 11690717958, "lat": 40.444863, "lon": -3.7198189}, {"type": "node", "id": 11690717959, "lat": 40.4444889, "lon": -3.7186342}, {"type": "node", "id": 11690717960, "lat": 40.4442498, "lon": -3.7169596}, {"type": "node", "id": 11690717961, "lat": 40.4436876, "lon": -3.7151487, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717962, "lat": 40.4436143, "lon": -3.7224108}, {"type": "node", "id": 11690717963, "lat": 40.4403203, "lon": -3.7182795}, {"type": "node", "id": 11690717964, "lat": 40.4443881, "lon": -3.7197662}, {"type": "node", "id": 11690717966, "lat": 40.4452077, "lon": -3.7194709}, {"type": "node", "id": 11690717967, "lat": 40.4448016, "lon": -3.7181705}, {"type": "node", "id": 11690717968, "lat": 40.4434359, "lon": -3.7160608}, {"type": "node", "id": 11690717969, "lat": 40.4445082, "lon": -3.7186527}, {"type": "node", "id": 11690717970, "lat": 40.4443336, "lon": -3.7180956}, {"type": "node", "id": 11690717971, "lat": 40.4415368, "lon": -3.7144311}, {"type": "node", "id": 11690717972, "lat": 40.4428408, "lon": -3.7168379}, {"type": "node", "id": 11690717973, "lat": 40.441159, "lon": -3.7164375, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717974, "lat": 40.443698, "lon": -3.718734}, {"type": "node", "id": 11690717976, "lat": 40.443684, "lon": -3.7151872}, {"type": "node", "id": 11690717978, "lat": 40.4437048, "lon": -3.7152178}, {"type": "node", "id": 11690717979, "lat": 40.445219, "lon": -3.7194837}, {"type": "node", "id": 11690717980, "lat": 40.4443273, "lon": -3.7184211}, {"type": "node", "id": 11690717981, "lat": 40.4422028, "lon": -3.7151875}, {"type": "node", "id": 11690717982, "lat": 40.4444101, "lon": -3.71874}, {"type": "node", "id": 11690717983, "lat": 40.4412561, "lon": -3.7163199}, {"type": "node", "id": 11690717984, "lat": 40.4449216, "lon": -3.7198231}, {"type": "node", "id": 11690717985, "lat": 40.4406468, "lon": -3.7184798}, {"type": "node", "id": 11690717986, "lat": 40.4444309, "lon": -3.7187343}, {"type": "node", "id": 11690717987, "lat": 40.4426305, "lon": -3.7155514, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717989, "lat": 40.4436934, "lon": -3.7153764, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717990, "lat": 40.444336, "lon": -3.7197652, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717991, "lat": 40.4435959, "lon": -3.7173107}, {"type": "node", "id": 11690717993, "lat": 40.4436634, "lon": -3.715356}, {"type": "node", "id": 11690717994, "lat": 40.4443438, "lon": -3.7168344}, {"type": "node", "id": 11690717995, "lat": 40.4416407, "lon": -3.7144287, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717997, "lat": 40.4414183, "lon": -3.7145173, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690717998, "lat": 40.4407906, "lon": -3.7182653}, {"type": "node", "id": 11690717999, "lat": 40.4435097, "lon": -3.7181245}, {"type": "node", "id": 11690718000, "lat": 40.440718, "lon": -3.7156598}, {"type": "node", "id": 11690718001, "lat": 40.4421018, "lon": -3.7150883}, {"type": "node", "id": 11690718002, "lat": 40.4433828, "lon": -3.7167244}, {"type": "node", "id": 11690718003, "lat": 40.4450151, "lon": -3.7198065}, {"type": "node", "id": 11690718005, "lat": 40.4449633, "lon": -3.7198198}, {"type": "node", "id": 11690718006, "lat": 40.4428005, "lon": -3.7152853}, {"type": "node", "id": 11690718007, "lat": 40.441325, "lon": -3.716412, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690718008, "lat": 40.4436748, "lon": -3.7184509}, {"type": "node", "id": 11690718009, "lat": 40.4427811, "lon": -3.7156957, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690718010, "lat": 40.4445405, "lon": -3.7197875}, {"type": "node", "id": 11690718011, "lat": 40.444657, "lon": -3.7189286}, {"type": "node", "id": 11690718012, "lat": 40.4442382, "lon": -3.7186217}, {"type": "node", "id": 11690718013, "lat": 40.4407242, "lon": -3.7157016}, {"type": "node", "id": 11690718014, "lat": 40.4438087, "lon": -3.7197573, "tags": {"barrier": "kerb", "kerb": "lowered"}}, {"type": "node", "id": 11690718015, "lat": 40.442623, "lon": -3.7156297}, {"type": "node", "id": 11690718016, "lat": 40.4450561, "lon": -3.7197854}, {"type": "node", "id": 11690718017, "lat": 40.442122, "lon": -3.7150986, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690718018, "lat": 40.4445825, "lon": -3.7184823}, {"type": "node", "id": 11690718019, "lat": 40.4406873, "lon": -3.7157457}, {"type": "node", "id": 11690718020, "lat": 40.442769, "lon": -3.7173454, "tags": {"barrier": "kerb", "tactile_paving": "yes"}}, {"type": "node", "id": 11690755762, "lat": 40.4411915, "lon": -3.7163968, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690755763, "lat": 40.4412937, "lon": -3.7166852, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690755764, "lat": 40.4413146, "lon": -3.7166808, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690755765, "lat": 40.4413523, "lon": -3.7166787, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 11690755766, "lat": 40.4413697, "lon": -3.7166746}, {"type": "node", "id": 11690755767, "lat": 40.442148, "lon": -3.7151257, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690755768, "lat": 40.4421026, "lon": -3.7150521}, {"type": "node", "id": 11690767169, "lat": 40.4416878, "lon": -3.7143593}, {"type": "node", "id": 11690767174, "lat": 40.4426363, "lon": -3.7153409}, {"type": "node", "id": 11690767175, "lat": 40.4427439, "lon": -3.7157003, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767176, "lat": 40.4428087, "lon": -3.7151586}, {"type": "node", "id": 11690767177, "lat": 40.4428121, "lon": -3.7151916, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767178, "lat": 40.4426823, "lon": -3.7150916}, {"type": "node", "id": 11690767179, "lat": 40.4427074, "lon": -3.7150893, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767180, "lat": 40.4427355, "lon": -3.71509}, {"type": "node", "id": 11690767181, "lat": 40.4436835, "lon": -3.7150888}, {"type": "node", "id": 11690767182, "lat": 40.4436872, "lon": -3.7151201, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767183, "lat": 40.4437142, "lon": -3.7153968, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767184, "lat": 40.4437382, "lon": -3.715419}, {"type": "node", "id": 11690767185, "lat": 40.443804, "lon": -3.7151983}, {"type": "node", "id": 11690767186, "lat": 40.4437741, "lon": -3.7149989}, {"type": "node", "id": 11690767187, "lat": 40.443792, "lon": -3.7149956, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767188, "lat": 40.443814, "lon": -3.7149961}, {"type": "node", "id": 11690767189, "lat": 40.443823, "lon": -3.7151388}, {"type": "node", "id": 11690767190, "lat": 40.4437918, "lon": -3.7151647}, {"type": "node", "id": 11690767191, "lat": 40.4438642, "lon": -3.7151929}, {"type": "node", "id": 11690767192, "lat": 40.4437413, "lon": -3.7142565}, {"type": "node", "id": 11690767193, "lat": 40.4437563, "lon": -3.7142558, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767194, "lat": 40.4437778, "lon": -3.7142556}, {"type": "node", "id": 11690767195, "lat": 40.4438384, "lon": -3.7141027}, {"type": "node", "id": 11690767196, "lat": 40.4438403, "lon": -3.7141371, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767197, "lat": 40.4438437, "lon": -3.7141612}, {"type": "node", "id": 11690767198, "lat": 40.4435873, "lon": -3.7160412}, {"type": "node", "id": 11690767199, "lat": 40.4435846, "lon": -3.7160895, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767200, "lat": 40.4435803, "lon": -3.7161364}, {"type": "node", "id": 11690767201, "lat": 40.4435838, "lon": -3.717219}, {"type": "node", "id": 11690767202, "lat": 40.443588, "lon": -3.7172525, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767203, "lat": 40.4435921, "lon": -3.7172972}, {"type": "node", "id": 11690767204, "lat": 40.4436799, "lon": -3.7185092, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767205, "lat": 40.4427797, "lon": -3.7142008}, {"type": "node", "id": 11690767206, "lat": 40.4427844, "lon": -3.71423, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767207, "lat": 40.4427855, "lon": -3.7142577}, {"type": "node", "id": 11690767208, "lat": 40.4426582, "lon": -3.714117}, {"type": "node", "id": 11690767209, "lat": 40.4426759, "lon": -3.7141181, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 11690767210, "lat": 40.4426935, "lon": -3.7141192}, {"type": "node", "id": 11690767211, "lat": 40.4439175, "lon": -3.7172011, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 11690767212, "lat": 40.4439107, "lon": -3.717205}, {"type": "node", "id": 11690767213, "lat": 40.4439311, "lon": -3.717194}, {"type": "node", "id": 11703559429, "lat": 40.4418071, "lon": -3.69217}, {"type": "node", "id": 11703559430, "lat": 40.4417824, "lon": -3.6921737}, {"type": "node", "id": 11704126372, "lat": 40.4504622, "lon": -3.7140968}, {"type": "node", "id": 11706898258, "lat": 40.4511185, "lon": -3.6981005}, {"type": "node", "id": 11732274944, "lat": 40.4465725, "lon": -3.7016689}, {"type": "node", "id": 11732274945, "lat": 40.4465292, "lon": -3.7017272}, {"type": "node", "id": 11732302961, "lat": 40.4453324, "lon": -3.7005716}, {"type": "node", "id": 11732302962, "lat": 40.4453417, "lon": -3.7005274}, {"type": "node", "id": 11732302963, "lat": 40.4453607, "lon": -3.700507}, {"type": "node", "id": 11732302964, "lat": 40.4453554, "lon": -3.7003679}, {"type": "node", "id": 11732302965, "lat": 40.4453293, "lon": -3.700368}, {"type": "node", "id": 11732302966, "lat": 40.4453182, "lon": -3.7003442}, {"type": "node", "id": 11732302967, "lat": 40.4452279, "lon": -3.7003494}, {"type": "node", "id": 11732302968, "lat": 40.4452044, "lon": -3.7003797}, {"type": "node", "id": 11732310469, "lat": 40.4452106, "lon": -3.7005233}, {"type": "node", "id": 11732310470, "lat": 40.4452301, "lon": -3.7005367}, {"type": "node", "id": 11732310471, "lat": 40.4452394, "lon": -3.7005763}, {"type": "node", "id": 11732310476, "lat": 40.446503, "lon": -3.700406}, {"type": "node", "id": 11732310477, "lat": 40.4457776, "lon": -3.7003307, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing"}}, {"type": "node", "id": 11732310478, "lat": 40.4462913, "lon": -3.7002851}, {"type": "node", "id": 11732310479, "lat": 40.4464952, "lon": -3.7002702}, {"type": "node", "id": 11782580369, "lat": 40.4224513, "lon": -3.6922597, "tags": {"crossing": "marked", "crossing:island": "no", "flashing_lights": "sensor", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11782580385, "lat": 40.4224761, "lon": -3.693218, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes", "traffic_calming": "table"}}, {"type": "way", "id": 4099789, "nodes": [21990706, 1855037742], "tags": {"highway": "residential", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101279, "nodes": [21990719, 1591329818, 21990718, 7159758687, 21990717, 22031313, 4260707791, 21990700], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101280, "nodes": [630734756, 1501227833], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101281, "nodes": [26067302, 4823975333, 26067267, 26067277, 26067275, 11220754135, 11220757842, 22023377], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de la Palma", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 4101282, "nodes": [21990741, 22031310], "tags": {"alt_name": "Calle del 2 de Mayo", "highway": "residential", "lit": "yes", "name": "Calle del Dos de Mayo", "name:etymology:wikidata": "Q181146", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101283, "nodes": [21990717, 21990745, 21990746, 22031310, 21990747, 1474148377, 11220779542, 26066553], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Vicente Ferrer", "name:etymology:wikidata": "Q317131", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101285, "nodes": [21990722, 1591329881, 11230777624, 21990731, 11230777622, 11234083979, 21990734, 11234083977, 11230771831, 22016261, 11230771833, 2973015551, 1666720773], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle del Divino Pastor", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101286, "nodes": [22023240, 11230799232, 22022173, 11230799230, 11234083990, 22018603, 11234083989, 11230799213, 22018580, 22016262], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Manuela Malasa\u00f1a", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones:30"}}, {"type": "way", "id": 4101287, "nodes": [22022132, 11230730612, 11230799215, 22018603, 11234083991, 22022095, 11234083978, 21990734], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Ruiz", "oneway": "yes", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101288, "nodes": [22016264, 11230771832, 22016261, 11230771818, 22022079, 11230799231, 22022173, 11230799229, 6314750367, 22022163], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Montele\u00f3n", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4101289, "nodes": [22022079, 22022095], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de la Galer\u00eda de Robles", "oneway": "yes", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101290, "nodes": [21990737, 11377765531, 21990741], "tags": {"alt_name": "Calle del 2 de Mayo", "highway": "pedestrian", "name": "Calle del Dos de Mayo", "name:etymology:wikidata": "Q181146", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101291, "nodes": [21990720, 21990743], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Velarde", "name:etymology:wikidata": "Q718282", "oneway": "no", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4101292, "nodes": [4062386148, 4062386149, 9047955459, 4062425598, 4062425600, 4062425597], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Plaza de San Ildefonso", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4110790, "nodes": [21990724, 1591329839, 1591329871, 21990723, 1591329885, 1591330000, 22022319], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Churruca", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4110831, "nodes": [21990737, 3842495988, 3842495980, 3842495979, 21990736, 6841096842, 21990735, 4629861377, 6841096839, 21990732, 9024683703, 21990733, 3849464222, 3849464209, 21990740, 11236540407, 3849464161, 3849464159, 11236540406, 3849464160, 21990739, 21990738, 2862547695, 21990737], "tags": {"highway": "pedestrian", "leisure": "park", "name": "Plaza del Dos de Mayo", "name:etymology:wikidata": "Q1531008", "place": "square", "postal_code": "28004", "source:name": "survey", "surface": "concrete:plates", "wikidata": "Q1531008", "wikipedia": "es:Plaza del Dos de Mayo"}}, {"type": "way", "id": 4261173, "nodes": [25552447, 25552448, 1253137011, 7549719199, 8427025371, 25552449], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 4261174, "nodes": [345537803, 7549719182, 7549719183, 3323948849], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4290639, "nodes": [1011869670, 1760085716], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4290676, "nodes": [25902900, 359308509], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 4291302, "nodes": [25906116, 8441812508, 25906135, 1316546929, 25906132, 1316546497, 25906136, 25906138, 1316546802, 25906139, 3946882543, 370503465, 581287799, 25901940, 8441812503, 6515115932, 25901935], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4291303, "nodes": [25901936, 7549719186, 25901937, 1278839092, 25901938, 8422641934, 25906141, 3946882542, 4202134078, 1316547022, 25906137], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4307812, "nodes": [1591329870, 3144095506, 3418222082, 21990725, 7159758672, 7159758665, 21990724, 3428307530], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Barcel\u00f3", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307813, "nodes": [4134046213, 1591329888, 21990726, 1591329873, 21990723, 1591329872, 21990722], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Apodaca", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307814, "nodes": [22022337, 1591329977, 1591329890, 21990726, 1591329853, 21990725], "tags": {"highway": "residential", "name": "Calle de Larra", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307816, "nodes": [22022361, 22022371], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307817, "nodes": [25906098, 1591329944, 25906102, 25906108, 25906107, 1591329844, 370503620, 25906111], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Serrano Anguita", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307818, "nodes": [25906103, 1591329935, 1591329900, 25906102], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Antonio Flores", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307819, "nodes": [25906107, 1591329916, 25906105], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos \u00c1lvarez Quintero", "name:etymology:wikidata": "Q2879473", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307821, "nodes": [22022227, 1501227829, 22022319, 22022337, 1591329962, 22022361], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4307822, "nodes": [25906121, 1591329929, 4808864933], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4308076, "nodes": [26066564, 26066562, 26066559, 26066552], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Minas", "note": "street signs have both names 'Calle de Minas', and 'Calle de las Minas'.", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 4308592, "nodes": [26080781, 26080782], "tags": {"created_by": "JOSM", "highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4308597, "nodes": [26578960, 913080870, 5006352946], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4314414, "nodes": [26025893, 11225754979, 1596698151, 26153007], "tags": {"highway": "residential", "name": "Calle de Abd\u00f3n Terradas", "name:etymology:wikidata": "Q3753351", "postal_code": "28015"}}, {"type": "way", "id": 4314415, "nodes": [26153007, 26153008], "tags": {"created_by": "JOSM", "highway": "steps", "name": "Calle de Abd\u00f3n Terradas", "name:etymology:wikidata": "Q3753351"}}, {"type": "way", "id": 4314416, "nodes": [26153008, 4249577921, 26025894], "tags": {"highway": "service", "maxspeed": "50", "name": "Calle de Abd\u00f3n Terradas", "name:etymology:wikidata": "Q3753351", "service": "alley", "surface": "asphalt"}}, {"type": "way", "id": 4314417, "nodes": [26025893, 1596698152, 1596698153, 26025895], "tags": {"highway": "residential", "lit": "yes", "name": "Traves\u00eda de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4314418, "nodes": [27514668, 6238487901, 1447402323], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4314420, "nodes": [26211532, 1669118077, 1669118071, 4490265351, 26025847, 1669118067, 1669118045, 26025848, 1669118042, 1669118040, 2525814071, 26025849, 1669118037, 1669118033, 4536011538, 1669118030, 26025850, 1669118019, 4536011541, 26025851, 4536011540, 4548451517, 26025852, 4485511527, 4536011533, 4536011535, 26025853], "tags": {"bicycle": "yes", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Mar\u00eda L\u00f3pez", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4314421, "nodes": [27523108, 2972941418, 1669117879, 27523422, 4637799990, 1669117886, 26025861, 1669117908, 26025860, 1669117911, 1669117915, 26025859, 4637125721, 1669117919, 26025858, 4633502260, 1669117951, 26025857, 1669117957, 1669117961, 1669117964, 26025856, 1669117965, 1669117973, 26025855, 1669118003, 1669118005, 26025854, 1669118007, 4208916614, 1669118013, 26211530], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Donoso Cort\u00e9s", "name:etymology:wikidata": "Q723141", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4314423, "nodes": [141857474, 3096525872, 4637824964, 141857476, 4637824965, 4416570440, 4416570441, 5966607251, 5754419281, 26025879, 2661689880, 4416845742, 26025878, 4416845743, 5966607250, 1596698138, 26025877, 1596698139, 1596698141, 26025876, 11225755001, 5966607249, 1596698145, 26025875, 1596698146, 1596698147, 26025873, 1669117741, 26025872, 1669117747, 26025871, 5321904954], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4318941, "nodes": [25935517, 6441681710, 1596698098, 4470285254, 26025890], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4318942, "nodes": [27517499, 11690717957, 11690755762, 27517522, 2466305332, 26211577], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 4319191, "nodes": [26025904, 1669118119, 1500124545, 26025903], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 4319192, "nodes": [25935532, 1669117690, 26025892], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Hilari\u00f3n Eslava", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4319193, "nodes": [26211541, 4519701716, 26211543], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 4319194, "nodes": [26211528, 1669117828, 1537917871], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk:both": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4319324, "nodes": [27517937, 4637304252, 26212612, 4311812552, 26212608], "tags": {"destination": "Plaza Espa\u00f1a; Paseo Castellana", "highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4319325, "nodes": [26212608, 4548435342, 1924384860, 4548435343, 26212609, 26212610, 1669118112, 26212611, 4548454348, 4548454347, 4548454346], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4321662, "nodes": [26578966, 4428052239, 1505081018, 1505081009, 26578967, 26025880, 1669117718, 1669117715, 26025881, 1669117711, 1596698125, 2525814117, 26025882], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321663, "nodes": [8583879003, 298151334, 141868929, 1596698087, 60672523], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Jer\u00f3nimo de la Quintana", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4321664, "nodes": [25935142, 1596698085, 1596698084, 25935138], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Francisco Ricci", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321665, "nodes": [25935073, 674477950, 674477932, 25935075], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Emilio Carrere", "name:etymology:wikidata": "Q266059", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321666, "nodes": [26025845, 4536011531, 4548451520, 4536011536, 26025852, 4548451521, 5204319847, 1669117922, 26025859, 1669117795, 26025867, 4437576917, 4921021997, 1596698143, 26025877, 4637125719, 26025896], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321667, "nodes": [25935058, 25935060], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Glorieta del Gran Capit\u00e1n", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321669, "nodes": [26242736, 2661689879, 26242734], "tags": {"highway": "residential", "name": "Calle de Casarrubuelos", "name:etymology:wikidata": "Q1772185", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4321670, "nodes": [26025853, 4536011534, 26242738], "tags": {"highway": "residential", "name": "Calle de Joaqu\u00edn Mar\u00eda L\u00f3pez", "noexit": "yes", "postal_code": "28015"}}, {"type": "way", "id": 4321671, "nodes": [26025907, 1596698103, 26025885, 1596698116, 26025906], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Calvo Asensio", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321672, "nodes": [26025886, 11225755088, 1596698108, 26025885], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Antonio Palomino", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4321673, "nodes": [26025897, 4416845740, 11225755058, 26025896], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Fernando Garrido", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4334159, "nodes": [25906116, 2685986777, 25906117], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4334163, "nodes": [25901936, 7549719187, 3418035844, 554166725, 7549719188, 1915012257, 554166728, 3418035841, 25901935], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 4339396, "nodes": [26413139, 616211590, 3802946120, 26413156, 3802946112], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:psv": "2", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4339397, "nodes": [26413361, 5214866721, 338727887, 8583469069, 26413360, 338727896, 26413358], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 4339400, "nodes": [26413513, 1613048641, 8451215628, 1613048618, 5214866724, 26413522], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Crist\u00f3bal Bordi\u00fa", "name:etymology:wikidata": "Q22962489", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4339401, "nodes": [98945971, 8807066161, 8807066160, 1613048661, 1613048666, 98945970, 1613048667, 1016578444, 1613048683, 98945969, 1613048686, 1654250184, 98945967, 1654250185, 1654250187, 26413367, 5214866723, 1654250188, 1654250189, 26413368], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Mar\u00eda de Guzm\u00e1n", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4352977, "nodes": [25906117, 1591329927, 25934317], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4352978, "nodes": [63530500, 1760085707, 11056722072, 1760085706], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4353019, "nodes": [942080448, 4576234370, 1555729985, 4576234823, 26513047, 4576234824, 4576234828, 4576234827, 26513097], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Columela", "name:etymology:wikidata": "Q318317", "oneway": "yes", "postal_code": "28001", "source:name": "survey", "wikidata": "Q28806217", "wikipedia": "es:Calle de Columela"}}, {"type": "way", "id": 4353020, "nodes": [1900998827, 1900998825, 4576234358, 26513061, 26513105, 11218044129, 26513145], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de Aranda", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4353021, "nodes": [255289006, 1950481098, 8479324974, 255289007, 8479324976, 942080459, 26513137, 1950481100, 5235745135, 26513111, 26513067, 8003058429, 1555729951, 942080445, 25901921, 10266331336, 3418035827, 25901925], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Villanueva", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4360874, "nodes": [3594864826, 2478280862, 2478280868, 2478280871, 2478280851, 2478280869, 2478280870, 26579032], "tags": {"highway": "trunk", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 4360876, "nodes": [26579032, 26579033], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no"}}, {"type": "way", "id": 4360877, "nodes": [26579027, 26579028], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 4360899, "nodes": [7164077789, 4470447685, 26579191, 26579192, 3232900922, 26579193, 7597192144, 26579194, 3232878637, 26579195, 4470449612, 4470449614, 1575177820], "tags": {"cycleway:surface": "asphalt", "highway": "cycleway", "lit": "yes", "segregated": "yes", "surface": "concrete"}}, {"type": "way", "id": 4360900, "nodes": [3971001258, 3971000962, 4549591268, 4536104689], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 4360901, "nodes": [26579187, 26579188], "tags": {"bridge": "yes", "footway": "sidewalk", "highway": "footway", "layer": "1", "lit": "yes", "surface": "unhewn_cobblestone", "wheelchair": "yes"}}, {"type": "way", "id": 4389647, "nodes": [4827673941, 55311600, 8436311127, 26808564, 26067260, 26067259, 26067258, 26067286, 11228737727, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Bernardino", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4389650, "nodes": [26067261, 4827701839, 11248474979, 26067259], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Ponciano", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4389651, "nodes": [26067258, 26067285], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Juan de Dios", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4389653, "nodes": [26067308, 27505288, 26067309, 27505287, 11248486981, 11533572647, 26067287, 11248486983, 26067286], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle del Lim\u00f3n", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "wikidata": "Q29608725", "wikipedia": "es:Calle del Lim\u00f3n"}}, {"type": "way", "id": 4389654, "nodes": [26808566, 26808565], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Manuel", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4389783, "nodes": [26067310, 11533548038, 26067311], "tags": {"highway": "service", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 4487124, "nodes": [26067300, 26067308, 2584038761, 26067269, 26067283, 11525423855, 1666720773], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Montserrat", "oneway": "yes", "postal_code": "28015", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4487126, "nodes": [26067292, 26808566, 11533572637, 11533572648, 26067289], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Traves\u00eda del Conde Duque", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487156, "nodes": [1666720773, 674492245, 26067273], "tags": {"highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487521, "nodes": [25901888, 11250448278, 25901889, 25901890, 3426800337, 27506521], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de Xiquena", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487670, "nodes": [25906196, 2910133816, 3424801047, 25906266, 25906265, 25906269, 4309826954, 25906270, 4309826943, 2239998650, 25906367, 4309826936, 929294330, 1900998783, 4309747785, 1522690059, 25906378, 10000729227], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Barquillo", "name:etymology:wikidata": "Q5740983", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487678, "nodes": [1855027673, 25906125, 25906124, 1316546411, 25906132], "tags": {"highway": "residential", "name": "Calle de Campoamor", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4487679, "nodes": [26341673, 6109456225, 3429367546, 3429367549, 6109456233, 25906420, 25906421, 5970506954, 25906429, 59633359, 25906288, 25906289, 25906276, 5970506953, 25906277, 25906300, 25906301, 3927597018, 25906221, 25906112], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Hortaleza", "oneway": "yes", "postal_code": "28004", "surface": "asphalt", "wikidata": "Q5740911"}}, {"type": "way", "id": 4487808, "nodes": [25906216, 3927597019, 3927597020, 25906221, 1474148376, 21990705], "tags": {"highway": "residential", "maxspeed": "20", "name": "Traves\u00eda de San Mateo", "name:en": "Traves\u00eda de San Mateo", "name:es": "Traves\u00eda de San Mateo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 4487809, "nodes": [25906212, 25906209, 25906204, 25906225, 3424801049, 25906196], "tags": {"highway": "residential", "name": "Calle de Bel\u00e9n", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 4487810, "nodes": [25906273, 25906272, 6301052256, 6301052259, 370503552, 25906209], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de San Gregorio", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 4487839, "nodes": [25935514, 6981674379, 858587228, 614036239], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4487840, "nodes": [8577075124, 7537445994, 26067887, 8426942045, 26067888], "tags": {"highway": "tertiary", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4487841, "nodes": [25935146, 7864693886, 858587179], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4487843, "nodes": [26211545, 27508159, 11645339830, 27508048, 27508162], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487844, "nodes": [27508162, 11645339831, 27508161, 27508160, 26211563], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487845, "nodes": [27508174, 27508175, 27508176, 1212072884, 1212072795, 27508177], "tags": {"highway": "residential", "lanes": "1", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4487846, "nodes": [27508177, 27508178, 27508182, 27508183, 27508184, 6327649413, 27508185, 27508186, 11690767183, 27508196], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4487847, "nodes": [27508177, 3575366967, 1212072724, 27508179, 27508180], "tags": {"highway": "residential", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4487848, "nodes": [27508182, 11690767202, 27508542, 6327649426, 27508543, 27508544, 27508545, 27508546], "tags": {"highway": "residential", "name": "Calle de la Brisa", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4489142, "nodes": [581287837, 1505081155, 27514627, 8426942050, 27514667, 6380794348, 6380794341, 9549391155, 8451215623, 6238487900, 27514668], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 4489150, "nodes": [27508211, 11690767206, 27508204, 11690767196, 8846574699, 8846574704, 27508201], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Maestro \u00c1ngel Llorca", "old_name": "Calle del General Rodrigo", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489151, "nodes": [32602930, 1801212182, 2160260312, 32602934], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4489182, "nodes": [27508213, 2466312903, 2466312890, 11690767209, 27508211, 6314640616, 11690767179, 27516322], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Juli\u00e1n Romea", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489368, "nodes": [27514717, 4288632349, 2466312899, 27514733], "tags": {"highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "postal_code": "28003"}}, {"type": "way", "id": 4489369, "nodes": [27516635, 27516655, 26211543], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through;right|through"}}, {"type": "way", "id": 4489420, "nodes": [27517507, 1770052218, 27517506], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Dom\u00e9nico Scarlatti", "oneway": "yes", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 4489421, "nodes": [1770052226, 1770056846, 3663308742, 27516696], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489422, "nodes": [27516630, 1770052227, 8426942049, 27517498, 1770052234], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489423, "nodes": [27508196, 11690767185, 11690767190, 27508195, 11690767187, 11690767193, 3663308765, 27508204, 3663308764, 27508208], "tags": {"highway": "residential", "name": "Calle de Max Aub", "old_name": "Calle del General D\u00e1vila", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489424, "nodes": [27516322, 11690767177, 8426942052, 11690767182, 8426942051, 27508195, 11690767189, 6314640612, 11690767191], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489451, "nodes": [27508205, 3663308768, 3663308769, 27508201], "tags": {"highway": "residential", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489455, "nodes": [27517855, 6238487907, 2493633629, 8430162611, 8430180231, 2493633628, 27517857, 6238487906, 2466312892, 27514692], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle del General Ib\u00e1\u00f1ez de Ibero", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489456, "nodes": [27517857, 6238487905, 6238487904, 27517888], "tags": {"highway": "residential", "name": "Calle de Sotomayor", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489457, "nodes": [27516704, 6314640622, 6314640618, 3663308743, 27516700], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Melqu\u00edades \u00c1lvarez", "old_name": "Calle de Juan Vig\u00f3n", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489515, "nodes": [26211580, 6314640613, 27517891, 6314640621, 27517898, 1669118122, 26212613], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de la Aviaci\u00f3n Espa\u00f1ola", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4489516, "nodes": [27517940, 4431660207, 27517939, 4431660202, 4431660200, 27517938, 4431660197, 4311812602, 4311812567, 27517937], "tags": {"highway": "residential", "name": "Calle de Jes\u00fas Maestro", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489517, "nodes": [27518078, 27518046, 27518032, 27518022, 27518009, 27518000, 27517991, 8936373768, 8936373769, 5784870820, 27517956], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "maxspeed:lanes": "50|30", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4489518, "nodes": [27517956, 5784870821, 5784870819, 8426942047, 27517940, 4431660208, 27517955, 27517954, 8426942053, 5469164208, 27516704], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Melqu\u00edades \u00c1lvarez", "old_name": "Calle de Juan Vig\u00f3n", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 4489519, "nodes": [4311812596, 4311812587, 4311812580, 4311812576, 4311812574, 7062214672, 8531511254, 27520557, 7062214670, 27522330, 27522332, 27520738], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lucio del Valle", "name:etymology:wikidata": "Q5982356", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4489541, "nodes": [27520539, 27521709], "tags": {"highway": "residential", "lit": "no", "name": "Calle de Eustaquio Rodr\u00edguez", "postal_code": "28003", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 4489548, "nodes": [27521709, 27521722], "tags": {"created_by": "JOSM", "highway": "steps"}}, {"type": "way", "id": 4489718, "nodes": [27522357, 7062214669, 444644587, 5987136571, 27520738, 2972891893, 1924384878], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Boix y Morer", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4491031, "nodes": [27518078, 7062214675, 8522340710, 4311812596, 27521668], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through;left|through|through|through"}}, {"type": "way", "id": 4491032, "nodes": [26211537, 1500124531, 1500124536, 4548425705, 26025840, 1500124528, 1500124504, 26025841], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4491033, "nodes": [26212618, 4548435344, 26212610], "tags": {"highway": "residential", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes"}}, {"type": "way", "id": 4497474, "nodes": [25935139, 1596698083, 8426942046, 25935138, 1596698093, 25935136, 11225755124, 1596698115, 26025884, 1596698123, 1596698132, 8426942044, 1596698135, 11225755003, 26025876, 1596698144, 4921022002, 26025894, 1596698154, 26025866], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4526344, "nodes": [25902055, 25902056, 4225207889, 21627165, 1555729980, 10920210171, 1981925782, 28096713], "tags": {"highway": "residential", "name": "Calle de Hermosilla", "name:etymology:wikidata": "Q6292949", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4638449, "nodes": [25903282, 1760085703, 25902196], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4680727, "nodes": [1377881546, 8213602126, 8213602125, 29739480, 1377881506, 1377881496, 29739481, 29739482, 29739483, 5191925504, 29739484, 8427069660, 5162768442, 29739485, 2466689592, 29739486, 142302070, 8427069662, 1759501679, 29739489], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 4946755, "nodes": [26413584, 11201940691, 8804961582, 11201940689, 33131379, 11201940690, 11201940685, 33131380, 8804963719, 8804963718, 11201940684, 2972892276, 5784462286, 33131381, 33131393, 11201940683, 11201940682, 11201940681, 33131382, 11201940680, 11201940679, 10745001728, 11201940673, 33131383, 8804961583, 8804961584, 8804961585, 8805121868, 3357109504, 8804961586, 3357109510, 32604465], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4946756, "nodes": [32604454, 8483713088, 32604456, 8483713087, 32604458, 8483713086, 1203847183, 8483713085, 32604459, 1203847153, 1140217791, 32604391], "tags": {"highway": "residential", "lanes": "1", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 4946757, "nodes": [32604397, 32604398, 32604399, 32604401, 32604410, 32604414, 32604418, 737215754, 1203847112, 1203847140, 32604423, 338728203, 32604425, 338728219, 1203847227, 27514692], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4946758, "nodes": [27514717, 338728451, 27519868], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 4949536, "nodes": [32604423, 1203847220, 1203847125, 32604427, 737215794, 32604429, 32604431], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 4949538, "nodes": [27508205, 3213799228], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 4949539, "nodes": [27517856, 1203847181], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4949540, "nodes": [32630168, 2436859061, 32630163, 2436859060, 9116858065, 32630167], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "name": "Calle de Juan Montalvo", "oneway": "yes", "surface": "asphalt", "width": "9"}}, {"type": "way", "id": 4949541, "nodes": [32630167, 9116858066, 9116858052, 32630166], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de la Explanada", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4949542, "nodes": [27519777, 1203847173, 3663308767, 27519852, 27519868], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 4949543, "nodes": [27519777, 3663308763, 27519838, 27514733], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "turn:lanes": "left|left"}}, {"type": "way", "id": 4949544, "nodes": [32630173, 32630183, 32630184, 32604418], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 4949545, "nodes": [32604414, 32630181, 32630182, 32630174], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 4949546, "nodes": [32630175, 32630179, 32630180, 3663324553, 32604410], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 4949547, "nodes": [32604401, 32630177, 32630178, 32630176], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 4950641, "nodes": [630734756, 365886562, 22022227], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4950642, "nodes": [141870722, 1357992434, 8866381039, 5970484997, 22022469, 22022484, 5970484996, 1211171045, 25934861], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Carranza", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4950643, "nodes": [25934856, 25934875, 22022163, 22022132, 22022145, 8440634374, 1357992429, 630734756], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Carranza", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 4950751, "nodes": [25935062, 11533572600, 1651583802, 25935058], "tags": {"bicycle": "yes", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle del Conde Duque", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950752, "nodes": [25934855, 2973015554, 26067284, 26067270, 9677652704, 26067306], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Hermenegildo", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950753, "nodes": [26067273, 11225233751, 26067276, 11228766832, 11228766814, 26067281, 11228766801, 26067268], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Qui\u00f1ones", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 4950754, "nodes": [26067276, 11228766833, 26067272, 11220757838, 26067275, 26067274, 26067271], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle del Norte", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 4950756, "nodes": [26067262, 4827701838, 26067265, 26067271, 8429132475, 11525423860, 26066554], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Noviciado", "name:etymology:wikidata": "Q25212055", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4950757, "nodes": [26067309, 26067307], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Cristo", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 4950758, "nodes": [26067298, 11248474987, 26067307], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Bernardo L\u00f3pez Garc\u00eda", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 4950759, "nodes": [26067277, 26067282, 11228766816, 26067281, 11228766815, 26067283, 26067284], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de San Dimas", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4950791, "nodes": [25935524, 25935522], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 4950793, "nodes": [26067291, 26067292], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de las Negras", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4950794, "nodes": [25935071, 25935069], "tags": {"highway": "residential", "name": "Calle de Baltasar Graci\u00e1n", "name:etymology:wikidata": "Q360512", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 5989259, "nodes": [26579083, 8577075136, 3253320375], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 5989317, "nodes": [26578974, 8440879527, 8440879528, 1364771904, 4456608447, 26578971], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lisboa", "name:etymology:wikidata": "Q597", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 5990070, "nodes": [26578968, 1364771695, 55161178, 3927556763, 26578951, 3927556770, 26578950, 3927556774, 55161174, 4757946972, 55138197], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Benito Guti\u00e9rrez", "name:etymology:wikidata": "Q21872966", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 5990071, "nodes": [25935531, 1378696878, 3927556767, 55161170, 3927556760, 25935534, 3927556757, 3927556256, 25935554, 55161181, 1364771581, 25935576], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Altamirano", "name:etymology": "Antonio Torres Altamirano. Fraile trinitario (Madrid, 8-XII-1616 - Salamanca, 4-XI-1685). General en dos ocasiones de los Trinitarios Descalzos. Entre sus obras destacan unos \"Comentarios morales y anal\u00f3gicos sobre el Apocalipsis\".", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 5990532, "nodes": [26578970, 1364771873, 26578975], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de \u00c9cija", "name:etymology:wikidata": "Q273413", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 5990536, "nodes": [26578957, 3927556765, 3927556764, 26578951, 3927556758, 25935554, 3927556254, 3471276060, 55161154], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 6601764, "nodes": [25902154, 1950481197, 8911132530, 4840111217, 25902329], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Marqu\u00e9s de Villamagna", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 6601773, "nodes": [26513132, 11218044130, 1950481101, 1973690383, 11218044131, 26513124], "tags": {"highway": "residential", "name": "Calle Gurtubay", "oneway": "yes", "postal_code": "28001"}}, {"type": "way", "id": 7593889, "nodes": [26080663, 293293726, 55138143, 26080658, 4234171259, 55161030, 8440879523, 55161034, 55161051], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Evaristo San Miguel", "name:etymology:wikidata": "Q3816067", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7593896, "nodes": [26080778, 3644754710, 55161055, 4307340621, 55161059], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rey Francisco", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7593899, "nodes": [25935515, 25935516], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7593903, "nodes": [26080762, 1364771096, 1358036202, 55161108], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Buen Suceso", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7593908, "nodes": [25935523, 622204580, 5273361954, 5273358099, 3471276061, 55161145, 55161154, 8447103715, 3471365921, 55161167], "tags": {"access:lanes": "yes|no", "bicycle:lanes": "yes|no", "bus:lanes": "yes|designated", "cycleway:lanes": "shared_lane|none", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|designated"}}, {"type": "way", "id": 7604153, "nodes": [26080658, 8473661003, 55161067, 1358036196, 55161074], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 7604156, "nodes": [55161026, 55161023], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Francisco Lozano", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7604160, "nodes": [55161040, 4757946968, 3927556775, 4324546709, 55161174, 3927556773, 3927556769, 3927556768, 55161170, 3927556766, 3927556255, 5273358099], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7604162, "nodes": [55161197, 913080872, 913080869], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 7642766, "nodes": [26579180, 1537917857, 1669117758, 26579181, 26578965], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 7642768, "nodes": [26578966, 1505081022, 5001253641], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:psv": "1", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|left;through|through|right|"}}, {"type": "way", "id": 7642851, "nodes": [27522358, 2972941183, 5963987028, 98957378], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7642912, "nodes": [32602928, 33131388, 8804963730, 8804963729, 8804963858, 8804963857, 8804963728, 32604465, 33131390, 32604467], "tags": {"highway": "residential", "name": "Calle del Marqu\u00e9s de Lema", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 7642917, "nodes": [26579027, 1486142513, 6318921548, 26579176, 6318921549, 6318921550, 1486142530, 6318921551, 26579177, 6318921552, 26579178], "tags": {"cycleway": "shared_lane", "foot": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Plaza de la Moncloa", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "surface": "asphalt", "wikidata": "Q6080211", "wikipedia": "es:Plaza de la Moncloa"}}, {"type": "way", "id": 7642944, "nodes": [33131381, 8804961588, 33131386, 8804961587, 33131387, 33131373], "tags": {"cycleway:both": "no", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642945, "nodes": [33131374, 33131384, 11201940693, 8804961590, 11201940692, 33131385, 11201940694, 8804961591, 33131379], "tags": {"cycleway:both": "no", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642950, "nodes": [26212614, 433406824, 4583284263, 433406826, 433406832, 1500124591, 433406834, 1500124542, 433406835, 26579110], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 7642951, "nodes": [25906277, 930662415, 25906294, 3163832986, 1754199355, 1754199353], "tags": {"highway": "living_street", "lanes": "1", "name": "Calle de la Farmacia", "name:en": "Pharmacy Street", "name:es": "Calle de la Farmacia", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7642964, "nodes": [22023361, 11230772039, 22016264], "tags": {"highway": "residential", "name": "Calle de Dao\u00edz", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7642968, "nodes": [26413576, 8804963662, 1203847155, 26413585, 8804963663, 26413584], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "name": "Plaza de Juan Zorrilla", "oneway": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7642971, "nodes": [27508548, 27508546, 27508547], "tags": {"highway": "residential", "name": "Calle de los Olivos", "name:etymology:wikidata": "Q37083", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 7642986, "nodes": [21990704, 408757686, 3927597017, 3927597016, 3927597015, 25906301], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de San Lorenzo", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7642988, "nodes": [22031313, 25906302, 25906304, 7159758625, 7159758686, 25906306, 7159758684, 25906307], "tags": {"highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7642992, "nodes": [25906141, 25906145, 25906144, 25934324, 141923543, 141923239, 5232402843, 141921783, 141920921], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Monteesquinza", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7642995, "nodes": [25906143, 8625818254, 25906144], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Orfila", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7643003, "nodes": [25906200, 25906204], "tags": {"highway": "residential", "name": "Calle de Regueros", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7643014, "nodes": [22016262, 1501227823, 8593662572, 1501227827], "tags": {"highway": "residential", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7643019, "nodes": [26067885, 1789638284, 8428817433, 1789638283, 26080781, 55161044, 4242179816, 55138174, 55138166, 55138155, 26080688], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle Luisa Fernanda", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "slight_left|slight_left;slight_right"}}, {"type": "way", "id": 7643027, "nodes": [26579109, 433406808, 1500124514, 433406813, 1500124558, 433406814, 433406816, 26212621], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 7643031, "nodes": [26067288, 11220658527, 26067290, 3267220581, 26808565], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Plaza de Cristino Martos", "name:etymology:wikidata": "Q45900966", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7643040, "nodes": [25906108, 1591329866, 25906109], "tags": {"highway": "residential", "name": "Traves\u00eda de la Florida", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7649038, "nodes": [33131383, 8805121864, 33131388], "tags": {"highway": "footway"}}, {"type": "way", "id": 7649042, "nodes": [26242740, 26025861, 1669117791, 26025870, 4637824948, 26242734, 5754419282, 8522723085, 26025879], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Escosura", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7649061, "nodes": [4417379979, 26579182, 26578946], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7649062, "nodes": [26579181, 26579184], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7649065, "nodes": [26579178, 1486142531, 1486142534, 26579179, 7510718614, 1869415375], "tags": {"bus:lanes": "no|yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7649066, "nodes": [26579178, 1364773043, 26211528], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 7712485, "nodes": [33131393, 11201940677, 11201940678, 5784462289, 33131391, 1613048646, 26413513], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Ramiro II", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7712487, "nodes": [33131380, 11201940686, 11201940687, 8804963717, 11201940688, 5784462288, 10745001723, 33131391], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Esquilache", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7712497, "nodes": [25906118, 3418127830, 25934453], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7712498, "nodes": [25906296, 25906297, 25906298, 25906299, 11141805128], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Br\u00edgida", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7712499, "nodes": [21990702, 25906297], "tags": {"highway": "residential", "name": "Calle de Santa \u00c1gueda", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 7726313, "nodes": [25902056, 4456617454, 4456617457, 4456617460, 7549719197, 7549719198, 25552449], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle Marqu\u00e9s de Zurgena", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732079, "nodes": [25896215, 11149514153, 1339493668, 1339493625], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732084, "nodes": [26579105, 7549593999, 1500160587, 1500160589, 1486142652, 26579108, 26579109], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "overtaking": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732112, "nodes": [339636199, 1752467616], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "taxi:lanes": "designated"}}, {"type": "way", "id": 7732113, "nodes": [25902885, 1752467538, 8440634344, 25902943], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through;slight_right|slight_right"}}, {"type": "way", "id": 7732115, "nodes": [25902885, 25902886], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732116, "nodes": [25902894, 355172281], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes"}}, {"type": "way", "id": 7732117, "nodes": [25902884, 25902885], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732118, "nodes": [339636378, 1752467533, 10927525534, 25902890], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732120, "nodes": [25902892, 1505081159, 25902894], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 7732121, "nodes": [536185687, 8807066127, 8807066125, 8807066126, 989205005, 989205097, 8480842116, 263839181, 1505081160, 1752467530, 25902892], "tags": {"highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732124, "nodes": [142279256, 8224947186, 142281585, 1377881565, 142227128, 8464920926, 142227130, 1311052161, 142227132, 3274917092, 2506590867, 2506590865], "tags": {"highway": "tertiary_link", "lanes": "2", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732125, "nodes": [25902884, 1752467529, 8464920918, 2533399084, 3457902047, 2466689611], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732127, "nodes": [25902862, 25902866, 1754817170], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 7732128, "nodes": [102214348, 102213637, 25902855, 1754817092, 9559283922, 9559283927], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 7732132, "nodes": [25902692, 1759501693, 1759501735, 8451215619, 8807074873, 8807074874, 8807074877, 25902782, 8807074878, 8807074876, 8807074867], "tags": {"bus:lanes": "yes|no|no", "cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "|through|through;right"}}, {"type": "way", "id": 7732134, "nodes": [25903360, 8807074886, 8807074885, 8807074889, 8807074890, 1613048503, 25902775, 25902801], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732136, "nodes": [25902794, 25902795, 1754816986, 8807074843, 25902796], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732138, "nodes": [25902806, 8807074864, 8807074862, 1754817007, 1754816996, 8807074863, 1754816990, 25902821], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 7732148, "nodes": [8807074867, 1754816976, 8807074875, 1754816978, 25902783], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732155, "nodes": [25902794, 7825645058], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732157, "nodes": [25902796, 1754816985, 1754816987], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732159, "nodes": [25902783, 8807074891, 8807074892, 25902784, 25902785, 1759501825, 25902786, 142294070, 1759501751, 142294113, 25902787, 25902788, 25902789, 588635983, 4604349217, 25902790, 1759501677, 3675302630], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Calle de Jos\u00e9 Guti\u00e9rrez Abascal", "name:etymology:wikidata": "Q17148207", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7732161, "nodes": [25902758, 8807074836, 8807074833, 8807074826, 1754816974, 8807074834, 8807074825, 8807074824, 25902760, 8807074835, 8807074823, 1759501798, 8451215629, 25902759], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "1", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "noname": "yes", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732162, "nodes": [60017474, 8807066207, 1613048543, 1613048540, 101180201, 1613048522, 8807066208, 1613048520, 60018312, 1613048518, 8807066211, 8807066212, 8807066213, 8807066214, 8807066215, 1754816980, 8807066216, 8807074820, 25902778, 8807074840, 8807074817, 8807074818, 8807074837, 25902758], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7732165, "nodes": [25902690, 25902757, 60030408, 60030407, 3258766761, 3258766762, 60030398, 3258766763, 60030402, 9266993696, 9266993699, 60030397, 2283361238, 60017591], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Bret\u00f3n de los Herreros", "name:etymology:wikidata": "Q3774440", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971503, "nodes": [25902890, 1752467534, 1505081179, 8480879036, 263839681, 25902910, 340228784, 4547724398, 340228748, 4547724402, 142194318], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971505, "nodes": [25902077, 2053142650, 25902123, 25934324, 1973690395, 25934323, 2688334675], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fernando El Santo", "name:etymology:wikidata": "Q243122", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7971506, "nodes": [25906145, 25902060], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alcal\u00e1 Galiano", "name:etymology:wikidata": "Q1626617", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971509, "nodes": [25902123, 4190852714, 25902060], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Amador de los R\u00edos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7971510, "nodes": [25902207, 25902210, 141920921, 8004974955, 139977749], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Jenner", "name:etymology:wikidata": "Q40852", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971514, "nodes": [25902717, 8580966592, 8580966593, 1719813640, 8580966594, 25902719, 25902720], "tags": {"cycleway:right": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971515, "nodes": [25902675, 25902718, 25902717], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971516, "nodes": [25902468, 25902467, 2679640387, 5966607277, 3268713844, 25902584], "tags": {"cycleway:right": "no", "highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971518, "nodes": [25902485, 2679640397, 2679640394], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del General Or\u00e1a", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 7971519, "nodes": [25902482, 25902485], "tags": {"created_by": "Potlatch 0.9c", "highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971521, "nodes": [25902717, 25902656, 8440634392, 4416531502, 25902655], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971522, "nodes": [25902491, 4576291395, 25902656, 8737409030, 8737409031, 60030727, 6000178811, 60030280, 4547336052, 4547336043, 60030260, 9468406683, 60030277, 269361124, 3426732170, 5802031873, 5214866732, 3426732171, 3883232009, 98957147, 4422722031, 98957145], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Garc\u00eda de Paredes", "oneway": "yes", "postal_code": "28010", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 7971523, "nodes": [141865273, 5966607252, 674477982, 98960521], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971527, "nodes": [25902694, 25902695, 25902696, 25902697], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 7971531, "nodes": [3675302630, 4604349219, 25902698, 4393276535, 4393276534, 2321219900, 25902699, 3051148235, 3051152634, 142295943, 2846389424, 142295945], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Pedro de Valdivia", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 7971532, "nodes": [25902698, 5602172191, 2846389422, 25902697, 25902694, 25902693], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 7971535, "nodes": [25902469, 5966607279, 5966607278, 25902461, 25902471], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle General Or\u00e1a", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971569, "nodes": [21990747, 26066549, 26066560], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Santa Luc\u00eda", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971573, "nodes": [26058812, 2331169575, 2331169567, 2331169552, 325172800, 2331169534, 26066561, 26066560, 26066559, 26066558], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Tesoro", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 7971575, "nodes": [26066557, 11220779557, 26066556], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Traves\u00eda de las Pozas", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7971576, "nodes": [26066551, 26066557, 26066558, 26066573], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Pozas", "oneway": "yes", "postal_code": "28004", "sidewalk": "both"}}, {"type": "way", "id": 7971577, "nodes": [325172790, 325172794, 26066563, 1474148374, 26066566], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Santa Ana", "name:etymology:wikidata": "Q19458190", "oneway": "yes", "postal_code": "28004", "sidewalk": "no", "surface": "paving_stones"}}, {"type": "way", "id": 7971579, "nodes": [26058802, 26058803, 4062386147, 4062386151, 4062386148], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Don Felipe", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971581, "nodes": [21990700, 9051008009, 26058790], "tags": {"highway": "residential", "name": "Calle de San Joaqu\u00edn", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971584, "nodes": [26066574, 26058807, 6314674726, 26058808], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de Jes\u00fas del Valle", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971585, "nodes": [26066577, 26066578, 26058804, 1276028458, 26058803], "tags": {"highway": "residential", "incline": "up", "lit": "yes", "name": "Calle del Molino de Viento", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971628, "nodes": [26579110, 26579111, 26579042], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971630, "nodes": [26211543, 1500124573, 26211553], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 7971631, "nodes": [26579034, 26579050], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971917, "nodes": [26413152, 8583532392, 1505081193, 338727906, 2972168636, 26413358], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971918, "nodes": [26413579, 1203847117, 26413581], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "4", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "left|left|left;right|through"}}, {"type": "way", "id": 7971919, "nodes": [26413586, 2972892248, 2972891887, 1924384878], "tags": {"highway": "tertiary", "lanes": "3", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "left", "turn:lanes": "merge_to_right||"}}, {"type": "way", "id": 7971920, "nodes": [26413586, 1203847232, 1203847216, 1203847120, 1203847161, 26413595], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971945, "nodes": [26413032, 6934437085, 34408606, 8400874015, 34408611], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Alvarado", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971946, "nodes": [98726081, 34408611, 34408502], "tags": {"highway": "pedestrian", "lanes": "1", "lit": "yes", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "note": "\"Prohibido circular - Permitido carga y descarga de 8 a 11h d\u00edas laborables y acceso a garajes\"", "oneway": "yes", "postal_code": "28039", "source": "https://www.eldiario.es/madrid/somos/tetuan/noticias/ayuntamiento-pinta-unica-peatonalizacion-tetuan-180-metros-calle-tenerife_1_7243032.html", "surface": "paving_stones", "vehicle:conditional": "private; delivery @ (Mo-Fr 08:00-11:00)"}}, {"type": "way", "id": 7971948, "nodes": [98727885, 8398199115, 359412218, 8416409740, 98727886, 8419169789, 8419169786, 34408665, 8419484454, 34408837, 8419412244, 34408841, 8421422531, 8421307640, 8421307641, 34408846, 8421422530, 34408848], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Abel", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 7971949, "nodes": [32602932, 8117579706, 8450420426, 34407848, 34407996, 8430141314, 1801212350, 8483729855, 8430141315, 34408133, 8419397883, 8427141937, 34408179, 8427119577, 8427119580, 34408866], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Castillo Pi\u00f1eiro", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971950, "nodes": [34407996, 8430141313, 8430141312, 8450352722, 8430141309, 34408321], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Adela Balboa", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 7971951, "nodes": [26413061, 11525423807, 34408449, 34408462], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Carnicer", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971952, "nodes": [34408502, 34408565, 6934437086, 26413048], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Juan Pantoja", "name:etymology:wikidata": "Q1380081", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971953, "nodes": [34407779, 8419397885, 8430141310, 34407848], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle del Doctor Santero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971954, "nodes": [34408303, 8427141978, 8419397884, 8427141975, 34408133], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Carlos Latorre", "name:etymology:wikidata": "Q5750704", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971955, "nodes": [34408851, 8427119581, 8409510074, 8409510073, 34408479], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Carlos Rubio", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971956, "nodes": [34408844, 98725376, 8419412243, 8419412241, 34408661], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Rafael Herrero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971957, "nodes": [34408287, 8427119591, 11167102462, 11167102461, 11167102460, 8421267761, 11167102459, 4461268759], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Garellano", "noexit": "yes", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971958, "nodes": [34408267, 8427119578, 34408855, 34408848, 34408851, 8402493613, 34408615], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Pedro Barreda", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971959, "nodes": [34408380, 34408449, 34408565, 34408606, 98726079, 8486897768, 98725373], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Topete", "name:etymology:wikidata": "Q1621912", "oneway": "yes", "postal_code": "28039", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971960, "nodes": [34408632, 8421307654, 34408844, 34408841, 8421422532, 8419397870, 8419397869, 8419397868, 8409510071], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Olite", "name:etymology:wikidata": "Q837062", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971961, "nodes": [34408668, 8419397863, 8419397879, 8419437221, 34408665, 34408661, 8419484451, 34408658, 8398199207, 8419397875, 8419484447, 98725380, 8420975568, 3484491402, 8420975570, 98724875], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Beire", "name:etymology:wikidata": "Q814864", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 7971964, "nodes": [34408825, 8419397864, 8419437222, 8419412245, 34408837], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Santa Matilde", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 7972177, "nodes": [25901935, 1915012238, 389139055, 345538472, 1278839121, 25901922, 3418035829, 1278838973, 25901885, 25901886], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7972359, "nodes": [25903334, 1278839114, 3424964317, 25901886], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Prim", "name:etymology:wikidata": "Q379787", "oneway": "yes", "postal_code": "28004", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 7972362, "nodes": [370503496, 25906153, 370503475, 3424801051, 9398011424], "tags": {"access": "private", "foot": "yes", "highway": "pedestrian", "name": "Plaza de la Villa de Par\u00eds", "name:etymology:wikidata": "Q6080233", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972364, "nodes": [25906137, 25906136, 25906129, 25906130, 25906196], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Argensola", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972367, "nodes": [25906131, 3424801055, 25906129, 25906128, 25906124], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Orellana", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972368, "nodes": [25906128, 25906127], "tags": {"highway": "residential", "name": "Calle de Justiniano", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7972369, "nodes": [25906111, 370503569, 5302471391, 21990706], "tags": {"bicycle": "dismount", "highway": "pedestrian", "name": "Calle de San Mateo", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7972370, "nodes": [25901890, 10011023604, 25901891], "tags": {"highway": "residential", "name": "Calle del Marqu\u00e9s de Monasterio", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 7972372, "nodes": [25906276, 25906275, 25906273, 25906281, 3161163797, 1718376821, 25906269], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Gravina", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7972443, "nodes": [141886626, 4642427967, 1591330196, 1591330146, 141886625, 8953723327, 1591330083, 25934520, 1591330027, 25934506, 1591330002, 25934465, 1591329945, 4808864933], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "30", "name": "Calle de Covarrubias", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972444, "nodes": [25934470, 1591329980, 1591329988, 25934465, 1591330004, 5214866746, 25934447], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Manuel Gonz\u00e1lez Longoria", "name:etymology:wikidata": "Q107178446", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972445, "nodes": [25934556, 1501227850, 25934572], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972446, "nodes": [25934541, 1591330031, 1591330034, 25934540], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Nicasio Gallego", "name:etymology:wikidata": "Q720492", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972447, "nodes": [298148410, 5063896010, 1591330029, 1591330026, 25934506, 1591330015, 25934524], "tags": {"highway": "residential", "name": "Calle de Jos\u00e9 Mara\u00f1\u00f3n", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972449, "nodes": [25934545, 1651583803, 1591330056, 25934541, 1591330008, 4819134930], "tags": {"foot": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Eguilaz", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972452, "nodes": [141880346, 674492251, 8440634371, 141885510, 9169688175, 98958749], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 7972761, "nodes": [2615463410, 26485808, 4140937593, 26485809, 9684664017, 25901898, 25901851, 25901838], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Salustiano Ol\u00f3zaga", "name:etymology:wikidata": "Q959518", "oneway": "yes", "postal_code": "28001", "sidewalk": "both"}}, {"type": "way", "id": 7972765, "nodes": [25901898, 9684850520, 25901897], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Villalar", "name:etymology:wikidata": "Q2890338", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7972768, "nodes": [25901853, 25901851], "tags": {"highway": "residential", "name": "Calle de Pedro Mu\u00f1oz Seca", "name:etymology:wikidata": "Q3322907", "oneway": "yes"}}, {"type": "way", "id": 7972771, "nodes": [25901895, 25901914, 25901897], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "pedestrian", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "motor_vehicle": "private", "name": "Calle de Recoletos", "note": "Permitido carga y descarga laborables de 8 a 11 h. y acceso a garajes", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt", "vehicle:conditional": "private; delivery @ (Mo-Fr 08:00-11:00)"}}, {"type": "way", "id": 7972772, "nodes": [25901914, 25901917], "tags": {"foot": "yes", "highway": "pedestrian", "motor_vehicle": "private", "name": "Calle del Cid", "name:etymology:wikidata": "Q43958", "note": "Permitido carga y descarga laborables de 8 a 11 h. y acceso a garajes", "oneway": "yes", "postal_code": "28001", "vehicle:conditional": "private; delivery @ (Mo-Fr 08:00-11:00)", "wikidata": "Q52665136", "wikipedia": "es:Calle del Cid"}}, {"type": "way", "id": 7972776, "nodes": [25901948, 7549719166, 7549719167], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7972777, "nodes": [25901919, 25901917], "tags": {"highway": "residential", "name": "Calle de Gil de Santiva\u00f1es", "oneway": "yes", "postal_code": "28001", "sidewalk": "both"}}, {"type": "way", "id": 8029712, "nodes": [25902807, 267271033], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "local knowledge", "surface": "asphalt"}}, {"type": "way", "id": 8029715, "nodes": [60030404, 3258766778, 3258766777, 60030405, 3258766776, 60030406, 60030410, 8807074828, 8807074829, 8807074830, 60017632], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Espronceda", "name:etymology:wikidata": "Q209077", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 8029884, "nodes": [60030257, 4412200931, 269361176, 2283361226, 5802031871, 10814462213, 4412200930], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Ponzano", "name:etymology:wikidata": "Q1588564", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 8029903, "nodes": [98951272, 1505081174, 9601998714, 1016578272, 1654250201, 98944895, 98951271], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Modesto Lafuente", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 8029920, "nodes": [141915390, 141918536, 9879403070, 141918063, 139977761, 9879403071, 139951329, 60018311, 60030729, 60018337, 60030280, 8963996218, 7892603717, 3675303746, 60030301], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Fern\u00e1ndez de la Hoz", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 8029934, "nodes": [60018334, 98958622, 3883232008, 3426732145, 5214866733, 289005947, 3426732143, 9468421737, 5802031897, 60030278, 9468421734, 5802031895, 9468442519, 60030279, 60018337], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Viriato", "name:etymology:wikidata": "Q331889", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 8031768, "nodes": [141858985, 5754419279, 60030239], "tags": {"highway": "residential", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "postal_code": "28015", "sidewalk": "both"}}, {"type": "way", "id": 8098304, "nodes": [25934823, 2972995640, 60672316], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 8098307, "nodes": [60672316, 2972995638, 8866381041, 25934825], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 8098313, "nodes": [60672316, 2972995643, 60672339, 11172580730, 2915247995, 1596698086, 60672523], "tags": {"highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle de San Bernardo", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 8098342, "nodes": [60672590, 60030242], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 8098344, "nodes": [60672590, 2972995642], "tags": {"highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 8098348, "nodes": [60030252, 60672590], "tags": {"destination": "A-6 A Coru\u00f1a;Glorieta de Ruiz Jim\u00e9nez", "highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 8098363, "nodes": [60672339, 4627368189, 25934580, 25934579], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Sandoval", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 8572145, "nodes": [60030399, 5069264831, 60030402], "tags": {"highway": "residential", "name": "Calle de Vargas", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 8572147, "nodes": [60030409, 25902756], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de M\u00e1laga", "name:etymology:wikidata": "Q8851", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 9933911, "nodes": [142194318, 98951272], "tags": {"highway": "tertiary", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 9939448, "nodes": [81580405, 81580404, 81580403, 81580401, 6764785321, 81580400, 81580399, 81580397, 3971975776, 3971975778, 81582480, 3971975780, 3971975782, 3971975784, 81580395, 2533387846, 10927499983, 81473204], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Dulcinea", "oneway": "yes", "sidewalk:left": "yes", "sidewalk:right": "separate", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9939505, "nodes": [989204999, 2466689585, 6684049129, 989205020, 5941381328, 98746809, 4439143643, 5941381327, 6684049122, 1474148398, 81581404], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9939547, "nodes": [339391878, 6934412482, 1474148455, 1474148448, 1474148446, 3971975775, 81580397], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Teruel", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 9941126, "nodes": [81604776, 3971975769, 81604775, 81580401, 81604773, 81604772, 11359780700, 26413033], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de Ja\u00e9n", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt", "wikidata": "Q54564835"}}, {"type": "way", "id": 9941151, "nodes": [26413142, 1505081230, 81605088, 8793095016, 81605091, 8793095017, 344875504, 81605092, 8793095018, 8793095019, 81605093, 8793095020, 81605094, 8793095021, 81605096, 81605097, 81605098], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de los Artistas", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 9941191, "nodes": [338727758, 8793113479, 81605725], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Guip\u00fazcoa", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 10044037, "nodes": [26413048, 2887253640, 1474148425, 1522690105, 82499627, 1474148418, 82499051, 81580403, 82499430, 4499335102, 82499052], "tags": {"alt_name": "C/ Palencia", "bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Palencia", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 10044045, "nodes": [82499216, 82499628, 338734223, 8824409714, 8824409715, 1522690091, 338734205], "tags": {"highway": "residential", "name": "Plaza de la Condesa de Gavia", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044099, "nodes": [82499429, 81604775, 82499430, 4499335104, 82499431, 81581405], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Don Quijote", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044120, "nodes": [81604772, 1474148441, 82499627], "tags": {"highway": "residential", "name": "Calle de San Antonio", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 10044139, "nodes": [338727838, 2887179137], "tags": {"foot": "yes", "highway": "footway", "name": "Calle de Cicer\u00f3n", "surface": "paved"}}, {"type": "way", "id": 10044164, "nodes": [82499051, 82500114, 81581407], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de La Orden", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 10044170, "nodes": [82500132, 82500158], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Cuenca", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 11070084, "nodes": [98726081, 8409510076, 98726080, 98726079, 8458948194, 6934422584, 26412916], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Las Carolinas", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 11070196, "nodes": [98724825, 8513274926, 98726865, 8513274925, 98725054, 8421083584, 544435179, 8421229166, 98725377, 8421229163, 98726082, 34408632], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Olite", "name:etymology:wikidata": "Q837062", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070219, "nodes": [34408653, 8419484452, 8398199206, 8419397876, 8419484448, 98725379], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle Marianela", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070298, "nodes": [34408855, 8427119579, 34408866, 8419397865, 8419397867, 8409510071, 8419437223, 8409510072, 34408825, 34408668, 98728184], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070344, "nodes": [98727994, 8398199114, 98727995, 8419397871, 8410136432, 98727996], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle Acueducto", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070357, "nodes": [98724826, 8419169769, 8419169784, 8419169775, 98725053, 8419169776, 8418938599, 8419397874, 8419169766, 98725381, 8400874013, 8398199208, 98727958, 8398199209, 8419169738, 98727996, 98727886, 8419169788, 98728183, 8419397880, 8416409743, 98728184], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Zamora", "name:etymology:wikidata": "Q15696", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11070759, "nodes": [98722465, 8402489211, 98731452, 98731608, 98727626], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle San Rogelio", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 11072515, "nodes": [28096050, 4990990038, 28096049], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11072569, "nodes": [98746807, 1654250238, 8427069646, 98746809, 4439143647, 82499214, 8427069645, 28096049, 98746810, 28096047, 28096046, 98746811, 8427069654, 2533387853], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Edgar Neville", "old_name": "Calle del General Moscard\u00f3", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11074170, "nodes": [28096047, 3221366173, 28096048], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes"}}, {"type": "way", "id": 11074195, "nodes": [28096046, 4990990039, 98746257], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 11074205, "nodes": [98746810, 81466846], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11074248, "nodes": [81466847, 2466689601, 339391803], "tags": {"highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de la Reina Mercedes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 11099922, "nodes": [98944239, 1654250234, 1654250213, 98944240], "tags": {"highway": "residential", "name": "Calle de Trevi\u00f1o", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 11099985, "nodes": [26413356, 1654250214, 1654250212, 5214866722, 26413364, 1654250211, 98944240, 1654250209, 98944891, 1654250207, 1654250203, 98944892, 1654250202, 1654250200, 98944893, 1654250198, 1654250196, 98944895], "tags": {"foot": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle Maudes", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11100053, "nodes": [26413356, 1654250215, 2692394188, 98945384], "tags": {"access": "private", "highway": "residential", "name": "Calle Virgen de Nieva,", "postal_code": "28003"}}, {"type": "way", "id": 11100593, "nodes": [26413522, 1613048617, 8451215627, 1613048616, 98949531, 1613048615, 1613048606, 98946910, 8451215631, 1613048600, 98948612, 1613048592, 98949532, 1613048590, 1613048588, 98949534], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Crist\u00f3bal Bordi\u00fa", "name:etymology:wikidata": "Q22962489", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11100665, "nodes": [98949981, 1613048580, 1613048602, 98949531, 1613048621, 1654250182, 98945967, 1654250186, 1016578355, 1016578216, 1654250205, 98944891, 1654250210, 1654250226, 616263063, 1654250233, 338727830], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Alenza", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11101038, "nodes": [98953225, 8804963716, 1924384875, 27522353], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "right"}}, {"type": "way", "id": 11101348, "nodes": [98956113, 2972941184, 9492744668, 27522994], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Garc\u00eda de Paredes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both"}}, {"type": "way", "id": 11101396, "nodes": [98956600, 5963987027, 4211592127, 60018334], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101490, "nodes": [98957378, 8455404370, 8455404371, 2687649524, 98957377], "tags": {"highway": "residential", "lanes": "4", "name": "Calle General \u00c1lvarez de Castro", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101678, "nodes": [98958321, 5195760372, 8804963863, 2060837659, 98957147, 98958622, 291274690, 2060837658, 98958620], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de la Sant\u00edsima Trinidad", "oneway": "yes", "postal_code": "28010", "surface": "asphalt", "width": "5"}}, {"type": "way", "id": 11101717, "nodes": [98959044, 9165505517, 9165505519, 98959043, 9164484328, 9164484324, 98959041, 9157684318, 9157684333, 98958915], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Castillo", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101763, "nodes": [141884430, 9165505529, 98959391], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de Raimundo Lulio", "name:etymology:wikidata": "Q193660", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 11101830, "nodes": [298153229, 9157684328, 98960186, 98960185], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de Murillo", "name:etymology:wikidata": "Q192062", "oneway": "yes", "postal_code": "28010", "surface": "paving_stones"}}, {"type": "way", "id": 11101836, "nodes": [98960185, 9157684234, 9157684312, 9157684252, 98960226], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Quesada", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 11101896, "nodes": [98955810, 4412200929, 98960871], "tags": {"highway": "residential", "lanes": "1", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both"}}, {"type": "way", "id": 11340425, "nodes": [100881577, 989278228], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 11340452, "nodes": [100881577, 989278265], "tags": {"highway": "residential", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes"}}, {"type": "way", "id": 11340476, "nodes": [100881334, 4452608798, 989278010], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11340502, "nodes": [25902943, 1752467628], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11341864, "nodes": [25902673, 1759501519, 11218056275, 1359796756, 11218056258, 5068655474, 11218056259, 11218056260, 100890239, 8451203580, 11218056256, 11218056257, 100890241], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 11342060, "nodes": [256525374, 1759501517, 25902673], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 11342111, "nodes": [581870023, 11218056240, 2688019420], "tags": {"admin_level": "9", "boundary": "administrative", "foot": "yes", "highway": "primary", "lanes": "2", "layer": "-1", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 11342168, "nodes": [100891869, 4595952174], "tags": {"admin_level": "9", "boundary": "administrative", "cycleway:right": "no", "foot": "no", "goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 11378355, "nodes": [1613048571, 8807066206, 60017474], "tags": {"highway": "tertiary", "lanes": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through|through;right|right"}}, {"type": "way", "id": 11379461, "nodes": [100881715, 1314938250, 4659927123, 989278226], "tags": {"bicycle": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11379498, "nodes": [101190120, 8566199520, 101190048], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Plaza de Quito", "name:etymology:wikidata": "Q2900", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11379654, "nodes": [101190048, 101190286, 3636842772, 98989151], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Marceliano Santa Mar\u00eda", "name:etymology:wikidata": "Q5995562", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11477083, "nodes": [102193004, 102193006, 102193007, 102195393], "tags": {"highway": "residential", "name": "Calle Armando Palacio Vald\u00e9s", "name:etymology:wikidata": "Q645141", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 11477415, "nodes": [102196725, 102196726, 616264726, 102196728], "tags": {"highway": "residential", "name": "Calle Daniel Urrabieta", "name:etymology:wikidata": "Q627132", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 11477565, "nodes": [102197892, 102192630, 102196725, 102197891, 102197890, 4733163155, 4733163167, 102197888], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Guadalquivir", "oneway": "yes", "postal_code": "28002", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 11478377, "nodes": [102213105, 3451250617, 1754817182], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 11478412, "nodes": [102213636, 2949460871, 3451212110, 3451212113, 102213637, 102217291], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 11478462, "nodes": [102213806, 3451250601, 102213110, 10543548231, 3451212170, 3451212152, 3451212150, 3451212148, 3451212134, 102214347], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 11478517, "nodes": [102213639, 3451212161, 3451212159, 102215151, 3451212160, 3451212162, 1754817145, 1754817146, 3451212168, 3451212169, 102215153, 10543548231], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 11478542, "nodes": [8608463782, 8608463779, 8608463777, 8608463775, 8608463781], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 11478577, "nodes": [25902845, 9559283930, 1754817096, 9559283929, 25902848], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 11478641, "nodes": [5340000561, 5340000562, 102217287, 4546196064, 3070612942, 3070612943, 5340000551, 5340000552, 5340000553, 102217288, 5340000554, 5340000555, 3070612941, 3070612940, 5340000556, 5340000557, 5340000558, 102217289, 5340000559, 5340000560, 102217291, 5340000561], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "junction": "roundabout", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 14369404, "nodes": [1760085712, 11056722073, 1760085711, 63530519], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 14369724, "nodes": [98959492, 1591330252, 3426732099, 4633369993, 60018311, 4633369992, 3293613522, 60018352, 344795413, 1011869678, 63530461, 25902430, 1223809841, 25902431], "tags": {"cycleway:both": "no", "destination": "Museo Sorolla;Glorieta de Emilio Castelar", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Rafael Calvo", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14459174, "nodes": [298158014, 298158022, 298158502, 2972941408, 9492744667, 141855405], "tags": {"highway": "residential", "name": "Calle del Lozoya", "name:etymology:wikidata": "Q16511", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 14459236, "nodes": [141855434, 298157651, 298157654, 301432199], "tags": {"access": "private", "highway": "residential", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "source:name": "survey"}}, {"type": "way", "id": 14459252, "nodes": [60672670, 141856893, 60672557], "tags": {"highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes"}}, {"type": "way", "id": 14459386, "nodes": [141858985, 1736112478, 141859167], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459399, "nodes": [141859168, 26025888], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 14459424, "nodes": [141859168, 8194903532, 3708287453], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459472, "nodes": [141859608, 1736112465, 141860142, 2493553219, 1736112463, 2493553208, 1736112460, 2915209118, 1736112458, 141860144], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle de Suchil", "name:etymology:wikidata": "Q27244013", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459504, "nodes": [141860372, 1736112455, 2915209115, 2915209117, 1736112461, 1736112462, 2493553221, 141860374, 1736112464, 1736112466], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle de Suchil", "name:etymology:wikidata": "Q27244013", "oneway": "yes", "postal_code": "28015", "source:name": "local knowledge"}}, {"type": "way", "id": 14459600, "nodes": [141860662, 6314750363, 616226070, 2915208795, 141861309, 616225689, 141861311, 616226051, 5777193962, 616226050, 2915209114], "tags": {"highway": "residential", "name": "Plaza del Conde del Valle Suchil", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 14459753, "nodes": [141862748, 1596698128, 60030251], "tags": {"highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459845, "nodes": [60030242, 141862748], "tags": {"destination": "Glorieta de Bilbao", "highway": "tertiary", "lanes": "1", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459910, "nodes": [141865273, 3096525871, 60030244], "tags": {"highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14459939, "nodes": [60030243, 3096525856, 141865273], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14460132, "nodes": [22022484, 4627367186, 4627367188, 25934580, 141868929], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Montele\u00f3n", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 14460169, "nodes": [25934579, 22022469], "tags": {"highway": "residential", "name": "Calle de Ruiz", "oneway": "yes", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 14460235, "nodes": [25934572, 141870722], "tags": {"bicycle": "yes", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14460372, "nodes": [25934577, 25934578, 141874455], "tags": {"highway": "residential", "name": "Calle de Hartzenbusch", "name:etymology:wikidata": "Q1377747", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460397, "nodes": [141885351, 9169688187, 4643041889, 9169688184, 9169688185, 141875018], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Alburquerque", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460645, "nodes": [25934545, 1651583804, 141874455, 1591330165, 141875017, 1591330178, 1591330199, 9172009165, 141880907], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Palafox", "name:etymology:wikidata": "Q332481", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460667, "nodes": [141881347, 1591330231, 9281641973, 98960811, 1596698124, 141881346, 9172003701, 9172003700, 9172003699], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Jord\u00e1n", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460689, "nodes": [1596698110, 1591330220, 9281642021, 98960767, 1591330218, 9281641942, 141881448], "tags": {"alt_name": "Calle Gonzalo de C\u00f3rdoba", "bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Gonzalo de C\u00f3rdoba", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460716, "nodes": [141881777, 1591330186, 9281668039, 98960768], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Olid", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14460750, "nodes": [141882864, 298152271], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14460929, "nodes": [141885510, 9169688176, 141885351], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Garcilaso", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14461022, "nodes": [141886881, 5214866745, 1591330158, 1591330144, 141886625, 8953723330, 1591330139, 141886675], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Manuel Cortina", "name:etymology:wikidata": "Q5992686", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 14461138, "nodes": [141887738, 3418127838, 1366142630, 141888359], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14461155, "nodes": [141888359, 8583791441, 8583791440, 8583791450, 8583791449, 6634926258], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14461169, "nodes": [141880344, 3418127836, 3418127837, 8583791446], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 14463022, "nodes": [141917742, 1591330170, 9879403069, 141918063, 9879403068, 8649272390, 141918065], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle del Espa\u00f1oleto", "name:etymology:wikidata": "Q297838", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463039, "nodes": [63530546, 141920074, 9879403066, 141918536, 1591330161, 141886881], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Caracas", "name:etymology:wikidata": "Q1533", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 14463070, "nodes": [141886481, 3418127832, 141915390, 141919137], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Zurbar\u00e1n", "name:etymology:wikidata": "Q209615", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463217, "nodes": [25902196, 1760085704, 6417677196, 25902195, 141921783, 63530546], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Riscal", "name:etymology:wikidata": "Q5742129", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14463274, "nodes": [25902152, 1760085694, 25903287, 4016402391, 25903288], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14463315, "nodes": [141923543, 7881641304, 141923652], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Blanca de Navarra", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14480888, "nodes": [142191968, 102197888, 706689923, 706689917, 142191967, 7997067405, 7997067406, 142191440], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Balvina Valverde", "name:etymology:wikidata": "Q5717120", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14481058, "nodes": [142195759, 359308510], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14481258, "nodes": [25902901, 1505081189, 4547724401, 142194318], "tags": {"highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 14481295, "nodes": [32602929, 142201929], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxheight": "4.5", "maxspeed": "50", "name": "T\u00fanel de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 14481464, "nodes": [142201929, 8481041833, 142248303], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14481788, "nodes": [60030258, 5069264834, 8427069642, 3258762560, 60030398, 3258766765, 9053166226, 3258766775, 60030405, 3258766779, 8427069644, 1613048555, 1613048569, 3258766782, 1613048589, 98948612, 3258766783, 1016578357, 1613048659, 98945970, 8427069643, 1654250191, 569034140, 1016578361, 1654250197, 98944893, 1654250220, 9602013219, 9601998681, 616263147, 1654250231, 98948614], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Calle de Alonso Cano", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 14482098, "nodes": [26413145, 338728145], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14482135, "nodes": [142246030, 8455404361, 8793094951, 338728036], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14482330, "nodes": [142195761, 2466689611], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 14482361, "nodes": [142223394, 142223395, 8213572614, 142223397, 1311052172, 142223399, 8213572611, 8213572610, 2506590865], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 14482703, "nodes": [142230853, 142223394], "tags": {"highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "4.25", "maxspeed": "30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "tunnel": "yes"}}, {"type": "way", "id": 14482717, "nodes": [142222551, 142231379], "tags": {"highway": "primary", "lanes": "2", "layer": "-1", "level": "2", "maxspeed": "40", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002", "tunnel": "yes"}}, {"type": "way", "id": 14483223, "nodes": [142198196, 32602930], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "hazmat": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxheight": "4.5", "maxspeed": "50", "name": "T\u00fanel de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 14483931, "nodes": [142279247, 8213602131, 4825301732, 8213602132, 1377881511, 1377881508], "tags": {"highway": "tertiary_link", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 14484711, "nodes": [706689902, 1311052137, 8213602129, 142279261, 8213602127, 1377881546], "tags": {"cycleway:right": "no", "highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "surface": "asphalt", "wikidata": "Q29200152"}}, {"type": "way", "id": 14484847, "nodes": [139982488, 8213572615, 9020774013, 1377881524, 706689897, 142284543, 8815557569, 3247246420, 1754817140], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Carbonero y Sol", "postal_code": "28006", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14484862, "nodes": [1754817102, 4208190799, 6101370504, 142284535, 3078426887, 139982483], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Jorge Manrique", "surface": "asphalt"}}, {"type": "way", "id": 14484891, "nodes": [29739484, 3567480241, 10140011252, 2466689617, 10286446604, 10286446605, 142260103], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "name": "Calle Juan de la Cierva", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14484913, "nodes": [3247246414, 142284539, 3247246413, 3247246412, 139982486], "tags": {"highway": "residential", "name": "Calle de Grijalba", "oneway": "yes"}}, {"type": "way", "id": 14484972, "nodes": [25902793, 8744168238, 142284527, 3078426882, 3078426883, 142284529, 3078426884, 142284530, 3078426885, 142284532, 142284533, 142284535, 142284537, 6101370502, 142284538, 6101370503, 142284539, 6101370501, 142284541, 6101370500, 142284543], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle del Maestro Ripoll", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14485408, "nodes": [142294113, 142294702, 2321219904], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14485446, "nodes": [25902699, 2321219901], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 14485480, "nodes": [142295945, 142296564, 1759501690, 142296562, 142296560, 29739489], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Pedro de Valdivia", "oneway": "yes"}}, {"type": "way", "id": 14485518, "nodes": [29739485, 5162768439, 306546519, 142297730, 2846391065], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 14485544, "nodes": [2846391054, 142298992, 306546514, 142298473, 5254188621, 306547670], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 14485582, "nodes": [29739486, 2846390857, 1791742021, 2846390859, 2846390861, 1791742029, 2846390862, 2846390863, 306546511, 306546512, 3841500019, 306546514], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 14485607, "nodes": [142299870, 142299872, 142299874, 142299876, 142299877, 2846389436, 142295945], "tags": {"access": "private", "highway": "service", "name": "Calle del Pinar", "oneway": "no"}}, {"type": "way", "id": 14485666, "nodes": [142301513, 8537288336, 3437173853, 8430162561, 353290961, 142301512, 142301511, 142301510, 142303405, 142301509, 142301508, 29739489], "tags": {"highway": "residential", "name": "Calle de Pedro de Valdivia", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 14485680, "nodes": [142302070, 142302069, 6861422001, 6861422000, 142302067, 4316800079, 8537288346, 29739623], "tags": {"highway": "residential", "name": "Calle de Oquendo", "oneway": "yes"}}, {"type": "way", "id": 14485731, "nodes": [29739646, 2466689613, 142302069, 142303401, 6420985242, 142303403, 4316800038, 4316800036, 142303405], "tags": {"highway": "residential", "name": "Calle Castell\u00f3n de la Plana", "postal_code": "28006"}}, {"type": "way", "id": 14486405, "nodes": [100890242, 11218056253, 4575762334, 11218056255, 11218056254, 100891149], "tags": {"highway": "tertiary", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 14486476, "nodes": [142321412, 4270791877, 4627327426, 11218056261, 100890239], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Pinar", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 14567301, "nodes": [100890244, 11218056244, 11218056245, 11218056243, 8057391304, 4933407204, 143500434, 4933405777, 3268713841, 143497066, 3268713829, 143508729, 1377881485, 327492865, 1377881475, 28096881, 28097221], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14567386, "nodes": [2005647280, 7549719138, 2005647267, 7549719136, 7549719146, 2005647264, 4576234821, 26513047, 4576234822, 4576234359, 26513061, 26513067, 1973690387, 26513085, 1973690393, 1950481121, 25552446], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28001", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 14567503, "nodes": [25902485, 4172945199, 4172945200, 29739493, 1555729943, 4172945201, 4172945202, 143500432, 4172945203, 4172945204, 143500434, 4172945205, 3268713846, 2351032617, 4172945206, 3205998419, 143500436, 3627507753, 3627507752, 143500437, 4172945207, 1505106068, 143500439], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del General Or\u00e1a", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 14567697, "nodes": [25902584, 3268713839, 1689543057], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 14567951, "nodes": [4109163310, 3268713826, 143508729, 8787245621, 8787245617, 8787245619, 8787245642, 143508728, 8787245643, 1689543052, 143505038], "tags": {"highway": "residential", "name": "Calle de Maldonado", "name:etymology:wikidata": "Q2742352", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 14771608, "nodes": [60030248, 1016578203], "tags": {"cycleway": "shared_lane", "destination:forward": "Museo Sorolla;Plaza de Emilio Castelar", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 15104153, "nodes": [149169016, 2239998744, 2239998718, 2239998657, 2239998644, 149169629, 2239998429, 2239998425, 5483598424, 2239998427, 2239998430, 149169631, 2239998654, 2239998702, 2239998732, 25901887], "tags": {"access": "private", "highway": "service", "name": "Cuartel General del Ej\u00e9rcito", "source": "PNOA", "source:date": "2010"}}, {"type": "way", "id": 15230904, "nodes": [150760281, 9116858094, 150760286, 150760632], "tags": {"highway": "residential", "name": "Calle de Santiago Rusi\u00f1ol", "name:etymology:wikidata": "Q366930", "surface": "asphalt"}}, {"type": "way", "id": 15230905, "nodes": [32630165, 4277498385, 32630166, 9116858055, 150760309, 9116858106, 150760313, 9115409895], "tags": {"highway": "residential", "name": "Calle Justo Dorado Dellmans", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230907, "nodes": [150760333, 4260545532, 9116858056, 150760309, 9116858062, 9116858067, 6238484473, 150760306], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle Aravaca", "name:etymology:wikidata": "Q26203094", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230908, "nodes": [1140217830, 8412903971, 7058240047, 7058240043, 2493613389, 98723336], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes"}}, {"type": "way", "id": 15230910, "nodes": [1135863691, 3578397067, 4414966126, 3578397072, 150760405], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230911, "nodes": [150760421, 4131272784, 4131272780, 8439470082, 4131272779, 4131272778, 6366504393, 1140217778, 11645339872, 11645339871, 11645339870, 11645339867, 150760271], "tags": {"highway": "residential", "name": "Calle de Ram\u00f3n Men\u00e9ndez Pidal", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230913, "nodes": [365614755, 4131272774, 1339493673, 11149514155, 150760425], "tags": {"highway": "residential", "maxspeed": "40", "name": "Camino de Las Moreras", "oneway": "yes", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 15230915, "nodes": [150760278, 11645339892, 150760526, 616212459, 1140217818, 6380794196, 150760533, 9549391159, 9549391158, 150760537, 150760653, 6380794280, 6380794283, 27514646, 581287837], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de la Moncloa", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230918, "nodes": [150760463, 150760490, 150760466], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230919, "nodes": [150760480, 150760483, 1212072906, 1212072752, 3524215759, 150760630, 27508181, 1212072813, 27508180, 1212072858], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230921, "nodes": [27508200, 6380793478, 150760543, 150760511, 150760517, 6348133638, 150760521, 1212072791, 4558946122], "tags": {"highway": "residential", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 15230922, "nodes": [150760543, 6348133635, 150760546, 6348133642, 6380794264, 150760537], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de la Loma", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 15230924, "nodes": [150760533, 6348133632, 150760555, 6380794185, 1212072857, 150760551, 150760548, 10550528506, 6348133639, 6348133637, 150760517], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de la Granja", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230925, "nodes": [150760577, 150760572, 1212072820, 150760567, 1212072739, 150760562, 150760560, 6380793483, 6348133640, 150760548], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Vicente Aleixandre", "name:etymology:wikidata": "Q134644", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230928, "nodes": [4558946123, 1212072844, 4558946128, 27508548], "tags": {"highway": "residential", "name": "Calle Sierra", "oneway": "yes"}}, {"type": "way", "id": 15230929, "nodes": [27508548, 11690717925, 150760630], "tags": {"highway": "residential", "name": "Calle de los Olivos", "name:etymology:wikidata": "Q37083", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230931, "nodes": [27508548, 11690767204, 11690717930, 27508178], "tags": {"highway": "residential", "name": "Calle de la Vi\u00f1a", "oneway": "yes"}}, {"type": "way", "id": 15230932, "nodes": [150760511, 6348133636, 27508547, 11690767199, 11690717879, 27508185], "tags": {"highway": "residential", "name": "Calle Amapola", "name:etymology:wikidata": "Q146391", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 15230933, "nodes": [150760632, 9116858088, 150760640, 150760645, 6348133633, 150760653], "tags": {"highway": "residential", "lanes": "1", "name": "Calle del Conde de la Cimera", "name:etymology:wikidata": "Q30045782", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230934, "nodes": [150760292, 1505081158, 150760658, 581287837], "tags": {"highway": "residential", "name": "Calle Doctor Te\u00f3filo Hernando Ortega", "oneway": "yes"}}, {"type": "way", "id": 15230935, "nodes": [150760298, 9116858100, 6238484470, 150760661], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle Estudiantes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230938, "nodes": [150760350, 7058240050, 150760689, 150760671, 8707181997, 8707181998, 150760678, 8707181999, 8707182000, 3321767697, 8707182001, 150760682, 150760685], "tags": {"highway": "residential", "name": "Traves\u00eda de Almansa", "oneway": "yes"}}, {"type": "way", "id": 15230939, "nodes": [150760689, 7058240037, 7058240038, 2277540734], "tags": {"highway": "residential", "name": "Calle de la Olimp\u00edada", "oneway": "yes"}}, {"type": "way", "id": 15230941, "nodes": [150760714, 11645339835, 2900420510, 150760718, 150760721, 338956169, 150760723], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Calle del Doctor Juan Pedro Moreno Gonz\u00e1lez", "parking:both": "lane", "parking:both:orientation": "parallel", "surface": "asphalt"}}, {"type": "way", "id": 15230942, "nodes": [26211547, 433406848, 1500124638, 2462922533, 150760727, 4769243625, 150760730, 2462922518, 11381176997, 150760732, 3633377344, 345213334, 3575378538, 4153842594, 150760739, 11381176993, 1320787649, 2454261067, 2453487277], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Jim\u00e9nez D\u00edaz", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 15230943, "nodes": [32630164, 2436859019, 7058272481, 339410670], "tags": {"highway": "residential", "name": "Calle del Vivero", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230945, "nodes": [150760322, 9116858107, 8480879039, 8474858002, 4920630095, 8460972704, 8474857999, 1212072772, 150760281, 9116858085, 1212072836, 9116858093, 150760278], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230946, "nodes": [150760278, 11645339890, 11645339885, 1212072762, 150760456, 8480879038, 150760577, 150760463], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 15230948, "nodes": [150760294, 6238487898, 150760292, 150760632], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde de la Cimera", "name:etymology:wikidata": "Q30045782", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230949, "nodes": [32630167, 9116858075, 150760306, 150760298, 9116858101, 9116858099, 150760294], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Juan Montalvo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230950, "nodes": [27514670, 5783034260, 8480879040, 9116858097, 150760294, 9116858098, 9115409896, 9115409895, 150760316, 9116858108, 150760322], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle Beatriz de Bobadilla", "name:etymology:wikidata": "Q20100559", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230964, "nodes": [150760567, 150760587, 1212072788, 150760580, 1212072712, 150760521], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Atajo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230966, "nodes": [150760521, 150760590, 150760596, 150760601, 150760604, 1212072810, 27508548], "tags": {"highway": "residential", "name": "Calle Pastor", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230980, "nodes": [150760925, 4161783641, 330271161, 3601013261, 150760926, 1339493698, 3232907774, 3232907775, 338945022, 3232907776, 150760933, 3232907777, 4161784431, 1339493411, 150760935, 4161784448, 3232907779, 2277540507, 3232907781, 150760937, 3232907782, 2001290872, 3232907784, 150760941, 2277540555, 3575370945, 150760723, 2004157540, 150760946, 750475950, 750475949, 1339493495, 25896218], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle del Doctor Severo Ochoa", "name:etymology:wikidata": "Q233957", "oneway": "yes", "parking:both": "lane", "parking:both:orientation": "parallel", "sidewalk:both": "separate", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 15230981, "nodes": [150760946, 2004157581, 750475948, 1339493606, 150760950], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle Doctor Severo Ochoa", "oneway": "no", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15230984, "nodes": [25896216, 1339493531, 10262250915, 3233009662], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15230985, "nodes": [150760935, 1339493660, 3232907778, 338945030, 1339493417, 3232907780, 150760978, 3232907783, 1339493540, 1339493632, 2004157610, 150760984, 338956205, 2004157573, 2004177617, 338956158, 2004177693, 2004157595, 338956163, 150760987, 3223006054, 2004157616, 2004157614, 150760992, 2004157588, 150760955], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Plaza de Ram\u00f3n y Cajal", "name:etymology:wikidata": "Q150526", "oneway": "no", "parking:both": "lane", "parking:left:orientation": "perpendicular", "parking:right:orientation": "parallel", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15232226, "nodes": [11200863916, 11343888028, 9549391154, 150760966], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "parking:left": "no", "parking:right": "lane", "parking:right:orientation": "parallel", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 15232228, "nodes": [150760966, 150760970], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 15431561, "nodes": [3233026343, 2004177683], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "step_count": "15", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 16183492, "nodes": [98956601, 674492259, 141882864], "tags": {"highway": "residential", "layer": "-1", "lit": "yes", "maxheight": "3", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 17504354, "nodes": [907465887, 3964436615, 1350673784], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 23407030, "nodes": [25901886, 2053099678, 25901887, 25901888, 11250448289, 149169016, 4309826952, 25906270], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Prim", "name:etymology:wikidata": "Q379787", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 23524648, "nodes": [25901885, 1278839040, 25903324], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Almirante", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 23524688, "nodes": [25906269, 25901889, 25901892, 11782580385, 3426608081, 11782580369, 25901885], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Almirante", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 23557432, "nodes": [255099047, 2283361243, 2283361213, 2283361240, 2283361248, 255099808], "tags": {"highway": "service", "lanes": "1", "name": "Plaza del Descubridor Diego de Ord\u00e1s"}}, {"type": "way", "id": 23573546, "nodes": [26513072, 1555729967, 1973690392, 1973690391, 26513085, 1973690390, 996183822, 996184088, 1973690389, 26513117, 1973690388, 1973690386, 26513155], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jorge Juan", "name:etymology:wikidata": "Q2085725", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 23621852, "nodes": [139977763, 1591330195, 9879403072, 139977761, 5232409902, 9879403075, 139977758, 9879403074, 139977749], "tags": {"highway": "residential", "name": "Calle del General Arrando", "name:etymology:wikidata": "Q9013676", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 23689617, "nodes": [25902680, 7300259083, 25902700, 25902699], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de \u00c1lvarez de Baena", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 23689618, "nodes": [142295945, 2846389423, 142296568, 142296570, 142296571, 7300259079, 11218056266, 11218056267, 100891152], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Pinar", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 23689697, "nodes": [25902674, 256525425, 256525381], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 24222352, "nodes": [98956258, 4229127178, 298152518], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24222380, "nodes": [98958620, 9157684259, 9157684315, 98958746, 9164484310, 9164484307, 98958747, 9165505520, 9165505525, 98958748, 9169688190, 1591330194, 9169688172, 98958749], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Juan de Austria", "name:etymology:wikidata": "Q157107", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24225750, "nodes": [797297576, 797297580, 1486142528, 8455089030, 266372698], "tags": {"highway": "service", "lit": "yes", "maxspeed": "50", "motorcycle": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "oneway:backward:conditional": "yes @ (Mo-Fr 6:00-11:30; Sa 17:00-22:00; Su 16:00-24:00)", "oneway:forward:conditional": "yes @ (Mo-Fr 13:30-22:00; Sa 9:00-15:00; Su 9:00-14:00)", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24225793, "nodes": [26212622, 4548454346, 4536011530, 26025845, 3096525900, 8522340704, 3096525897, 26025846, 444644585, 3096525895, 27522357, 3096525894, 3096525891, 2972941375, 27522358], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 24233621, "nodes": [26579105, 1320787628, 26579106, 3136812045, 26579107, 26211555], "tags": {"highway": "primary_link", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24233636, "nodes": [26579042, 1486142650, 26579043], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24233750, "nodes": [581870023, 11097973997, 11097973996, 11223357755, 11097973995, 11097973994, 11097973993, 2688019416], "tags": {"goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 24234140, "nodes": [27517937, 4637304253, 26212613, 4637304251, 26212606, 26212619], "tags": {"destination": "Plaza Espa\u00f1a; Plaza Cristo Rey", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 24253745, "nodes": [256525381, 25902679, 1759501620, 394684649, 1759501705], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 24253753, "nodes": [25902678, 25902666, 1759501466, 1759501461], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 24275863, "nodes": [1613048577, 1203847164, 1203847135, 98949981, 563326692], "tags": {"destination": "Calle Santa Engracia; Glorieta Cuatro Caminos", "highway": "tertiary", "lanes": "2", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 24327218, "nodes": [263839181, 4825301728, 263839680, 1505081175, 4825301729, 263839681], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24448116, "nodes": [1474148445, 8563972585, 26412916], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Tiziano", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24496428, "nodes": [266372698, 266372699, 2493539684, 2493539664, 2493539699, 266372700], "tags": {"bicycle": "no", "foot": "no", "highway": "service", "horse": "no", "lanes": "1", "lit": "24/7", "maxspeed": "20", "motor_vehicle": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "psv": "yes", "ref": "A-6 BUS-VAO", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 24496436, "nodes": [8385594957, 1486142565, 264097169], "tags": {"highway": "service", "lanes": "1", "layer": "-1", "lit": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "psv": "yes", "ref": "A-6 BUS-VAO", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 24496440, "nodes": [264097169, 1500160600, 3594887595, 264097170, 992003252, 264097171, 264097172, 264097173], "tags": {"access": "yes", "highway": "service", "lanes": "1", "lit": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "psv": "yes", "ref": "A-6 BUS-VAO", "surface": "asphalt"}}, {"type": "way", "id": 24496463, "nodes": [266372698, 11612987873, 266373384, 11612987874, 3470996667, 11612987875, 266373385, 3470996668, 11612987876, 266373386, 11612987877, 3470996669, 11612987878, 11218741758, 11612987879, 26579030], "tags": {"highway": "service", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Solo Bus - A6", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 24507449, "nodes": [25934453, 3418127829, 3418127828, 25934459], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 24535747, "nodes": [141880346, 674492253, 8447121580, 25934540, 8441812495, 8441812494, 1591329985, 4808864935, 22022371], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "name": "Calle de Francisco de Rojas", "name:etymology:wikidata": "Q1442310", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24536095, "nodes": [25903290, 25903289, 1760085669, 25902077], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 24536104, "nodes": [25902434, 4416531499, 25902430, 4650310634, 3627050626, 341829485], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Fortuny", "name:etymology:wikidata": "Q380052", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 24585667, "nodes": [25902676, 3675303745, 60030727, 60030728, 60018352, 139951327, 9879403073, 139977758, 141918065, 4255551361, 141920074, 9879403067, 4833611535, 141919137, 1973690396, 141923652, 25934323, 25906143, 1316546238, 9049533282, 25906137], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "width": "4"}}, {"type": "way", "id": 24619376, "nodes": [60672523, 1596698088, 2972995644, 141861285, 2915209114, 5777193961, 141860372, 616225755, 141860144], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 24791395, "nodes": [269361123, 5069264830, 5802031858, 5802031854, 289004847, 4467080343, 5802031881, 269361124], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de las Virtudes", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24791406, "nodes": [269361176, 3428476987, 5802031859, 289004847, 4467080337, 9468415552, 269361177], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Morej\u00f3n", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24791417, "nodes": [269361216, 3426732162, 9468418951, 269361215], "tags": {"highway": "residential", "name": "Calle Ponce de Le\u00f3n", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 24812300, "nodes": [25934453, 5970506951, 5970484999, 8583869920], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 24812302, "nodes": [139951332, 8583791488, 141888359], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "turn:lanes": "left;through|through|through"}}, {"type": "way", "id": 24829803, "nodes": [139982483, 5162768434, 306546522, 5162768431, 29739484], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle de Jorge Manrique", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 24829805, "nodes": [142279261, 8213602130, 1377881542, 8213602119, 8213602118, 139982488], "tags": {"highway": "residential", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 26037328, "nodes": [4417379976, 344601408], "tags": {"highway": "residential", "lit": "24/7", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 26387002, "nodes": [298152518, 298152519, 289076301, 8585687236, 8585687237, 8585687238, 289076302], "tags": {"highway": "service", "lanes": "1", "oneway": "yes"}}, {"type": "way", "id": 26568013, "nodes": [291274690, 291274700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 26630160, "nodes": [25934828, 1211171047, 8447121517, 616225704, 25935035, 6441681748, 2283339300, 936505954, 25935060], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 26630273, "nodes": [292093353, 6441681732, 292093354, 292093356, 6441681731, 292093358], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 26630320, "nodes": [22016264, 11377765532, 21990739, 6841096837], "tags": {"highway": "pedestrian", "name": "Calle Dao\u00edz", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 27173245, "nodes": [141880907, 9172009164, 9172009163, 1591330198, 9281668038, 98960768], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Olid", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 27173247, "nodes": [141881345, 9172003708, 9172003707, 9172003706, 9172003705, 8585687261, 9172003702, 141881729], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Plaza de Olavide", "name:etymology:wikidata": "Q27947826", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 27173262, "nodes": [298150579, 8866381045, 298150577, 8866381044, 1357992470], "tags": {"highway": "service", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173267, "nodes": [1591330088, 7600881099, 298151406, 1357992470], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27173290, "nodes": [298151462, 298151119], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Belvis", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 27173299, "nodes": [8593662564, 1357992429, 1357992434, 1501227847], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 27173363, "nodes": [298152271, 298152194, 298152283, 8585687235, 8585687234, 8585687233, 298152330], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 27173491, "nodes": [298153463, 9281668030, 298153464, 3345953467, 301555339, 298153466, 298153502, 298153888, 3269790740, 9169688177, 298153468, 298153469, 301555575, 298153470, 298153471, 3345953468, 9165503396, 298153472, 298153820, 5421143177, 298153706, 298153717, 298153719, 9157684331, 3269791070, 298153721, 9165525062, 9165525139, 298153478, 298153508, 9175086691, 3474118939, 3474118936, 3474118926, 298153463], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27173495, "nodes": [298153590, 603072367, 298153592, 298153593, 603072369, 298153752, 603072370, 3345953466, 298153595, 603072371, 603072372, 298153856, 298153704, 603072374, 298153755, 8585687244, 603072375, 298153599, 603072376, 298153590], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173497, "nodes": [301555339, 8585687262, 141882080], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173505, "nodes": [298153704, 8585687245, 8585687243, 298153706, 3661952077, 298153229], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173509, "nodes": [298153470, 3661952073, 141884430], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173520, "nodes": [298153888, 3661952072, 298152330], "tags": {"highway": "footway"}}, {"type": "way", "id": 27173532, "nodes": [298153472, 3661952075, 141885133], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27173536, "nodes": [298153721, 3661952078, 289076302], "tags": {"highway": "footway"}}, {"type": "way", "id": 27173565, "nodes": [98959492, 5214866739, 9164484348, 98959043, 98958747], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Feliciana", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 27173716, "nodes": [60030239, 2493553179, 298156293, 298156457, 2972993211, 1924384857, 60672668], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "no", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 27173733, "nodes": [298156269, 298156293], "tags": {"highway": "service", "sidewalk": "both"}}, {"type": "way", "id": 27173740, "nodes": [616225704, 7526681392, 616227283, 616227276, 7526681393, 616225689, 616226053, 2915209108], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27173748, "nodes": [298156454, 298156456], "tags": {"created_by": "Potlatch 0.10b", "highway": "steps"}}, {"type": "way", "id": 27173749, "nodes": [298156456, 4525351433, 298156457], "tags": {"highway": "footway"}}, {"type": "way", "id": 27173799, "nodes": [298157062, 298157908, 301432646], "tags": {"highway": "service"}}, {"type": "way", "id": 27173824, "nodes": [298157651, 298158512, 298158504, 298158513, 298157654], "tags": {"highway": "footway"}}, {"type": "way", "id": 27173826, "nodes": [298158504, 298157803], "tags": {"created_by": "Potlatch 0.10b", "highway": "steps"}}, {"type": "way", "id": 27173829, "nodes": [3418224225, 3418224234], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27173834, "nodes": [298157803, 298157662, 301432403, 301432548, 298157709], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27173847, "nodes": [298157973, 298158021, 298158022], "tags": {"highway": "service", "sidewalk": "both"}}, {"type": "way", "id": 27173853, "nodes": [141855434, 298158014], "tags": {"access": "private", "highway": "residential", "name": "Calle del Lozoya", "name:etymology:wikidata": "Q16511", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 27173861, "nodes": [298158061, 298158053], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27173917, "nodes": [298158500, 298158501, 298158502], "tags": {"created_by": "Potlatch 0.10b", "highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 27173918, "nodes": [298158521, 7068076319, 7068076320, 298158739], "tags": {"highway": "residential", "name": "Calle de Cercedilla", "oneway": "yes", "postal_code": "28015", "source:name": "survey"}}, {"type": "way", "id": 27196162, "nodes": [298448863, 7537445998, 7537445997, 1378696858, 2551347562, 26067888], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Seminario de Nobles", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 27452675, "nodes": [298158061, 301432403, 298157973], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27452694, "nodes": [298157062, 301432548, 298158500], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 27452705, "nodes": [301432644, 301432199], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452706, "nodes": [301432648, 301432644], "tags": {"highway": "service", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 27452709, "nodes": [301432647, 298158053, 301432648], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452711, "nodes": [301432646, 301432647], "tags": {"highway": "service", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 27452715, "nodes": [301432985, 301432765, 301432764, 301433174], "tags": {"highway": "service"}}, {"type": "way", "id": 27452725, "nodes": [301432878, 301432915, 301432944, 7396188671], "tags": {"highway": "service"}}, {"type": "way", "id": 27452730, "nodes": [301432902, 301432878, 301432903], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452732, "nodes": [301432914, 301432915, 301432916], "tags": {"created_by": "xybot", "highway": "service"}}, {"type": "way", "id": 27452736, "nodes": [301432943, 301432944, 301432945], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452739, "nodes": [301432954, 301432955, 301432956], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452740, "nodes": [301432963, 301432964, 301432965], "tags": {"created_by": "Potlatch 0.10c", "highway": "service"}}, {"type": "way", "id": 27452765, "nodes": [26242740, 301433140], "tags": {"created_by": "Potlatch 0.10c", "highway": "service", "tunnel": "yes"}}, {"type": "way", "id": 27463954, "nodes": [3474118939, 141881345], "tags": {"highway": "footway"}}, {"type": "way", "id": 27463958, "nodes": [298153508, 8585687242, 8585687246, 298153590], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27463965, "nodes": [298153593, 301555339], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27463982, "nodes": [298153595, 301555575], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 27464019, "nodes": [60030239, 3096525841, 141857474], "tags": {"highway": "residential", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 27827412, "nodes": [25901890, 25906267, 4311995394, 4311995395, 25906265], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Piamonte", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 27827415, "nodes": [25901891, 10011023607, 10011023606, 10011023603, 10011023605, 3424801041, 2959128481], "tags": {"highway": "residential", "name": "Calle de Tamayo y Baus", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 27827429, "nodes": [25906175, 3424799422, 3424801046, 11408056412, 326195947, 380747013, 9398011424, 8935124345, 9397668172, 3424801054, 25906131, 25906138, 4202134078], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle del General Casta\u00f1os", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 27926842, "nodes": [60030240, 2972993222, 3096525843, 5754419280, 60030239], "tags": {"destination": "c. Fernando el Cat\u00f3lico", "highway": "residential", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 27926958, "nodes": [306546515, 306546516, 306547670], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 27926960, "nodes": [306546519, 306546520, 5162768441, 306546521, 306546522], "tags": {"access": "private", "highway": "service", "service": "driveway"}}, {"type": "way", "id": 27927437, "nodes": [306546516, 142298992], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 29001672, "nodes": [318919458, 3936892050, 3936892051, 1276960072, 1288327568, 1364771264, 318919470, 1095709756, 1364771350, 1095709761], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 29499410, "nodes": [26058811, 21990746, 21990742, 21990736, 6841096842, 21990735, 4629861377, 6841096839, 21990732, 11230777623, 21990731, 11230777625, 930662432, 11234142746, 22018580, 8593662596, 1591330025, 8593662597, 22022145], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Calle de San Andr\u00e9s", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 29499412, "nodes": [26066550, 11220779550, 26066551, 26066552, 26066549, 26058812, 2331169580, 8429132474, 26058811, 2331169562, 325172790, 26058808, 26058809], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle del Esp\u00edritu Santo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 29591216, "nodes": [26058809, 26058802], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Madera", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 29591230, "nodes": [25906307, 7159715764, 7159758679, 21990725], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 29591236, "nodes": [25906306, 7159715763, 1754199357, 1754199356, 7159758669, 1754199361, 21990724], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 29620789, "nodes": [3161163797, 25906286, 3161269011, 25906271], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle Luis de G\u00f3ngora", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 29620794, "nodes": [25906271, 1474148375, 25906225], "tags": {"highway": "residential", "name": "Traves\u00eda de Bel\u00e9n", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 30000201, "nodes": [153062614, 153062621, 153062629], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 30000204, "nodes": [153062596, 153062609, 153062614], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 30000205, "nodes": [153062629, 153062639, 153062646], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 30625550, "nodes": [32602925, 3802946095, 1474148396, 8451215625, 338727945, 32602928], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "turn:lanes": "left;through;right|"}}, {"type": "way", "id": 30625555, "nodes": [338727741, 3663324554, 10745001722, 338727751], "tags": {"highway": "residential", "name": "Calle de Esquilache", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 30625556, "nodes": [338727767, 81580408], "tags": {"highway": "service", "name": "Calle Dulcinea", "surface": "paving_stones"}}, {"type": "way", "id": 30625557, "nodes": [81605097, 338727776, 338727784, 338727794, 338727802, 338727811, 338727821, 338727767], "tags": {"highway": "steps", "name": "Calle Dulcinea"}}, {"type": "way", "id": 30625558, "nodes": [26413138, 8529770090, 8419499596, 1505081227, 338727925], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 30625559, "nodes": [32602928, 338727954, 8419499591, 338727964, 338727974, 8419499592, 8419499593, 338727985, 338727935], "tags": {"highway": "unclassified", "lanes": "2", "maxspeed": "50", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30625560, "nodes": [26413138, 8419499598, 3802947085, 1801212177, 8419499595, 338727995, 2673345634], "tags": {"access": "bus", "bus": "designated", "highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 30625561, "nodes": [338728036, 338728060, 338728073, 338728086, 338728050], "tags": {"access": "no", "emergency": "yes", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 30625562, "nodes": [338728098, 338728112, 8480879037, 338728124, 1505081214, 338728134], "tags": {"access": "no", "bus": "designated", "highway": "service", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 30625563, "nodes": [338728145, 1505081209, 338728164, 1447057701], "tags": {"access": "no", "bus": "designated", "highway": "service", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 30625866, "nodes": [8824409707, 1522690095, 8824409716, 8824423717, 338734279, 8824423718, 338734205], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 30642792, "nodes": [305776147, 7549586455, 7510718616, 7510718620, 338896753, 338896746], "tags": {"cycleway:right": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 30642794, "nodes": [26579043, 7549593998, 1486142632, 338896756, 1486142626, 338896757, 7549586479, 1486142623, 7549586478, 338896759, 7549586480, 1486142624, 7549586481, 338896760, 4924651863, 4924651864, 338896761, 1486142655, 7549586484, 7549593989, 26579050], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 30648312, "nodes": [4153842592, 4769240411, 338945038, 2463314697, 2463314693, 2463314694, 2463314695, 2463314698, 2463314699, 150760732], "tags": {"access": "private", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 30648313, "nodes": [4470479428, 4470479423, 338945070, 2446887435, 338945080, 2450658354, 2450658339, 338945090, 338945099, 4519701704, 4470479422, 4470479424, 4470479425, 4470479426, 4470479431, 338945107, 338945113], "tags": {"highway": "service"}}, {"type": "way", "id": 30649235, "nodes": [338956164, 4131264363, 338956162, 4131264360, 2531862854, 338956168, 3222121954, 2004157569, 338956163], "tags": {"highway": "service", "lit": "yes", "name": "Plaza de Ram\u00f3n y Cajal", "name:etymology:wikidata": "Q150526", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 30649237, "nodes": [338956169, 338956179, 338956180, 338956181, 338956182], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 30649243, "nodes": [338956207, 3223002889, 338956209, 338956206, 3223002891, 338956212, 338956210, 3223002909, 338956211], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 30691098, "nodes": [8793094960, 81605096], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de Cicer\u00f3n", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30691099, "nodes": [81605098, 81581405], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Don Quijote", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30691100, "nodes": [339391803, 8953713869, 10927499977, 339391806], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Montevideo", "source": "survey", "wikidata": "Q29963610"}}, {"type": "way", "id": 30691101, "nodes": [98746811, 4299253661, 3971975772, 98746256, 82499429, 3971975773, 81580399], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de la Reina Mercedes", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 30709960, "nodes": [339636170, 1752467619, 340225883, 1752467617, 339636165, 1752467592, 25902921], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30709962, "nodes": [339636199, 4666869637, 339636192, 339636170], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 30709965, "nodes": [3347872583, 339636207, 339636228, 3347872577, 339636297, 4149512201, 340225879], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30709966, "nodes": [339636228, 3440492578, 1752467580, 1752467573, 339636344], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 30709967, "nodes": [339636297, 339636283], "tags": {"highway": "footway"}}, {"type": "way", "id": 30709968, "nodes": [339636283, 339636267], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 30709969, "nodes": [339636267, 1752467590, 1752467591, 1752467566, 339636307, 339636244, 1752467535, 1752467536, 340225882, 339636249, 1752467537, 10927525539, 25902895, 1752467546, 1752467545], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 30709972, "nodes": [339636307, 25902909, 339636344, 8423842220, 8423841201, 340228781, 8423841213, 340228729, 8423841209, 8423842221, 8566147451, 8566147452, 8566147453, 8566147454], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 30725725, "nodes": [150760447, 339824055, 3425361827, 339824056, 339824057, 339824059, 100993084], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "name": "Calle de Leonardo Prieto Castro", "oneway": "no", "source": "catastro"}}, {"type": "way", "id": 30725729, "nodes": [100993085, 2759786002, 339824066, 8513762619, 150760447], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "30", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro"}}, {"type": "way", "id": 30725750, "nodes": [339825026, 4131264374, 3223005996, 339825041, 339825059, 339825076, 2004177631, 339825090, 339825114, 2004177627, 2004177624, 4131286471, 339825101, 2004177656], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 30763736, "nodes": [340219340, 340219341], "tags": {"access": "private", "highway": "service", "lit": "no"}}, {"type": "way", "id": 30763737, "nodes": [340219344, 3509180948, 3509180946, 340219346, 340219340, 340219347, 340219354, 340219355, 340219356, 340219357, 340219358, 340219362, 340219363, 3509180957, 340219344], "tags": {"access": "private", "highway": "service", "lit": "no", "service": "parking_aisle"}}, {"type": "way", "id": 30764296, "nodes": [340225421, 3347875423], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764298, "nodes": [340225480, 340225465, 3347872592, 340225792, 3347875446, 340225458], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764299, "nodes": [340225458, 340225472, 3225747777, 340225478, 340225480], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764300, "nodes": [340225480, 340225446, 340225494, 340225499, 340225506, 3440541875, 3347875456, 340225645, 3225730034], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764301, "nodes": [340225452, 340225583, 340225570], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764303, "nodes": [3225730566, 3347872568, 3347875461, 3347875454, 3347875394], "tags": {"highway": "steps", "layer": "-1"}}, {"type": "way", "id": 30764304, "nodes": [340225570, 340225643, 340225525, 340225537], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764306, "nodes": [340225570, 340225616, 340225623, 340225630, 3225747780, 340225637, 3225747779, 340225642], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764308, "nodes": [340225643, 340225645], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764310, "nodes": [340225428, 340225646, 3347875436], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 30764312, "nodes": [340225780, 340225792], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764318, "nodes": [340225876, 3895225707, 7937143679, 340225877, 4146472733, 9158965237, 340228150, 340228133, 1752467634, 340228145, 340225537, 340225878, 340225879, 1752467592, 340225881, 1753722729, 1752467548, 340225882], "tags": {"highway": "footway", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 30764361, "nodes": [81605098, 340226353], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de los Artistas", "oneway": "no", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30764362, "nodes": [340226382, 340226381, 8793138932, 8793138931, 8793138930, 8793138929, 8793138928, 340226371, 340226358, 340226354], "tags": {"highway": "steps", "name": "Calle de los Artistas", "source": "survey"}}, {"type": "way", "id": 30764363, "nodes": [340226354, 8793138927, 81605099], "tags": {"highway": "footway", "name": "Calle de los Artistas", "source": "survey"}}, {"type": "way", "id": 30764616, "nodes": [340228152, 3225763611, 340228157, 3347872566, 340228128, 340228129, 1752467642, 340228133], "tags": {"highway": "footway", "name": "Avenida Centrum"}}, {"type": "way", "id": 30764618, "nodes": [340228129, 1752467640, 340228145], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764621, "nodes": [340228157, 340228159], "tags": {"highway": "footway"}}, {"type": "way", "id": 30764683, "nodes": [340228671, 989205016, 4547724405, 340228711, 8807066142, 4547724404, 8807066141, 340228729, 4547724403, 340228748], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 30764684, "nodes": [340228784, 8807066143, 340228781, 340228769, 340228759], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 30812599, "nodes": [25902235, 4307191016, 341829485, 341829531, 3627050624, 341829519, 1760085716], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 30812600, "nodes": [1011869673, 4626597056, 1760085710, 341829497, 341829506, 25902233], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 30812601, "nodes": [341829506, 25902210, 25902195, 11563811456, 11563811460, 25902151, 11563811462, 25902123], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Fortuny", "name:etymology:wikidata": "Q380052", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 30993038, "nodes": [344601408, 26578965], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;right|right"}}, {"type": "way", "id": 30993040, "nodes": [26579184, 4417379979], "tags": {"highway": "residential", "lit": "24/7", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 30993406, "nodes": [25902783, 25902797, 344604078, 8807074842, 25902796], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "noname": "yes", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 31009248, "nodes": [344795459, 344795413], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alfonso X", "name:etymology:wikidata": "Q47595", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31015709, "nodes": [338734205, 82500114, 8824409711, 81580404, 82499431, 82499215], "tags": {"highway": "residential", "name": "Calle de Oviedo", "oneway": "yes", "source": "survey"}}, {"type": "way", "id": 31015714, "nodes": [82499627, 1474148402, 82499216], "tags": {"highway": "residential", "name": "Calle del Zarzalejo", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 31015803, "nodes": [344875504, 81605725, 81581408], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Ist\u00fariz", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 31020957, "nodes": [3684260031, 7549586465, 7549586466, 7549586464, 7549586462, 851530281, 1486142572, 26579100, 1486142569, 26579101, 1486142595, 1486142598, 26579102], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 31021254, "nodes": [26211528, 1669117865, 5966610990, 1669117834, 26025862, 1669117831, 1669117825, 26025863, 1669117821, 1669117800, 26025864, 2525814073, 5966610989, 1596698156, 26025865, 4437576923, 1596698155, 26025866], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 31048279, "nodes": [55161167, 3471365928, 55161181, 55161178, 8440879529, 55161188], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31048280, "nodes": [55138181, 55404964, 1095709757, 25935574], "tags": {"highway": "primary", "lanes": "6", "lanes:forward": "2", "lit": "yes", "maxspeed": "40", "name": "Calle de Francisco y Jacinto Alc\u00e1ntara", "oneway": "no", "postal_code": "28008", "surface": "asphalt", "turn:lanes:backward": "through|through|through;right|right"}}, {"type": "way", "id": 31048292, "nodes": [3684260031, 7549586463, 2480627226, 1486142567, 3946934257], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|right"}}, {"type": "way", "id": 31054963, "nodes": [27517507, 1770052216, 8480879041, 3633377349, 8480842114, 1320787110], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "no", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 31055892, "nodes": [26413581, 8804963727, 1203847179, 1203847148, 8522340709, 26413586], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "4", "lit": "no", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through|through|through"}}, {"type": "way", "id": 31093152, "nodes": [25901922, 1278839048, 25903307], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Do\u00f1a B\u00e1rbara de Braganza", "surface": "asphalt"}}, {"type": "way", "id": 31093160, "nodes": [1278839127, 1278839040, 3418035828, 1278839048, 1278838949, 1278838951, 11377765528, 1278839063, 1278838958], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31262308, "nodes": [26578973, 11279337788, 4197170916, 3253942905, 26578963], "tags": {"cycleway": "lane", "highway": "secondary", "lanes": "5", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through"}}, {"type": "way", "id": 31739018, "nodes": [355174895, 1754817172], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 31768975, "nodes": [55161051, 55161055, 11237949945, 55161088, 4437657599, 55161091, 8646829050, 4203412903, 55161135], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31769101, "nodes": [55161124, 55161100, 55161078, 55161064], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 31784354, "nodes": [25902949, 1752467648, 1336935950, 1752467639, 1152699045, 2671594370, 2641385221], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 32025119, "nodes": [102197178, 102192627, 3390533481, 102196413, 102196728], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "20", "name": "Calle del Guadiana", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 32025180, "nodes": [359308510, 142195761], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 32025181, "nodes": [359308509, 25902901], "tags": {"bridge": "yes", "highway": "primary", "lanes": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32025210, "nodes": [98951272, 536185687], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 32025214, "nodes": [142194318, 1505081192, 1654250236, 98746807, 3274917101], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 32025281, "nodes": [32602934, 3802946119, 3802946121, 32602935], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 32025282, "nodes": [32602935, 32602937, 8415878095, 338728428, 8412813522, 32602938, 359392869], "tags": {"change:lanes": "yes|yes|not_right|no", "cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|yes|designated", "surface": "asphalt", "turn:lanes": "left|through;left|through;right|"}}, {"type": "way", "id": 32025283, "nodes": [32602935, 3802946116, 32602924], "tags": {"highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 32025284, "nodes": [32602924, 1203847168, 32604391, 32604397], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 32028463, "nodes": [32602924, 32602925], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 32028466, "nodes": [32602925, 32602934], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028467, "nodes": [32602934, 3802946125], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028503, "nodes": [150760661, 4014645041, 27514668], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028504, "nodes": [27517856, 6348197395, 8451215621, 5091750318], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 32028505, "nodes": [27517856, 6235643930, 2493627463, 2436859052, 32630163, 2436859026, 32630164, 32630165, 8707182010, 9294124029, 150760666], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028506, "nodes": [359392862, 359392864, 8415878098, 6238487908, 359392867, 8415878099, 359392869], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32028842, "nodes": [27514692, 1203847158, 27514702, 1203847233, 27514717], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle del General Ib\u00e1\u00f1ez de Ibero", "postal_code": "28003"}}, {"type": "way", "id": 32028843, "nodes": [27519777, 27519834, 27514717], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through"}}, {"type": "way", "id": 32029079, "nodes": [4558946114, 4558946124, 150760463], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32029080, "nodes": [150760477, 150760480], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32029109, "nodes": [339410670, 98723334], "tags": {"highway": "residential", "name": "Calle del Vivero", "oneway": "yes"}}, {"type": "way", "id": 32029325, "nodes": [359412218, 8416409741, 1016578214, 8416409742, 98728183], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Enrique I", "oneway": "yes", "postal_code": "28039"}}, {"type": "way", "id": 32029326, "nodes": [26413032, 26413033], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32029327, "nodes": [26413033, 2283386633, 26413048], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32516863, "nodes": [365604154, 4131272791, 365608211], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 32516872, "nodes": [365604288, 365604230], "tags": {"access": "private", "created_by": "Potlatch 0.10f", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 32517108, "nodes": [365608211, 365604226, 365604288, 365604227, 365604228, 365604230, 365608213], "tags": {"access": "private", "created_by": "Potlatch 0.10f", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 32517110, "nodes": [365608213, 4131272789, 365604231], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 32517413, "nodes": [365614645, 1339493488, 365614754, 4131272777, 365614755], "tags": {"highway": "residential", "name": "Camino de Las Moreras", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 32517648, "nodes": [365614755, 8513737406, 150760431], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed:backward": "40", "maxspeed:forward": "50", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro", "surface": "paving_stones"}}, {"type": "way", "id": 32606716, "nodes": [141880346, 674492252, 8440634384, 25934545, 25934548], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32606916, "nodes": [22022361, 1591329948, 25906098], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Mej\u00eda Lequerica", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32606920, "nodes": [22022361, 1591329955, 8441812502, 25906103], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32649170, "nodes": [141875018, 1591330180, 141875017, 141875015, 1591330168, 98960769, 1357992476, 141862745], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "name": "Calle de Alburquerque", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32649171, "nodes": [141875018, 674492250, 141880346], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32666310, "nodes": [25906103, 25906105, 4928918414, 7569547513, 370503626, 27508026], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 32825184, "nodes": [369846113, 3268713847, 2351032620], "tags": {"highway": "motorway_link", "maxspeed": "50", "oneway": "yes"}}, {"type": "way", "id": 32840922, "nodes": [25902479, 142321412, 25902482, 29739491], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32840924, "nodes": [100890242, 100890243], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 32840925, "nodes": [100890243, 3216764230, 100890244, 11218056246, 11218056247, 3437178878, 4264320243], "tags": {"foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 32865960, "nodes": [25906295, 26058790], "tags": {"highway": "residential", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Calle de Santa B\u00e1rbara", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 32897810, "nodes": [370503465, 3428425015, 25906150, 370503507, 390582262, 3424801043, 25901923], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Marqu\u00e9s de la Ensenada", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32897811, "nodes": [1855027673, 1855027664], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Pelayo", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 32897812, "nodes": [25906150, 370503469], "tags": {"created_by": "Potlatch 0.10e", "highway": "residential", "name": "Calle de Orellana", "oneway": "yes"}}, {"type": "way", "id": 32897817, "nodes": [370503496, 370503497], "tags": {"created_by": "JOSM", "highway": "steps"}}, {"type": "way", "id": 32897821, "nodes": [25906139, 370503474, 1973690394, 25906140], "tags": {"access": "private", "foot": "yes", "highway": "living_street", "name": "Calle Garc\u00eda Guti\u00e9rrez", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 32897823, "nodes": [370503469, 3927640954, 25906140], "tags": {"access": "private", "foot": "yes", "highway": "living_street", "name": "Calle de Orellana", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32897824, "nodes": [370503470, 9397668157, 25906131], "tags": {"highway": "pedestrian", "name": "Calle de Orellana", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32897828, "nodes": [370503507, 9397718488, 370503508], "tags": {"highway": "service"}}, {"type": "way", "id": 32897832, "nodes": [25906272, 370503551, 25906271, 8863732308, 25906266, 8863732309, 8863732310, 25906268], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de San Lucas", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 32897836, "nodes": [25906111, 904853734, 370503621, 25906125, 25906127, 25906130], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Teresa", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 32897840, "nodes": [25906140, 3424801052, 25906153], "tags": {"access": "private", "foot": "yes", "highway": "pedestrian", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 33580888, "nodes": [25934828, 25934829], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33580890, "nodes": [25934829, 2025638801, 25934830, 5970485003, 2025638795, 25934832], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 33580891, "nodes": [25934856, 25934861], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33580892, "nodes": [25934861, 2025638803, 25934863, 25934823], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 33581056, "nodes": [25934861, 1211192956, 25934828], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 33581058, "nodes": [25934829, 365886561, 1211192961, 25934856], "tags": {"cycleway:right": "lane", "destination": "Glorieta de Bilbao", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 33720962, "nodes": [385569660, 1179021802, 385569772], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 33760307, "nodes": [8429132490, 1179022178, 6441681753, 858587232], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 33760308, "nodes": [25935522, 25935521], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 33760309, "nodes": [25935523, 25935524], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 33760310, "nodes": [26578944, 1505081028, 937660054, 1505081040], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 33760311, "nodes": [26578965, 5385241360, 2479576398], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 34083900, "nodes": [4134046209, 4134046212, 4134046215, 4134046217, 21990727], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 34083902, "nodes": [390582262, 390582264], "tags": {"highway": "service"}}, {"type": "way", "id": 34378919, "nodes": [394684528, 2053142696, 394684646], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 34867769, "nodes": [408757687, 408757688, 408757686], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 34945380, "nodes": [410641194, 3060843410, 410106052, 410106054, 410106056, 1339493595, 410106058, 410106060, 410106063, 410106065, 3452165785, 10262238705], "tags": {"highway": "footway", "lit": "no", "surface": "gravel"}}, {"type": "way", "id": 35008198, "nodes": [296097838, 3224866201, 410623212, 410623213, 3224866189, 410623214, 1339493466, 410623215, 3224866055, 410623217, 3474142009, 3474142010, 3474142011], "tags": {"highway": "footway"}}, {"type": "way", "id": 37216293, "nodes": [3633377316, 433406874, 3633377320, 4536044183, 433406876, 433406878, 3633377340, 3633377342, 433406879, 433406881, 433406883, 433406887, 4583282663, 433406848], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 37890083, "nodes": [444644585, 444644586, 444644587], "tags": {"highway": "pedestrian", "name": "Pasaje Jos\u00e9 P\u00e9rez Pla", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 38448424, "nodes": [22022371, 1591329982, 4819134930, 1501227838, 25934553], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "postal_code": "28004", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 39144874, "nodes": [26067888, 1357992445, 11533572609, 25935174], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 40652745, "nodes": [34407779, 8458948196, 8402179356, 1801212265], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle del Doctor Santero", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 43405567, "nodes": [1447395580, 1500124428], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 43405568, "nodes": [26578954, 1505080997, 55161040, 3253942876, 11279337787, 4249550724, 26578956, 6981674370, 26578957, 55161188], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Romero Robledo", "name:etymology:wikidata": "Q2370852", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43405569, "nodes": [26578954, 26578958, 55138197], "tags": {"bicycle:lanes": "no|designated|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 43405582, "nodes": [25902327, 1963430779, 5385241331, 1963430778, 25902329, 8911132534, 1963430777, 1963430775, 1963430773, 21627165, 5385241330, 1278839146, 25552447], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28001", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43405583, "nodes": [28097222, 5218975655, 29739616, 8427069672, 4184539396, 29739617], "tags": {"highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43405584, "nodes": [25902327, 1689543018, 1963430780, 11486687684, 5385241332, 28097220], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43405585, "nodes": [28097222, 5218975639, 5218975633, 28096621], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 43407379, "nodes": [25935516, 1179022533, 26080778, 2973127101, 913080866, 5385241357, 1378696856, 26080779], "tags": {"bicycle:lanes": "no|designated|no", "cycleway": "shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43407380, "nodes": [25935516, 1179022300, 55161088, 55161082, 1358036200, 55161078, 1358036198, 55161074], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43407381, "nodes": [8577075124, 1378696853, 913080871, 298448863, 1378696860, 8430090474, 5385241321], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43407382, "nodes": [27514668, 6238487902, 8451215626, 6348197393, 27517855], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 43407384, "nodes": [11690767191, 27508197, 27508198, 27508199, 6348133634, 27508200, 27514605, 5350055330], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 43407386, "nodes": [27516322, 9699225798, 11690767175, 4630240464, 1770052237, 8480879042, 27508173], "tags": {"highway": "residential", "name": "Calle de Juli\u00e1n Romea", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407387, "nodes": [27516630, 1770052226], "tags": {"highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 43407388, "nodes": [27516626, 27516628, 27516630], "tags": {"bicycle": "yes", "highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "postal_code": "28003", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 43407389, "nodes": [27516696, 3663308741, 1770052221, 1770052222, 1770052223, 1770052224, 27516700], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407390, "nodes": [27516700, 1770056848, 27516626], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 43407391, "nodes": [27517956, 6277264493, 27519777], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "name": "Calle de Santander", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 43407392, "nodes": [26025869, 4637824952, 8426942042, 1669117882, 26025860, 4536011532, 26025853, 8426942054, 3096525888, 26025846], "tags": {"bicycle": "yes", "highway": "tertiary", "name": "Calle de Vallehermoso", "name:etymology:wikidata": "Q6122685", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43407393, "nodes": [26025869, 4637824951, 1669117788, 26025870, 1669117783, 27523292, 1669117781, 5966610987, 2972941176, 27523275], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015", "sidewalk": "both"}}, {"type": "way", "id": 43407394, "nodes": [26025866, 4437576920, 8426942043, 4437576919, 26025867, 4437576918, 5966610988, 4637824949, 26025869], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Calle de Fern\u00e1ndez de los R\u00edos", "name:etymology:wikidata": "Q6173153", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43407395, "nodes": [26025866, 4437576922, 1669117913, 26025858], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 43410314, "nodes": [25906111, 1591329840, 904853746, 1591329902, 27508026], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Plaza de Santa B\u00e1rbara", "name:etymology:wikidata": "Q24481510", "surface": "asphalt"}}, {"type": "way", "id": 43410315, "nodes": [25906118, 2685986913, 25934459], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410316, "nodes": [25906121, 7569547514, 2685986828, 25906122, 7569547511, 7569547512, 27508026], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410318, "nodes": [27508026, 2685986776, 25906116], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410319, "nodes": [22022227, 1501227841, 25934553], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410321, "nodes": [25934553, 4819134933, 768765505, 25934556], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410322, "nodes": [25934556, 1357992435, 141870722], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43410324, "nodes": [25934832, 2973015547, 25934833], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 43410334, "nodes": [27522358, 2972941385, 8441812511, 6424299725, 141855405, 298157773, 27522994, 8441812509, 2972941337, 27523108, 298158521, 2972941381, 27523275], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43410335, "nodes": [98957378, 98958321, 8522340702, 2283361212, 5214866731, 60030256], "tags": {"highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43410336, "nodes": [98956600, 306092383, 4422722024, 98958254, 306092384, 6187709127, 98957145, 306092389, 2687649522, 4422722048, 98958255, 98957377], "tags": {"highway": "residential", "junction": "roundabout", "lanes": "2", "name": "Glorieta del General \u00c1lvarez de Castro", "postal_code": "28010"}}, {"type": "way", "id": 43410337, "nodes": [26413152, 3802947044, 3802947046, 3802947048, 5063895996], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759863, "nodes": [25903287, 1760085691, 1760085675, 25903289, 1760085663, 1278839071, 25903291, 389139048], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43759864, "nodes": [365886564, 7549719194], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43759903, "nodes": [25902450, 1223809808, 554167206], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759950, "nodes": [25902471, 1223809828, 25902560], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759952, "nodes": [25902471, 25902473, 25902474, 1223809835, 1223809806, 1760085732, 1760085734], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 43759953, "nodes": [25902450, 25902449, 1223809785, 1969162855, 25902433, 25902432], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43759960, "nodes": [60030302, 5966607283, 5966607254, 9672874691, 60030729], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43759962, "nodes": [60030303, 5966607253, 9672874690, 60030302], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43798337, "nodes": [98999832, 8427069666, 102199240, 102198274, 102200180, 102198273, 616264641, 3275193116, 8427069663, 4206082204, 102197178, 102195402, 102197892, 102198270, 142279256], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28002", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 43798341, "nodes": [142279256, 142279257, 1377881558, 8224947185, 706689902], "tags": {"cycleway:right": "no", "highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 43798342, "nodes": [355172281, 1311052151, 1752467527, 355174895], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 43798344, "nodes": [355174895, 1754817142, 1754817134, 1754817108, 25902845, 1754817091, 25902846, 1754817060, 1754817043], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 43798345, "nodes": [25902673, 25902674], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 43798346, "nodes": [25902673, 1759501542, 11218056273, 11218056274, 11218056262, 563326693], "tags": {"cycleway:right": "no", "foot": "yes", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798347, "nodes": [25902675, 1759501505], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798348, "nodes": [25902655, 4416531498, 63530461], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798349, "nodes": [25902655, 4416531501, 5966607280, 5966607255, 25902434, 1223809798, 25902450], "tags": {"cycleway": "shared_lane", "cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43798350, "nodes": [25934317, 25934320, 25906118], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "source:name": "survey", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 43838445, "nodes": [33131391, 5784462290, 33131392], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Esquilache", "noexit": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 43838446, "nodes": [34408287, 8450352727, 8450352726, 34408303, 8450420427, 8450352724, 34408321, 8450352721, 34407779], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Garellano", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 44167871, "nodes": [29739489, 29739490, 100891151], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44167914, "nodes": [142301513, 8537288337, 3437173844, 3216764228, 100891150], "tags": {"highway": "tertiary", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 44335063, "nodes": [26211539, 26211541], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 44335064, "nodes": [27508209, 27508213], "tags": {"highway": "primary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "sidewalk": "separate", "surface": "asphalt", "turn:lanes:forward": "through|through;right"}}, {"type": "way", "id": 44335065, "nodes": [27508209, 2466312906, 8426942036, 5469164207, 27516704, 6314640624, 6314640596, 27517891, 26212617, 26025904, 26025843], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 44335066, "nodes": [26025843, 4548425735, 4548425734, 1669118081, 8426942038, 1669118063, 26025850, 1669117970, 26025857, 8426942041, 1596698157, 26025865, 4437576921, 26025893, 1596698148, 26025875, 1596698140, 8426942039, 1596698127, 26025883, 26025886, 1596698106, 25935144], "tags": {"bicycle:lanes": "designated|no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "30|50", "name": "Calle de Guzm\u00e1n el Bueno", "name:etymology:wikidata": "Q4734497", "oneway": "yes", "postal_code": "28015", "psv:lanes": "yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 44335067, "nodes": [26025843, 26212618, 1669118084, 8522340705, 26025844, 4548454345, 26212622], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335068, "nodes": [26413581, 26413583, 8804961578, 1203847134, 1203847177, 8804961579, 8804961580, 8804961581, 26413584], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Plaza de Juan Zorrilla", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44335069, "nodes": [25902783, 1754816984, 25902794], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335070, "nodes": [1759501673, 8807074883, 8807074882, 8807074881, 8807074880, 8807074872, 8807074871, 8807074870, 8807074869, 8807074879, 1754816975, 1754816977, 1754816981, 845455932, 25902805, 1754817011, 1754817038], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 44335071, "nodes": [25902674, 1311052133, 8451215617, 1759501646, 25902693, 1759501673], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44335072, "nodes": [25902678, 256525373, 256525374], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left|through|through|through|through"}}, {"type": "way", "id": 44335079, "nodes": [563326691, 563326690, 1203847193, 98953225], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "layer": "-1", "maxheight": "4.4", "maxspeed": "50", "name": "T\u00fanel de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 44335668, "nodes": [25902943, 25902945, 1753722767, 10927537028, 989278143, 10927537026, 25902931, 25902946, 1752467652, 25902961], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336472, "nodes": [141857474, 3096525874, 141856303, 1669117780, 27523292, 4431658905, 298158739, 27523422, 1669117906, 298157533], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 44336473, "nodes": [27523275, 2972941369, 98960871], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lanes:psv:forward": "1", "maxspeed": "30", "name": "Calle de Feijoo", "name:etymology:wikidata": "Q379753", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336474, "nodes": [98960871, 674477979, 5966610986, 674477977, 98960521], "tags": {"highway": "residential", "lanes": "2", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336475, "nodes": [98960521, 2283361221, 9175086695, 98960811, 1596698118, 1591330222, 98960767, 1591330215, 9281668036, 98960768, 1591330197, 1591330173, 98960769, 25934578, 1501230372, 25934548], "tags": {"alt_name": "Calle Cardenal Cisneros", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle del Cardenal Cisneros", "name:etymology:wikidata": "Q342392", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44336478, "nodes": [25902584, 3268713832, 143505038, 8427069667, 3627050628, 25902243, 3567546252, 3627050622, 8427069659, 8307252476, 28097324, 2351032610, 1963430782, 25902327], "tags": {"cycleway:right": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44336479, "nodes": [1377881546, 8213602128, 1377881539, 142279247], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 44336480, "nodes": [142279252, 8213602145, 1377881557, 8213602156, 142279254, 8213602144, 1377881560, 8213602143, 142279256], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "surface": "asphalt", "wikidata": "Q29200152"}}, {"type": "way", "id": 44508926, "nodes": [55161188, 55161192, 55161023, 26578975, 26578974], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44508927, "nodes": [55161188, 8447103714, 1364771799, 26578969], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Romero Robledo", "name:etymology:wikidata": "Q2370852", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44508928, "nodes": [5350038446, 25935576, 8440879524, 1095709752, 55138181], "tags": {"cycleway:right": "lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo del Pintor Rosales", "name:etymology:wikidata": "Q615701", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 44508929, "nodes": [55138181, 1095709756, 318919466, 1364771094, 26080762, 1364770957, 26080763, 7140036350, 8440879525, 1179022390, 26080757, 26080756, 9483986399, 1364770889, 26080755], "tags": {"cycleway:lanes": "none|shared_lane|none", "cycleway:right": "lane", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del Pintor Rosales", "name:etymology:wikidata": "Q615701", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 44508930, "nodes": [55138181, 1095709754, 1095709761, 8447121534, 1095709758, 55161119], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 44508931, "nodes": [1095709764, 1095709762, 1095709759, 55138181], "tags": {"access:lanes": "yes|yes|yes", "bicycle:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|30", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 44508932, "nodes": [25901935, 1278839084, 365886564], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508934, "nodes": [25901950, 25901959, 7549719185, 7549719184, 1278838994], "tags": {"destination": "A-6 A Coru\u00f1a;Plaza de Alonso Mart\u00ednez", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508935, "nodes": [25901950, 25903296], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44508936, "nodes": [25901951, 389139048, 25901936], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44536989, "nodes": [2641385221, 25902895], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 44571136, "nodes": [25902886, 565714231, 8436098418, 1752467637, 8436098423, 8436098420, 1752467646, 565714240, 1752467685, 565714246, 1752467699, 8436098422, 1752467717], "tags": {"access": "no", "highway": "service", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 44571137, "nodes": [25902886, 339636384, 339636378], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 44676258, "nodes": [26212611, 1669118116, 4273925936, 1669118140, 26212612], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Blasco de Garay", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44737268, "nodes": [25901925, 1278838932, 8422641939, 345538475, 1278839131, 7549719175], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 44737269, "nodes": [25903307, 3418035826, 8436098464, 25903324], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 44737270, "nodes": [25903309, 25903307], "tags": {"foot": "no", "highway": "tertiary_link", "lit": "yes", "maxspeed": "50", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 44737271, "nodes": [98960966, 8455404372, 5963987026, 674477995, 98956258], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010"}}, {"type": "way", "id": 44737273, "nodes": [27523275, 8441812501, 2283361217, 2972995652, 60030246], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 44737274, "nodes": [60030256, 2283361222, 4422726767, 5069264832, 60030257], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 44737275, "nodes": [60030256, 2283361233, 2095964625, 5970506946, 2283361231, 60017591, 2283361229, 255099811, 3426834960, 2283361250, 3426834961, 255099047, 5970506945, 302786451, 26413587], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44737276, "nodes": [5342774136, 2972892240, 1654250195, 11525423814, 26413368, 11201893843, 4955056567, 5963987029, 1613048648, 26413513], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 44737277, "nodes": [26413361, 338727916, 1505081195, 26413145], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Santa Engracia", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44883920, "nodes": [569034140, 1654250193, 1654250192, 98951270], "tags": {"highway": "living_street", "name": "Calle de Mar\u00eda Pan\u00e9s", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 44884571, "nodes": [3144095503, 25906109, 1591329868, 21990728], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 44884572, "nodes": [139951332, 3418127835, 1366142631, 8583791443, 141887738], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk:left": "separate", "sidewalk:right": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45656944, "nodes": [563326693, 11218056264, 11218056263, 100891869], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes"}}, {"type": "way", "id": 45757395, "nodes": [32604462, 1140217832, 8513546150, 8430180225, 8430180224, 98728989, 98728990, 1801212330, 8416532988, 98728991, 8416532989, 8412903967, 8416532990, 8416532991, 8416532992, 98728992, 8430180227, 8430180226, 8458897495, 8412903970, 98727478, 8416532993, 7058240058, 8398453283, 8398453282, 8398453281, 8398453280, 8401920800, 2436859054, 98727885, 8538419416, 8398453275, 98727994, 98728833, 8416409744, 8398453276, 98727957, 98725384, 8416381980, 8416381981, 98728832, 8513546151, 8587019126, 98722464, 3951455564, 98732051, 98732052, 8458897489, 8430180233, 98732053, 8406210452, 8398199211, 98732054, 8405390280, 8412813543, 8587019123, 98732055, 5776878427, 98732056, 98723345], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "30", "name": "Avenida del Doctor Federico Rubio y Gal\u00ed", "name:etymology:wikidata": "Q5857841", "oneway": "no", "postal_code": "28039", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 45757396, "nodes": [32604462, 2277540701], "tags": {"cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45757397, "nodes": [26211558, 4519701713, 26211534, 4519701712, 26211561, 4519701711, 26211537], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45757398, "nodes": [26211543, 26211545], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45757399, "nodes": [27517855, 359392862, 32602923, 8415878084, 8415878085, 338727723, 8415878086, 8415878082, 338728444], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45757400, "nodes": [32630168, 2436859063], "tags": {"cycleway:lanes": "none|none|shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 45764843, "nodes": [25902759, 1759501676, 25902690, 1759501675], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764844, "nodes": [26413579, 1203847225, 26413595, 8441812510, 2095964621, 2972891919, 2972941350, 27522358], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764846, "nodes": [98949534, 8807066167, 8423842238, 3077638487, 8807066166, 1613048626, 8807066172, 8807066174, 101182466, 8807066164, 1613048650, 8807066163, 1613048658, 8807066165, 989204859, 8423842237, 10197766007], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 45764847, "nodes": [26413587, 5214866725, 1203847202, 1203847229, 26413579], "tags": {"highway": "tertiary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "left|through;left|through|through"}}, {"type": "way", "id": 45764848, "nodes": [26413587, 1203847114, 1613048604, 26413522, 5321927326, 1654250183, 26413367], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 45764849, "nodes": [26413138, 8419499597, 3802946098, 1505081226, 3802947078], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45764850, "nodes": [338727732, 3802947050, 26413152], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 46098091, "nodes": [26578946, 8430090473, 913080864, 26578947], "tags": {"bicycle": "designated", "bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 46098092, "nodes": [26579034, 7549593996, 916938490], "tags": {"highway": "trunk", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 46098106, "nodes": [587643323, 587643324, 11280466187], "tags": {"bus": "designated", "highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 46098107, "nodes": [587643323, 4080737331, 2480629206], "tags": {"bicycle:lanes": "no|designated", "cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 46098108, "nodes": [8577075130, 26579183, 4417379976], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 46168738, "nodes": [1759501825, 588635992, 588635956, 588635962, 588635957, 142294070], "tags": {"highway": "path", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 46168739, "nodes": [588635962, 588635963, 588635964, 588635965], "tags": {"highway": "path", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 46168740, "nodes": [1759501751, 588635967, 588635968, 588635970, 588635971, 588635989, 588635991, 588635965], "tags": {"highway": "path", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 46168741, "nodes": [588635968, 588635980, 588635977, 1759501693], "tags": {"highway": "path", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 46168742, "nodes": [588635980, 588635983], "tags": {"highway": "path", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 46168743, "nodes": [588635992, 588635997, 1719813893], "tags": {"highway": "path", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 48239185, "nodes": [8804963661, 613053062, 9998406813, 2972892250, 613053614], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 48239260, "nodes": [2466312900, 27519838, 27519834, 1203847136, 27519852, 613055508, 1924384880, 6277264528, 613055510, 613055512], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 48239324, "nodes": [5784870820, 5784870809, 613056096], "tags": {"highway": "footway"}}, {"type": "way", "id": 48239383, "nodes": [613056117, 6277264557, 613056096, 6277264492, 6277264491, 6277264478], "tags": {"highway": "footway"}}, {"type": "way", "id": 48334260, "nodes": [858587194, 858587240, 614036231], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 48501091, "nodes": [616226070, 5578582705, 616226130, 616226131, 616226132, 5578582706], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 48503711, "nodes": [11732310478, 616263140, 616263143, 616263146, 7981026973], "tags": {"highway": "footway"}}, {"type": "way", "id": 48503836, "nodes": [616264645, 616264715], "tags": {"highway": "residential", "name": "Calle de Francisco Alc\u00e1ntara", "oneway": "yes"}}, {"type": "way", "id": 48503839, "nodes": [616264715, 616264741, 616264739, 616264722], "tags": {"highway": "residential", "name": "Plaza de Mar\u00eda Guerrero", "oneway": "yes"}}, {"type": "way", "id": 48503864, "nodes": [616264722, 616264726, 3275193117, 706689939], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Francisco Alc\u00e1ntara", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 49600302, "nodes": [25934572, 8422578415, 768765511, 5321927323, 1591330088, 25934577, 5321927324, 1357992475, 141862745, 8422629018, 8422629017, 8422578416, 141881777, 298151462, 141881448], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 49600408, "nodes": [22016262, 1501227816, 930662446, 8447121581, 1591329895, 1591329883, 3424964318, 21990722, 21990721, 21990720, 1591329824, 21990719], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 53321067, "nodes": [554167206, 25902561, 25902441, 25903269, 1223809816, 25903271], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321070, "nodes": [25902452, 1223809838, 1760085724, 554167206], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321072, "nodes": [554167210, 25902453, 1760085725, 25902560], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321073, "nodes": [554167210, 1223809787, 25902471], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321074, "nodes": [554167206, 1223809814, 554167331, 554167210], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321075, "nodes": [25902560, 1223809800, 345255555, 25902452], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53321077, "nodes": [25902560, 8440634369, 1439705328, 25902455, 1311052157, 1223809854, 1447529412], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 53321083, "nodes": [25902452, 674449753, 25902450], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Emilio Castelar", "name:etymology:wikidata": "Q28000791", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 53323771, "nodes": [6231141665, 674477948, 26025891, 1596698091, 674477942, 25935134, 1596698094, 1596698095, 25935136, 1596698096, 26025907, 1596698099, 25935144, 1596698100, 1596698101, 26025890, 1596698102, 1596698104, 4470285255, 26025889, 1596698105, 4386417609, 26025892], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 56228662, "nodes": [30914823, 705649552, 705649554], "tags": {"highway": "service", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 56323516, "nodes": [706689900, 1377881551, 706689902], "tags": {"highway": "residential", "name": "Calle Puente del Duero", "postal_code": "28006"}}, {"type": "way", "id": 56323517, "nodes": [706689901, 2466689631, 706689900, 706689897], "tags": {"highway": "residential", "name": "Calle de Felipe P\u00e9rez y Gonz\u00e1lez"}}, {"type": "way", "id": 56323519, "nodes": [706689931, 102196730, 102196415], "tags": {"highway": "residential", "name": "Calle Fray Juan Gil", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 56323520, "nodes": [142191968, 616264645, 102195398, 102195399, 102195400, 102196726, 102192628, 102195402], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "50", "name": "Calle del Tambre", "oneway": "yes", "postal_code": "28002", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 56323521, "nodes": [706689929, 706689933], "tags": {"highway": "residential", "name": "Calle de Mar\u00eda Malibr\u00e1n"}}, {"type": "way", "id": 56323522, "nodes": [706689906, 706689919, 102197890], "tags": {"highway": "residential", "name": "Calle Santiago Artigas", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 56323523, "nodes": [142191967, 706689906], "tags": {"highway": "residential", "name": "Calle Eduardo Palacios", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 56323524, "nodes": [706689923, 7619693969, 706689925, 706689927, 706689907, 7619693970, 706689917], "tags": {"highway": "residential", "name": "Plaza del Poeta Manuel del Palacio"}}, {"type": "way", "id": 56323525, "nodes": [102195668, 706689931, 102193007, 102193009, 989277971, 100881578], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Francisco de As\u00eds M\u00e9ndez Casariego", "name:etymology:wikidata": "Q20819131", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 56323530, "nodes": [102192627, 4269623495, 706689939, 102192628, 102192630], "tags": {"highway": "residential", "name": "Calle del Eresma", "postal_code": "28002"}}, {"type": "way", "id": 58531295, "nodes": [26067301, 8429132471, 2283339299, 1660892627, 11145627654, 26067310, 11533572585, 26067300, 11533572578, 340219557, 11533572627, 26067289], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 58531297, "nodes": [26067284, 32638870], "tags": {"highway": "residential", "name": "Calle de San Dimas", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 59454240, "nodes": [737215754, 737215749, 1203847171, 1203847201, 737215794, 1203847139], "tags": {"highway": "footway"}}, {"type": "way", "id": 59454249, "nodes": [1203847147, 1203847191, 1203847178, 1203847176, 1203847133, 737215793, 737215755], "tags": {"highway": "footway"}}, {"type": "way", "id": 59454250, "nodes": [737215759, 1203847138, 1203847142, 1203847235], "tags": {"highway": "footway"}}, {"type": "way", "id": 60334348, "nodes": [3594827154, 750475948, 3594827157], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 60334386, "nodes": [1339493687, 750476602, 1339493674, 1339493364, 1339493661], "tags": {"highway": "path", "lit": "no", "smoothness": "good", "surface": "ground"}}, {"type": "way", "id": 60615968, "nodes": [2093539010, 330271035, 3233013127, 1339493433, 4892392154, 4892392153, 4892392152, 330271037, 1339493582, 3108256682, 1339493474, 758253380, 1339493564, 758253371, 1339493699, 10262250924, 1339493493, 1339493380, 758253363, 3108256674, 3108256673, 3108256675, 758253355], "tags": {"highway": "cycleway", "lanes": "2", "lit": "yes", "smoothness": "good", "surface": "concrete"}}, {"type": "way", "id": 61677995, "nodes": [768765511, 8590458186, 8590458185, 768765506, 768765508], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 61678014, "nodes": [4827673941, 55311603, 26067263, 8436311128, 26067262, 4827701837, 8007694242, 26067303, 8429132484, 26067302, 4827701836, 26067313, 26067304, 2584038764, 2584038761, 8429132481, 26067306, 2283339292, 11533572597, 26067301], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Amaniel", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 61678015, "nodes": [768765505, 1501227843, 768765512], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 65167022, "nodes": [797297576, 26578960], "tags": {"access": "no", "highway": "service", "lit": "yes", "maxspeed": "50", "name": "Solo Bus - A6", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 65167032, "nodes": [26578960, 1486142511], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 65167037, "nodes": [1486142532, 7510718612, 3470996670, 3470996671, 7510718613, 1869415375], "tags": {"highway": "residential", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "postal_code": "28040", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 65279237, "nodes": [55161130, 55161135], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 65279238, "nodes": [55161130, 55161145, 4311985760, 3927556759, 25935534, 3927556761, 3927556771, 26578950, 3927556772, 6981674371, 26578956], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "cycleway": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 71019433, "nodes": [26413144, 1505081228, 3802946109], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 71019462, "nodes": [26413142, 3802946117, 26413141], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71054747, "nodes": [536185687, 8807066128, 8807066129, 4825301731, 1505081178, 142195759], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 71054752, "nodes": [142248303, 8455404368, 1654250235, 98946911, 3457902049], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 71055114, "nodes": [26211545, 4519701718, 1500124631, 4519701717, 26211563], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71055206, "nodes": [150760480, 8480842115, 359404815, 4558946113], "tags": {"highway": "residential", "name": "Plaza del Marqu\u00e9s de Comillas", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71055297, "nodes": [26413145, 3802947055, 26413323, 3802947062, 3802947071, 616211953, 3802947082, 26413144], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 71078008, "nodes": [4909695835, 27514644, 1505081157, 581287837], "tags": {"cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 71078154, "nodes": [150760322, 1350673783], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|left|right|right"}}, {"type": "way", "id": 71078364, "nodes": [150760477, 1212072740, 1212072896, 4558946111, 4558946112, 4558946118, 4558946127, 4558946113], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 71078641, "nodes": [26211563, 4519701719, 26211547, 4519701722, 26211549, 4519701721, 26211551, 4519701720, 26211553], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71079781, "nodes": [142279252, 142279251, 142279249, 8213602152, 8213602151, 142279248, 8213602150, 8213602149, 142279247], "tags": {"highway": "tertiary", "name": "Plaza de la Rep\u00fablica Argentina", "name:etymology:wikidata": "Q414", "oneway": "yes", "postal_code": "28002", "wikidata": "Q29200152"}}, {"type": "way", "id": 71079791, "nodes": [142246030, 8481041832, 142198196], "tags": {"destination": "Avenida de Reina Victoria; A-6 A Coru\u00f1a", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71270643, "nodes": [26578974, 1364772083, 26578973], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "turn:lanes": "left|left;right|right"}}, {"type": "way", "id": 71270645, "nodes": [5385241323, 904868125, 7934347521, 904868123, 1067565836, 5385241322, 913080865, 893869107, 7930651364, 7934347511], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 71270648, "nodes": [927751052, 26067885], "tags": {"bicycle:lanes": "no|designated|yes", "cycleway": "shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through;right|right"}}, {"type": "way", "id": 71554236, "nodes": [26579043, 26579044, 26579045, 1486142603, 26579046, 1486142596, 26579047, 1486142597, 1486142599, 26579048], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes"}}, {"type": "way", "id": 71554244, "nodes": [26211553, 26579040, 3136812043, 8513737409, 433406868, 26579041, 26579042], "tags": {"highway": "primary_link", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 71554252, "nodes": [26211555, 1500124471], "tags": {"foot": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 71554260, "nodes": [26211553, 4519701715, 1500124510, 4519701714, 26211555], "tags": {"foot": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through;left|through|through"}}, {"type": "way", "id": 71591677, "nodes": [2480629206, 7859244870, 937660056, 8461821938, 1067565849], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right", "vehicle": "yes"}}, {"type": "way", "id": 71609573, "nodes": [913080867, 26578961, 26578960], "tags": {"highway": "secondary_link", "lanes": "3", "lit": "yes", "maxspeed": "50", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 71609575, "nodes": [26579080, 7549586477, 1486142559, 2480627227, 26579081, 8577075131, 8577075132, 4929425966, 8577075133, 8577075134, 26579082], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 72187025, "nodes": [26211555, 1500124607, 26211541], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 72247159, "nodes": [614036231, 6981674375, 4110020825, 614036232, 4110020824, 858587190, 614036233, 6981674381, 614036235, 614036236, 858587196, 6592972601, 6592972603, 6592972602, 614036238, 6130961139], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Subterr\u00e1neo de Princesa a Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 72247167, "nodes": [25935146, 1179022535, 25935517, 8447103716, 6441681744, 25935519, 622204585, 25935521], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 72247172, "nodes": [858587220, 1179022558], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|merge_to_left"}}, {"type": "way", "id": 72247177, "nodes": [385569776, 858587216], "tags": {"bicycle:lanes": "designated|no|designated", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "30|50|30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through;left|through|through;right"}}, {"type": "way", "id": 72247187, "nodes": [385569660, 8429132482, 6441681745, 1179022304, 25935146], "tags": {"access:lanes": "yes|no", "bicycle:lanes": "yes|no", "bus:lanes": "yes|designated", "cycleway:lanes": "shared_lane|none", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|designated"}}, {"type": "way", "id": 72247192, "nodes": [25935515, 1179022561, 858587220], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 72247197, "nodes": [385569772, 858587187, 385569773, 7864693888, 385569774, 385569775], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "maxheight": "3", "maxspeed": "30", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 72247205, "nodes": [858587179, 913080874], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247209, "nodes": [385569775, 385569776], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247216, "nodes": [858587216, 858587173, 913206910, 4500945119, 858587220], "tags": {"bicycle": "designated", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "width": "8"}}, {"type": "way", "id": 72247218, "nodes": [25935149, 913080868, 6981674380, 25935514], "tags": {"bicycle": "designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247225, "nodes": [25935146, 7864693887, 7864693885, 858587224], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 72247241, "nodes": [614036239, 8429132472, 1357992452, 11533572614, 25935174], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 74010277, "nodes": [81605098, 2916189677], "tags": {"highway": "pedestrian", "name": "Calle de Don Quijote", "source": "survey"}}, {"type": "way", "id": 74010278, "nodes": [875774460, 3452544028, 875774476], "tags": {"highway": "residential", "name": "Calle de Don Quijote", "source": "survey"}}, {"type": "way", "id": 76560500, "nodes": [26025892, 1669117694, 26578942], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 76560501, "nodes": [298151119, 298151334], "tags": {"highway": "service", "name": "Calle de Belvis", "source:name": "survey"}}, {"type": "way", "id": 76560505, "nodes": [26025892, 4386417611, 1669117707, 26025880, 1669117723, 1669117737, 26025871, 1669117762, 1669117805, 26025862, 1669117862, 3136816605, 1669117967, 3136816577, 26025854, 3136816570, 4536011543, 26025847, 1500124475, 26025840], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Hilari\u00f3n Eslava", "name:etymology:wikidata": "Q3818102", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 76809468, "nodes": [25906116, 1591329893, 25906113, 904853734], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza Santa B\u00e1rbara", "name:etymology:wikidata": "Q192816", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 76809470, "nodes": [25906112, 5970506952, 370503553, 25906111], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "3", "lanes:backward": "1", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Hortaleza", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt", "wikidata": "Q5740911"}}, {"type": "way", "id": 76809473, "nodes": [25906196, 3424801050, 25906200, 1855027673], "tags": {"highway": "residential", "name": "Calle de Fernando VI", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 76811654, "nodes": [26067291, 3606795767], "tags": {"highway": "steps", "lit": "yes", "name": "Calle de las Negras", "surface": "paving_stones"}}, {"type": "way", "id": 76817092, "nodes": [25903290, 1760085673, 1760085689, 25903288], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 76817096, "nodes": [25935033, 1651583801, 1651583797, 25935043], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 77065964, "nodes": [338727925, 4237239314, 338728013], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77065967, "nodes": [907465906, 2759786077, 907465931, 907465923, 907465945, 2277540732, 150760374], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 77065972, "nodes": [907465934, 3472111968, 907465899, 4414962275, 907465904, 3472111971, 907465913, 3472111972, 4414962276, 907465925, 907465929, 907465886, 907465902, 907465936, 4414962277, 907465887, 3472111970, 907465912, 3472111969, 907465934], "tags": {"foot": "no", "highway": "residential", "junction": "roundabout", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de El\u00edas Ah\u00faja y Andr\u00eda", "surface": "asphalt"}}, {"type": "way", "id": 77065975, "nodes": [338728013, 4237239311, 338727935, 32602932, 8507918308, 8451215622, 3802946118, 32602934], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77065977, "nodes": [907465925, 4414962255, 3578396516, 150760756, 4131272804, 150760759, 150760762, 2277540736, 11704126372, 8707182126, 4548286975, 150760339, 8707182125, 5776878411, 8707182124, 8707182123, 5776878415, 150760685, 9294124001, 1140217797], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 77065984, "nodes": [907465940, 4548286973, 4548286974, 907465948], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 77339507, "nodes": [55161046, 7537446006, 7537446007, 7537446005, 55138174], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 77603043, "nodes": [913080874, 1179021796, 858587192, 6981674377, 385569776], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 77603044, "nodes": [26578963, 5006352965], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 77603045, "nodes": [26080779, 7537445999, 7537445996, 913080871], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Evaristo San Miguel", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 77616842, "nodes": [98958749, 8440634387, 141886626, 8440634372, 141880344], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 79474349, "nodes": [927751052, 4280390198, 3313144504], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 79638492, "nodes": [929294339, 300750920, 929294349], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 79638494, "nodes": [25552447, 1278838940, 2377018043, 929294339], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 79638502, "nodes": [929294349, 1278839065, 7549719196, 25903296], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 79740853, "nodes": [930662432, 930662433, 930662446], "tags": {"highway": "service", "layer": "-1", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 79740856, "nodes": [930662417, 21990724], "tags": {"highway": "service", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 79740857, "nodes": [930662450, 930662415], "tags": {"highway": "service"}}, {"type": "way", "id": 80240816, "nodes": [25935074, 6314751507, 936505945, 6314751510, 936505954], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 80240817, "nodes": [26578942, 1378696879], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 80240819, "nodes": [21990747, 21990756], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Luc\u00eda", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 80240820, "nodes": [22023377, 11220779549, 1474148379, 21990756, 21990741, 21990742, 21990744, 21990718], "tags": {"bicycle": "yes", "foot": "yes", "highway": "living_street", "horse": "no", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Palma", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "local_knowledge", "surface": "sett"}}, {"type": "way", "id": 80240821, "nodes": [26066553, 11220779544, 26067274, 26067266, 26067303], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Vicente Ferrer", "name:etymology:wikidata": "Q317131", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 80343918, "nodes": [1364773265, 1364773244, 937649668, 937649658, 1364773050, 937649688, 1364772921, 1364772901], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 80344674, "nodes": [2480629206, 1505081044], "tags": {"bus": "designated", "highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 80573880, "nodes": [1364772901, 1364772877, 1364772858, 939960816, 1364772183, 939960817, 26578972], "tags": {"highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 80789123, "nodes": [942080463, 1278838954, 7549719164, 7549719163, 942080469], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 80789126, "nodes": [942080480, 942080456, 942080463], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 80789131, "nodes": [942080477, 1278839128, 942080480], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 83668208, "nodes": [63530461, 8440634385, 1760085722], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668209, "nodes": [139951327, 8440634390, 8440634389, 8440634388, 139951329], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668210, "nodes": [139977749, 8004974956, 63530546], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 83668211, "nodes": [344795459, 8440634370, 139951327], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 83668212, "nodes": [60030728, 5966607282, 5966607281, 1011869675, 4416531500, 25902655], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "psv:lanes:backward": "yes|yes|designated", "psv:lanes:forward": "yes|yes|designated", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 83668213, "nodes": [141887738, 8440634386, 3418127840, 8583791442, 139951330, 9879403079, 139951329], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes:backward": "through|through;right|right"}}, {"type": "way", "id": 83668214, "nodes": [63530546, 8464920924, 1152699024, 10244148852, 141919137], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Almagro", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 83668215, "nodes": [60030729, 9672874692, 60030728], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 85328239, "nodes": [8807066125, 8807066131, 8807066124, 8807066130, 1505081164, 1505081161, 8807066132, 340228785, 1016578176, 989205158, 8807066133, 8807066146, 8423842234], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 85328244, "nodes": [989205020, 5941381329, 8633236083, 989205114, 989204862], "tags": {"highway": "residential", "name": "Calle de Orense", "oneway": "yes", "source": "PNOA"}}, {"type": "way", "id": 85328247, "nodes": [10197766007, 1654250194, 8807066157, 98951271], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Maudes", "oneway": "yes", "source": "PNOA", "surface": "asphalt"}}, {"type": "way", "id": 85328249, "nodes": [989205076, 8807066158, 8807066159, 1613048680, 1613048678, 989204859], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mar\u00eda de Guzm\u00e1n", "oneway": "yes", "sidewalk": "both", "source": "PNOA", "surface": "asphalt"}}, {"type": "way", "id": 85333152, "nodes": [989278010, 3077638494, 1752467632, 989278143], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 85333165, "nodes": [100881715, 9517181761, 101190120, 1752467635, 3135960742, 25902931], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 85333169, "nodes": [989278228, 3078183623, 102195393], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 85817332, "nodes": [996183822, 996184045], "tags": {"highway": "pedestrian", "name": "Calle de Puigcerd\u00e1", "postal_code": "28001"}}, {"type": "way", "id": 85817340, "nodes": [996184088, 996183509], "tags": {"highway": "pedestrian", "name": "Callej\u00f3n de Jorge Juan", "postal_code": "28001"}}, {"type": "way", "id": 86974742, "nodes": [1011869674, 1011869673, 4626597057, 1011869670], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 86974743, "nodes": [25902677, 1311052179, 394684648, 394684649], "tags": {"cycleway:right": "no", "highway": "primary_link", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "left", "sidewalk:left:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 86974744, "nodes": [1011869675, 8057411475, 6370957359, 6370957358, 1011869678], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 87425101, "nodes": [1016578409, 1016578197, 8096571919, 1016578355], "tags": {"access": "private", "highway": "residential", "name": "Calle Don \u00c1lvaro de Baz\u00e1n", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 87425102, "nodes": [1016578272, 4856152172, 1016578176], "tags": {"highway": "pedestrian", "name": "Pasaje Romero"}}, {"type": "way", "id": 87425104, "nodes": [141886675, 4643041857, 4643041866, 4643041873], "tags": {"highway": "footway", "lit": "yes", "name": "Calle de Manuel Cortina", "name:etymology:wikidata": "Q5992686", "surface": "paving_stones"}}, {"type": "way", "id": 87425107, "nodes": [1016578216, 8096571923, 1016578380, 1016578441], "tags": {"access": "private", "highway": "residential", "name": "Calle Marqu\u00e9s del Vasto", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 87425110, "nodes": [1016578361, 1016578305], "tags": {"highway": "service", "name": "Calle de Alonso Cano", "service": "alley"}}, {"type": "way", "id": 87425114, "nodes": [8096571920, 1016578331, 8096571918, 8096565015, 8096571917, 8096565016, 1016578274, 1016578179, 8096565014, 8096565012, 8096565011, 8096565013, 1016578419, 8096571921], "tags": {"access": "private", "highway": "service", "maxheight": "3", "name": "Calle Batalla de Otumba", "oneway": "yes"}}, {"type": "way", "id": 87425123, "nodes": [1016578357, 1613048623, 1016578237, 1016578444, 1016578196], "tags": {"highway": "living_street", "name": "Calle Robledillo", "postal_code": "28003"}}, {"type": "way", "id": 87425124, "nodes": [34408611, 34408615, 8402493606, 34408621, 8398199204, 34408632], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Avelino Montero R\u00edos", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 87425125, "nodes": [1016578197, 1016578380], "tags": {"access": "private", "highway": "pedestrian", "name": "Calle Batalla de Mulgberg", "postal_code": "28003"}}, {"type": "way", "id": 87425126, "nodes": [34408632, 8419484453, 8398199205, 34408653, 8419484455, 34408658, 8419169785, 8419397872, 8419169736, 98727958, 8410125841, 8419397873, 8410136827, 98727957], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de San Valeriano", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 90965270, "nodes": [25896216, 3233009673, 3233009670, 1339493442], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 90965271, "nodes": [150760970, 150760961, 3426732241, 11149514156, 330271089, 3108256672, 177587168], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 90965273, "nodes": [1056095515, 3578422044, 3224876497, 1056095516, 3224876506, 2001290866, 1056095518], "tags": {"highway": "service", "name": "Entrada CENIM"}}, {"type": "way", "id": 90965274, "nodes": [1056095519, 1056095520, 1056095518, 1056095521, 2001290937, 11645339853, 1056095522], "tags": {"highway": "service", "name": "Entrada CENIM"}}, {"type": "way", "id": 93601149, "nodes": [1085874133, 1223809820, 1223809786, 2351032610], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Villamejor", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 94285177, "nodes": [1095709762, 1095709761], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 94285180, "nodes": [6981674373, 1095709764, 1095709758], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 98184845, "nodes": [1135863744, 1135863791, 1135863737], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 98184848, "nodes": [1135863691, 3578397071, 3578397073, 1135863748, 1135863592], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 98184850, "nodes": [1135863645, 1135863661, 6200560392, 1135863709, 1135863759, 1135863807, 1135863630, 1135863666, 1135863722, 1135863725, 1135863769, 6200560266, 1135863771, 1135863811, 1135863591, 1135863626, 1135863663], "tags": {"access": "private", "highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 98184856, "nodes": [1135863737, 1135863634, 3578456356, 1135863594, 1135863778, 1135863737], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 98184858, "nodes": [150760384, 3578397058, 3578397061, 3578397065, 1135863691], "tags": {"highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 98561764, "nodes": [2277540701, 1140217843, 98723334, 1140217792, 98723336, 2493613399], "tags": {"cycleway:lanes": "none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 98561765, "nodes": [1140217830, 150760350, 7058272483, 150760666, 7058286485, 8707182021, 8707182020, 5553995268, 150760333, 6238484475, 4131272794, 150760355, 2277540728, 4959669363, 907465904], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "surface": "asphalt"}}, {"type": "way", "id": 98561773, "nodes": [2277540734, 3321767702, 1140217797], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299"}}, {"type": "way", "id": 98561776, "nodes": [582754412, 32604461], "tags": {"highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 98561777, "nodes": [2493613399, 2493613389, 51424234, 1140217822, 339410670, 1140217820, 32630168], "tags": {"cycleway:lanes": "none|shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "maxspeed:lanes": "50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes"}}, {"type": "way", "id": 98561779, "nodes": [2493613399, 7058240046, 3999479563, 1140217847], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "surface": "asphalt"}}, {"type": "way", "id": 98561780, "nodes": [7058272461, 1140217822, 1140217792, 7058272462], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 98561786, "nodes": [1140217820, 1140217843], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 98561790, "nodes": [1140217847, 8412903974, 8412903973, 1140217801, 7058240040, 1140217808, 8412903972, 8707181996, 1140217830], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes"}}, {"type": "way", "id": 98561793, "nodes": [2277540701, 32630168], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Juan Montalvo", "oneway": "yes"}}, {"type": "way", "id": 102154839, "nodes": [1179022345, 1179022387], "tags": {"crossing:island": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 102154842, "nodes": [1179022178, 6441681743, 1937730979], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 102154855, "nodes": [1179022182, 4500945111, 1179022561, 1179022345, 913206910], "tags": {"crossing:island": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 102494324, "nodes": [100890241, 29739491, 9054521326, 9054512001, 29739493, 8427069661, 2679640385], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 104340949, "nodes": [1203847132, 1203847139, 1203847118], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340950, "nodes": [1203847178, 1203847149, 11061512917, 11061512918, 1203847199], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340951, "nodes": [563326692, 8451215620, 1203847126, 26413587], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 104340952, "nodes": [1203847158, 1203847132, 1203847227], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340953, "nodes": [1203847210, 1203847185, 1203847157, 1203847130, 1203847224, 10968366799, 6277264423, 1203847200, 1203847167, 10966341207, 1203847213, 1203847188, 1203847160, 1203847133, 1203847152, 1203847124], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340954, "nodes": [1203847213, 1203847228], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340955, "nodes": [32604397, 32604444], "tags": {"foot": "no", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340956, "nodes": [1203847170, 1203847197, 1203847124, 1203847156, 1203847191, 1203847209], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340957, "nodes": [32604444, 338728189], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "foot": "no", "highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340958, "nodes": [32604399, 1203847174], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340959, "nodes": [613053614, 1203847143, 6277264424, 6277264436, 1203847175, 1203847203, 613053616, 6277264434, 10966341177, 10966341186, 10966341195, 10966341197, 10966341198, 10966341200, 10966341185, 10968366800, 1203847210, 613053624, 1203847205, 1203847234, 6277264417, 6277264421, 10968366797, 1203847228, 737215793, 9315046498, 1203847170, 1203847165, 1203847137, 613053627, 1203847147, 10968366796, 1203847196, 613053614], "tags": {"highway": "footway", "surface": "tartan"}}, {"type": "way", "id": 104340960, "nodes": [1613048577, 563326691], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "destination": "A-6 Villalba; Ciudad Universitaria", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340962, "nodes": [1203847222, 1203847133, 1203847197], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340963, "nodes": [1203847115, 11061512910, 1203847127], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340964, "nodes": [8804963881, 1203847131, 1203847189, 1203847214], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 104340968, "nodes": [32604444, 32604466, 32604467, 8805121867, 32604468, 1203847146], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 104340972, "nodes": [1203847201, 1203847140], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340973, "nodes": [32604465, 1203847159, 32604452], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340974, "nodes": [27514733, 27514734], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340975, "nodes": [1203847146, 8804961589, 1203847119, 1203847215, 33131393], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 104340976, "nodes": [1203847231, 1203847187, 1203847176, 1203847156], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340977, "nodes": [1203847166, 1203847211, 1203847187, 1203847206, 1203847180, 1203847149, 1203847172, 1203847195], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340978, "nodes": [32604466, 8804963807, 1203847182, 1203847151, 1203847123, 1203847219, 1203847194, 8804963816, 1203847159], "tags": {"highway": "footway"}}, {"type": "way", "id": 104340979, "nodes": [1613048577, 1203847122, 7062214667, 563326692], "tags": {"destination": "Avenida Pablo Iglesias; Glorieta Quevedo", "highway": "tertiary", "lanes": "2", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 104340980, "nodes": [1203847168, 8483713093, 1203847110, 8483713092, 1203847226, 8483713105, 2160260306, 8483713103, 2160260303], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 104340982, "nodes": [1203847235, 1203847115], "tags": {"highway": "steps"}}, {"type": "way", "id": 104340983, "nodes": [1203847131, 8804963880, 1203847225], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 104340984, "nodes": [1203847171, 1203847112], "tags": {"highway": "footway"}}, {"type": "way", "id": 105181513, "nodes": [1212072858, 1212072741, 1212072795], "tags": {"highway": "residential", "name": "Avenida del Valle", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 105181515, "nodes": [27508174, 150760701, 3575366957, 150760705, 150760710], "tags": {"highway": "residential", "maxspeed": "50", "name": "Paseo Eugenio Mar\u00eda de Hostos", "name:etymology:wikidata": "Q3543841", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 105181516, "nodes": [1212072858, 1212072897, 1212072856, 27508174], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "name": "Paseo de Juan XXIII", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 106343216, "nodes": [1223809792, 4701287021, 25902441, 1223809823, 25902439, 1223809801], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 106343217, "nodes": [1223809804, 1223809832, 1223809817, 1689543055, 1223809843], "tags": {"cycleway:right": "no", "highway": "primary_link", "lane_markings": "no", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 106343218, "nodes": [1223809818, 1223809791, 1223809849, 1223809821, 1223809828, 1223809836, 1223809787, 1223809794, 1223809825, 1223809801, 1223809783, 1223809812, 1223809851, 1223809817, 1223809788, 1223809807, 1223809803], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 106343219, "nodes": [5006946998, 1223809824, 25903272, 1223809793, 1223809804, 25903270, 1223809815, 25902439, 554167210], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxheight": "default", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 106343220, "nodes": [1223809822, 1223809808, 674449753, 1223809809], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 106343221, "nodes": [1223809785, 2584444268, 1223809822, 1223809792, 1223809852, 1223809789], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 106343223, "nodes": [1223809847, 1223809802, 1223809789, 1223809816, 1223809793, 1223809788, 25902244, 1760085718], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 106343224, "nodes": [8580966574, 1223809830, 1223809824, 8580966575], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 106343225, "nodes": [1223809794, 1223809831, 25902447], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 106343226, "nodes": [25902490, 1223809809, 25902456, 1223809797, 25902455, 1223809849], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 106343227, "nodes": [1223809821, 25902473, 1760085727], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 106343229, "nodes": [1223809796, 1223809826, 1223809802, 1223809829, 8427069641, 1223809813, 25902231], "tags": {"access": "no", "highway": "service", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 107078360, "nodes": [25935144, 1596698097, 25935142, 8426942040, 1179022148, 25935146], "tags": {"highway": "tertiary", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "name:etymology:wikidata": "Q4734497", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107078361, "nodes": [26025890, 1596698107, 6440431086, 26025882, 4470285286, 2525814068, 2525814094, 26025873, 1596698149, 26025895, 2525814070, 2525814141, 26025864, 1669117836, 1669117925, 2525814138, 26025856, 2525814085, 2525814124, 1669118016, 26025849, 1669118047, 1669118101, 26025842], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Andr\u00e9s Mellado", "name:etymology:wikidata": "Q5675946", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 107078365, "nodes": [27519868, 3663324548, 1203847118, 32604431, 2466312893, 1203847127, 32630173, 32630174, 32630175, 32630176], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 107078373, "nodes": [98960871, 4412200928, 674477994, 98960966], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Feijoo", "name:etymology:wikidata": "Q379753", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107081344, "nodes": [26025858, 4536011539, 26025851, 4536011542, 1669118079, 4548454349, 26025844], "tags": {"highway": "residential", "name": "Calle de Blasco de Garay", "name:etymology:wikidata": "Q881771", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 107083786, "nodes": [141886675, 1591330163, 141885510], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Manuel Silvela", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107083789, "nodes": [141885351, 9165503376, 98959391], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Garcilaso", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 107088310, "nodes": [28096859, 28096858, 996183497, 28096857, 5602141869, 5602141868, 29741516, 5458872059, 6074452277, 28096615, 6074452275, 1505106008, 1505106009, 28096494, 7098087928, 1505106010, 7098087916, 28096493, 7098087918, 8479324957, 28096622, 8479324958, 4244157681, 29739616, 28096881, 28096922, 1689543023, 28097324], "tags": {"bicycle": "yes", "cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Padilla", "name:etymology:wikidata": "Q1339628", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 107090823, "nodes": [25934540, 1591330058, 1591330059, 25934522, 1591330060, 1591330061, 25934520, 1591330063, 1591330085, 5063895997, 141886481], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Nicasio Gallego", "name:etymology:wikidata": "Q720492", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 107090824, "nodes": [141881448, 1591330212, 141881347, 5321927325, 1591330245, 141862748], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 108584728, "nodes": [1245495108, 1339493656, 1245495107, 1245495105, 1245495089, 1245495086, 1245495123, 1245495099, 6947820724], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 109462884, "nodes": [25902057, 25902058], "tags": {"highway": "service"}}, {"type": "way", "id": 109462894, "nodes": [25552447, 1555729961, 1278839005, 25552446], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "6", "lanes:backward": "4", "lanes:forward": "2", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed:lanes:backward": "50|30|50|50", "maxspeed:lanes:forward": "50|30", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 109462896, "nodes": [25552425, 1981925767, 26513117, 1973690384, 26513124, 5235745134, 26513111, 26513105, 4576234825, 26513097, 4576234826, 942080478, 7549719106, 1209332387], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 109462899, "nodes": [25552425, 1950481123, 8427025375, 8427025400, 1950481116, 25552423], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 112538793, "nodes": [1278839092, 2053099675, 2053099673, 2053099701, 3438347287, 2053099686, 2053099688, 4467070262, 4467070263], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 112538796, "nodes": [3323813668, 3068279548, 25892074, 25903338, 3428425005, 25903336, 1278839022, 10147017766, 25903333], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 112538800, "nodes": [25552447, 2377018002, 1278838937, 26513072], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 112538803, "nodes": [1278838958, 1915012233, 345538472, 4213142669, 4213142670, 4213142671, 4213142672, 4213142673, 4213142674, 25901940, 7326843483, 1278839004, 1278839064, 7326843482, 1278839092], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 112538807, "nodes": [1278839042, 1278839065, 25552450], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 112538810, "nodes": [1278839121, 1278838949], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 112538811, "nodes": [25903298, 7549719169], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 112538817, "nodes": [365886564, 25903297, 1915012228, 8427025374, 1278839019, 3428425011, 25903307], "tags": {"highway": "primary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 112538820, "nodes": [1278839127, 1278839062, 1278839022, 3418035823], "tags": {"highway": "footway"}}, {"type": "way", "id": 112538829, "nodes": [1278839003, 1278839030, 4309788689, 1278839114, 1278839083, 1278839127], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "concrete"}}, {"type": "way", "id": 112660678, "nodes": [1314919703, 1314916909, 1280098498, 1314926656, 1314919705, 8423842230, 989204966], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693031, "nodes": [1314919703, 340228671], "tags": {"highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "noname": "yes", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693037, "nodes": [1314916898, 4666869634, 4659927122, 4666869647, 8714822217, 1314916927], "tags": {"highway": "residential", "lanes": "3", "layer": "-2", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693044, "nodes": [1314916897, 4666869648, 4666869636, 1314916907, 4666869661, 339636199], "tags": {"highway": "residential", "lanes": "2", "layer": "-1", "lit": "24/7", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693046, "nodes": [1314916915, 4666869656, 3221366171, 3221366172], "tags": {"highway": "pedestrian", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693048, "nodes": [1314916927, 1314916897], "tags": {"highway": "residential", "lanes": "4", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693050, "nodes": [1314916903, 1314938271, 4659927121, 1314938283, 4659927120, 1314938257, 1314938266], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "tunnel": "yes"}}, {"type": "way", "id": 116693055, "nodes": [98766581, 1314916917, 1314916920, 1314916899, 1314916925, 1314916904, 1314916905, 1314916915], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Calle Vaguada", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116693057, "nodes": [8423842232, 4666869660, 4666869657, 1314916927], "tags": {"highway": "residential", "layer": "-1", "lit": "24/7", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693062, "nodes": [1314916897, 4666869635, 4666869646, 1314916903, 4666869640, 1314916924, 1314916910, 4659927134, 4659927139, 4659927117, 1314916900, 3463244187], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693064, "nodes": [1314916910, 4150446789, 1314916922, 1314916919, 4659927135], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "24/7", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693069, "nodes": [1314916915, 1314916918, 1314916898], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "4", "layer": "-1", "lit": "24/7", "name": "Calle Vaguada", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693072, "nodes": [28096048, 1314926740], "tags": {"highway": "residential", "layer": "-1", "maxheight": "2.95", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116693077, "nodes": [1314916923, 4666869633, 1314916918], "tags": {"highway": "pedestrian", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116693510, "nodes": [1314919706, 4659927140, 1314919701, 98801269], "tags": {"highway": "residential", "layer": "-1", "lit": "24/7", "maxheight": "3", "name": "Plaza Carlos Tr\u00edas Bertr\u00e1n", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 116694363, "nodes": [1314926740, 1314926635, 3221366170], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694367, "nodes": [1314938250, 4659927133, 1314938252], "tags": {"bicycle": "no", "highway": "service", "lit": "yes", "maxspeed": "50", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 116694368, "nodes": [1314926694, 4666869644, 1314928548, 1314926724], "tags": {"highway": "service", "layer": "-2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694370, "nodes": [1314926692, 339636199], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694374, "nodes": [1314926724, 1314926672, 3221366172], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694375, "nodes": [8423842229, 1314926675], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694379, "nodes": [1314926631, 1314926674], "tags": {"highway": "service", "layer": "-2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694380, "nodes": [1314916914, 1314926651, 1314926742, 1314926721, 1314926696], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "maxheight": "3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694384, "nodes": [1314926690, 4666869650, 4666869649, 1314926667, 4659927118, 1314926674, 1314926654, 4659927136, 4659927132, 1314926657, 1314926744, 4659927131, 1314926696], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694385, "nodes": [1314926644, 8423842230], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694390, "nodes": [1314926698, 4666869641, 4659927124, 4666869642, 1314926719, 1314926690, 4666869659, 4666869632, 4666869638, 1314926692], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694391, "nodes": [1314926675, 8255907448, 1314926659, 4666869658, 4666869645, 8714822217, 1314926719], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694395, "nodes": [3221366170, 1314926730, 4666869639, 1314926676], "tags": {"highway": "service", "layer": "-2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694396, "nodes": [1314916926, 4659927128, 1314926727, 1314926701, 1314926718, 1314926678, 1314926696, 1314926746, 1314926694, 1314926676, 1314926698, 4666869634, 1314926717, 1314926642, 1314926644], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116694914, "nodes": [1314926654, 3225763279, 1314930098], "tags": {"highway": "service", "layer": "-2", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116695645, "nodes": [1314938279, 1752467623, 1314938275], "tags": {"highway": "service", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 116695646, "nodes": [1314938264, 4659927137, 1314938282, 1314938279], "tags": {"foot": "no", "highway": "service", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116695651, "nodes": [1314938252, 1314938277, 1314938254, 4659927127, 1314926631], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 116931094, "nodes": [298152271, 141875018], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 116931095, "nodes": [289076302, 8585687239, 8585687240, 8585687241, 289076304, 298152611, 298152518], "tags": {"highway": "service", "lanes": "1", "oneway": "yes"}}, {"type": "way", "id": 116931096, "nodes": [298152330, 8585687232, 8585687231, 8585687230, 8585687229, 298152196, 298152197, 298152271], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 116931097, "nodes": [298152518, 98956601], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Trafalgar", "name:etymology:wikidata": "Q171416", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 117261859, "nodes": [1320787498, 2534882390, 1320786894, 4417396258, 2534882391, 4417396266, 2534882392, 4417396277, 1320787252, 4417396285, 4417396289, 4583282677, 1320787628], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 117261886, "nodes": [26211530, 4549845082, 4549591268, 4179348738, 1320787654], "tags": {"access": "private", "highway": "service", "name": "Calle Ministro Ib\u00e1\u00f1ez Mart\u00edn", "surface": "asphalt"}}, {"type": "way", "id": 117261891, "nodes": [2459056926, 2459056920, 1320787269, 2459056921, 2462922545, 1320786900, 1320787484, 3575366943, 1320787110], "tags": {"highway": "service", "lit": "yes", "maxspeed": "20", "name": "Calle Profesor Mart\u00edn Lagos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 118934453, "nodes": [1314938273, 1752467622, 565714233, 8436098461, 25902895], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 118934454, "nodes": [1336935950, 1336935943, 10927525542, 1336935947], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 118934455, "nodes": [351923288, 2528643105, 25902884], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 118934456, "nodes": [339636384, 1752467545, 1752467638, 1752467647, 2623662123], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 118934457, "nodes": [351923288, 1336935931], "tags": {"highway": "primary", "lanes": "5", "layer": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 118934458, "nodes": [25902894, 1311052151], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 118934459, "nodes": [1314938273, 25902921, 339636249, 25902890], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "4", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 118934460, "nodes": [1336935931, 25902886], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 118988837, "nodes": [25902890, 1447181174], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046"}}, {"type": "way", "id": 119143405, "nodes": [1339493643, 4131272686, 11149514151, 1339493689, 4131272700, 3224866049, 25896215], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 119143427, "nodes": [4131272655, 1339493612, 10262250923, 1339493598, 1339493650, 3578422050, 1339493443, 1339493375, 1339493681, 1339493630, 1339493538, 3233016401, 1339493415, 3233016400, 1339493499], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 119143432, "nodes": [4131272677, 1339493413, 1339493657], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 119143436, "nodes": [1339493680, 1339493442, 8703242763, 1339493531, 4131272660, 1339493598, 1339493699, 584209224], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 119143443, "nodes": [1339493643, 1339493701, 11149514152, 1339493413, 1339493529, 3578422054, 1339493625], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 119143450, "nodes": [1339493680, 3233019463, 1339493691, 1339493645, 3594827165, 750475949, 1339493678, 11645339848], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 120460609, "nodes": [1350673783, 4920630096, 3964436603, 907465934], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460610, "nodes": [1350673784, 907465948, 3964436614, 8513737416, 907465943, 9116858090, 365604154, 365604231, 150760421, 4131272785, 4131272781, 8513737415, 365614645], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460614, "nodes": [150760425, 1636560299, 2001290867, 25896220, 339824100, 3426732246], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 120460620, "nodes": [1350673783, 7815310165, 7815310166, 1350673787, 4920630097, 1350673785, 1350673784], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:type": "ES:urban", "name": "Paseo de Juan XXIII", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|through;left"}}, {"type": "way", "id": 120460623, "nodes": [365614645, 150760425], "tags": {"highway": "residential", "name": "Calle de Ramiro de Maeztu", "oneway": "yes"}}, {"type": "way", "id": 120460625, "nodes": [907465940, 3162003417, 150760374, 3578396564, 1135863642, 3578397014, 907465908, 150760379, 3578397044, 907465906, 150760384, 7815310158, 4548286972, 1135863597, 3578397062, 150760405, 1135863783, 1135863628, 1135863592, 1135863683, 150760393, 1135863744, 4548286962, 4548286971, 4548286970, 4548286961, 150760397, 1135863682], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 121261292, "nodes": [1357992470, 8866381043, 1357992456, 8866381042, 25934579], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Sandoval", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 121477437, "nodes": [1359796755, 1359796756], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle Salas", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 121797007, "nodes": [4575801321, 1362534264, 3450371632, 4575801327], "tags": {"bridge": "yes", "cycleway:both": "no", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "layer": "1", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "shoulder": "no", "surface": "asphalt", "wikidata": "Q22304054", "wikipedia": "es:Puente Enrique de la Mata Gorostizaga"}}, {"type": "way", "id": 122057534, "nodes": [1364772887, 1364772830, 1364772792, 1364772728, 1364772614, 1364772555, 1364772489, 937649685], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057537, "nodes": [1364773293, 1364773291, 1364773285, 1364773282, 1364773281, 1364773277, 1364773269, 1364773268, 1364773270, 1364773280, 1364773284, 1364773290, 1364773293], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 122057539, "nodes": [1364773188, 1364773200, 1364773202, 1364773209, 1364773197, 1364773195, 1364773186, 1364773163, 1364773113, 3594864844, 1364773055, 1364773026, 1364772981], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057540, "nodes": [1364771350, 1364771113, 4233944620], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 122057546, "nodes": [3594864844, 4470476669, 4470476670, 4470476671, 1364773104, 1364773088, 1364773086, 1364773070, 1364773065, 1364773057, 1364773044, 1364773061, 1364773075, 1364773085, 1364773091, 1364773105, 1364773118, 1364773134, 1364773142], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057551, "nodes": [1364773309, 1364773315, 1364773319, 1364773311, 937649682, 1364773300, 1364773295, 1364773279, 1364773264, 1364773255, 1364773249, 1364773245, 1364773251, 1364773262, 1364773265, 1364773283, 1364773299, 1364773302, 1364773309], "tags": {"highway": "footway", "lit": "yes", "name": "Glorieta del General San Mart\u00edn", "source": "bing", "surface": "asphalt"}}, {"type": "way", "id": 122057552, "nodes": [1486142629, 1364773333, 1364773324, 1364773322, 1364773304, 1364773298, 1364773241, 1364773194, 1364773171, 1364773119, 1364773091, 1364773079, 1364773036, 1364773016, 1364772992, 1364772970, 1364772985, 1364773005], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057553, "nodes": [1364772819, 1364772816, 1364772824, 1364772852, 1364772892, 1364772915, 1364772934, 1364772953, 1364772965, 1364772983, 1364773001, 1364773020, 1364773061, 1364773089, 1364773131, 1364773165, 1364773188, 1364773211], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057576, "nodes": [1364773285, 1364773302], "tags": {"highway": "steps", "lit": "yes"}}, {"type": "way", "id": 122057583, "nodes": [4470476667, 1364773003, 4470476664, 1364772988, 1364772977, 1364772952, 1364772941, 1364772926, 1364772889, 1364772859, 1364772842, 1364772817, 1364772810, 1364772799, 1364772787, 1364772779, 1364772752, 1364772711, 1364772681, 1364772685], "tags": {"highway": "footway", "lit": "yes", "surface": "dirt"}}, {"type": "way", "id": 122057585, "nodes": [1364773313, 1364773296, 1364773266, 1364773257, 1364773246, 1364773239, 1364773232, 1364773227, 1364773214, 1364773187, 1364773150, 1364773142, 1364773117, 1364773093, 1364773059, 1364773005, 1364772976, 1364772935, 1364772871, 1364772826, 1364772812, 1364772805, 1364772806], "tags": {"highway": "footway", "lit": "no", "source": "bing"}}, {"type": "way", "id": 122057596, "nodes": [1364770934, 1364770957, 1364770975], "tags": {"highway": "footway"}}, {"type": "way", "id": 122057616, "nodes": [1364771066, 1364771094, 1364771113], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 122057629, "nodes": [1364773195, 1364773215, 1364773231, 1364773244], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057635, "nodes": [1364772858, 1364772878, 1364772913, 1364772927, 1364772931, 1364772932, 1364772923, 1364772920, 1364772898, 1364772868, 1364772847, 1364772822, 1364772809, 1364772649, 1364772605, 1364772528, 1364772448, 1364772424, 1364772386, 7132247166, 1364772055, 1364772029, 7140418616, 338896009, 1364771958, 1364771942, 1364771877, 1364771840, 1364771810, 1364771697, 1364771662, 1364771655, 1364771644, 1364771637, 1364771625, 1364771615, 1364771589, 1364771569, 1364771541, 1364771386, 1364771369, 1364771365, 1364771367, 1364771383, 1095709752, 7124682475], "tags": {"highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 122057641, "nodes": [1364772153, 1364772161, 1364772173, 1364772181, 1364772183], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 122057643, "nodes": [1364772878, 1364772867, 1364772688, 1364772625, 1364772181, 1364772047], "tags": {"highway": "footway", "lit": "no", "surface": "pebblestone"}}, {"type": "way", "id": 122057645, "nodes": [1364773241, 1364773243, 1364773246, 1364773253, 1364773258, 1364773260], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057647, "nodes": [1364773118, 1364773102, 1364773081, 1364773054, 1364773016, 1364772934], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057653, "nodes": [1364772407, 1339912666, 1364772450, 1364772465, 1364772485, 1364772510, 1364772508, 1364772498, 1364772470, 1364772453, 1364772429, 1364772414, 1364772405, 1364772376, 1364772372, 1364772374, 1364772390, 1364772418, 1364772451, 1364772610, 1364772775, 1364772804, 1364772818, 1364772832, 1364772855, 1364772881, 1364772893, 1364772902, 1364772908, 1364772924, 1364772946, 1364772969, 1364772984, 1364772986, 1364772990, 1364772995, 1364773006, 1364773022, 1364773041, 1364773103, 1364773121, 1364773146, 1364773160, 7132247174, 1364773210, 1364773224, 1364773226, 1364773216, 1364773214, 1364773212, 1364773198, 1364773194, 1364773190, 1364773181, 1364773169, 1364773167, 1364773179, 1364773196, 1364773211, 1364773229, 1364773237, 1364773255], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "surface": "compacted"}}, {"type": "way", "id": 122057657, "nodes": [1364773070, 1364773101, 1364773148, 1364773151, 1364773173, 1364773184, 1364773197], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057661, "nodes": [1364772808, 1364772829, 1364772856, 1364772954, 1364773007, 1364773052, 1364773086], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057664, "nodes": [1364773065, 1364773038, 1364773030, 1364773014, 1364773002, 1364772940, 1364772888], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057680, "nodes": [1364773319, 1364773320, 1364773326, 1364773328, 1364773330, 1364773338, 1364773341, 1364773345, 1364773350, 7511745477, 7511745476], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 122057682, "nodes": [1364773007, 1364772968, 1364772904, 1364772888, 1364772865, 1364772820, 1364772769, 1364772661, 1364772635], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122057684, "nodes": [1364772837, 913080864, 1486142510, 913080870, 1364772802], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 122057687, "nodes": [1364773163, 1364773120, 1364773104, 1364773069, 1364773028, 4470476665, 1364772959, 1364772906, 1364772890, 937649666], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 122191131, "nodes": [6634926258, 8583791445, 1366142634, 141880344], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 123625796, "nodes": [25902243, 1689543025, 8307252477, 1377881478, 4575801336, 28096905], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 123625797, "nodes": [142279247, 1377881522, 8213602124, 1377881496], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28006", "source:name": "common knowledge"}}, {"type": "way", "id": 123625798, "nodes": [139982488, 1377881495, 11203180090, 139982486, 139982483], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "postal_code": "28006", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 123625800, "nodes": [1377881561, 1377881563, 1377881565], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 123625801, "nodes": [1377881524, 1377881520, 8213572616, 1377881509, 8213602117, 1377881495], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 123625802, "nodes": [139982488, 8213602120, 1377881525, 8213602121, 1377881528, 8213602122, 1377881523, 8213602123, 1377881506], "tags": {"highway": "residential", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 131431667, "nodes": [8583791446, 8583791444, 141889410, 139951332], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 131431668, "nodes": [616220786, 98959052, 1591330247, 98959492], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 131443344, "nodes": [25934823, 25934824, 25934825], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 131443345, "nodes": [25934825, 8866381040, 25934826, 1211171050, 25934828], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 131443346, "nodes": [25934835, 25934837, 8440634373, 1211171056, 25934856], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 131447320, "nodes": [1446632660, 26578945, 8577075130], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 131450463, "nodes": [858587179, 25935149], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 131450464, "nodes": [858587216, 1179022387, 25935515], "tags": {"bicycle:lanes": "designated|no|no", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "30|50|50", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through;left|through|through"}}, {"type": "way", "id": 131450468, "nodes": [141870722, 1357992432, 630734756], "tags": {"bicycle": "yes", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131450470, "nodes": [1278838994, 25901951], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through|through|through|through|right"}}, {"type": "way", "id": 131451859, "nodes": [25901958, 7549719195, 7549719174, 7549719170, 345537803], "tags": {"cycleway:right": "shared_lane", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|left;through|right"}}, {"type": "way", "id": 131451860, "nodes": [63530476, 139975676], "tags": {"cycleway:right": "no", "foot": "no", "highway": "tertiary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 131492911, "nodes": [1339493625, 3426732245, 4108431408, 3426732244, 3578422051, 25896216], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131492913, "nodes": [338728134, 1505081224, 1505081225, 26413144], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131492914, "nodes": [338728098, 8455404360, 844466098, 338728134], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131493286, "nodes": [338728145, 1505081204, 338728155], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131493287, "nodes": [338728155, 338728050], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 131493291, "nodes": [1447057701, 338728174, 338728155], "tags": {"access": "no", "bus": "designated", "highway": "service", "oneway": "yes", "sidewalk": "both"}}, {"type": "way", "id": 131497898, "nodes": [150760661, 6238487903, 4909695836], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 131497921, "nodes": [256525374, 674449754, 256525381], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 131504896, "nodes": [1447181174, 25902892], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes"}}, {"type": "way", "id": 131542527, "nodes": [1447395580, 26211558], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 131543165, "nodes": [1447402323, 27517888, 27508205, 3213799206, 27508208, 8426942037, 2493633627, 27508209], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 131553923, "nodes": [25935141, 8447121535, 6441681752, 11279585502, 1378696865, 25935069], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 131553930, "nodes": [25935141, 25935139], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 131553934, "nodes": [1359796755, 1759501511, 25902673], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 131553936, "nodes": [1447529412, 1759501507, 25902664, 256525374], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 131553944, "nodes": [1447529412, 1759501468, 1359796755], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 133150561, "nodes": [25902329, 1689543016, 28096821, 1950481193, 28096822, 29739615, 8479324960, 28096620, 1950481190, 1950481187, 28096491], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "name": "Calle de Don Ram\u00f3n de la Cruz", "name:etymology:wikidata": "Q920042", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 133150587, "nodes": [1465071297, 8936377435], "tags": {"highway": "steps", "surface": "paving_stones"}}, {"type": "way", "id": 133150593, "nodes": [1465071284, 1465071278, 1465071277, 8307252469], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 133150599, "nodes": [1465071296, 1465071292, 1465071288], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 133150603, "nodes": [1465071278, 1465071279, 1915012231, 1465071286, 1465071291, 1465071292, 1465071294, 1465071295], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 133979685, "nodes": [1474148381, 4575762333, 4575762320, 1474148380], "tags": {"highway": "residential", "name": "Calle de Lagasca", "oneway": "yes", "postal_code": "28006"}}, {"type": "way", "id": 133979687, "nodes": [1474148455, 7414071643, 1474148445], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Antonio", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 133979694, "nodes": [1474148379, 1474148377], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Costanilla de San Vicente", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 133979704, "nodes": [81604773, 7411091834], "tags": {"highway": "service", "name": "Traves\u00eda de Tiziano", "service": "driveway"}}, {"type": "way", "id": 133979725, "nodes": [1474148448, 7411148707, 7411091834], "tags": {"highway": "service"}}, {"type": "way", "id": 133979729, "nodes": [2160260298, 1474148394, 2160260301, 8483713090, 2160260303, 2160260308, 8483713089, 8483713091, 1474148396], "tags": {"highway": "tertiary", "lanes": "2", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 133979752, "nodes": [27514734, 2466312900, 3663308762, 1474148391], "tags": {"access": "private", "highway": "service", "name": "Paseo de San Francisco de Sales", "service": "driveway"}}, {"type": "way", "id": 135311398, "nodes": [26579033, 7549593990, 7549586482, 26579034], "tags": {"destination:lanes": "A Coru\u00f1a|Cardenal Cisneros", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "slight_left|slight_right"}}, {"type": "way", "id": 135311411, "nodes": [1486142511, 797297576], "tags": {"highway": "service", "lit": "yes", "maxspeed": "50", "motorcycle": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "oneway:backward:conditional": "yes @ (Mo-Fr 6:00-11:30; Sa 17:00-22:00; Su 16:00-24:00)", "oneway:forward:conditional": "yes @ (Mo-Fr 13:30-22:00; Sa 9:00-15:00; Su 9:00-14:00)", "psv": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 135311413, "nodes": [1491286102, 1491286103], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 135311414, "nodes": [1486142627, 7549593986, 7549593987, 7549593985], "tags": {"highway": "service", "lit": "yes", "name": "Intercambiador Moncloa Memoria", "old_name": "Intercambiador Moncloa Arco del Triunfo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 135311415, "nodes": [1486142535, 1491286100], "tags": {"highway": "service", "layer": "-1", "level": "-1;0", "lit": "24/7", "maxheight": "4", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 135311419, "nodes": [8822146151, 8822146147, 8822146150, 8822146148, 8822146149, 7549586476, 2480627230, 3594864819, 1486142536, 1486142535], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "name": "Intercambiador de Moncloa - Acceso lateral", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 135863138, "nodes": [1491286103, 8385594967, 1491286104, 1491286106, 1486142627], "tags": {"highway": "service", "layer": "-1", "level": "-1;0", "lit": "yes", "maxspeed": "20", "name": "Intercambiador Moncloa Arco del Triunfo", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 136124303, "nodes": [3418035846, 7549719180, 2584445035, 3428425019, 25902054, 8427069657, 2584445036, 1493669242], "tags": {"access": "no", "bus": "yes", "highway": "service", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136124305, "nodes": [25902447, 25902471], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136124308, "nodes": [1223809796, 25902235, 1223809847, 25902233, 25902231], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 136124311, "nodes": [25902231, 25902207, 1223809845, 25902196, 1760085698, 25902152], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 136124312, "nodes": [3418035846, 1493669240, 3428425018, 1760085655, 1493669241, 1493669242], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 136730697, "nodes": [1500124471, 1447395580], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136730698, "nodes": [5425359850, 2673302089], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 136730699, "nodes": [1500124471, 4519701707, 1500124447, 26211558], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136730700, "nodes": [4583282673, 26579040, 3971001359], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 136732950, "nodes": [26579048, 1486142647, 26579049, 7600612665], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136732951, "nodes": [1320787654, 1320787074, 4179348737, 11381137918, 1320787444], "tags": {"access": "private", "highway": "service", "name": "Calle Ib\u00e1\u00f1ez Mart\u00edn", "official_name": "Calle Ministro Ib\u00e1\u00f1ez Mart\u00edn", "oneway": "yes"}}, {"type": "way", "id": 136732952, "nodes": [1320787654, 1320787127, 1320787498, 4417386085, 1320786920, 4417386082, 2534882389, 4417393060, 1320787274, 11394143390, 1320787654], "tags": {"access": "private", "highway": "service", "name": "Calle Ib\u00e1\u00f1ez Mart\u00edn", "official_name": "Calle Ministro Ib\u00e1\u00f1ez Mart\u00edn"}}, {"type": "way", "id": 136736902, "nodes": [26025841, 1669118105, 1669118075, 4536011537, 26025848, 1669118035, 1669118010, 26025855, 1669117838, 4280384800, 26025863, 3212178930, 1669117752, 26025872, 1669117734, 1669117721, 26025881, 1669117696, 26025889, 3257568695, 1378696873, 25935519], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "name:etymology:wikidata": "Q3177239", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136736903, "nodes": [26025840, 4490265809, 4490265810, 26025901], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Hilari\u00f3n Eslava", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 136736904, "nodes": [25935074, 25935075, 674477947, 26025891, 674477952, 26025888, 26025897, 4416845741, 26025878, 5754419278, 26242736, 4637824950, 26025869], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Calle de Vallehermoso", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 136841194, "nodes": [1501227856, 1501227845, 5183551632], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136841196, "nodes": [1501227857, 25934572, 1501227858, 1501227856], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 136841198, "nodes": [1501227833, 1501227832, 1501227825, 1501227827], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 136841200, "nodes": [768765512, 8590458184, 4331642398, 4331642399, 768765507, 768765513, 298150579], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 136841239, "nodes": [25934548, 1501227845, 25934553], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Luchana", "name:etymology:wikidata": "Q3310734", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 136977417, "nodes": [8490180660, 1364772956, 26578987, 1364772922, 1364772880, 26578988, 1364772709, 26578989, 1364772468, 26578990, 7961931722], "tags": {"highway": "unclassified", "lane_markings": "no", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137200184, "nodes": [26413137, 8419499611, 8419499610], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 137200185, "nodes": [26413141, 8419499612, 1505081244, 26413137], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137200186, "nodes": [26413141, 1505081231, 3802946122, 1505081242, 8419499609, 26413139], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 137200187, "nodes": [1505081160, 1505081162, 1505081163, 1505081176, 1505081179], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 137519638, "nodes": [28096483, 8479324937, 28096716, 1950481161, 28096717, 1950481162, 1950481166, 28096718, 1950481168, 28096719, 8307252475, 1963430774, 1963430775], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Ayala", "name:etymology:wikidata": "Q354137", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 138226816, "nodes": [1515303874, 8419499594, 338728005, 1801212179, 338728013], "tags": {"access": "bus", "bus": "designated", "highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 138884780, "nodes": [1522690105, 338734056], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 138884785, "nodes": [1522690088, 1522690087, 8824409712, 1522690090, 8824409713, 82499628], "tags": {"highway": "service"}}, {"type": "way", "id": 138884792, "nodes": [338734056, 1522690100, 1522690089, 1522690088], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "tunnel": "building_passage"}}, {"type": "way", "id": 139634507, "nodes": [338896749, 7549586458, 7549586456, 338896746], "tags": {"access": "no", "bus": "yes", "highway": "service", "lit": "yes", "name": "s\u00f3lo BUS", "oneway": "yes"}}, {"type": "way", "id": 140362354, "nodes": [1537917859, 1537917858], "tags": {"highway": "service", "layer": "-1", "lit": "yes", "oneway": "no", "tunnel": "yes"}}, {"type": "way", "id": 140362355, "nodes": [1537917871, 1537917861, 1537917859], "tags": {"highway": "service", "lit": "yes", "oneway": "no", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 146397946, "nodes": [1596698132, 11225755013, 1596698131], "tags": {"highway": "service", "lit": "yes"}}, {"type": "way", "id": 148197008, "nodes": [1613048626, 8807066171, 1613048637, 1613048639, 8807066198, 1613048644], "tags": {"highway": "residential", "name": "Pasaje de Agust\u00edn de Betancourt", "oneway": "yes"}}, {"type": "way", "id": 148197009, "nodes": [25902821, 8807074856, 1754816992, 1613048538, 1754816993, 8807074858, 1613048542, 1613048550], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 148197012, "nodes": [1613048543, 1613048527, 1613048511, 1613048509, 3712863646, 3712863648, 1613048508, 1613048507], "tags": {"highway": "service", "oneway": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 150772472, "nodes": [25896216, 3233005269, 1636560244, 3233005268, 1636560235, 3233009672, 1636560225, 25896218, 1056095515, 8513737413, 1245495108, 1056095522, 1636560197, 1636560194, 150760245, 1636560190, 4892388512, 1636560215, 1636560218, 1636560221, 11645339873, 1212072818, 3224859919, 1636560228, 1636560232, 1636560239, 1636560241, 150760271, 1636560243, 11645339891, 11645339877, 150760278], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de Gregorio del Amo", "oneway": "yes"}}, {"type": "way", "id": 150772482, "nodes": [2167560248, 3452157951, 1636561545, 1135863794, 7622690579, 1636561507, 1636561539, 3474142130, 1636561501, 1636561503, 1636561242, 1636560978, 2759786078, 1636560831], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 150772484, "nodes": [293251183, 3224866214, 10589006916, 413878087, 296097838, 3224893967, 1636560345, 1636560341, 1636560337, 3224893969, 1636560350, 1636560354, 3224893988, 1636560390, 3474142013, 1636560400, 1636560412, 1636560457, 1636560470, 3224893989, 1636560496, 1636560502, 1636560518, 1636560557, 1636560573, 1636560619, 1636560628, 1636560626, 1636560609, 1636560600], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 150772486, "nodes": [1636560609, 1636560457, 1636560408, 1636560325, 1636560299], "tags": {"highway": "footway"}}, {"type": "way", "id": 150772488, "nodes": [1636561545, 1636561541, 1636561504, 1636561437, 1636561431, 1636561487, 1636561534, 1636561541], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 152617744, "nodes": [1654250226, 11732310477, 1654250225], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 152617745, "nodes": [1654250221, 1654250220], "tags": {"highway": "service"}}, {"type": "way", "id": 152617747, "nodes": [1654250224, 1654250223, 1654250222], "tags": {"highway": "service"}}, {"type": "way", "id": 154076672, "nodes": [1666721132, 1666721150, 1666721149, 1666721131, 1666721136, 1666721133, 1666721146, 1666721135, 1666721148, 1666721134, 6314751490, 1666721129], "tags": {"bicycle": "yes", "highway": "footway", "horse": "yes", "motor_vehicle": "no", "segregated": "no"}}, {"type": "way", "id": 154369018, "nodes": [4548405619, 4548405624], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Donoso Cort\u00e9s", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 159729232, "nodes": [1718376821, 1718376823], "tags": {"highway": "pedestrian", "name": "Calle V\u00e1lgame Dios", "postal_code": "28004"}}, {"type": "way", "id": 159739451, "nodes": [2584038766, 9641674962, 2584038764], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plazuela de las Comendadoras", "postal_code": "28015", "surface": "sett"}}, {"type": "way", "id": 159919202, "nodes": [1754819476, 1719813895, 1719813894, 25902773, 1719813892, 1613048503, 1719813896, 1613048504, 1759501816, 8807074879, 8807074878, 8807074866], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 161638119, "nodes": [1736112466, 8194903533, 2493553189, 3708287454, 1736112471, 2493553247, 141859830, 2493553217, 8194903535, 141859167, 1736112476, 3708287455, 2493553212, 141859832, 2493553209, 1736112467, 2493553251, 3708287453, 141859608, 8194903534, 1736112466], "tags": {"highway": "residential", "junction": "circular", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 161638121, "nodes": [1736112478, 2493553178, 1736112482, 1736112485, 1736112487, 1736112486, 1736112484, 1736112480, 2493553227, 1736112474], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 161793151, "nodes": [3708287454, 141858985], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 161793152, "nodes": [3708287455, 1736112474, 8194903531, 141859168], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Arapiles", "name:etymology:wikidata": "Q708580", "oneway": "yes", "postal_code": "28015"}}, {"type": "way", "id": 161793154, "nodes": [8291665487, 1666721132, 6314751486, 1660871696], "tags": {"bicycle": "yes", "highway": "footway", "motor_vehicle": "no", "segregated": "no"}}, {"type": "way", "id": 163577083, "nodes": [25902923, 3135450431, 1314938273], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163577093, "nodes": [1752467593, 1752467595, 1752467597, 340225887, 340225889, 1752467577, 1752467576, 1752467574, 340225891, 1752467578], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577095, "nodes": [1752467595, 1752467576], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577097, "nodes": [1752467597, 1752467577], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577099, "nodes": [340225889, 1752467562], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163577100, "nodes": [1752467558, 1752467574], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577103, "nodes": [1752467577, 1752467560], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577104, "nodes": [1752467556, 1753722732, 340225891], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577105, "nodes": [340225885, 340225886], "tags": {"highway": "service", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577106, "nodes": [1752467576, 1752467559], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577108, "nodes": [1752467535, 1752467534, 1752467530], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 163577114, "nodes": [1752467593, 1752467586, 1752467574], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577117, "nodes": [1752467616, 1752467567, 25902909, 25902910], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "no", "taxi:lanes": "designated|yes", "turn:lanes": "|right"}}, {"type": "way", "id": 163577121, "nodes": [1752467578, 1752467581, 340225886, 1752467586], "tags": {"highway": "service", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577123, "nodes": [1752467619, 1752467618, 1752467614, 1752467593], "tags": {"highway": "service", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163577125, "nodes": [1752467549, 1752467551, 1752467553, 1752467555, 1752467565], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163577127, "nodes": [1752467636, 1752467637, 1752467638, 1752467639, 1152699053, 25902929, 1752467634], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163577129, "nodes": [1752467573, 1752467567, 1752467566, 1752467565, 1752467563, 1752467588, 1752467590], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163692345, "nodes": [1753722730, 1753722729], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163692352, "nodes": [1753722768, 10927499968, 1753722767], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163692354, "nodes": [1753722732, 1753722731], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163692359, "nodes": [1753722731, 1753722730], "tags": {"highway": "steps", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163692392, "nodes": [1752467578, 1752467583, 340225895, 1752467589, 340225893, 339636165], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163692394, "nodes": [1752467644, 1752467636, 1753722768, 1753722753, 1753722736, 11016216297, 1752467540], "tags": {"highway": "footway", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 163743121, "nodes": [21990729, 25906107], "tags": {"highway": "residential", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 163743590, "nodes": [25906124, 25906113], "tags": {"highway": "pedestrian", "name": "Calle de Orellana", "oneway": "no", "postal_code": "28004"}}, {"type": "way", "id": 163805454, "nodes": [1754817172, 25902874, 8436098463, 1754817154, 3162003415, 1754817111, 25902848, 1754817088, 25902847, 1754817065, 25902826, 1613048575, 1613048560, 1613048552, 1754817000, 25902821], "tags": {"access": "no", "highway": "service", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "sidewalk:right": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163805455, "nodes": [1754817038, 1754817071], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 163805456, "nodes": [1613048524, 8807074860, 8807074859, 8807074848, 1754816983, 8807074847, 356264959], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805457, "nodes": [356264959, 8807074855, 8807074854, 8807074844], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805458, "nodes": [1754817011, 1754817035, 8807074865, 1754817040, 1754817042, 1754817055], "tags": {"access": "no", "highway": "residential", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163805459, "nodes": [8807074867, 1754816982, 1754816987], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk:both": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805460, "nodes": [1754817071, 1754817076, 25902856, 1754817116, 25902866, 1752467528], "tags": {"access": "no", "highway": "service", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163805461, "nodes": [1754817071, 1754817093, 1754817102, 1754817115, 1754817140, 1754817170, 1754817193, 25902884], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 163805480, "nodes": [1752467530, 1754820557, 1754817205, 1754817201, 1754817171, 1754817166, 1754817156, 3451273058, 9559214847, 1754817127, 1754817106, 1754817095, 1754817087, 1754817070], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 163805481, "nodes": [102214349, 102213636], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 163805482, "nodes": [1754817091, 25902848], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805483, "nodes": [1754817087, 9559283923, 1754817088], "tags": {"highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805484, "nodes": [25902847, 25902846], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805485, "nodes": [1754817127, 1754817126, 3162003415], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163805486, "nodes": [1754817077, 1754817084], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 163805487, "nodes": [1754817182, 3451250600, 3451212172, 1754817146], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 163805488, "nodes": [1754817114, 1754817078], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "service": "parking_aisle", "tunnel": "yes"}}, {"type": "way", "id": 163805489, "nodes": [1754817088, 1754817091], "tags": {"highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805490, "nodes": [1754817089, 1754817087], "tags": {"access": "yes", "highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805491, "nodes": [1754817098, 1754817099], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 163805492, "nodes": [25902848, 1754817095, 1754817098], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805493, "nodes": [1754817090, 1754817089], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "1", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 163805494, "nodes": [1754817078, 1754817068, 1754817060], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "drive-through", "surface": "asphalt"}}, {"type": "way", "id": 163805495, "nodes": [1754817084, 1754817113, 1754817117], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805496, "nodes": [1754817062, 1754817066, 1754817077], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805497, "nodes": [1754817070, 1754817050, 11703559429], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805498, "nodes": [1754817025, 1754817008, 1754817001, 8807074857, 1754816993], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805499, "nodes": [1754817134, 1754817131, 1754817125, 1754817114], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "drive-through", "surface": "asphalt"}}, {"type": "way", "id": 163805500, "nodes": [1613048527, 7062214668, 3167086912, 3167086914, 1613048571, 3167086913, 1754817017, 1754817008, 1754819505, 1754817006, 1613048552], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 163805502, "nodes": [1754817145, 3451212171, 1754817157, 1754817169, 3451250598, 102213105], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 163805503, "nodes": [1754817115, 1754817116, 1754817117, 1754817118, 1754817119], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163805504, "nodes": [1754817007, 1754817002, 1754817000, 1754816994, 1754816992], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 163805505, "nodes": [1754817172, 1754817168, 1754817167, 1754817166, 6389722415, 1754817169], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 163805506, "nodes": [9559283921, 9559283928], "tags": {"bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 163805508, "nodes": [1754817091, 1754817094, 1754817103, 1754817118, 1754817122, 1754817132], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805509, "nodes": [102215555, 102215556, 2949460868, 102215557, 3077638491], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 163805510, "nodes": [1754817157, 6389722416, 1754817156, 1754817155, 1754817154, 1754817147, 1754817142], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805511, "nodes": [1754817069, 1754817073, 1754817083, 1754817085, 1754817086, 1754817091], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805512, "nodes": [1754817106, 1754817105, 1754817112, 1754817111, 1754817108, 1754817107, 1754817119], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163805513, "nodes": [1754819504, 1754816991, 25902805, 25902804, 1613048541, 1754816996, 1754816997, 1754817002, 1754817003, 1613048552], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805514, "nodes": [1754817193, 1752467528, 1754817194, 1754817188, 25902883, 1752467527, 1754817190], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 163805515, "nodes": [1754817068, 1754817065], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 163805729, "nodes": [8807074868, 1754819484, 1754819491], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805730, "nodes": [8807074819, 25902778, 1754819486, 267271033, 3167086910, 1613048538, 7319929941], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805731, "nodes": [1754819504, 1754816985, 1754819502, 1754816978, 7319929942], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805732, "nodes": [3167086909, 3167086908, 1754819486, 6020619570, 1754816979, 1754819482, 1754819478, 1754819476], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 163805860, "nodes": [1752467529, 1752467531], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 163805861, "nodes": [1754817171, 1754817173, 1754817181, 1754817190, 1754817198, 1754820554, 1754820555, 1754820556, 1754817205], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 164298252, "nodes": [1759501705, 1759501721, 8807074880, 8807074884, 1759501735], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164298253, "nodes": [1759501461, 1759501457, 1759501456, 25902491], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164298255, "nodes": [25902674, 1759501561], "tags": {"access": "no", "highway": "service", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 164298257, "nodes": [1759501675, 1759501671, 1759501654, 8436098462, 1759501603, 1759501597, 1759501559], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 164298266, "nodes": [8580966610, 1759501609, 1759501603, 1759501600, 1759501566], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298268, "nodes": [1759501640, 1759501565], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298270, "nodes": [1759501511, 1759501503], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298271, "nodes": [1759501609, 1759501666, 1759501794, 1719813894], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298272, "nodes": [1759501513, 1759501503, 1759501468, 1223809818], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298273, "nodes": [1759501498, 4701292955, 8580966584, 8580966583, 8580966582, 8580966581, 1759501456, 1759501452, 1223809809], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298274, "nodes": [1759501621, 1759501721, 1759501816], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164298276, "nodes": [8580966590, 1759501498, 1759501501, 25902666, 1759501507, 1759501513], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 164298277, "nodes": [1759501498, 8580966588, 1759501512, 8580966589, 8580966580], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164369260, "nodes": [1760085706, 8464920923, 8464920925, 139977749], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 164369261, "nodes": [1760085706, 4626597062, 1760085708, 63530492], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 164369262, "nodes": [1760085722, 1760085720, 63530471], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369263, "nodes": [139975676, 1760085719, 1760085721, 1760085722], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Miguel \u00c1ngel", "name:etymology:wikidata": "Q5592", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369264, "nodes": [1760085712, 344795459], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 164369265, "nodes": [63530535, 1760085714, 11056722065, 1760085712], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "postal_code": "28010", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 164369266, "nodes": [389139048, 1365197179, 3323948848, 1915012255, 3323948847, 1278838975, 7549719190, 7549719165, 7549719189, 365886564], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369267, "nodes": [1760085679, 3418222088, 1760085674, 25902077, 1760085665, 1760085662, 25902059, 1760085659], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 164369268, "nodes": [1760085663, 1760085662], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 164369269, "nodes": [1760085659, 1760085654, 25901936], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369270, "nodes": [25902152, 1760085686, 1760085679], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369271, "nodes": [1760085677, 1760085680, 1760085688, 25902154], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 164369272, "nodes": [25902152, 1760085684, 8427069639, 1760085682, 1760085679], "tags": {"highway": "service", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369273, "nodes": [1760085734, 25902479, 1759501464, 1359796755], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 164369274, "nodes": [1760085677, 1760085678, 1760085681, 8427069656, 300751453, 25902154], "tags": {"highway": "service", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369275, "nodes": [1493669252, 1760085709, 1223809840, 8427069655, 25902244, 1493669255], "tags": {"access": "no", "highway": "service", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 164369276, "nodes": [1493669252, 1760085717, 1760085718, 1760085723, 1493669255], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369277, "nodes": [25902154, 4349802667, 4349725681, 5242554914, 25902199], "tags": {"bicycle": "yes", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt", "turn:lanes": "|left;through|through;right"}}, {"type": "way", "id": 164369278, "nodes": [1493669255, 1223809843, 25902444, 1223809827, 25902448, 25902445, 25902447], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "surface": "asphalt"}}, {"type": "way", "id": 164369279, "nodes": [25902471, 1760085726, 1760085727, 1760085728, 1760085729, 1760085730, 1760085731, 1760085733, 1760085734], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 164369280, "nodes": [1223809789, 1223809846, 1223809805, 8580966576, 1760085703, 1760085697, 1760085694, 1760085692, 1760085683, 1760085676, 1760085672, 1760085669, 1760085664], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 164369281, "nodes": [1760085665, 1760085664], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 164369282, "nodes": [1760085698, 1760085697], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 164369283, "nodes": [1760085672, 1760085674], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 164369284, "nodes": [1760085688, 300751453, 1760085690], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164369285, "nodes": [1760085683, 1760085684, 1760085686, 8551986256], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369286, "nodes": [1760085687, 1760085689, 1760085691, 1760085692], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 164369287, "nodes": [1760085656, 1760085658, 4701287016], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 164369288, "nodes": [1760085670, 1760085671, 1760085673, 1760085675, 1760085676], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 164369289, "nodes": [4701287016, 1760085668, 1760085671, 1760085687, 1760085690, 1760085693, 5242551249], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 165468281, "nodes": [26211577, 2466305329, 26211576], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 165468282, "nodes": [27508174, 8480879044, 8480879043, 27508173], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "surface": "asphalt"}}, {"type": "way", "id": 165468283, "nodes": [26211577, 1500124657, 5425359850], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 165468284, "nodes": [338944965, 11645339788, 11645339808, 11645339809, 1770052230, 1770052233, 2450250435, 4108431399, 4108431398, 2450250433, 1770052231, 3633377350], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 165468884, "nodes": [1770052226, 1770056847, 8430180230, 26211577], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 167816261, "nodes": [1791742029, 1791741989, 1791741985, 1791742021], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 168940598, "nodes": [3802947041, 8587019146, 8587019147, 3802947042, 3802947043, 1505081204, 3802947052, 1505081209, 3802947060, 3802947075, 1505081224, 3802946094, 3802946100, 81605088, 8789170595, 3802946124, 3802946123, 3802946127, 3802946130], "tags": {"highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 168940601, "nodes": [4237239318, 1801212173, 1801212174], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 168940602, "nodes": [1801212178, 1801212179, 1439702944], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 172382356, "nodes": [1486142511, 26578947], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 172382359, "nodes": [26578947, 1537917872, 11612987880, 26579027], "tags": {"cycleway": "shared_lane", "foot": "yes", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 172382362, "nodes": [1486142510, 1486142511], "tags": {"highway": "service", "lit": "24/7", "maxspeed": "50", "name": "Solo Bus - A6", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 172550738, "nodes": [26578960, 1486142510], "tags": {"highway": "service", "lit": "yes", "maxspeed": "50", "name": "Solo Bus - A6", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 172550739, "nodes": [1486142497, 1486142510], "tags": {"highway": "service", "lanes": "2", "lit": "yes", "maxspeed": "20", "name": "Intercambiador de Moncloa - Acceso Princesa", "oneway": "no", "psv": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 174851637, "nodes": [1855027673, 25906112], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Fernando VI", "oneway": "yes", "postal_code": "28004", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 174851639, "nodes": [1855027664, 25906216, 25906212, 25906274, 326196041, 25906275, 4951747255, 25906287, 25906431], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Pelayo", "name:etymology:wikidata": "Q14655", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 174852230, "nodes": [1855037742, 21990705, 1855037740], "tags": {"highway": "residential", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 174852232, "nodes": [1855037740, 21990704, 7159758624, 21990703, 21990702, 4260707794, 21990700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de San Mateo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 176328230, "nodes": [5003912688, 8567142845], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 176328231, "nodes": [1868668318, 1868668325], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "level": "-1;0", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328232, "nodes": [1868668306, 1868668309], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328233, "nodes": [2057627664, 1868668345], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328234, "nodes": [1868668323, 1868668316], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "level": "-1;-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328236, "nodes": [1868668292, 1868668298], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "metal", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328237, "nodes": [1868668330, 8822174612, 8385594960, 8388879244], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328238, "nodes": [1486142497, 1868668302, 8388879235], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador de Moncloa - Acceso Princesa", "oneway": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 176328240, "nodes": [1868668327, 7549842319, 7549842317, 1868668330], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176328241, "nodes": [1491286100, 8822145846], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176394436, "nodes": [1491286098, 1868668338], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176394437, "nodes": [1868668345, 1491286102], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 3", "oneway": "no", "tunnel": "yes"}}, {"type": "way", "id": 176394442, "nodes": [7635263894, 1869313926], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 176407740, "nodes": [1869400496, 1869400494], "tags": {"conveying": "yes", "handrail": "yes", "highway": "steps", "incline": "up", "level": "0;-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 176407742, "nodes": [1869400492, 1869400491], "tags": {"conveying": "yes", "handrail": "yes", "highway": "steps", "incline": "up", "level": "0;-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 176407743, "nodes": [1869400489, 1869400490], "tags": {"conveying": "yes", "handrail": "yes", "highway": "steps", "indoor": "yes", "layer": "-2", "level": "-1;-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 176407745, "nodes": [1869400493, 1869400495], "tags": {"conveying": "yes", "handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "level": "-1;-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 181982237, "nodes": [394684528, 2053142667, 25902675], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 182096890, "nodes": [27520754, 1924384869], "tags": {"highway": "residential", "name": "Galer\u00eda de Vallehermoso", "surface": "asphalt"}}, {"type": "way", "id": 183402535, "nodes": [1179021817, 1179021807, 1179021923, 4110020845], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 184882186, "nodes": [60030240, 8583878999, 5422404799, 60030252], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 187020465, "nodes": [291274693, 8155107993, 8155107991, 8155107990, 291274695], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Felipe el Hermoso", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 187020466, "nodes": [291274698, 291274700], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 187020467, "nodes": [291274695, 291274698], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Marqu\u00e9s de la Romana", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 187020468, "nodes": [291274700, 291274693], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Balmes", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 188756288, "nodes": [1993774988, 1993774990, 1993774992], "tags": {"highway": "steps"}}, {"type": "way", "id": 188756722, "nodes": [1993783534, 1993785065, 3455857380, 1993783531], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 188756729, "nodes": [1993784294, 3455857416, 1993785607, 5553995269, 4260545533], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 188756791, "nodes": [1993785607, 1993785068, 1993785065, 3455857363, 3455857353, 3455857346, 3455857342, 3455857340, 3455857335, 3455857334], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 188756825, "nodes": [3578397074, 1993791271, 8483828957, 1993791274, 8567664573, 1993790417], "tags": {"highway": "footway"}}, {"type": "way", "id": 188756835, "nodes": [1993791871, 8483828956, 1993791868, 1993791874], "tags": {"highway": "footway"}}, {"type": "way", "id": 188757637, "nodes": [1993796499, 4131272796], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "no", "name": "Calle Aravaca", "name:etymology:wikidata": "Q26203094", "ramp": "no", "step_count": "60", "surface": "concrete"}}, {"type": "way", "id": 188757652, "nodes": [150760339, 6238548037, 8707182062, 1993796499], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle Aravaca", "name:etymology:wikidata": "Q26203094"}}, {"type": "way", "id": 188763287, "nodes": [1993852784, 3232901620, 3232901619, 1993852772, 11645339770, 1993852780, 1993853730, 2900420521, 1993852773, 3232901617, 1993852782, 1993852779, 3232901606, 1993852774, 1993854812, 1993852777, 1993852775, 3232901594, 2503134762], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 188763289, "nodes": [1993853733, 3232901623], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 188763338, "nodes": [153115916, 1993854810, 3232901603, 3232901602, 1993854812], "tags": {"highway": "path", "lit": "no", "surface": "compacted"}}, {"type": "way", "id": 189530733, "nodes": [2001290905, 2001290935, 2001290929, 2001290907, 2001290897, 2001290875, 2001290841, 2001290885, 2001290903, 2001290877, 2001290855, 2001290849, 2001290825, 4108431409, 8703242765, 4108431408], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 189530736, "nodes": [2001290866, 2001290831, 2001290925, 2001290937], "tags": {"highway": "service"}}, {"type": "way", "id": 189530738, "nodes": [2001290962, 2001290940, 3224866056, 2001290942, 2001290965], "tags": {"highway": "service"}}, {"type": "way", "id": 189530740, "nodes": [2001290867, 3224866175, 2001290962, 2001290832, 2001290905], "tags": {"highway": "service"}}, {"type": "way", "id": 189530742, "nodes": [2001290905, 2001290878, 2001290928, 2001290934, 2001290966, 2001290949, 2001290971, 2001290895, 2001290906, 2001290898, 3575526156, 3575526157, 3575526159, 3575526160, 3575526161], "tags": {"highway": "service"}}, {"type": "way", "id": 189530745, "nodes": [3224866014, 3224866001, 3224865990, 3224865978, 3224859943], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 189530746, "nodes": [2001290855, 2001290848], "tags": {"highway": "service"}}, {"type": "way", "id": 189815053, "nodes": [2004157552, 4270693567, 2004157540], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 189815055, "nodes": [2004157622, 2004157544, 2004157571, 2004157553, 2004157552, 2004157550, 2004157549, 2004157564, 2004157561], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 189815060, "nodes": [11200863918, 11343888027, 3594827145], "tags": {"highway": "service", "lit": "no", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 189815061, "nodes": [2004157577, 2004157611, 2004157583, 2004157566, 2004157618, 2004157545, 2004157541, 2004157607, 2004157547, 2004157609, 2004157557, 2004157577], "tags": {"access": "private", "highway": "service", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 189815820, "nodes": [2004177617, 2004177684, 2004177668, 2004177640, 2004177680], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 189815823, "nodes": [2004177699, 2004177634, 2004177668], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 189815825, "nodes": [2004177693, 2004177678, 2004177699, 2004177658, 2004177696], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 194171818, "nodes": [8936377435, 1465071295, 1465071290], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 194800474, "nodes": [1465071297, 2053099692], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 194801948, "nodes": [1754817193, 2053142632, 2053142638, 2053142690, 1752467529], "tags": {"highway": "footway", "lit": "yes", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 195168701, "nodes": [55138174, 4242179828, 8715771071, 8715771072, 55161034, 4307340622, 4307340623, 55161059], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 195293127, "nodes": [1491286100, 2057627664], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 195664261, "nodes": [98960226, 9157684323, 98958620, 5966610985, 5966607284, 98958915], "tags": {"cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 195664262, "nodes": [98958915, 1016578253], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 195664263, "nodes": [98959391, 9165503378, 9165503377, 1591330227, 9169688102, 98958748, 98959044, 9165505527, 9169688103, 5214866740, 98959052], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Lulio", "name:etymology:wikidata": "Q193660", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 198644581, "nodes": [25552446, 1950481125, 25552425], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "primary", "lanes": "6", "lanes:backward": "4", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 199606464, "nodes": [2095964649, 8590161657, 2095964645, 3245280178, 2095964619, 2095964636, 2095964634, 3245280184, 3245280187, 3245280189], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 199606465, "nodes": [2095964643, 2095964649, 8590161656, 2095964613, 3245280181, 2095964614, 3245280185, 2095964638, 2095964647, 3245280193, 3245280194, 3258766780, 3245280192, 2095964615, 2095964621], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 199606466, "nodes": [2095964625, 5214866729, 9999692409, 2656162699], "tags": {"access": "no", "highway": "service"}}, {"type": "way", "id": 202214468, "nodes": [26067268, 2584038766], "tags": {"access": "no", "highway": "living_street", "name": "Calle de Qui\u00f1ones", "oneway": "no", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 206020945, "nodes": [2160260298, 32604454, 1203847226, 32602925], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 206020946, "nodes": [32602925, 3802946104, 1801212180, 32602929], "tags": {"destination": "Paseo de la Castellana;Raimundo Fern\u00e1ndez Villaverde", "foot": "no", "highway": "primary", "lanes": "2", "maxheight": "4.5", "maxspeed": "50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 206020947, "nodes": [2160260306, 8483713104, 3802946095, 3802946104, 2160260312, 3802946118, 8419169895], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 214456050, "nodes": [2239998657, 2239998654], "tags": {"access": "private", "highway": "service", "source": "PNOA", "source:date": "2010"}}, {"type": "way", "id": 214456057, "nodes": [2239998718, 2239998716, 2239998704, 2239998702], "tags": {"access": "private", "highway": "service", "source": "PNOA", "source:date": "2010"}}, {"type": "way", "id": 218518336, "nodes": [2277540507, 3594827094], "tags": {"highway": "service", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "surface": "asphalt"}}, {"type": "way", "id": 218518364, "nodes": [2277540555, 4270693566], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 218518374, "nodes": [2277540534, 2277540538, 2277540544, 3594827106, 2277540565], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 218518377, "nodes": [2001290872, 2277540509, 3232906596, 2277540518, 2277540515, 3232906595, 2277540512, 4270693565, 2277540507], "tags": {"access": "private", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 219134989, "nodes": [2283339292, 2283339298, 11533572598, 2283339299], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 219137725, "nodes": [2283361215, 5214866727, 2283361214], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137726, "nodes": [2283361227, 2283361228], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137727, "nodes": [2283361240, 2283361218, 2283361246, 2283361245], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137728, "nodes": [2283361247, 2283361213], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137729, "nodes": [2283361235, 3428476984, 2283361226], "tags": {"covered": "yes", "highway": "service", "layer": "-1", "surface": "asphalt"}}, {"type": "way", "id": 219137730, "nodes": [98956258, 9157684325, 98960226], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219137731, "nodes": [2283361244, 2283361230], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137732, "nodes": [2283361243, 2283361239], "tags": {"highway": "footway"}}, {"type": "way", "id": 219137733, "nodes": [2283361248, 2283361219, 2283361242, 2283361216], "tags": {"highway": "footway"}}, {"type": "way", "id": 219141072, "nodes": [339391878, 2972134285, 5970506942, 5963987032, 26412916], "tags": {"alt_name": "Bravo Murillo", "cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219141073, "nodes": [26413061, 5970506943, 2283386640, 5963987031, 26413086], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 219141079, "nodes": [26413048, 26413061], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 222958779, "nodes": [2319054900, 2319054902, 4470479437, 4470479439, 4470479440, 4470479438, 4470479436, 4470479435, 4470479433, 4470479432, 4470479423], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 229065400, "nodes": [2377018029, 1465071296], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2010", "surface": "paving_stones"}}, {"type": "way", "id": 229065403, "nodes": [2377018046, 2377018041, 2377018036], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 229065404, "nodes": [2377018023, 2377018040, 2377018042], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "tunnel": "yes"}}, {"type": "way", "id": 235613024, "nodes": [2436859063, 582754412, 1140217842, 32602935], "tags": {"cycleway:lanes": "none|none|none|shared_lane", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "maxspeed:lanes": "50|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|left;through|through;right|right"}}, {"type": "way", "id": 235613027, "nodes": [98727626, 8419397882, 2436859064, 8398453282], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes"}}, {"type": "way", "id": 235613029, "nodes": [98722468, 8476816346, 8401038657, 8572249332, 8398199082, 8476816345, 98722469, 8476816344, 3951439714, 98722470, 3951439730], "tags": {"highway": "pedestrian", "layer": "-1", "name": "Calle Francisco Balseiro", "surface": "asphalt"}}, {"type": "way", "id": 236843641, "nodes": [2448104604, 2448104590, 11645324641, 2448104614, 2448104592], "tags": {"highway": "service"}}, {"type": "way", "id": 236843642, "nodes": [2448104587, 3575378548, 2448104589], "tags": {"highway": "service", "incline": "down"}}, {"type": "way", "id": 236843645, "nodes": [2448104609, 3575378549, 2448104599], "tags": {"highway": "service"}}, {"type": "way", "id": 236843646, "nodes": [2448104605, 11645324644, 2448104610, 2448104608, 2448104598, 2448104600, 2448104585, 2448104611, 11645324643, 2448104588], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 236863537, "nodes": [2448267178, 2448267182, 11645339815, 11645339809], "tags": {"highway": "service"}}, {"type": "way", "id": 236863539, "nodes": [2448267215, 11645339802], "tags": {"highway": "footway"}}, {"type": "way", "id": 236863540, "nodes": [2448267220, 2448267191, 2448267224], "tags": {"highway": "service", "incline": "down"}}, {"type": "way", "id": 236866767, "nodes": [2448293752, 2448293751], "tags": {"highway": "service"}}, {"type": "way", "id": 236866769, "nodes": [1320787269, 11381177032], "tags": {"access": "no", "highway": "service"}}, {"type": "way", "id": 236866770, "nodes": [2448293763, 2448293751, 2448293772], "tags": {"highway": "service"}}, {"type": "way", "id": 236866773, "nodes": [3633377350, 2448293758, 2448352637, 2448293759, 2448293769, 2448293782, 2448293760, 2448293770, 2448293783, 2448293761, 2448293763, 2448293772, 2448293759], "tags": {"highway": "service"}}, {"type": "way", "id": 236873438, "nodes": [2448352629, 2448352628], "tags": {"highway": "service"}}, {"type": "way", "id": 236873439, "nodes": [2448352646, 2448352635, 2448352623, 2448352633, 2448352645], "tags": {"highway": "service"}}, {"type": "way", "id": 236873440, "nodes": [2448352638, 2448352629, 2448352639, 2448352626, 2448352644, 2448352632, 2448352622, 2448352645, 2448352640, 2448352646, 2448352628, 2448352625, 2448352636, 2448352648, 2448352630, 2448352641, 2448352624, 2448352635], "tags": {"highway": "service"}}, {"type": "way", "id": 236873441, "nodes": [2448352637, 2448352643, 2448352627, 2448352638, 2448352620, 2448352631, 2448352637], "tags": {"highway": "service"}}, {"type": "way", "id": 237118034, "nodes": [2450658351, 2450658346], "tags": {"handrail": "no", "highway": "steps", "ramp": "no"}}, {"type": "way", "id": 237118035, "nodes": [2450658329, 2450658345], "tags": {"handrail": "no", "highway": "steps", "ramp": "no"}}, {"type": "way", "id": 237118036, "nodes": [2450658342, 2450658329, 2450658351, 2450658326, 2450658348, 2450658332, 2450658355, 2450658340, 2459088434, 2450658358, 2450658342], "tags": {"highway": "footway"}}, {"type": "way", "id": 237118037, "nodes": [2450658351, 2450658332], "tags": {"highway": "footway"}}, {"type": "way", "id": 237118038, "nodes": [338945080, 2450658346], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 237118039, "nodes": [2450658327, 2450658343], "tags": {"highway": "steps"}}, {"type": "way", "id": 237118041, "nodes": [2450658340, 2450658329], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 237118042, "nodes": [2450658349, 2450658341, 2450658359, 2450658334, 2450658353], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237118043, "nodes": [2450658339, 2450658345], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 237118044, "nodes": [2450658327, 2450658333, 2450658352, 2450658337, 2450658347, 2450658330, 2450658338, 2450658357, 2450658344, 2450658350, 2450658336, 3232900938, 2450658356, 2450658353, 2463314696], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237286814, "nodes": [2452121883, 2450658357, 2452121889, 2452121878], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237286815, "nodes": [2452121887, 2450658347, 2454251086, 2452121879, 3575378535, 3575378538], "tags": {"abandoned:highway": "service", "highway": "service"}}, {"type": "way", "id": 237286816, "nodes": [2452121884, 3102754274, 2454256460, 3232900927, 2452121886], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237458737, "nodes": [2453487276, 2453487278, 3575378542, 2453487277], "tags": {"highway": "service", "incline": "down", "smoothness": "intermediate", "surface": "paving_stones"}}, {"type": "way", "id": 237536561, "nodes": [2450658350, 2454250015, 2452121883, 2452121886, 2454250017], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237536686, "nodes": [2454251087, 2450658344], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237536687, "nodes": [2454251086, 2454251085, 2452121888], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237537146, "nodes": [3575383403, 3232901584, 2454256447, 2450658349, 2503134759, 2454256462, 3232901574, 2454256464, 2454256466, 2454256455, 3232900956, 3232900953, 2454256456, 2454256449, 2454256450, 2454256451, 2454256444, 3232900936, 2454256445, 3232900932, 2454256457, 2454256459, 2454256460, 3232900925, 2454256452, 2454256453, 2454259803, 2454259830, 2454259822, 2454256454, 2454259815, 2454259802, 2454259809, 2454259820, 2454259805, 2454256448, 2454259829, 3232900924, 2454256453], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237537398, "nodes": [2454259802, 153116020], "tags": {"handrail": "yes", "highway": "steps"}}, {"type": "way", "id": 237537399, "nodes": [2454259830, 2454259793, 2454259820], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 237537400, "nodes": [2454259805, 2454259818, 2454259803], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 237537401, "nodes": [2454259822, 2454259807, 2454259809], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 237537402, "nodes": [2454259829, 2454259818, 2454259793, 2454259807, 2454259815], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 237537549, "nodes": [2454261074, 2454261071, 2454261072, 2454261073, 2454261069, 2454261070, 2454261068, 3575378541, 2454261067], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 237537962, "nodes": [2454264232, 2454264235, 2454264233, 2450658342], "tags": {"highway": "footway"}}, {"type": "way", "id": 237537963, "nodes": [2454264234, 2450658343], "tags": {"highway": "steps"}}, {"type": "way", "id": 238037207, "nodes": [2459056924, 2459056925, 2459056919, 11381176985, 2459056920], "tags": {"highway": "service", "lit": "yes", "maxspeed": "20", "oneway": "yes"}}, {"type": "way", "id": 238037208, "nodes": [2459056927, 11381176983, 2459056922, 2459056923, 2459056916, 2459056917, 2459056918], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 238040976, "nodes": [2454264234, 2459088434], "tags": {"highway": "footway"}}, {"type": "way", "id": 238048663, "nodes": [2459056915, 2459056926], "tags": {"highway": "service", "layer": "-1", "maxspeed": "20", "name": "Calle Profesor Mart\u00edn Lagos", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 238048664, "nodes": [1320787649, 11381176992, 4536044173, 2448107792, 2454261074, 2462922547, 2459056927, 2459056915], "tags": {"highway": "service", "lit": "yes", "maxspeed": "20", "name": "Calle Profesor Mart\u00edn Lagos", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 238457936, "nodes": [11381176973, 2462922519, 2462922549, 2462922535, 2462922537, 11381176995], "tags": {"highway": "footway"}}, {"type": "way", "id": 238457937, "nodes": [2462922515, 2462922539, 2462922543, 2462922527, 11381137931], "tags": {"handrail": "yes", "highway": "footway", "ramp": "no", "step_count": "8"}}, {"type": "way", "id": 238457938, "nodes": [11381137925, 3575366942, 3575366941, 2462922551], "tags": {"handrail": "no", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "step_count": "19", "surface": "unhewn_cobblestone", "tactile_paving": "no"}}, {"type": "way", "id": 238501043, "nodes": [3575378535, 3575378536, 3575378537, 3575378539, 2452121876, 3575378540, 3575378545, 2463314696], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 238830805, "nodes": [26211541, 27516658, 27516635], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 238830806, "nodes": [26211532, 1320787444], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 238830807, "nodes": [26211537, 4519701710, 1500124568, 4519701709, 1500124589, 4519701708, 26211539], "tags": {"foot": "no", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Cristo Rey", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left;through|through"}}, {"type": "way", "id": 238831468, "nodes": [2466312898, 8430180228, 27516626], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 238831469, "nodes": [32630176, 1203847174, 2466312902, 32604444], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "3", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|right"}}, {"type": "way", "id": 238831470, "nodes": [2466312891, 2466312892], "tags": {"highway": "service"}}, {"type": "way", "id": 238831471, "nodes": [2160260298, 2466312901, 2466312895, 2466312897, 2466312905], "tags": {"highway": "residential", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "postal_code": "28003"}}, {"type": "way", "id": 238831472, "nodes": [613053624, 2466312894, 6277264556, 2466312893], "tags": {"highway": "footway", "surface": "tartan"}}, {"type": "way", "id": 238831473, "nodes": [338728189, 32604445, 32604452], "tags": {"foot": "no", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 238831474, "nodes": [2466312898, 2466312896, 2466312889, 2466312904, 2466312906], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Guzm\u00e1n el Bueno", "oneway": "yes", "postal_code": "28003", "sidewalk:left": "no", "sidewalk:right": "separate", "surface": "asphalt"}}, {"type": "way", "id": 238871447, "nodes": [2466689596, 8213572609, 8213572608, 706689901], "tags": {"highway": "tertiary_link", "lanes": "2", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes"}}, {"type": "way", "id": 238871451, "nodes": [29739636, 11218056294, 8537288335, 1505081139, 29739646, 2466689592], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Pablo Aranda", "oneway": "yes", "postal_code": "28006", "source": "Bing", "source:name": "Catastro", "source:oneway": "PNOA"}}, {"type": "way", "id": 238871452, "nodes": [2466689596, 3457902046, 142222546], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 238871453, "nodes": [2466689611, 2466689596], "tags": {"destination:lanes": "Joaqu\u00edn Costa|Joaqu\u00edn Costa|Plaza de la Rep\u00fablica Argentina|Plaza de la Rep\u00fablica Argentina", "highway": "primary", "lanes": "4", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "turn:lanes": "through|through|slight_right|slight_right"}}, {"type": "way", "id": 238871456, "nodes": [142222546, 3457902044, 1311052162, 8213572612, 142222548, 142222549, 8213572613, 142222551], "tags": {"foot": "no", "highway": "primary", "lanes": "2", "maxspeed": "40", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 238871457, "nodes": [339391803, 98746811], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Reina Mercedes", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 238871458, "nodes": [81473206, 10927499985, 3971975785, 3971975783, 3971975781, 3971975779, 3971975777, 3971975774, 98746256, 3971975771, 3971975770, 81604776, 98746257, 4251839614, 82499052, 28096050, 82499215, 4884569835, 81581404, 81605099, 1654250240, 98746258], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle del Aviador Zorita", "old_name": "Calle del Comandante Zorita", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 238871459, "nodes": [989204862, 8427069633, 1505081196], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense"}}, {"type": "way", "id": 240204356, "nodes": [2479576398, 8513737407, 937660052, 1505081023, 26578966], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "maxspeed:type": "sign", "name": "Calle del Arcipreste de Hita", "name:etymology:wikidata": "Q434597", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 241758961, "nodes": [3426732176, 2493539694, 2493539665, 2493539670, 2493539685, 2493539671, 2493539704, 2493539678, 2493539698, 2493539693, 2493539679], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 241758962, "nodes": [1505081044, 11280466189], "tags": {"bus": "designated", "highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes", "psv:lanes": "yes|no", "surface": "asphalt"}}, {"type": "way", "id": 241758964, "nodes": [26579082, 3946934259, 3946934258, 3253320376, 8577075135, 26579083], "tags": {"highway": "trunk", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through|through|through|right"}}, {"type": "way", "id": 241758970, "nodes": [937660053, 1067565849], "tags": {"access": "designated", "highway": "service", "lit": "yes", "oneway": "yes", "psv": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 241760427, "nodes": [2493553221, 2493553207, 2493553219], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 241766369, "nodes": [8415878095, 8415878097, 8415878096, 8415878090, 8415878089, 8415878088, 8415878087, 581287840], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 241766370, "nodes": [581287840, 8415878091, 8415878092, 8415878093, 8415878094, 8415878082], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 241772693, "nodes": [27508173, 1770052220, 27517507], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 241772694, "nodes": [27517506, 4630240427, 27517505, 11690755764, 27517499, 1770052225, 11690755767, 11690678657, 27517498], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Dom\u00e9nico Scarlatti", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 241810251, "nodes": [2493963716, 3632136772, 2493963671, 2493963663], "tags": {"highway": "residential", "name": "Calle Marceliano Santa Mar\u00eda", "name:etymology:wikidata": "Q5995562", "oneway": "yes"}}, {"type": "way", "id": 242546585, "nodes": [26578944, 26578954], "tags": {"foot": "no", "highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28008", "smoothness": "excellent", "surface": "asphalt", "width": "12"}}, {"type": "way", "id": 242865933, "nodes": [2503134759, 2503134757, 3232901587, 3232901588, 2503134768, 3232901592, 3232901596, 2503134766, 2503134764, 1993854812], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 243497102, "nodes": [141919137, 141923239, 11563811461, 25902151, 1760085695, 25902152], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Zurbar\u00e1n", "name:etymology:wikidata": "Q209615", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 245372817, "nodes": [2525814124, 4548387428, 5777199721, 2525814076], "tags": {"highway": "service", "lit": "no", "service": "parking_aisle", "surface": "paving_stones"}}, {"type": "way", "id": 245372820, "nodes": [1502697018, 3426732173], "tags": {"cycleway:both": "no", "highway": "secondary_link", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de S\u00e9neca", "oneway": "no", "sidewalk": "right", "source": "gps tracks", "surface": "asphalt"}}, {"type": "way", "id": 245372822, "nodes": [26025882, 4470285278, 1596698122, 26025883, 1596698121, 26025906, 1596698119, 26025884, 11225755069, 1596698117, 26025887], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 245723747, "nodes": [1501227833, 1501227820, 22016262], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 245723748, "nodes": [1759501673, 25902692], "tags": {"bus:lanes": "yes|no|no", "cycleway:both": "no", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 245723750, "nodes": [63530471, 63530544, 63530535], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 245723751, "nodes": [1759501675, 25902703, 1719813695, 1759501593, 8440634391, 1759501564, 394684646], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 245723753, "nodes": [1501227827, 22022227], "tags": {"highway": "residential", "name": "Glorieta de Bilbao", "name:etymology:wikidata": "Q5571511", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 245725047, "nodes": [1752467528, 2528643105, 2528643108, 25902886], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 245725048, "nodes": [1752467528, 25902884], "tags": {"access": "no", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 246282528, "nodes": [1505081196, 142194318], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 246282530, "nodes": [81466844, 340225432, 989204862], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense"}}, {"type": "way", "id": 246284023, "nodes": [706689901, 142227645, 1311052154, 142227647, 8464920919, 1377881561, 142227648, 8224947183, 8224947184, 706689902], "tags": {"highway": "tertiary_link", "lanes": "2", "lanes:psv": "1", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 246443497, "nodes": [1320787127, 2534882389], "tags": {"access": "private", "highway": "service", "name": "Calle Ib\u00e1\u00f1ez Mart\u00edn", "official_name": "Calle Ministro Ib\u00e1\u00f1ez Mart\u00edn"}}, {"type": "way", "id": 248343750, "nodes": [25935058, 2283339296, 292093353, 292093358, 25935033, 1660871699, 6441681749, 1211171046, 25934829], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 248905968, "nodes": [141885133, 298154188, 9157684329, 298154271, 298153229], "tags": {"highway": "living_street", "name": "Plaza de Olavide", "name:etymology:wikidata": "Q27947826", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 249767952, "nodes": [60018334, 98955810, 9999997218, 2972941210, 27523108], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Viriato", "name:etymology:wikidata": "Q331889", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 251956454, "nodes": [2480629206, 2480629208, 8577075130], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 251971166, "nodes": [858587194, 25935540], "tags": {"cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 251971168, "nodes": [25935540, 1179022182, 25935516], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 252386898, "nodes": [100891151, 11218056268, 8451203579, 100891152, 11218056265, 25902680, 11218056271, 11218056270, 11218056269, 11218056272, 674449756], "tags": {"cycleway:right": "no", "foot": "yes", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 252386899, "nodes": [100891151, 100890241], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 252387150, "nodes": [1759501461, 2053142625, 25902456, 25902452], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk:left": "no", "sidewalk:right": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 252387151, "nodes": [25902491, 1223809811, 25902490, 25902450], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv:lanes:forward": "designated|yes|yes", "surface": "asphalt"}}, {"type": "way", "id": 252387372, "nodes": [25902432, 1223809819, 25902431, 1223809796], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 252387373, "nodes": [25902450, 2584444267, 2584444268, 2584444270, 2584444269, 25902432], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 252387427, "nodes": [1493669242, 25902055, 25902058, 300751449, 25902124], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 252387428, "nodes": [1760085659, 1760085657, 8427069640, 1278839008, 4467070251, 1915012264, 25901936], "tags": {"access": "no", "highway": "service", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 252387586, "nodes": [2584446944, 25901826, 25901838, 3418035816, 3587032531, 3418035823, 25901895, 3418035825, 25901925], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 255327642, "nodes": [98946911, 616263143, 1654250223, 1654250206, 98944892, 1654250199, 1613048689, 98945969, 1613048676, 98946910, 1613048599, 1613048583, 6020619574, 1613048577, 1613048554, 1613048558, 60030404, 9266993697, 60030397, 9266993695, 4307136109, 60030257], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Ponzano", "name:etymology:wikidata": "Q1588564", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 255825106, "nodes": [60017474, 8807066201, 3167086912, 8807066200, 8451215618, 6020619572, 2615210656], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|through;left|through|through|through"}}, {"type": "way", "id": 255825107, "nodes": [1613048569, 5345796054, 6020619573, 1613048577], "tags": {"highway": "primary", "lanes": "4", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;left|through|through|through"}}, {"type": "way", "id": 256359877, "nodes": [2620197153, 2620197152, 2620197150, 2620197155], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 256359878, "nodes": [907465931, 2620197153], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 256359881, "nodes": [2620197153, 907465923], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 258516120, "nodes": [768765508, 768765510, 4331642399], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 258516122, "nodes": [25934832, 2973015552, 25934841], "tags": {"destination": "Gran V\u00eda", "highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 258516123, "nodes": [25934841, 2973015555, 25934833], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 258516124, "nodes": [1666720773, 25934855, 25934849, 25934841], "tags": {"highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 258823040, "nodes": [989278226, 1314938264], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 258823041, "nodes": [1314938264, 4659927138, 4659927119, 1314916924], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 258823042, "nodes": [1314938266, 2641385220, 1314938275], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 258823043, "nodes": [1314938275, 2671594369, 2641385221], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046"}}, {"type": "way", "id": 260128911, "nodes": [2656162699, 3386198916], "tags": {"access": "no", "highway": "service", "layer": "-1", "tunnel": "building_passage"}}, {"type": "way", "id": 260128912, "nodes": [2095964640, 8590161655, 2095964629, 2095964623, 2095964627, 8590161654, 8590161653, 5624718759, 5624718760, 2095964643, 2095964629], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 260650240, "nodes": [2661689879, 4417323880], "tags": {"highway": "footway", "motor_vehicle": "no", "name": "Calle de Esquivel"}}, {"type": "way", "id": 260657915, "nodes": [3096525895, 3096525886], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 261560485, "nodes": [25902798, 1613048525, 25902804, 8807074861, 1754820534, 1754817055, 1754817062, 1754817069, 1754817117, 1754817132, 25902862, 25902883, 351923288], "tags": {"highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261560486, "nodes": [25902895, 9354013613, 339636378], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 261560487, "nodes": [25902806, 2053142652, 1613048541, 1613048524], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261560488, "nodes": [25902720, 1759501491, 1759501488, 25902722, 1759501463, 1759501459, 25902491], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 261560489, "nodes": [565714241, 1752467649, 8436098460, 1336935943, 565714239, 1152699053, 565714235, 1752467633, 565714236, 25902923], "tags": {"access": "no", "highway": "service", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 261560490, "nodes": [25902800, 25902801], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 261734165, "nodes": [2673302088, 1500124593, 5425359853, 26025901, 1500124610, 26211539], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right|right"}}, {"type": "way", "id": 261734168, "nodes": [2673302089, 8430180229, 27516635], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 261739730, "nodes": [2673345634, 1515303874], "tags": {"access": "bus", "bus": "designated", "highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 262302248, "nodes": [2679640393, 25902485], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 262302249, "nodes": [2679640383, 2679640389, 2679640393, 2679640395, 2679640396, 2679640394], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 262302251, "nodes": [2679640387, 2679640386], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 262302252, "nodes": [2679640386, 2679640389], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 262302253, "nodes": [1490070885, 2679640386], "tags": {"highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 262302254, "nodes": [25902468, 2679640392, 25902469], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "surface": "asphalt"}}, {"type": "way", "id": 262302255, "nodes": [25902468, 2679640391, 2679640390, 2679640388], "tags": {"highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 262951803, "nodes": [25906117, 2685986817], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 263173480, "nodes": [2688019420, 2688019417, 2688019418, 2688019419, 100892261], "tags": {"admin_level": "9", "boundary": "administrative", "foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt", "turn:lanes": "through|through"}}, {"type": "way", "id": 263173483, "nodes": [2688019416, 11097973983, 2688019425, 2688019426], "tags": {"goods": "no", "hgv": "no", "highway": "primary_link", "layer": "-1", "maxheight": "3.5", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 263173484, "nodes": [2688019426, 2688019427, 11223357757, 2688019428], "tags": {"highway": "primary_link", "lanes": "2", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 266731687, "nodes": [674449756, 25902674], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 271031276, "nodes": [4414962284, 3162003417, 2759785958], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 271031277, "nodes": [7622690579, 7622690580, 2759786014, 2759786082, 2759786017, 2759786018, 2759786020, 2759786022, 2759786023, 2759786026, 2759786028, 2759786029, 2759786089, 2759786031, 2759786033, 8587890927, 2759786035, 2759786037, 2759786039, 2759786041, 2759786042, 2759786045, 2759786103, 2759786047, 2759786048, 2759786050, 2759786052, 2759786054, 2759786056, 2759786058, 2759786059, 2759786061, 2759786062, 2759786065, 2759786067, 2759786068, 2759786070, 2759786071, 2759786074, 2759786076, 7622690581], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 271031278, "nodes": [2759786077, 7622690581, 2759786078], "tags": {"highway": "service"}}, {"type": "way", "id": 277930859, "nodes": [2823682506, 3594864826], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 277930860, "nodes": [26579028, 7510718610, 1486142532], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 279173800, "nodes": [55161040, 2834191514, 2834191515, 9439650459, 2834191516], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 280434078, "nodes": [21990734, 11377765530, 21990733], "tags": {"highway": "pedestrian", "name": "Calle de Ruiz", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 280538339, "nodes": [2846390859, 2846390880, 2846390883, 2846390861], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 280538340, "nodes": [2846390863, 2846390874, 2846390872, 2846390862], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 280538341, "nodes": [306546511, 2846390864, 2846390868, 2846390871, 2846391015, 2846391018, 2846391016], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 280538342, "nodes": [306547670, 2846390823, 2846390803, 2846389490, 5254188623, 2846389468, 2846389464, 2846389449, 142299877], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 281267231, "nodes": [4062386147, 26058801, 6314674724, 21990745], "tags": {"highway": "residential", "maxspeed": "20", "name": "Corredera Alta de San Pablo", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "sett"}}, {"type": "way", "id": 281267232, "nodes": [21990745, 21990744, 21990743], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Corredera Alta de San Pablo", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 282231731, "nodes": [26067269, 26067270, 25935043], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 282231734, "nodes": [26067269, 11220735884, 26067268, 11220735883, 26067267, 26067266, 26067265], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle del Acuerdo", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 284303855, "nodes": [2283361214, 2283361244, 2283361228, 2283361246, 2283361242, 2880444978], "tags": {"highway": "footway"}}, {"type": "way", "id": 284303856, "nodes": [2283361239, 2283361247, 2283361227, 2283361218, 2283361219, 2880444985], "tags": {"highway": "footway"}}, {"type": "way", "id": 284303857, "nodes": [255099809, 2283361216, 2283361245, 2283361230, 2283361215, 255099811], "tags": {"highway": "service", "lanes": "1", "name": "Plaza del Descubridor Diego de Ord\u00e1s"}}, {"type": "way", "id": 284303858, "nodes": [255099808, 2880444985, 2880444978, 255099809], "tags": {"highway": "service", "lanes": "1", "name": "Plaza del Descubridor Diego de Ord\u00e1s"}}, {"type": "way", "id": 284306464, "nodes": [338728036, 338728098], "tags": {"highway": "tertiary", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 284307767, "nodes": [338728050, 98944239, 338727849, 338727830, 142248303], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 285024847, "nodes": [81581406, 82500132, 8793094958, 8793094959, 81605096], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Cicer\u00f3n", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 285024849, "nodes": [2887179137, 339391801], "tags": {"foot": "yes", "handrail": "yes", "highway": "steps", "incline": "down", "name": "Calle de Cicer\u00f3n", "ramp": "no", "step_count": "47", "surface": "concrete"}}, {"type": "way", "id": 285654888, "nodes": [25935521, 25935523], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 285654891, "nodes": [25935524, 622204582, 5385241358, 858587194], "tags": {"cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 285654896, "nodes": [25935521, 622204586, 3033655161, 25935532], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 286384767, "nodes": [2900420503, 2900420504, 2900420512, 2900420505, 2900420506, 2900420507, 2900420508, 2900420509, 2900420511], "tags": {"highway": "path"}}, {"type": "way", "id": 286384769, "nodes": [1993854812, 2900420522, 2900420523, 2900420524, 3102754271, 3232931177], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 287962827, "nodes": [616226131, 9677517207, 616225755, 5578582707, 2915209116, 1737510771, 2915209129, 2915209137, 1737510772, 2493553207, 616225748, 141860374, 298156454], "tags": {"highway": "footway"}}, {"type": "way", "id": 287962829, "nodes": [2915209118, 2915209116, 2915209117], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 287962830, "nodes": [616226130, 2915209108, 616226132], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 287968337, "nodes": [2915247995, 6314751497, 2915247996], "tags": {"highway": "service", "service": "alley"}}, {"type": "way", "id": 288078340, "nodes": [2916189677, 875774460], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "name": "Calle de Don Quijote", "ramp": "no", "source": "survey", "step_count": "58", "surface": "concrete"}}, {"type": "way", "id": 291204073, "nodes": [3267220581, 2946209735, 2946208329], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 291204074, "nodes": [8428817445, 8428817435, 3606795767, 2946208330, 2946208320, 2946208311, 7934347522, 2946208309, 4110107777, 4110107776, 4110107775, 4110107774, 4110107772, 4110107773, 11281513840], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 291482472, "nodes": [2949460869, 1754817025], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 291482473, "nodes": [102213636, 3451212108, 3451212106, 3451212107, 2949460870, 2949460869], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 292355155, "nodes": [8919225428, 8919225429, 3474142100, 3474142097, 2959128151, 2959128150, 2959128142, 8919225329, 2959128157, 2959128149, 3474142124, 3474142122, 3474142126, 3474142131, 8919159000, 3474142132], "tags": {"highway": "service", "oneway": "no"}}, {"type": "way", "id": 292355156, "nodes": [2959128150, 3474142077, 2959128148], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 292355158, "nodes": [2959128151, 2959128144, 3474142079], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 293601882, "nodes": [2972168636, 2972168637, 8778804412, 11525423827, 2684627325], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 293698609, "nodes": [2972892256, 2972892302, 2972892287, 2972892254, 2972892246, 2972891914, 2972892277, 2972892254], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 293698610, "nodes": [2972891887, 2972892296, 2972892256], "tags": {"foot": "yes", "highway": "service"}}, {"type": "way", "id": 293698611, "nodes": [2972892256, 2972891898, 2972892246], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 293698612, "nodes": [98945384, 4955056580, 98945385, 2972892297, 8778809406, 4955056578, 4955056571, 11201940669, 2972891904, 11201940666, 11201940667, 4955056570, 11201940668], "tags": {"access": "private", "highway": "track", "postal_code": "28003"}}, {"type": "way", "id": 293698619, "nodes": [2972891919, 9998406805, 2972892306], "tags": {"highway": "service", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 293707529, "nodes": [60672559, 2972993213, 2972995634, 2972993226, 60672668], "tags": {"highway": "residential", "lanes": "2", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 293707530, "nodes": [2972995642, 2972993217], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "sidewalk": "both"}}, {"type": "way", "id": 293707531, "nodes": [2972995652, 2972995633, 2972993224, 8583878996, 2972995639, 8583878998, 8583878997, 2972995648, 2972993222], "tags": {"highway": "service", "lanes": "1", "oneway": "yes"}}, {"type": "way", "id": 293707532, "nodes": [2972993217, 3523936294, 2972993231, 2972995634], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "right", "source:name": "survey"}}, {"type": "way", "id": 293707533, "nodes": [60672668, 2972995656], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "sidewalk": "both", "source:name": "survey"}}, {"type": "way", "id": 293707535, "nodes": [2972993232, 60672523], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "surface": "asphalt"}}, {"type": "way", "id": 293707536, "nodes": [2972993232, 1596698092, 60672557, 60672559, 2972995636, 3536931755, 2972993217], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "left"}}, {"type": "way", "id": 293707537, "nodes": [2972995634, 2972995656], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "no", "source:name": "survey"}}, {"type": "way", "id": 293707538, "nodes": [2972995656, 60672670, 2972993229, 2972993232], "tags": {"highway": "secondary", "lanes": "2", "maxspeed": "50", "name": "Calle de San Bernardo", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 293707540, "nodes": [60672670, 11525423849, 2972995637, 2972995644], "tags": {"highway": "footway", "source": "Bing"}}, {"type": "way", "id": 293712004, "nodes": [26067273, 5963987036, 22023361, 674492248, 22023377], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "horse": "no", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 295868040, "nodes": [1868668345, 5003613395], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 295941075, "nodes": [5000631027, 6450370650], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 297732474, "nodes": [26067884, 8577075124], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 299381859, "nodes": [1179022558, 5385239920, 8430090475, 622204583, 25935522], "tags": {"cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 301006776, "nodes": [142294054, 3051151032, 3051152633, 3051152634], "tags": {"highway": "service", "motor_vehicle": "private", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 301602123, "nodes": [298157709, 3056667883], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 302578729, "nodes": [2685986817, 25906118], "tags": {"destination": "Plaza de Chamberi", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 302578730, "nodes": [25906134, 7559826100, 25906117], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 302578731, "nodes": [2685986817, 2685986907, 2685986909, 2685986911, 25906121], "tags": {"cycleway:right": "lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Alonso Mart\u00ednez", "name:etymology:wikidata": "Q573875", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 302578732, "nodes": [25934447, 298148410, 1591330081, 141886481, 5970506950, 4169858409, 141886881, 141917742, 8583469116, 139977763, 3426732097, 5970485000, 3418127834, 4169858412, 139951332], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "6", "lanes:backward": "2", "lanes:forward": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "postal_code": "28010", "source:name": "survey", "surface": "asphalt", "turn:lanes:forward": "left;through|through|through|through"}}, {"type": "way", "id": 302644186, "nodes": [98960185, 9157684233, 9164484343, 9164484295, 9164484296, 98958746, 9164484346, 9164484321, 98959041, 9164484327, 9157684320, 8583469097, 98959947], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Sagunto", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 302782564, "nodes": [102217289, 102213637], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 302782565, "nodes": [102216201, 102217287], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 302782566, "nodes": [3070612941, 102214348], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 302782567, "nodes": [4546196064, 102213638], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 303407841, "nodes": [98949534, 8807066168, 8807066169, 2949460867, 10197766009, 3077638488, 8807066177, 3077638490, 2949460868, 8807066187, 3077638493], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 303407842, "nodes": [1203847146, 33131373, 5784462287, 2972892243, 33131374, 613053062, 26413586], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303407846, "nodes": [101190047, 2493963663, 101190048], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "surface": "asphalt"}}, {"type": "way", "id": 303407847, "nodes": [34408287, 8450352728, 34408339, 34408380, 8458948195, 6934437088, 26413086], "tags": {"bicycle": "yes", "highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones", "width": "3"}}, {"type": "way", "id": 303407849, "nodes": [98728184, 8419397881, 2436859012, 8398453283], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Aranjuez", "name:etymology:wikidata": "Q486792", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 303407852, "nodes": [98945971, 8807066162, 1613048644, 1613048594, 98949532, 1613048587, 1613048570, 8807066199, 2615210656, 6020619571, 8427069634, 7062256620, 60030406, 7062256619, 7062256618, 60030407, 7062256617, 8427069637, 5069264837, 60030259], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Modesto Lafuente", "name:etymology:wikidata": "Q627987", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 303407853, "nodes": [98951271, 98951270, 1654250190, 8427069638, 989205076, 1613048663, 98945971], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Modesto Lafuente", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303407861, "nodes": [102214348, 3451212112, 3451212111, 102214349], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 303407862, "nodes": [102214347, 102217288], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 303407863, "nodes": [102213638, 3451212131, 3451212147, 3451212149, 3451212151, 102213639, 3451212173, 102215153, 3451250603, 102213643], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 303410254, "nodes": [81581404, 4884569836, 81581405, 81580405, 81581406, 81581407], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 303410255, "nodes": [81466846, 3347872584, 3347872569, 2466689651, 989204999, 81466844], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 303459882, "nodes": [102196728, 102195668], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Daniel Urrabieta", "name:etymology:wikidata": "Q627132", "oneway": "yes", "postal_code": "28002", "surface": "asphalt"}}, {"type": "way", "id": 303459883, "nodes": [102195393, 102196857, 102195394, 142191968], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Balvina Valverde", "name:etymology:wikidata": "Q5717120", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 303459884, "nodes": [102196728, 706689929, 102196857], "tags": {"highway": "residential", "name": "Calle de Luis Muriel", "oneway": "yes", "postal_code": "28002"}}, {"type": "way", "id": 303461402, "nodes": [3445429884, 3445429890, 3445429889, 1377881496, 3445429881, 3445429883, 3445429882, 3445429887, 1377881501, 1377881512, 5351263450, 5351263451, 5351263452, 5351263449, 2679640416, 102201209, 5351263455, 5351263453, 5351263454, 102198270, 3078198916, 3078198915, 142281585, 142227648, 3078198914, 1377881551, 3445429886, 3445429888, 139982488, 3445429884], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "segregated": "no", "wikidata": "Q29200152"}}, {"type": "way", "id": 303487047, "nodes": [25903360, 8807074887, 1613048504, 25902798], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left;through|through|through|through"}}, {"type": "way", "id": 304929237, "nodes": [26808565, 11228713086, 26067291], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Duque de Liria", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 304929240, "nodes": [26067294, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Plaza de Cristino Martos", "name:etymology:wikidata": "Q45900966", "postal_code": "28015", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 305077840, "nodes": [4485511526, 4485511528, 4485511530, 3096525887, 3096525893, 3096525886, 3096525884, 2661763376, 2661763378, 301432945], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 305077841, "nodes": [3096525835, 3096525829], "tags": {"highway": "steps", "incline": "down", "source": "PNOA", "source:date": "2010"}}, {"type": "way", "id": 305077842, "nodes": [3096525838, 3096525840], "tags": {"highway": "footway"}}, {"type": "way", "id": 305077843, "nodes": [3096525840, 3096518228], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no"}}, {"type": "way", "id": 305077844, "nodes": [3096525883, 3096525882, 3096525880], "tags": {"highway": "service", "layer": "-1", "maxheight": "2.1", "oneway": "yes", "source": "PNOA", "source:date": "2009", "tunnel": "yes"}}, {"type": "way", "id": 305077845, "nodes": [3096525880, 3096525878, 3096525879, 3096525891], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 305077846, "nodes": [3096525894, 3096525889, 3096525885, 3096525883], "tags": {"highway": "service", "oneway": "yes", "smoothness": "good", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 305077847, "nodes": [3096525900, 3096525909, 287009075, 3096525912, 3096525913], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "smoothness": "excellent", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 305412101, "nodes": [26067881, 7537446001, 7537446002, 7537446000, 1789638280, 55138206, 4285281349, 55161046], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Ventura Rodr\u00edguez", "name:etymology:wikidata": "Q2565889", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 305626739, "nodes": [153115916, 4161783667, 4161783660, 4161783652, 3102754265, 3102754272, 3102754273], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "no", "ramp": "no", "step_count": "68", "surface": "concrete", "tactile_paving": "no"}}, {"type": "way", "id": 305626740, "nodes": [3232900924, 3232900925, 3102754274, 3102754269, 3102754266, 3102754267, 3232900940, 3232900942, 3232900944, 3232900945, 3232900946, 3232900947, 3232900948, 3232900949], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 308253953, "nodes": [142191440, 8464920927, 1752467531, 25902885], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|right"}}, {"type": "way", "id": 308253954, "nodes": [3135450430, 25902900], "tags": {"highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 308253956, "nodes": [3135450430, 3135450432, 142191440], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "psv:lanes": "yes|designated", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 308253957, "nodes": [1752467628, 100881334], "tags": {"highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 308253958, "nodes": [2506590865, 3135450430], "tags": {"highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Joaqu\u00edn Costa", "name:etymology:wikidata": "Q965602", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 308394925, "nodes": [3136816605, 4583258817, 3136816575, 3136816587, 3136816576, 3136816582, 3136816580, 3136816598, 3136816575], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 308394927, "nodes": [3136816587, 3136816580], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 308394932, "nodes": [4437536360, 3308362987, 3136816583], "tags": {"access": "private", "highway": "pedestrian"}}, {"type": "way", "id": 308395523, "nodes": [3136812045, 4536044166, 3136812044, 3136812051, 3136812043], "tags": {"access": "no", "emergency": "yes", "highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 309097671, "nodes": [25906307, 3144095498, 3144095503], "tags": {"highway": "living_street", "maxspeed": "20", "name": "Calle de la Beneficencia", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 309097675, "nodes": [3144095506, 3523904352, 3523904351, 3144095498], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 310136161, "nodes": [25934459, 5214866747, 25906121], "tags": {"highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 310741633, "nodes": [3068189415, 25902947, 1336935947, 25902929, 340228147, 25902923], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 311144366, "nodes": [1613048550, 8807066202, 8807066203, 8807066204, 8807066205, 1613048571], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 311144367, "nodes": [1613048571, 8451215630, 8608388010, 1613048586, 98949534], "tags": {"highway": "tertiary", "lanes": "6", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt", "turn:lanes:backward": "through|through|through;right|right"}}, {"type": "way", "id": 311144369, "nodes": [1754817043, 25902806], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 311144370, "nodes": [1759501705, 8279212876], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 311144372, "nodes": [1613048550, 60017474], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "source:name": "local knowledge", "turn:lanes": "through;left|through|through|through|through;right"}}, {"type": "way", "id": 311144373, "nodes": [101181988, 1613048550], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "6", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "source:name": "local knowledge", "turn:lanes": "through;left|through|through|through|through;right|right"}}, {"type": "way", "id": 311144374, "nodes": [267271033, 8807074900, 60017473, 1613048526, 101181988], "tags": {"highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "source:name": "local knowledge", "surface": "asphalt"}}, {"type": "way", "id": 311144375, "nodes": [4928918414, 4237264571], "tags": {"bicycle": "dismount", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 311144376, "nodes": [3167086910, 3167086911, 1613048526, 3167086909, 1613048518, 3167086907, 1613048510], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 311203095, "nodes": [1759501561, 8436098419, 1759501622, 1759501673], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 313769027, "nodes": [8432952204, 3197987495, 3455857330], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 315271003, "nodes": [3213799206, 3213799205], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 315271004, "nodes": [3213799225, 27514692], "tags": {"highway": "unclassified"}}, {"type": "way", "id": 315271005, "nodes": [3213799228, 3213799226, 3213799225], "tags": {"access": "destination", "highway": "service"}}, {"type": "way", "id": 315271006, "nodes": [3213799226, 3213799214, 3213799210], "tags": {"access": "destination", "highway": "service"}}, {"type": "way", "id": 315271007, "nodes": [3213799205, 3213799204, 3213799213, 3213799216, 3213799210, 3213799203, 3213799200], "tags": {"access": "destination", "highway": "service"}}, {"type": "way", "id": 315551674, "nodes": [100891149, 3216764227, 4575762343, 1474148381, 8555198058, 3437173834, 11223357756, 2688019428], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de L\u00f3pez de Hoyos", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 315551675, "nodes": [100891150, 3419296693, 100891151], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 316018400, "nodes": [98746258, 98946911], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 316018401, "nodes": [3221366174, 3221366175, 28096046], "tags": {"highway": "residential", "name": "Calle de la Bas\u00edlica", "oneway": "yes"}}, {"type": "way", "id": 316187866, "nodes": [3223006167, 3233003275, 4161771901, 150760961, 4131272649, 3233003278], "tags": {"highway": "footway", "lit": "yes", "name": "Calle Jos\u00e9 Antonio Novas", "surface": "concrete:plates"}}, {"type": "way", "id": 316187872, "nodes": [3223002920, 3223002886, 3223002881, 3223002879, 3223002882, 3223002884, 3223002885, 3223002890, 3223002899, 3223002925, 4134040216], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 316187873, "nodes": [3223002945, 3223002950, 3223002951, 3223002952, 3223002953, 3223002954, 4131264328, 3223005967, 3223005968, 3223005980, 3223005982, 3223005984, 3223005985, 3223005986, 3223005983, 3223005976, 3223005974, 3223005975], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 316187874, "nodes": [4131286471, 4131286470, 4131286457, 4131286436, 4131286434, 4131286432, 4131286429, 4131286431, 4131286433, 4131286435, 4131286438, 4131286446, 4131286451, 4131286453, 4131286452, 4131286450, 4131286447, 4131286443, 4131286439, 4131286427, 4131286426, 4131286425, 4131286424, 3223005992, 3223005993, 3223005994, 3223005995, 3223005998, 3223006009, 3223006049, 2004177656, 3223006055, 3223006056, 3223006058, 3223006060, 3223006162, 3223006163, 3223006164, 3223006165, 3223006166, 3223006167], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 316187881, "nodes": [3223005984, 4131264361, 2004157569, 4134118721, 3223005994], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 316187882, "nodes": [3223005968, 4131264347, 2004157595, 3223005970], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 316187884, "nodes": [3601013268, 3601013269, 154818553, 3223005971, 3223005973, 3223005982], "tags": {"highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 316187886, "nodes": [3223006049, 4134118728, 150760987, 3223006051], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 316187887, "nodes": [3223002953, 4131264320, 2004157596, 4134040254, 3223002938], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 316379067, "nodes": [1636560221, 4892388510, 3224859912, 3224859914, 3224859916, 3224859915, 3224859913, 3224859911, 3224859909, 3224859908, 3224859907, 3224859906, 3224859905, 4892388507, 1636560218], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379070, "nodes": [1056095523, 1056095524], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379071, "nodes": [3224865969, 3224859929], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 316379075, "nodes": [2001290875, 1056095524], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379076, "nodes": [4892388519, 4892388520, 4892388721, 4892388722, 4892388723, 4892388724, 4892388725, 4892388726, 4892388727, 3578422044, 3578422045, 3578422046, 3578422047, 3578422048, 3578422049, 3578422052, 3578422053, 8703242765, 3224865994, 3224866026, 3224866028, 3224866032, 3224866033, 1339493657, 3224866036, 3224866038, 3224866173, 3224866175, 3224866183, 3224866196, 3224866211, 3224866239, 3224866248, 3224866249, 3224866247, 3224866246, 3224866245, 3224866243, 3224866206, 3224866192, 3224865976, 3224865968, 3224859950, 3224859946, 11645339868], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 316379077, "nodes": [3224866201, 3224866204, 3224866205, 3224866202, 3224866198, 3224866195, 3224866191, 3224866184, 3224866176, 3224866052, 3224866051, 3224866050, 3224866048, 3224866045, 3224866046, 410623219, 1636560325, 410623220, 4131272767, 1339493362, 4131272771, 4131272773, 4131272776, 4131272792, 4131272798, 10992413029, 10992413030, 10992413046], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 316379078, "nodes": [3224866001, 3224865982, 3224859948], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379081, "nodes": [3224865975, 3224859938, 1056095516], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379082, "nodes": [1056095519, 3224859929, 3224865975, 1056095523], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 316379084, "nodes": [3224865985, 3224865982, 3224865978, 1056095523], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379085, "nodes": [1056095524, 3224865969, 1056095525, 1056095519], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316379086, "nodes": [2001290875, 3224866014, 3224865985, 3224865964, 3224859948, 3224859943], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 316379087, "nodes": [3224859919, 4892388500, 3224859920, 3224859924, 3224859925, 3224859923, 3224859921, 3224859918], "tags": {"highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 316380389, "nodes": [3224876497, 3224876499, 3224876503, 3224876504, 3224876506], "tags": {"highway": "service", "name": "Entrada CENIM"}}, {"type": "way", "id": 316382607, "nodes": [3224893967, 3224893963, 3224893961, 3224893458, 3224893457, 3224893460, 3224893964, 3224893968], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 316451896, "nodes": [340225432, 8566147453, 8423842218, 340225431, 340225381, 3225692037, 340225387, 3225692035, 8255907447, 340225400, 3225692036, 340225409, 340225416, 3225692038, 8284112604, 8284112602, 340225417, 340225421, 8284112605, 8284092959, 8284112600, 8284093000, 340225428, 8284092999, 8284112606, 8284093001, 3225692052, 8284112601, 340225429, 340225375, 8284112603, 8284093002, 340225434, 8566147454, 81466844], "tags": {"access:motor_vehicle:conditional": "customers AND emergency", "bicycle": "yes", "bicycle:source": "enbicipormadrid", "foot": "yes", "highway": "service", "lit": "yes", "moped": "yes", "motorcycle": "yes", "name": "Plaza de Manuel G\u00f3mez-Moreno", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 316456123, "nodes": [3225730034, 3225730033], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 316456124, "nodes": [3225730033, 340225878], "tags": {"highway": "footway"}}, {"type": "way", "id": 316458184, "nodes": [3225747853, 3225747854], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "step_count": "33", "surface": "paving_stones"}}, {"type": "way", "id": 316458185, "nodes": [340225604, 340225458], "tags": {"highway": "footway"}}, {"type": "way", "id": 316458186, "nodes": [3225747851, 3225748464], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "30", "surface": "paving_stones"}}, {"type": "way", "id": 316458187, "nodes": [3225747845, 3225747815], "tags": {"highway": "steps"}}, {"type": "way", "id": 316458188, "nodes": [3225747824, 3225747851], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 316458189, "nodes": [3225747780, 340225452, 3225747778], "tags": {"highway": "footway"}}, {"type": "way", "id": 316458190, "nodes": [3225747848, 3463244168], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 316458192, "nodes": [3225747785, 3225747842, 3225747845, 3225747848, 9152508754], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 316459916, "nodes": [3225763611, 3225747815], "tags": {"highway": "footway"}}, {"type": "way", "id": 317070232, "nodes": [11645324630, 11645324631, 11645324632, 11645324633, 11645324663, 11645324634, 11645324635, 3232901616, 1993853736, 11645324636, 3232901609, 3232901604, 3232901601, 3232901595, 3232901591, 3232901589], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 317070233, "nodes": [3232901568, 3232901567, 3232901566, 3232901563, 3232901561, 3232900960, 3232900959, 3232900957, 3232900955, 3232900952, 3232900950], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317070234, "nodes": [2900420521, 2900420520, 2900420519, 1993853757, 3232901618, 2900420518, 2900420517, 2900420516, 2900420515, 2900420514, 2900420513, 11645339783], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 317070235, "nodes": [3232901561, 3232901562, 3232901565, 3232901570, 3232901575, 3232901580, 3232901583, 3232901585, 3232901592, 3232901597, 3232901600, 3232901605, 3232901607, 3232901610, 3232901613, 3232901617], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317070236, "nodes": [2452121883, 3232900933, 3232900934, 3232900935, 3232900936, 3232900937, 3232900939, 3232900941, 3232931151, 3232900943, 3102754268, 3232900951, 3232900954, 3232931171, 3102754275, 3232900958, 3102754264, 3232901564, 3232901568, 3102754270, 3232901581, 3102754271, 3232901590, 3232901593, 3232901594], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317070237, "nodes": [3232901594, 3232901598, 3232901599, 3102754273], "tags": {"highway": "path", "surface": "concrete:plates"}}, {"type": "way", "id": 317070238, "nodes": [2452121882, 3232900928, 3232900926, 3232879762], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 317070239, "nodes": [3232878651, 3232901586, 3232901582, 4519701696, 3232901577, 3232901573, 3232901569], "tags": {"highway": "path"}}, {"type": "way", "id": 317070240, "nodes": [11645324665, 3232901616, 3232901615, 3232901612, 11645324626], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 317070241, "nodes": [3232901580, 3232901578, 3232901579, 3232901576, 3232901572, 3232901571, 3232901574], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317070242, "nodes": [2450658338, 2452121881, 2452121888, 2454251087, 2452121877, 2452121885, 2452121880, 2452121882, 2452121876], "tags": {"highway": "footway", "surface": "compacted"}}, {"type": "way", "id": 317070243, "nodes": [3232900922, 3527091852, 3232900923, 2452121884, 3102754269, 3232900931, 3232900932, 3232900930, 3232900929, 3232900927], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317073341, "nodes": [1339493627, 3232931180, 3232931181, 3232931186, 3232931188, 3232931190, 3232931191, 3232931193, 3232931194, 3232931196, 3232931198, 3232931200, 3232931202], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 317073344, "nodes": [153115916, 3232931187], "tags": {"highway": "footway", "lit": "no", "surface": "paving_stones"}}, {"type": "way", "id": 317073346, "nodes": [3232931211, 3232907779, 4161784447, 3232931206], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317073347, "nodes": [3232931212, 4161784451, 3232907781, 3232931216], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317073349, "nodes": [3232931171, 3232931172, 3232931173, 3232931174, 3232931175, 3232931176, 3232931177], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317073350, "nodes": [2004177661, 2004177673, 2004177611, 2004177663, 2004177670, 2004177665, 3223006051, 2004177666, 3223005970, 2004177678, 2004177675, 2004177684, 2004177629, 4131264330, 3223002930, 2004177613, 3594825889, 3594825887, 3594825885, 3594825884, 3594825882, 3594825879, 3594825874, 3232931210, 3232931208, 3232931207, 3232931211, 3232931213, 3232931214, 3232931215, 3594825876, 3594825877, 3594825878, 3594827096], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 317073351, "nodes": [3232900946, 3232931159, 3232931157, 3232931155, 3232931154, 3232931152, 3232931151], "tags": {"highway": "path", "surface": "compacted"}}, {"type": "way", "id": 317079497, "nodes": [3233003269, 3233003270, 3233003271, 3233003272, 8703242762, 3233003275, 3426732243, 3233003280, 3233003281, 3233003279, 3233003277, 3233003276, 3233003274, 3233003273, 3233003268, 3233003267, 3233003266, 3233003265, 3233003264, 3223006167], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 317079784, "nodes": [1339493442, 150760966], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 317079785, "nodes": [1339493442, 3233009665, 3233009668, 3233009672], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317079786, "nodes": [1339493442, 3233009666, 3233009669, 3233009670, 3233009671, 8703242763, 3233009667, 3233009664, 3233009663, 3233009662], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 317082024, "nodes": [2004177683, 2004177634, 2004177675, 338956158, 4131264338, 3223005967, 153062621, 1339493544], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 317279847, "nodes": [1537917871, 26579180], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 318147226, "nodes": [5624718760, 3245280175, 3258766764, 8590161652, 3245280176], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 318323387, "nodes": [3247246420, 3247246418, 3247246414], "tags": {"highway": "residential", "name": "Calle de Belalc\u00e1zar", "oneway": "yes"}}, {"type": "way", "id": 318323412, "nodes": [142284538, 3247246409], "tags": {"highway": "pedestrian", "name": "Pasaje de Belalc\u00e1zar"}}, {"type": "way", "id": 318323413, "nodes": [3247246418, 142284541], "tags": {"highway": "pedestrian", "name": "Pasaje de Belalc\u00e1zar"}}, {"type": "way", "id": 318323414, "nodes": [3247246407, 3247246408, 3247246413, 3247246417, 3247246416, 3247246415, 3247246412], "tags": {"highway": "service", "name": "Pasaje de Grijalba"}}, {"type": "way", "id": 318930685, "nodes": [26579083, 26578960], "tags": {"highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes"}}, {"type": "way", "id": 318930686, "nodes": [3253320373, 3769069723, 913080867], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 318987311, "nodes": [3253320373, 8822145843, 3253320372, 8822145842, 8822145844, 3253320370, 8822145841, 8822145839, 8822145840, 3253320371, 1364772877, 26578962, 1364772947], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 318987312, "nodes": [3253942896, 9439650458, 3253942888, 3253942891, 3253942892, 3253942898], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 318987315, "nodes": [3253942889, 3567203702, 3567203700, 3253942881], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 318987318, "nodes": [3253942890, 9439650460, 3253942880, 3253942878, 3253942876], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 318987319, "nodes": [3253942887, 3253942893, 2834191516], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 319460783, "nodes": [3258766771, 3258766770, 8590150193], "tags": {"highway": "footway"}}, {"type": "way", "id": 319460784, "nodes": [3258766780, 3258766770, 3258766764], "tags": {"highway": "footway"}}, {"type": "way", "id": 319460785, "nodes": [8590161662, 8590161661, 3258766774, 3258766773, 8590161660, 3258766772, 3258766771, 3258766769, 8590161659, 8590161658, 3258766767, 3258766766, 8590161663, 8590161664], "tags": {"highway": "footway"}}, {"type": "way", "id": 320362511, "nodes": [1377881483, 3268713820, 3268713822, 4109163310, 8427069673, 3268713828, 29739619, 3268713840, 3268713845, 2351032617, 369846113, 3437178877, 100890246], "tags": {"highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 320362512, "nodes": [29739617, 1377881483], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 320498093, "nodes": [3270228361, 3270228362], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 320844403, "nodes": [3274917101, 8455404362, 98746258, 1654250237, 875774476, 81580408, 142246030], "tags": {"highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 320844406, "nodes": [1752467555, 3274917100, 3274917098, 3274917096, 3274917094, 3274917093, 3274917095, 3274917097, 3274917099, 6186804880, 6186804878], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 322589257, "nodes": [3293613589, 3293613586, 3293613583, 3293613580, 3293613578, 6380794305], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "sidewalk", "highway": "footway", "name": "Glorieta del Presidente Garc\u00eda Moreno"}}, {"type": "way", "id": 322682094, "nodes": [3294583003, 1016578203, 4945009664], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943"}}, {"type": "way", "id": 324602459, "nodes": [3313144502, 927751050], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 324602460, "nodes": [3313144504, 3313144502], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 325530888, "nodes": [1140217797, 8583901054, 3321767704], "tags": {"cycleway:lanes": "none|shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed": "50", "maxspeed:lanes": "50|30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through|right"}}, {"type": "way", "id": 327969636, "nodes": [3347872573, 3347875426, 3347875416], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969637, "nodes": [3347875401, 3347875418], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969638, "nodes": [3347875436, 3347875411], "tags": {"highway": "steps", "layer": "-1", "lit": "yes"}}, {"type": "way", "id": 327969639, "nodes": [3347875410, 3347875428], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969640, "nodes": [3347875457, 3347875424, 3347875445, 3347872573], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969641, "nodes": [3347872576, 3347875421, 3347872590, 3347875419, 3347875442, 340225780, 340225642, 340225604, 3225747778, 340225613, 340225583], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969643, "nodes": [3347875455, 3347875447, 3347875408, 340228128], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969644, "nodes": [3347875406, 340225647], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 327969645, "nodes": [3347872572, 3347875425, 3347875444, 3347875412, 3347875455, 3347875402], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969646, "nodes": [3347875446, 3347875450], "tags": {"highway": "steps", "layer": "-1"}}, {"type": "way", "id": 327969647, "nodes": [340225646, 3347875438], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 327969648, "nodes": [3347875444, 3347875429], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969649, "nodes": [3347875404, 3347875399, 3347875447, 3347875403], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969651, "nodes": [3347872571, 3347875407, 3347875431, 3347875460, 3347875424, 3347875448, 3347872572], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969652, "nodes": [3347875438, 3347872567, 3347872585, 340225593], "tags": {"highway": "steps", "lit": "yes"}}, {"type": "way", "id": 327969653, "nodes": [3347875415, 3347875443], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969655, "nodes": [3347872586, 3347872569], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969656, "nodes": [3347875434, 3347872588, 3347875411, 3347875417, 3347875428, 3347875422, 3347875406, 3347875439], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 327969657, "nodes": [3347872582, 3347875433, 3347875434], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 327969658, "nodes": [3347875398, 3347875431], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969659, "nodes": [3347875394, 3347875400, 340225593], "tags": {"highway": "steps"}}, {"type": "way", "id": 327969660, "nodes": [3347875449, 3347875420], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969661, "nodes": [340225647, 3347872579], "tags": {"highway": "steps", "layer": "-1", "lit": "yes"}}, {"type": "way", "id": 327969662, "nodes": [3347875437, 3347875415], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969663, "nodes": [3347875450, 3347875404], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969664, "nodes": [3347872584, 3347875401], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969665, "nodes": [3347872587, 3347872586], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969666, "nodes": [3347875413, 3347875403, 3347875402, 3347872572], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969667, "nodes": [3347875427, 3347875451], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969668, "nodes": [3347875458, 340225446], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 327969669, "nodes": [3347875399, 3347875429, 3347872581, 3347875445, 3347875453, 3347872580, 3347875427, 3347872575], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969670, "nodes": [3347875407, 3347875463, 3347872591, 3347875452, 3347875457, 3347875398], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969671, "nodes": [3347875443, 3347875410], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969672, "nodes": [3347872577, 3347875396], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969673, "nodes": [3347875413, 3347875420, 3347872571, 3347872575, 3347872570], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969674, "nodes": [3347872574, 3347872576], "tags": {"highway": "steps"}}, {"type": "way", "id": 327969676, "nodes": [3347872579, 3463244183], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 327969677, "nodes": [3347875396, 3347875456], "tags": {"highway": "steps", "layer": "-1"}}, {"type": "way", "id": 327969678, "nodes": [3347872578, 3347875409, 3347875459, 3347875414, 3347872578], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969679, "nodes": [3347875458, 3347875430], "tags": {"highway": "steps", "layer": "-1"}}, {"type": "way", "id": 327969680, "nodes": [3347875416, 3347875428], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969681, "nodes": [3347872566, 3347875395, 3347872570, 3347875451, 3347872574], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969683, "nodes": [3347875398, 3347872578], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969684, "nodes": [3347875459, 3347875463], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969686, "nodes": [3347875430, 4666869653, 4666869655, 3347875433, 3347872587], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 327969687, "nodes": [3347875418, 3347875393], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 327969688, "nodes": [3347875422, 3347872590], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969689, "nodes": [3347875442, 3347872592], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969690, "nodes": [3347875458, 3347875432], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969691, "nodes": [3347875393, 3347875417], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969692, "nodes": [3347875462, 3347875405, 340228128], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969693, "nodes": [340225593, 3347875419], "tags": {"highway": "footway", "layer": "1"}}, {"type": "way", "id": 327969694, "nodes": [3347875395, 3347875449, 3347875462, 3347875397, 3347875413], "tags": {"highway": "footway"}}, {"type": "way", "id": 327969695, "nodes": [3347875432, 3347875423], "tags": {"highway": "steps", "lit": "yes"}}, {"type": "way", "id": 328889819, "nodes": [3357109510, 8804963841, 3357109520, 8804963840, 8804963839, 8804963838, 3357109518, 8804963837, 8804963836, 3357109516, 3357109393], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 330451585, "nodes": [3374152542, 6214502304], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "tunnel": "yes"}}, {"type": "way", "id": 331245577, "nodes": [3382978629, 3382978630, 3382978631], "tags": {"alt_name": "Plaza Isla de Albor\u00e1n", "highway": "footway", "name": "Plaza de la Isla de Albor\u00e1n"}}, {"type": "way", "id": 331549287, "nodes": [3386198916, 2095964640], "tags": {"access": "no", "highway": "service", "layer": "-1"}}, {"type": "way", "id": 334163414, "nodes": [301432764, 301433140, 5204319823, 301432763], "tags": {"highway": "service"}}, {"type": "way", "id": 334163415, "nodes": [301432765, 301432964, 301432955, 301432766], "tags": {"highway": "service"}}, {"type": "way", "id": 334174800, "nodes": [3412613859, 3412613856], "tags": {"highway": "steps", "incline": "down", "surface": "paving_stones"}}, {"type": "way", "id": 334174801, "nodes": [3412613858, 3412613857], "tags": {"highway": "steps", "incline": "down", "surface": "paving_stones"}}, {"type": "way", "id": 334731364, "nodes": [25552449, 3428425014, 25552450, 25903296, 1278838994], "tags": {"cycleway": "shared_lane", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt", "turn:lanes": "through|through|through|right"}}, {"type": "way", "id": 334731365, "nodes": [25903309, 1278838976, 25903299, 1915012227, 25903302, 25903298], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 334731366, "nodes": [345537803, 7549719181, 25901950], "tags": {"cycleway:right": "shared_lane", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|through|through"}}, {"type": "way", "id": 334731367, "nodes": [3418035826, 3418035828, 3418035829], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 334731368, "nodes": [3418035834, 9054521332, 9054511995, 3418035836, 3418035837, 3418035838, 3418035839], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 334731369, "nodes": [3418035816, 3418035817, 3418035818, 3418035819, 3418035820, 3418035821, 3418035822, 3587032526, 3587032527, 3587032528, 3587032529, 3587032530, 3587032531], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 334741193, "nodes": [1016578427, 3426732139, 289005947, 269361216, 5970506947, 3426732167, 5802031873, 4412200930, 2283361235, 2283361249, 60030256], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741194, "nodes": [98959492, 98959947], "tags": {"cycleway:right": "shared_lane", "destination": "Glorieta de Cuatro Caminos", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741195, "nodes": [141888359, 5970506949, 616220786], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 334741197, "nodes": [6634926258, 8583791447, 8583791448, 8583469103, 3418127839, 8583469102, 616220786], "tags": {"highway": "tertiary", "lanes": "2", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 334750754, "nodes": [3418222088, 8551986257, 3418222089, 3418224193, 9318816447, 3418224212, 3418224213, 9318816446, 3418224214, 9318816452, 9318816445, 3418224217, 9318816444, 3418224216, 9318816453, 9318816448, 3418222084, 9318816449, 9318816454, 3418222083, 9318816450, 3418222085, 9318816451, 3418224193], "tags": {"access": "private", "highway": "service", "service": "driveway"}}, {"type": "way", "id": 334750756, "nodes": [9318816420, 9318816421, 9318816422, 9318816423, 3418222091, 9318806808, 9318806809, 9318806810, 9318806811, 3418224199, 9318806812, 9318806813, 9318806814, 9318806815, 3418224210, 9318806816, 9318816417, 9318816418, 9318816419, 3418224201, 9318816420], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 334750757, "nodes": [3418224210, 9318816443, 9318816452], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 334750758, "nodes": [3418224201, 3418224205, 9318816453], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 334750760, "nodes": [3418222091, 3418222086, 9318816454], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 334750761, "nodes": [3418224193, 3418224194, 3418224199], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 334750764, "nodes": [9318816443, 3418224205, 3418222086, 3418224194, 9318816443], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 335246478, "nodes": [1364772901, 937649651, 1364772966, 937649690, 1364772981, 1364772974, 937649679, 937649666, 1364772846, 1364772808, 937649656, 1364772635, 1364772598, 937649685, 1364772311, 937649673, 1364772097, 937649661, 939958050, 937649652, 937649681, 1364772041, 937649667, 937649657, 937649695, 1364772045, 937649675, 1364772048, 937649663, 937649653, 1364772124, 7767762358, 937649691, 1364772126, 1364772107, 937649659, 937649649, 1364772105, 937649686, 937649677, 937649655, 1364772272, 937649693, 937649683, 1339912679, 1339912639, 937649669, 1339912666, 937649650, 937649689, 1339912650, 937649678, 937649694, 1364772654, 1364772795, 1364772833, 937649684, 937649671, 1364773116, 937649660, 937649692, 7132247167, 1364773230, 1364773260, 1364773313, 1364773304, 937649682], "tags": {"highway": "footway", "lit": "yes", "surface": "dirt"}}, {"type": "way", "id": 335366384, "nodes": [3424799420, 8441812499, 3424799427, 3424799429], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366385, "nodes": [3424799436, 3424799432, 3424799429, 3424799423, 3424799419, 25906175], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366386, "nodes": [25906175, 3424801044, 27506521, 3424799415, 10653138763, 25901923, 2959128481, 3424801042, 8441812496, 2053099698, 25901922], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Calle de Do\u00f1a B\u00e1rbara de Braganza", "postal_code": "28004", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 335366387, "nodes": [25906175, 3424799420, 3424799424, 3424799430, 3424799433, 3424799435, 3424799436], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Plaza de las Salesas", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335366388, "nodes": [3424799436, 25906196], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Fernando VI", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 335366389, "nodes": [3424799429, 3424801045, 25906268, 25906267], "tags": {"highway": "residential", "name": "Calle de Santo Tom\u00e9", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 335366391, "nodes": [3424799433, 3424799437, 326195962, 3424801048, 326195947], "tags": {"highway": "service", "name": "Plaza de las Salesas", "oneway": "yes", "smoothness": "bad", "surface": "sett"}}, {"type": "way", "id": 335426308, "nodes": [150760441, 8919225438, 8919225431, 8919225432, 296097815], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Camino de Las Moreras", "oneway": "no", "smoothness": "excellent", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 335426309, "nodes": [296097815, 8919225435, 150760447], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Camino de Las Moreras", "oneway": "no", "smoothness": "excellent", "source": "catastro", "surface": "asphalt"}}, {"type": "way", "id": 335426310, "nodes": [150760431, 296097816, 150760436, 3425361815, 150760441], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "50", "name": "Camino de Las Moreras", "oneway": "no", "source": "catastro", "surface": "paving_stones"}}, {"type": "way", "id": 335562578, "nodes": [3426608081, 3426608082], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 335563211, "nodes": [25901886, 1278839077, 25901825, 25892156, 25892152, 1278838929], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "3", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 335575224, "nodes": [3426732234, 3426732235, 3426732232], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 335575241, "nodes": [3233009662, 3233009661, 339825209, 150760970], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Jos\u00e9 Antonio Novais", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 335575242, "nodes": [3426732246, 8513737405, 1339493643], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "40", "name": "Calle de Ramiro de Maeztu", "oneway": "yes", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 335575257, "nodes": [3426732142, 2493539683, 3426732161, 3426732169, 3426732174, 4983379109, 2493539694, 3426732178, 3426732179, 3426732183, 4161795768, 4161795769, 6612101339, 3426732184, 3426732186], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 335575258, "nodes": [3426732097, 3426732098], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 335575263, "nodes": [3426732173, 3426732174, 3426732175, 3426732177, 2493539661], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 335587484, "nodes": [26413364, 5970506944, 26413361], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Calle de Santa Engracia", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 335587485, "nodes": [26413367, 1654250208, 26413364], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 335587486, "nodes": [3426834961, 3426834962, 3426834963], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 335587488, "nodes": [2283361214, 3426834962, 2283361239], "tags": {"highway": "footway"}}, {"type": "way", "id": 335720383, "nodes": [98948614, 98746807], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 335720384, "nodes": [3428307530, 21990719], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle de Barcel\u00f3", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 335720386, "nodes": [98948614, 1654250232, 8480879017, 1505081180, 98951272], "tags": {"highway": "primary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through;right|through;right"}}, {"type": "way", "id": 335720387, "nodes": [98957377, 306092388, 2687649523, 98957846, 98956113, 98958253, 306092387, 2687649521, 98956600], "tags": {"highway": "residential", "junction": "roundabout", "lanes": "2", "name": "Glorieta del General \u00c1lvarez de Castro", "postal_code": "28010"}}, {"type": "way", "id": 335735810, "nodes": [3323948849, 3428425012, 1278839042, 7549719200], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 335735826, "nodes": [3428425005, 3428425006, 3428425007, 3428425008, 3428425009], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 336886821, "nodes": [3439683029, 3439683030, 6318921547, 6318921546, 3439683027], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0", "lit": "yes", "name": "Moncloa", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 336886822, "nodes": [3439683028, 3439683029], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "level": "0;0.5", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 336886823, "nodes": [1364773023, 3439683028], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0.5", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 336959414, "nodes": [3221366169, 3440492577], "tags": {"highway": "steps"}}, {"type": "way", "id": 336959416, "nodes": [3440492578, 3440492577], "tags": {"highway": "footway"}}, {"type": "way", "id": 337024171, "nodes": [1465071290, 3418035840, 1465071289, 1465071288, 1465071287, 1465071285, 1465071284, 8933854104], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 337024172, "nodes": [1465071290, 3441196011, 3441196008], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 337422186, "nodes": [3445124868, 8587019133, 8587019136, 8587019134, 8587019135, 7058240006, 98727626], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 338064692, "nodes": [102213806, 3451250632, 102213107, 3451250642, 3451250635, 3451273064, 3451212185, 3451212182, 102213109, 3451212178, 102213110], "tags": {"highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338064693, "nodes": [102213643, 102213806], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338064694, "nodes": [102216201, 102213638, 102214347], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 338064695, "nodes": [3451212107, 3451212109, 2949460871], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338064696, "nodes": [102213643, 3451250631, 3451250624, 1754817182], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338064697, "nodes": [3451212151, 3451212153, 3451212155, 3451212156, 3451212154, 3451212152], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338064698, "nodes": [3451212148, 3451212146, 3451212144, 3451212142, 3451212143, 3451212145, 3451212147], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 338066076, "nodes": [3451273077, 3451250631, 3451273072], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066077, "nodes": [3451273073, 3451250632, 3451273078], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066079, "nodes": [3451287538, 1754817101, 1754817092, 3451286545], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066080, "nodes": [3451287559, 3451212161, 9533539707, 3451212169], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066081, "nodes": [3451273053, 3451212170, 3451212173, 9533539707], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066082, "nodes": [3451273034, 3451212111, 3451212110, 3451286539], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066083, "nodes": [3451273062, 9533539705, 9533539706, 3451273073, 3451273062, 3451273061, 3451212178, 3451273053], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066084, "nodes": [9533539673, 3451273045, 3451212150, 3451212149, 3451287549], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066085, "nodes": [9533539711, 3451273035, 3451212112, 3451273038, 3451212113, 3451286543], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066086, "nodes": [1754817171, 3451273066, 3451273067, 3451273068, 3451273069, 3451273070, 3451250598, 3451250600, 3451273071, 3451250624, 3451273076], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 338066087, "nodes": [3451273079, 3451273078, 3451273077, 3451273076, 3451273074], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 338066088, "nodes": [3451287545, 3451212131, 3451273041, 3451273042, 3451212134, 3451273043, 9533539708], "tags": {"highway": "footway"}}, {"type": "way", "id": 338066090, "nodes": [3451273054, 3451212171, 3451212172, 3451273055, 3451212168, 3451212159, 3451287556], "tags": {"highway": "footway"}}, {"type": "way", "id": 338067850, "nodes": [3451273051, 3451273054, 3451273057, 3451273060, 3451273059, 3451273058], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 338163456, "nodes": [3452275287, 2277540734], "tags": {"cycleway:lanes": "shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "maxspeed:lanes": "30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through;right"}}, {"type": "way", "id": 338163457, "nodes": [1140217847, 3452275287], "tags": {"cycleway:lanes": "none|shared_lane|none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "maxspeed:lanes": "50|30|50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "turn:lanes:backward": "through|through|right"}}, {"type": "way", "id": 338505833, "nodes": [3455857375, 3455857374, 3455857376, 3455857379, 3455857386, 3455857391, 3455857392, 3455857390, 1993783531, 3455857381, 3455857377, 3455857375], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505834, "nodes": [7058286500, 3455857323, 3455857324, 3455857325, 3455857327, 3455857328, 3455857330, 3455857332, 3455857331, 3455857329, 3455857326, 3197987492], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505836, "nodes": [3455857408, 3455857404, 3455857396, 3455857388, 3455857384, 3455857385, 3455857387, 3455857394, 3455857402, 3455857407, 3455857410, 3455857414, 3455857416, 3455857412, 3455857408], "tags": {"highway": "path", "surface": "asphalt"}}, {"type": "way", "id": 338505837, "nodes": [3455857365, 3455857360, 3455857356, 3455857351, 3455857347, 3455857344, 3455857345, 3455857348, 3455857352, 3455857357, 3455857361, 3455857367, 6284747527, 6284747528, 3455857373, 3455857383, 3455857397, 1993784294], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505838, "nodes": [3455857386, 3455857394], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505839, "nodes": [3455857384, 3455857352, 3455857329], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505840, "nodes": [1993783539, 3455857334, 3197987492], "tags": {"highway": "path", "surface": "concrete"}}, {"type": "way", "id": 338505841, "nodes": [8960475860, 1993783539, 3455857340], "tags": {"highway": "path", "surface": "asphalt"}}, {"type": "way", "id": 338670820, "nodes": [3457902049, 98948614], "tags": {"highway": "primary", "lanes": "5", "lanes:psv": "1", "maxspeed": "50", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "postal_code": "28003", "turn:lanes": "left|left;through|through|through|through"}}, {"type": "way", "id": 338670822, "nodes": [1505081164, 989205057], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 338670833, "nodes": [3457902047, 8815557566, 9439650452, 3457902040, 3457902041, 3457902042], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 338670835, "nodes": [3457902040, 3457902036, 3457902037, 3457902041], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 339135497, "nodes": [3463244190, 3463244186, 3463244182, 3463244179, 3463244177, 3463244178, 3463244180, 3463244184, 3463244187, 3463244195, 3463244201, 3463244205, 3463244207, 3463244206, 3463244202, 3463244196, 3463244190], "tags": {"foot": "no", "highway": "residential", "junction": "roundabout", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 339135498, "nodes": [3463244190, 1314919706, 1314916913, 4659927126, 1314916904], "tags": {"foot": "no", "highway": "residential", "layer": "-1", "lit": "24/7", "name": "Avenida Centrum", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 339135499, "nodes": [3463244171, 3225748461, 3225747852, 3225747853], "tags": {"highway": "footway", "name": "Plaza de Carlos Tr\u00edas Bertr\u00e1n"}}, {"type": "way", "id": 339135500, "nodes": [1541983916, 3463139914, 3463244189, 3463244191, 3463244199, 3463244209, 3463244219, 3463244221, 3463244185, 3463244183, 3225748476, 3225748480, 3225748482, 3225748484, 3225748483, 3225748477, 3225748481, 3225748479, 3225748478, 3225748473, 3225748472, 3225748471, 3463244181, 3463244173, 3225748464, 3463244172, 3463244170, 3463244171, 3463244174, 3463244175, 3463244176, 3463244212, 1541983914, 3463139548, 3463139549, 3463139550, 3463139557, 1541983916], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de Carlos Tr\u00edas Bertr\u00e1n", "place": "square", "surface": "paving_stones", "wikidata": "Q67921211"}}, {"type": "way", "id": 339135501, "nodes": [3463244168, 3463244169], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "5", "surface": "paving_stones"}}, {"type": "way", "id": 339135503, "nodes": [3463244169, 3225747858, 3225747854], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 339135505, "nodes": [340228161, 340228148, 340228149, 340228150], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 339892787, "nodes": [1486142532, 7510718611, 26579030], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 339929104, "nodes": [1869415375, 7510718615, 797297579, 797297574, 797297575, 797297571, 4549589307, 1486142593, 4549589308, 1486142601, 26579102], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "postal_code": "28040", "surface": "asphalt"}}, {"type": "way", "id": 339929105, "nodes": [3471276063, 1364772380, 26578963], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "bicycle:lanes": "no|designated", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 339929108, "nodes": [26578956, 3471276062, 55161197, 55161026, 9439650457, 11279337789, 9439650465, 4157306544, 3471276063], "tags": {"alt_name": "Calle Mart\u00edn de los Heros", "bicycle:lanes": "no|designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:lanes": "50|30", "maxspeed:type": "sign", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 339929109, "nodes": [55138197, 5385241359, 929294336, 1378696879, 25935531, 1378696877, 622204587, 25935523], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 339929112, "nodes": [3253942898, 3253942900, 3253942902, 3253942901, 3253942899, 3253942897, 3253942896], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 339938546, "nodes": [3471365915, 3471365921, 4283399300], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 340202210, "nodes": [141880907, 141882080], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Palafox", "name:etymology:wikidata": "Q332481", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 340205457, "nodes": [3474142068, 8919158985, 3474142070, 3474142071, 3474142077, 3474142079, 3474142080, 3474142082, 3474142083, 3474142085, 3474142088, 3474142091, 3474142095, 3474142100], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 340205458, "nodes": [3474142013, 3474142018, 3474142019, 3474142024, 3474142027, 3474142029, 3474142032, 3474142033, 3474142036, 3474142038, 3474142040, 3474142041, 3474142043, 3474142046], "tags": {"highway": "path"}}, {"type": "way", "id": 340205459, "nodes": [3474142111, 3474142089], "tags": {"highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 340205460, "nodes": [3474142105, 3474142125], "tags": {"highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 340205462, "nodes": [2959128142, 3474142071, 8415246955, 1636560628], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 340205463, "nodes": [3474142109, 3474142111, 3474142125, 3474142128, 1636561501], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 344158983, "nodes": [3509181103, 3509181111, 3509225596, 3509181115, 3509181121, 3509181130, 3509181135, 3509181141, 3509181155, 3509181156, 3509181152, 3509181149, 3509181138, 3509181118], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158984, "nodes": [3509181193, 3509181162], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158985, "nodes": [340219341, 11533572623, 7930651365], "tags": {"highway": "service", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 344158986, "nodes": [3509181174, 3509181166], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 344158987, "nodes": [3509181172, 3509181174], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 344158988, "nodes": [3509180986, 3509180975], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158989, "nodes": [3509181122, 3509181170, 3509181179], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158990, "nodes": [3509181163, 3509181178, 3509181174], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158991, "nodes": [3509181141, 3509181166, 3509181172], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158992, "nodes": [3509181131, 3509181101, 3509224888, 3509181095, 3509180986], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158993, "nodes": [3509181101, 3509181153, 3509181163, 3509181138], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158994, "nodes": [3509224889, 3509181103, 3509181118, 3509181153], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158995, "nodes": [3509180965, 3509180968, 3509180969, 3509180972, 3509180974, 3509180971, 3509180975], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 344158996, "nodes": [3509181096, 3509181122, 3509181131, 3509181194, 3509181181, 3509181193, 3509181210], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344158997, "nodes": [3509180991, 3509180989, 3509180988, 3509180990, 3509181093, 3509181094, 3509181097, 3509181096], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 344163419, "nodes": [3509225596, 3509224891], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 344163420, "nodes": [3509224888, 3509224889, 3509224891, 3509225601], "tags": {"highway": "footway", "lit": "no"}}, {"type": "way", "id": 346093001, "nodes": [4470449600, 4470449595, 3527091847, 3527091842, 3527091839, 3527091837, 3527091828, 3527091825, 3527091815, 3527091812, 3527091679, 3527091674, 3527091671, 3527091669, 3971000863, 3971000963, 3971000964, 3970983758, 3970983759, 4417396217, 3971001057, 3971000968], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "no", "width": "0.5"}}, {"type": "way", "id": 346093002, "nodes": [3527091865, 6612101328, 3527091868, 1339501833, 3527091869, 3527091861, 3527091860, 3527091858, 3527091855, 3527091849, 3527091848, 3527091844, 3527091840, 3527091831, 4456746616, 3527091822, 3527091817, 3971000864, 3527091801, 3527091793, 3527091691, 3527091795, 3527091797, 3527091794, 3527091688, 4417396253, 3527091684, 26579188], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone", "wheelchair": "yes"}}, {"type": "way", "id": 346093003, "nodes": [3527091820, 3527091821, 3527091822, 4549582481], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "no", "surface": "paving_stones"}}, {"type": "way", "id": 346093004, "nodes": [3527091814, 3527091813, 3527091812], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "no", "surface": "paving_stones"}}, {"type": "way", "id": 346093005, "nodes": [2454256454, 3527091850, 3527091852], "tags": {"highway": "steps"}}, {"type": "way", "id": 346093006, "nodes": [3527091820, 3527091824, 3527091823, 3527091816, 3527091814], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "no", "ramp": "no", "surface": "unhewn_cobblestone", "tactile_paving": "yes"}}, {"type": "way", "id": 346093007, "nodes": [3971000968, 3971000865, 3971000867, 3971001257, 3971001058, 3971001069, 3971001070, 3971000872, 3527075374, 4536044186, 3527075375, 3527075377, 3527075378, 3527075376, 3971001068, 3971001066, 3527075373, 3527075372, 3527075371, 3527075369, 3527075367, 3527075368, 3527075370, 4519701706, 4519701705, 3527091827, 4456746624, 3527091832, 3527091834, 3527091836, 4470449592, 153116020], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 346093008, "nodes": [3527091814, 3527091810, 3527091807, 3527091809, 3527091820], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "no", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 346093241, "nodes": [3527075371, 3527075365, 2446887427, 3527091684], "tags": {"highway": "footway", "lit": "yes", "surface": "concrete"}}, {"type": "way", "id": 351002166, "nodes": [3567226103, 3567226104], "tags": {"highway": "service", "layer": "-1", "lit": "yes", "oneway": "no", "tunnel": "building_passage"}}, {"type": "way", "id": 351002167, "nodes": [3567226102, 3567226101], "tags": {"highway": "service", "layer": "-1", "lit": "yes", "oneway": "no", "tunnel": "building_passage"}}, {"type": "way", "id": 351002168, "nodes": [3567226101, 3253942883, 3567226103], "tags": {"highway": "service", "lit": "yes", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 351002169, "nodes": [3567226104, 3253942891, 3253942894], "tags": {"highway": "service", "lit": "yes", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 351003641, "nodes": [4417396391, 797297571, 4549589325], "tags": {"footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 351003642, "nodes": [4417396290, 4417396289, 4417396288, 4417396287, 4417396272, 4417396257, 4417396237, 4417396218, 4417396197, 4417396194, 4417393086, 3567234599, 3567234602, 4549845081, 3567234601, 3567234600, 1869400498], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 351043363, "nodes": [4575801322, 4575801323, 3627050625, 3567546250], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 351043364, "nodes": [3567546251, 1760085718], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 351043365, "nodes": [4575801325, 4575801324, 4575801326, 3567546253], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 351043366, "nodes": [3567546254, 5197772329], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 351609464, "nodes": [1636560288, 410106076, 410106074, 2581269645, 3389052231, 410106072, 410106070, 2581269658, 3601039775, 410106067, 3574220195, 3452165788, 10262238700], "tags": {"highway": "footway", "lit": "no", "surface": "gravel"}}, {"type": "way", "id": 351707746, "nodes": [3575366930, 3575366932, 3575366934, 3575366937, 2462922551, 3575366939, 3575366938, 3575366936, 3575366933, 3575366931], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 351707748, "nodes": [11645339859, 3575367205, 3575367207, 3575367209, 3575367210, 3575367212, 3575367213, 3575367215, 9116676743, 9116676742, 9116676741, 9116676740, 9116676739, 9116676738, 4892388494, 9116676736, 9116676735, 9116676734, 9116676733, 3575367228, 3575367230, 3575367229, 3575367227, 3575367226, 11645339880, 11645339882, 3575367225, 3575367224, 11645339888, 3575367223, 3575367222, 3575367221, 3575367220, 3575367219, 3575367218, 3575367217, 3575367216, 3575367211, 3575367208, 3575367203, 3575367201, 3575367200, 3575367196, 3575367193, 3575366992, 3575366991, 3575366987], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 351707749, "nodes": [3575366956, 3575366955, 3575366954, 3575366953, 3575366952, 3575366951, 3575366950, 3575366949, 11645339821, 11645339820, 11645339819, 11645339818, 11645339817, 11645339803], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 351707750, "nodes": [3575367196, 150760483, 3575367194], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 351707751, "nodes": [3575366954, 3575366957, 3575366962], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 351708062, "nodes": [3575370944, 3575370945, 3575370946], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 351708063, "nodes": [1339493678, 3575370955, 3575370954, 4891641102, 3575370952, 3575370951], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 351708064, "nodes": [4891641097, 4891641098, 4891641099, 4891641100, 3575370943, 3575370944, 3575370948, 3575370949, 3575370950, 3575370953, 3594827118, 3594827119, 3594827120, 3594827127], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 351708626, "nodes": [1339493600, 2004129474, 3232931179, 4519701693, 3232931182, 3232931183, 3232931184, 3232931185, 3232931187, 3232931189, 3232931192, 3232931195, 3232931197, 3232931199, 3232931201, 3232931203, 3232931204, 3232931205, 3232931206, 3232931212, 3232931217, 3232931218, 3232931219, 3232931220, 3232931221, 3232931222, 3232931223, 3232931224, 4891641104, 3575370946, 3575370947, 3575366971, 3575366973, 3575366974, 3575366983, 3575366984, 3575366981, 3575366978, 3575366976, 11645339772, 11645339784, 3575366977, 3575366980, 3575366979, 11645339836, 3575366975, 3575366972, 11645339786, 3575366965, 3575383406, 11645339787, 1993852784, 3575378581, 3575378577, 11645324630, 3575378576, 3575378574, 11645324627, 3575378572, 3575378571, 3575378570, 3575383405, 3575378566, 3575378565, 3575378562, 3575383403, 3575378559, 3575378557, 3575378555, 3575378553, 3575378551, 2463314696], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 351708627, "nodes": [3575378578, 3575378579], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 351708628, "nodes": [3575378580, 3575378582], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 351708629, "nodes": [3575378540, 2453487277], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 351708630, "nodes": [3575378541, 3575378542, 3575378543, 3575378544, 3575378547, 3575378548, 3575378549, 3575378550, 3575378552, 3575378554, 3575378556, 3575378558, 3575378561, 3575378563, 3575378564, 3575378567], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 351708631, "nodes": [3575378545, 3575378546, 3575378547], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 351708632, "nodes": [11645324637, 2448104602, 11645324638], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 352064972, "nodes": [3578397062, 3578397063, 3578397060, 3578397061], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 352064973, "nodes": [1135863691, 150760410, 3578397070, 1135863649, 150760414, 150760418], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "surface": "asphalt"}}, {"type": "way", "id": 352064975, "nodes": [3578397091, 8483828966, 1993790478, 3578397090, 1993790441, 8483828965, 1993790470, 3578397087, 1993790405, 8483828963, 3578397088, 1993790455, 8483828960, 8483828961, 1993790467, 8483828962, 3578397092, 8483828924, 1993790383, 1993790481, 8483828935, 3578397095, 8483828937, 8483828938, 1993790420, 8483828939, 1993790452, 8483828940, 8483828941, 1993790488, 8483828943, 1993790431, 1993790434, 8483828944, 3578397097, 3578397096, 1993790437, 1993790426, 1993790459, 8483828934, 1993790485, 3578397093, 1993790428, 8483828946, 8483828947, 1993790413, 3578397089, 1993790409, 1993790380, 3578397083, 8483828948, 3578397082, 3578397081, 8483828949, 8483828950, 1993790490, 8483828952, 8483828951, 1993790417, 1993790449, 1993790483, 8483828953, 8483828954, 1993791874, 1993790445, 1993790430, 3578397077], "tags": {"bicycle": "dismount", "highway": "footway"}}, {"type": "way", "id": 352064976, "nodes": [3578397101, 3578397100, 3951449128, 3578397099, 3578397098, 3578397094, 3578397091, 5776878424, 3578397086, 3578397085, 3578397084, 5776878416, 3578397080, 3578397079, 3578397078, 3578397077, 3578397076, 3578397075, 3578397074, 3578397066, 3578397053, 3578397050, 3578397038, 3578397002, 3578396576, 3578396536, 3578396527, 3578396518, 3578396517, 3578396515, 3578396514, 3578396513, 3578396512, 3578396511, 3578396510, 3578396509, 3578396508, 3578396506, 3578396507, 4414962284, 3578396535, 3578396549, 3578396560, 3578396580, 3578396997, 3578397018, 3578397024, 3578397032, 3578397040, 3578397046, 3578397047, 3578397051, 3578397052, 3578397054, 3578397055, 3578397056, 3578397057, 3578397059, 3578397064, 3578397069, 4533916401], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 352067047, "nodes": [3578422050, 4131272665, 3578422051, 3578422052], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 353665808, "nodes": [2277540526, 2277540530, 2277540548, 3594827105, 2277540558, 2277540561, 2277540550, 2277540541, 2277540528, 2277540523, 2277540520, 3594827099, 2277540526], "tags": {"access": "private", "highway": "service", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "yes"}}, {"type": "way", "id": 353665809, "nodes": [3594827094, 2277540526], "tags": {"access": "private", "highway": "service", "name": "Calle Doctor Fernando Castro Rodr\u00edguez"}}, {"type": "way", "id": 353665810, "nodes": [3594827145, 2004157604, 2004157577], "tags": {"access": "private", "highway": "service", "name": "Calle Doctor Fernando Castro Rodr\u00edguez", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 353665811, "nodes": [3594827165, 1339493687, 3594827164, 3594827163, 3594827162, 3594827161, 4891641101, 3594827157, 3594827156, 3594827159, 1339493661, 1339493680], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 353665812, "nodes": [3594827152, 3594827153, 3594827154, 3594827160, 3594827158, 3594827155, 3594827140, 3594827139, 3594827138, 3594827137, 3594827132], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 353665813, "nodes": [3594825874, 3232907780, 3594825872], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 353665814, "nodes": [3594827161, 2004157581, 3594827158], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 353665819, "nodes": [3594827157, 3224876493, 1339493522, 3224876494, 1339493602, 4892388728, 4269894879, 1339493503, 1339493687], "tags": {"highway": "path", "lit": "no", "surface": "compacted"}}, {"type": "way", "id": 353667809, "nodes": [4178663201, 3700823165, 3594842613, 3594842615, 3594842616, 3594842617, 3594842619, 1364772802, 1364772814, 3769069722, 6329891674, 1364772380, 6329901685, 4157306543, 4414949437], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 353667811, "nodes": [893911192, 3594842609], "tags": {"highway": "steps", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 353667812, "nodes": [386248161, 3594842608], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 353667813, "nodes": [3594842619, 7635263893, 1869313927], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 353667814, "nodes": [386248160, 3594842610], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 353667815, "nodes": [902327001, 3594842627], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "level": "0;-1", "lit": "yes", "ramp": "no", "step_count": "38", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 357467634, "nodes": [1760085716, 63530476], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de Eduardo Dato", "name:etymology:wikidata": "Q365162", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 357467635, "nodes": [4575801325, 3627050622, 3627050621], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 357467637, "nodes": [4575801322, 3627050628, 3627050627], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 357845697, "nodes": [2291230717, 3629636197, 299600101], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 357845698, "nodes": [3629636196, 6370992540, 3629636197, 6720067362], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 358413809, "nodes": [2453487277, 3575378546, 2448104589, 2448104609, 150760743, 3567320806, 338944951, 3575378560, 3567320805, 3567320802, 3567320804, 3567320803, 150760747, 2448104605, 2448104588, 2448104602, 2448104592, 150760749, 338944965, 150760753, 150760710, 150760714, 2900420502, 6947820725, 1245495098, 11645339863, 11645339864, 11645339861, 4108431405, 1212072849, 11149514154, 150760245], "tags": {"highway": "residential", "lanes": "2", "maxspeed": "50", "name": "Calle Manuel Bartolom\u00e9 Coss\u00edo", "name:etymology:wikidata": "Q5678776", "oneway": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 358413810, "nodes": [3633377340, 3633377341, 3633377345, 3633377346], "tags": {"highway": "service", "lit": "yes", "source": "PNOA", "source:date": "2008"}}, {"type": "way", "id": 358413811, "nodes": [3633377332, 3633377328, 3633377325, 3633377321, 3633377320], "tags": {"highway": "service", "source": "PNOA", "source:date": "2008", "surface": "asphalt"}}, {"type": "way", "id": 361763847, "nodes": [299600101, 3661955226], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 361926105, "nodes": [26025841, 1500124500, 1500124478, 26025842], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through"}}, {"type": "way", "id": 361926106, "nodes": [26025842, 1500124468, 1669118109, 26025843], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 361926107, "nodes": [27508213, 2466312898], "tags": {"highway": "primary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003"}}, {"type": "way", "id": 361926108, "nodes": [27514734, 8430162612, 2466312888, 27508209], "tags": {"highway": "primary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de San Francisco de Sales", "oneway": "no", "postal_code": "28003", "turn:lanes:forward": "left|through|through"}}, {"type": "way", "id": 361926109, "nodes": [3663308754, 3663308758, 2466312888, 3663308761, 2493633627, 3663308760, 3663308759, 3663308756, 3663308757, 9315068123, 9315068122, 11690767205], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 361926111, "nodes": [27516700, 3663308744, 3663308746], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 361926112, "nodes": [1474148391, 1474148387, 5783023164, 5783023166, 1474148385, 5783023167, 1474148382, 1474148383, 5783023165, 1474148388, 1474148393, 5783023168, 1474148391], "tags": {"access": "private", "highway": "service", "name": "Paseo de San Francisco de Sales", "service": "driveway"}}, {"type": "way", "id": 361929711, "nodes": [338727741, 8451215624, 1505081210, 338727732], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through;right|"}}, {"type": "way", "id": 361929712, "nodes": [32602928, 1801212173, 338727741], "tags": {"destination": "Glorieta de Cuatro Caminos", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "maxspeed": "30", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;right|"}}, {"type": "way", "id": 362426417, "nodes": [3667374363, 4417386080, 3667374373, 3667374382, 3667374366, 3667374364, 4549584294, 3667374371], "tags": {"highway": "cycleway", "lit": "yes", "smoothness": "excellent", "surface": "concrete", "width": "2"}}, {"type": "way", "id": 362426418, "nodes": [26579187, 4417386079, 3667374381, 3667374377, 3667374374, 3667374379, 4549584298, 1869400498], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone", "wheelchair": "yes"}}, {"type": "way", "id": 362426779, "nodes": [3667369103, 3667374363], "tags": {"bridge": "yes", "highway": "cycleway", "layer": "1", "lit": "yes", "surface": "concrete"}}, {"type": "way", "id": 363358048, "nodes": [3675302630, 25902692], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Calle de Jos\u00e9 Guti\u00e9rrez Abascal", "name:etymology:wikidata": "Q17148207", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 363359195, "nodes": [25902676, 8522340703, 394684528], "tags": {"cycleway:right": "no", "destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "6", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|through|through|through|through;right"}}, {"type": "way", "id": 363359196, "nodes": [60030301, 3675303747, 25902676], "tags": {"cycleway:right": "no", "destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 364390432, "nodes": [26579077, 3684260031], "tags": {"foot": "no", "highway": "trunk", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref": "A-6", "ref:colour": "blue", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364390433, "nodes": [3684260046, 3684260040, 26579077], "tags": {"foot": "no", "highway": "secondary", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364390434, "nodes": [26579076, 7549586470, 7549586474, 26579077], "tags": {"foot": "no", "highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref": "A-6", "ref:colour": "blue", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364588705, "nodes": [3684260033, 7549586459, 7549586460, 338896749], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 364588706, "nodes": [338896749, 7510718618, 7510718617, 338896754, 7510718619, 1486142645, 7549586457, 3426732176], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de S\u00e9neca", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364588707, "nodes": [338896746, 338896752, 338896745, 2480627228, 1486142563, 2480627225, 8822146151], "tags": {"foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 364591318, "nodes": [3684260046, 7549586473, 3684260033], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "ref:colour": "blue", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 365573999, "nodes": [301432199, 301432766, 298157533], "tags": {"access": "private", "highway": "residential", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "no", "postal_code": "28015", "source:name": "survey"}}, {"type": "way", "id": 365825213, "nodes": [25902821, 25902807], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "20", "maxspeed:type": "sign", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 365825214, "nodes": [1613048525, 25902799, 1613048524], "tags": {"highway": "residential", "lanes": "5", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 366094063, "nodes": [3700823165, 937660057, 1505081028, 4428052264], "tags": {"bicycle": "dismount", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 367214521, "nodes": [143598548, 1505106033, 7098087923, 28096888, 8479324954, 5232421894, 1377881477, 1377881483, 4575801319, 1377881485, 4575801317, 8787245622, 4575801337, 1377881488, 4575801329, 2351032614, 8307252478, 1689543046, 25902243], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 367353166, "nodes": [3712863646, 3712863647], "tags": {"highway": "service", "service": "parking_aisle", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 367353167, "nodes": [3712863648, 3712863649], "tags": {"highway": "service", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 371491052, "nodes": [25902674, 3750569725, 3750568824, 25902679], "tags": {"bicycle": "yes", "cycleway:both": "no", "foot": "no", "highway": "primary_link", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 371495229, "nodes": [256525381, 3750600822, 5068655472, 3750603026, 1311052148], "tags": {"bicycle": "yes", "cycleway": "no", "foot": "no", "highway": "primary_link", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|left|left|left"}}, {"type": "way", "id": 371495230, "nodes": [1759501507, 3750603028, 3750600821, 1759501517], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary_link", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 371496026, "nodes": [1311052148, 25902678], "tags": {"access": "yes", "bicycle": "yes", "cycleway": "no", "foot": "no", "highway": "primary_link", "horse": "designated", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|left|through|through|through"}}, {"type": "way", "id": 372673584, "nodes": [25902677, 1311052148], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 373438132, "nodes": [1364772858, 913080867, 3769069722], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 373438133, "nodes": [4179348730, 4179348734, 6967867787], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0.5", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 375071038, "nodes": [1868668338, 8385594968, 1868668333, 5003912690], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 375654199, "nodes": [3633377350, 2448267187, 2448267220, 1770052217, 11645339822, 1770052219, 1770052220], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 376918309, "nodes": [3802946125, 32604461, 32604462], "tags": {"cycleway:lanes": "none|none|shared_lane", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 376918310, "nodes": [3802946121, 3802946125], "tags": {"access": "no", "bus": "designated", "highway": "tertiary", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 376918311, "nodes": [338728444, 3802946106, 32602924], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 376918312, "nodes": [338728444, 3802946115, 3802946114, 3802946116, 3802946121], "tags": {"access": "no", "bus": "designated", "highway": "tertiary", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes"}}, {"type": "way", "id": 376918314, "nodes": [3802947068, 1505081214, 3802947070], "tags": {"highway": "footway"}}, {"type": "way", "id": 384969638, "nodes": [3883232008, 4591425746, 4591425747, 3883232009], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Medell\u00edn", "oneway": "yes", "postal_code": "28010"}}, {"type": "way", "id": 388915734, "nodes": [26067301, 11533572596, 25935062], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 390868364, "nodes": [21990706, 21990729, 3144095503], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 391474904, "nodes": [3946882542, 3946882543], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 391479389, "nodes": [3253320375, 3946934260, 3946934261, 3253320374, 3253320373], "tags": {"highway": "secondary_link", "lanes": "1", "lit": "yes", "maxspeed": "40", "oneway": "yes"}}, {"type": "way", "id": 391882369, "nodes": [3951449148, 3951439726, 3951439721, 4889799235, 8401038662, 8521700643, 8401038664, 8521700642, 8401038665, 8401038666, 8521700645, 8401038667, 4889799239, 3951439719, 3951439718], "tags": {"highway": "footway"}}, {"type": "way", "id": 391882370, "nodes": [3999479563, 3951439723, 3951439724, 3951439725, 8587114724, 3951439717], "tags": {"highway": "residential", "noname": "yes", "surface": "asphalt"}}, {"type": "way", "id": 391882371, "nodes": [3951439727, 3951439728, 3951439729, 3951449152, 98727626], "tags": {"highway": "pedestrian", "lit": "no", "noname": "yes", "oneway": "no", "surface": "unpaved"}}, {"type": "way", "id": 391882372, "nodes": [3951439718, 5776878418, 8476816343, 3951439730], "tags": {"highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 391882375, "nodes": [3951439719, 8401038676, 8401038675, 3951439730], "tags": {"highway": "footway"}}, {"type": "way", "id": 391884044, "nodes": [3951449148, 3951449149, 3951449150, 3951449151, 8589258541, 8589258542, 98731778, 3951449152], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 392502703, "nodes": [1016578253, 5214866736], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 392502704, "nodes": [98959947, 5970506948, 9672874689, 1016578323], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 392502705, "nodes": [1016578323, 60030248, 1016578427], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q26728109", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 392502706, "nodes": [1016578203, 60030303], "tags": {"cycleway": "shared_lane", "destination:forward": "Museo Sorolla;Plaza de Emilio Castelar", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Paseo del General Mart\u00ednez Campos", "name:etymology:wikidata": "Q548543", "oneway": "no", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 393229512, "nodes": [1350673784, 150760365, 907465940], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle del Rector Royo-Villanova", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 393229513, "nodes": [3964436611, 1350673785, 3964436608], "tags": {"bicycle": "dismount", "crossing": "traffic_signals", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 393229515, "nodes": [3964436610, 3964436609, 3964436608], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 393229516, "nodes": [2759785962, 3964436614, 3964436610], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 393229518, "nodes": [3578396518, 3578396516, 3964436619], "tags": {"bicycle": "dismount", "crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 393229519, "nodes": [3964436605, 2277540728, 3964436612], "tags": {"bicycle": "dismount", "crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 393229520, "nodes": [3964436605, 6348124055, 3197987493, 7058286489, 6348124054, 6348124053, 4260545533, 9116858058, 6348124052, 6348124051, 9115409877, 7058286500, 6348124050, 4576288157, 9115409848, 6348124049, 11375162108, 11375162107, 3964436601, 3964436602, 3964436604, 3964436606, 3964436605], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 393229521, "nodes": [3578396508, 3964436615, 3964436611, 3964436607, 3964436603, 3964436601], "tags": {"bicycle": "dismount", "crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 393229522, "nodes": [3964436612, 3964436613, 3964436616, 3964436617, 3964436618, 3964436619], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 394062087, "nodes": [3971001363, 3971001368], "tags": {"footway": "traffic_island", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 394062091, "nodes": [11381177016, 11381177017, 11381177018, 11381177019, 11381177020, 11690717913, 11381177021, 11381177022, 11381177023, 11381177024, 1500124640, 11381177009, 11381177010, 11381177011, 11381177012, 4630240468, 11381177014, 11381177015, 11381177016], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 394062095, "nodes": [3971001058, 3971000973], "tags": {"highway": "steps"}}, {"type": "way", "id": 394062099, "nodes": [3971001081, 1500124635, 4548425536], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 394062101, "nodes": [4549835129, 4417396291, 1500124441], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 394062103, "nodes": [3971000869, 11394145812, 3971001063, 3971001064, 3971000974, 3971001065, 3971000976, 3971000977, 3970983765, 3971000975, 3971001159, 3971000970, 3971001158, 3971001061, 3971001059, 3970983762, 3970983761, 3971000958, 3971000959, 3971000969, 4417396240, 4417396242, 4417396244, 4417396246, 4417396248, 4417396252, 4417396256, 4417396262, 4417396268, 4417396278, 4417396280, 4417396286, 4417396290, 4417396291], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 394062107, "nodes": [11395568487, 3970983766, 3971001159], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 394062115, "nodes": [4548425538, 1447395580, 4490265365], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "way", "id": 394062119, "nodes": [1500124642, 1500124641, 3575366930], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 394062123, "nodes": [1500124441, 3971001358, 6833299479, 3971000869], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 394062127, "nodes": [3971001368, 1500124610, 3971001081], "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "way", "id": 394062131, "nodes": [4548425533, 1500124638, 4548425534], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 394062134, "nodes": [4490265803, 1500124531, 3971001363], "tags": {"crossing": "traffic_signals", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "way", "id": 394062138, "nodes": [1500124644, 27508048, 27508161, 4548425535], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "way", "id": 394062142, "nodes": [4548425536, 27516658, 27516655, 4548425537], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 394062145, "nodes": [3971001068, 3971000871, 3971000973, 3971000971, 3971001066], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 394062149, "nodes": [4536044174, 4536044175, 4769243622, 4536044176, 4536044177, 4769243626, 4536044179, 4536044180, 1500124637, 433406887, 1500124619, 4583282671, 1500124566, 4549842346, 1500124498, 4536045394, 4536044185, 4536045392, 4536045391, 4536044188, 4536045390, 4536045389], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 398715610, "nodes": [25902124, 1760085670, 1760085677], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 398717875, "nodes": [1203847181, 27517855], "tags": {"cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "maxspeed:lanes": "50|50|30|50", "name": "Calle de los Vascos", "name:etymology:wikidata": "Q126756", "oneway": "yes"}}, {"type": "way", "id": 403949269, "nodes": [21990743, 3050556981, 21990735], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Velarde", "name:etymology:wikidata": "Q718282", "oneway": "yes", "postal_code": "28004", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 405940983, "nodes": [55138197, 8577075129], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de Benito Guti\u00e9rrez", "name:etymology:wikidata": "Q21872966", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 406569157, "nodes": [4086238784, 4086238785, 27516696], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 407979311, "nodes": [32604452, 2160260298], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Pablo Iglesias", "name:etymology:wikidata": "Q450299", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 407979312, "nodes": [2688019416, 11097973985, 11097973987, 11097973988, 2688019415, 11097973989, 11097973990, 914974940, 11097973991, 11097973992, 369845645, 914974919, 3918709945, 914974943, 7756112662, 914974933, 914974938, 7756112663, 914974937, 914974934, 914974941, 914974922, 914974930, 914974927, 150371212], "tags": {"goods": "no", "hgv": "no", "highway": "motorway_link", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "3.5", "maxspeed": "50", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 408043268, "nodes": [26579102, 26579103, 26579104, 26579105], "tags": {"highway": "trunk", "lanes": "3", "lit": "yes", "maxspeed": "30", "name": "Avenida de los Reyes Cat\u00f3licos", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;slight_left|none|none"}}, {"type": "way", "id": 408940662, "nodes": [4108431407, 4108431406, 4108431404, 4108431403], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 409021271, "nodes": [4109163310, 3268713825, 3268713824, 143508731, 3268713823, 8294970381, 143508732, 8294970384, 1505106044, 29802998], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Maldonado", "name:etymology:wikidata": "Q2742352", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 409108450, "nodes": [4110020878, 4110020879, 4386417608, 4110020876, 4110020875, 4110020874, 4110020871, 4110020868, 4110020866, 4110020865, 4110020867, 4110020869, 4110020870, 4457193355], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 409108452, "nodes": [4110020861, 4110020854, 3594842608], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 409108453, "nodes": [4110020845, 4110020844, 1179022558], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 409108454, "nodes": [4110020856, 622204582, 622204583, 4110020861], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 409108455, "nodes": [4110020867, 11159850027, 622204585, 622204584, 6981674374], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 410636369, "nodes": [4124433458, 4124433466, 4124433467, 4124433468, 4124433471, 4124433473, 4124433474, 4124433475, 4124433476, 4124433477, 4124433478, 8703242766, 4124433479, 4124433480, 4124433481, 4124433482, 10992413086, 10992413085, 10992413084, 10992413083, 10992413082, 10992413081, 10992413080, 10992413079, 10992413078, 10992413077, 10992413076, 10992413075, 10992413074, 10992413073, 10992413072, 10992413071, 10992413070, 10992413069, 10992413068, 10992413067, 10992413066, 10992413065, 10992413064, 10992413063, 10992413062, 10992413061, 10992413060, 10992413059, 10992413058, 10992413057, 10992413056, 10992413055, 10992413054, 10992413053, 10992413052, 10992413051, 10992413050, 10992413049, 10992413048], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 411464909, "nodes": [1339493574, 1339493459, 4131272788, 4131272789, 4131272790, 4131272791, 2759785973], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 411464912, "nodes": [4131264328, 4131264329, 2004157573, 4131264330], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 411464915, "nodes": [3964436612, 4131272795, 4302598231, 7058286488, 4131272796, 7058286486, 8707182042, 4131272799, 4131272800, 4131272801, 4131272802, 4131272803, 7058240048, 4131272805, 4131272806, 7058240009, 9294124003, 7058240010, 8707182002, 7058240011, 7058240012, 7058240013, 8707182056, 7058240015, 7058240016, 7058240018], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 411798731, "nodes": [3223002925, 4134040218, 4134040225, 4134040224, 4134040222, 4134040220, 4134040219, 4134040214, 4134040208, 4134040201, 4134040192, 4134036587, 4134040190, 4134040198, 4134040206, 4134040213, 4134040227, 4134040232, 3223002938, 4134040251, 4134040247, 4134040239, 4134040216, 4134042367, 4134042366, 4134042365, 4134042364], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 411798732, "nodes": [4134040216, 4134040217, 2004157610, 3223002930], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 411799079, "nodes": [3223002885, 4134042364], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 411799511, "nodes": [21990728, 1591329870], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 411799512, "nodes": [1591329870, 4134046207, 4134046209], "tags": {"highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 411799513, "nodes": [21990727, 4134046216, 4134046213, 4134046210, 4134046208, 1591329870], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 411799537, "nodes": [21990727, 4134046214, 4134046211, 4134045993], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 413309917, "nodes": [4146472733, 9158965238], "tags": {"highway": "steps", "incline": "up", "level": "-1", "surface": "paved"}}, {"type": "way", "id": 413675259, "nodes": [340225645, 4149512201], "tags": {"highway": "footway", "surface": "paved"}}, {"type": "way", "id": 414212315, "nodes": [26578942, 3033655162, 5385239919, 26578943, 8577075129, 1505080991, 26578944], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 414212316, "nodes": [8577075128, 929294336, 3033655162, 4153824143], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2011", "surface": "asphalt"}}, {"type": "way", "id": 414212317, "nodes": [4153824137, 1669117694, 4153824136], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2011", "surface": "asphalt"}}, {"type": "way", "id": 414214732, "nodes": [338945047, 4153842592], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 414214734, "nodes": [4470479427, 3633377316, 4536044187, 26579041], "tags": {"highway": "service", "lit": "yes"}}, {"type": "way", "id": 416156155, "nodes": [5063895983, 25934453, 4169858405], "tags": {"bicycle": "dismount", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 416156156, "nodes": [4169858405, 3167086903, 8590458188, 3167086901, 3167086902, 25934317, 5422404802, 3167086899, 25906134, 25906135], "tags": {"bicycle": "dismount", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 416156157, "nodes": [4169858408, 5063895981, 4169858409, 4169858410], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 416156158, "nodes": [4169858411, 5214866744, 4169858412, 4169858413], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 416551693, "nodes": [26211530, 5385239918, 8430180232, 5385241361, 3594139290, 1669117870, 26211528], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 416551694, "nodes": [1320787444, 1669118015, 26211530], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:backward": "2", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 416551695, "nodes": [1320787110, 27508163, 27508162], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 417038678, "nodes": [25903296, 3418035846], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 417301656, "nodes": [4178663201, 4178663199], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones", "tunnel": "building_passage", "wheelchair": "yes"}}, {"type": "way", "id": 417376728, "nodes": [2834191516, 3253942890, 3253942889, 3567226102], "tags": {"highway": "service", "lit": "yes", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 417376730, "nodes": [4179348730, 6319067315], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "level": "0;0.5", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 417395509, "nodes": [4179550393, 4179550395], "tags": {"highway": "steps"}}, {"type": "way", "id": 417395512, "nodes": [291274927, 4179550394], "tags": {"highway": "steps"}}, {"type": "way", "id": 417396563, "nodes": [4179548215, 9682524444], "tags": {"highway": "steps"}}, {"type": "way", "id": 417396565, "nodes": [321256790, 9682524445], "tags": {"highway": "steps"}}, {"type": "way", "id": 417398266, "nodes": [616211624, 4179570127], "tags": {"highway": "steps"}}, {"type": "way", "id": 417398268, "nodes": [4179570123, 4179570124], "tags": {"highway": "steps"}}, {"type": "way", "id": 417398271, "nodes": [3927591428, 4179570125], "tags": {"handrail": "yes", "highway": "steps", "ramp": "no"}}, {"type": "way", "id": 417398274, "nodes": [616211030, 4179570128], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 417398277, "nodes": [616211641, 4179570126], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 417400304, "nodes": [2973015613, 4179587976], "tags": {"highway": "steps", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 417988254, "nodes": [28096905, 327492878], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 417988255, "nodes": [327492878, 1377881488, 8787245633, 8787245644, 143508728, 8787245645, 3268713830, 143497929, 3268713843, 143500432, 100890243], "tags": {"highway": "residential", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 417988256, "nodes": [29739619, 3268713831, 9672874693, 143504242], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lanes:psv:backward": "1", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "postal_code": "28006", "psv:lanes:backward": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 418834902, "nodes": [25902060, 2053142713, 25902059], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Alcal\u00e1 Galiano", "name:etymology:wikidata": "Q1626617", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 419279641, "nodes": [4193838263, 6329901687], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 419279650, "nodes": [4197170915, 4193838289, 4193837482, 9440297915], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 420411056, "nodes": [4245283126, 4245283127, 5273350504], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 420411060, "nodes": [4203412904, 622204581, 622204580, 4346458223], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 420655419, "nodes": [1689543057, 4206086994], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "noname": "yes", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 420655420, "nodes": [1689543057, 8307252479, 5966607256, 3268713838, 143497929, 3268713837, 3268713836, 143497066, 3268713834, 5966607275, 5966607276, 3268713833, 29739619], "tags": {"highway": "tertiary", "lanes": "5", "lanes:backward": "3", "lanes:forward": "2", "lanes:psv:backward": "1", "maxspeed": "50", "name": "Calle de Diego de Le\u00f3n", "name:etymology:wikidata": "Q3027464", "postal_code": "28006", "psv:lanes:backward": "yes|yes|designated"}}, {"type": "way", "id": 420655421, "nodes": [1689543057, 3268713842, 1555729989, 1555729943, 9054511966, 9054511990, 1555729975], "tags": {"highway": "cycleway", "maxspeed": "10", "name": "Acera Bici Serrano", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 420655422, "nodes": [4206086994, 2679640383], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "noname": "yes", "oneway": "yes", "sidewalk": "left", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 420655423, "nodes": [4206086994, 25902584], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 421052149, "nodes": [4208913676, 4208913672], "tags": {"access": "private", "highway": "service", "oneway": "no", "service": "parking_aisle"}}, {"type": "way", "id": 421396691, "nodes": [60018334, 674477996, 98960966], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Calle General \u00c1lvarez de Castro", "name:etymology:wikidata": "Q2698525", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 421563921, "nodes": [4213142643, 4213142644], "tags": {"handrail": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 421563922, "nodes": [1465071281, 1465071280, 4213142665, 4213142666, 4213142668, 4213142667, 2053099707, 2053099694, 4576234342, 2053099684, 4576234343, 8936377434, 2053099692, 2377018038, 2377018029, 2377018020, 2377018004, 8307252469, 4576234346, 8307252471], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 421563923, "nodes": [4213142646, 4213142644], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 421563924, "nodes": [4213142639, 4213142638], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 421563927, "nodes": [4213142638, 4213142637, 4999319321, 4999318718, 4213142634, 4213142643], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 421563928, "nodes": [1278838951, 1278839019, 1278838976, 4213142646, 1278838932, 4213142645], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 421898220, "nodes": [340225846, 2466689608, 81466847], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 422995980, "nodes": [25935149, 858587224, 7864693890, 6441681754, 1357992473, 25935141], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 422997712, "nodes": [25935060, 2283339295, 8429132483, 6441681747, 1378696867, 25935071], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 422997718, "nodes": [25935060, 6441681725, 25935074], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "2", "lit": "yes", "name": "Glorieta del Gran Capit\u00e1n", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 422999226, "nodes": [25935062, 11533572599, 1651583794, 1651583792, 25935043, 25935044, 1666721129, 25935046, 25935048, 1660871696, 25935049, 25935051, 1651583798, 25934849, 22023240], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999622, "nodes": [26067289, 4827701833, 11248486982, 26067287, 26067298, 26067285, 8429132473, 26067261, 26067262], "tags": {"highway": "residential", "lit": "yes", "name": "Traves\u00eda del Conde Duque", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999623, "nodes": [26067289, 11533572632, 11228709907, 26067288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Conde Duque", "name:etymology:wikidata": "Q27031730", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999624, "nodes": [26066554, 26066555, 5963987037, 26066556, 5970484995, 26066572, 9712059178, 674492240, 26066571], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 422999625, "nodes": [26066550, 26066554], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 422999626, "nodes": [26058809, 6314674725, 26058801], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle del Esp\u00edritu Santo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 422999929, "nodes": [26058802, 3842361694, 3842361695, 26058806, 26066576], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Madera", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 422999930, "nodes": [26058790, 4062386148], "tags": {"highway": "residential", "lit": "yes", "name": "Plaza de San Ildefonso", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 423876763, "nodes": [55161108, 8440879530, 1179021961, 55161119], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "psv": "taxi", "psv_1": "bus", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 423876764, "nodes": [55161108, 1358036203, 55161100, 55161094, 4437657600, 55161091, 1179022518, 25935540], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle del Buen Suceso", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 423876765, "nodes": [4233944620, 4233944621], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 423876766, "nodes": [4233944622, 4233944623], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 423876767, "nodes": [4233944620, 1364771096, 4233944622], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 423876768, "nodes": [4233944622, 1364770975, 1364770953, 4234126267, 1364770913, 1364770912, 1716935322, 1364770896, 1364770880, 1364770891, 55138143, 1364770883, 1364770887], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 423888261, "nodes": [26578958, 1505080991, 4234036249], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 423888263, "nodes": [1505080997, 4234036250], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 423894633, "nodes": [4234097904, 3428476987, 4234097903], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 423894634, "nodes": [4234097907, 4234097904, 4234097905, 4234097906, 5802031861, 5802031860, 5802031857, 4234097907], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 424277239, "nodes": [4237239313, 4237239311, 8778804416, 4237239312], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 424277240, "nodes": [4237239312, 3802946105], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 424277241, "nodes": [4237239318, 3663324554, 8778804381, 3802947047], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 424278502, "nodes": [4237264571, 4808864932, 1591329929, 3167086900], "tags": {"bicycle": "dismount", "crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 424278505, "nodes": [4808864933, 25906104], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 424278507, "nodes": [25906104, 1591329959, 25934470, 1591330012, 25934524, 1591330037, 25934522, 1591330108, 141886675], "tags": {"highway": "residential", "name": "Calle de Manuel Silvela", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 424278508, "nodes": [25906104, 5970484998, 1591329976, 22022371], "tags": {"cycleway:right": "lane", "cycleway:right:lane": "exclusive", "highway": "primary", "lanes": "3", "lanes:bus": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Sagasta", "name:etymology:wikidata": "Q379779", "oneway": "yes", "sidewalk": "right", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 424844827, "nodes": [101190048, 100881578], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle Santiago Bernab\u00e9u", "name:etymology:wikidata": "Q223156", "surface": "asphalt"}}, {"type": "way", "id": 425082671, "nodes": [98960521, 2283361223, 98956258], "tags": {"cycleway:both": "shared_lane", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 426247738, "nodes": [4255514049, 1378696865, 5777200233, 4255514048], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 426247739, "nodes": [4255514049, 4255514050], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 426502555, "nodes": [4257948305, 11690717941], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 426502556, "nodes": [4257948307, 11690717881, 11690717903, 11690718012, 11690717932, 11690717974, 4257948304, 4257948306, 4257948308, 4257948307], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 426502557, "nodes": [4257948309, 11690717890], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 426788127, "nodes": [4490265790, 1500124475, 4536011554], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 426788130, "nodes": [4490265795, 4490265799, 4490265794, 4260523374, 4490265363, 4490265358, 4490265356, 4548405660, 4490265355, 3971001067, 3971000978, 3971001071, 1500124436, 3970983769, 1500124446, 4490265372, 3970983771, 1500124465, 1500124495, 4490265791, 4490265795], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 426789322, "nodes": [4260545533, 4260545532, 4260545534], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 426789323, "nodes": [4260545534, 7058260811, 4260545535, 9116858057, 9116858061, 9116858060, 4277498388, 4277498387, 4277498389, 8707182009, 7058260806, 7058272484, 9802859470, 7058260809, 9802859469, 9802859473, 7058260810, 9802859474, 7058260811], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 426797870, "nodes": [4260643622, 4548405617, 4548405618, 4548405619, 4548405620, 4548405621, 4548405615, 4548405622, 4548405623, 4548405634, 4548405635, 4548405624, 4548405625, 4548405626, 4260643621, 4260643622], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 426797871, "nodes": [4548387410, 1669117970, 4633502235], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 426803454, "nodes": [4260707792, 4260707791, 4260707793], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 426803455, "nodes": [4260707795, 4260707794, 4260707796], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 426803456, "nodes": [4260707806, 25906302, 4260707807], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 426803457, "nodes": [7159758625, 4260707808, 4260707815, 4260707807, 4260707809, 4260707793, 4260707810, 4260707796, 4260707811, 4260707812], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 426803458, "nodes": [4260707812, 21990703, 4260707813], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 426803459, "nodes": [4260707815, 4260707816, 4260707814, 4260707812], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 427774688, "nodes": [4269562178, 4269562177, 4269562179], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 427774689, "nodes": [4269562179, 4269562180, 4576234306, 4576234305, 4576234304, 4576234303, 4576234302, 4576234301, 4576234300, 4576234299, 4269562179], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 427812821, "nodes": [4891641101, 4269894873, 4269894874, 4269894875, 4269894876, 4269894877, 4269894878, 9549391151, 4269894879, 4269894880, 1339493364, 4269894881, 4269894882, 4269894883, 4269894884, 4269894885, 4269894886, 4269894887, 4269894888], "tags": {"highway": "path", "lit": "no", "smoothness": "good", "surface": "ground"}}, {"type": "way", "id": 427918464, "nodes": [4270791881, 4270791877, 4270791882], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 427918465, "nodes": [4270791883, 4270791882, 4270791884, 4270791885], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 428263073, "nodes": [4548435336, 1669118140, 4548435335], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 428263074, "nodes": [4273925939, 4273925940, 4637277860, 4548454354, 4637277859, 4637277858, 4637277857, 4637277856, 4637277855, 4637277854, 4637277853, 4637277852, 4637277849, 4637277851, 4637277850, 4273925939], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 428661755, "nodes": [4277489482, 2972941369, 4277489483], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 428661756, "nodes": [4277489482, 4277489484], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 428661853, "nodes": [4277498386, 4277498385, 4277498387], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 428662558, "nodes": [4277504647, 8846574703, 8846574700, 4277504642, 4277504648], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 428733843, "nodes": [4633524911, 1669117922, 4633524912], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 428733844, "nodes": [4278276592, 4637023401, 4637023402, 4548451516, 4633502313, 4637023403, 4637023404, 4633502317, 4637023405, 4637023406, 4637023407, 4633524913, 4633524914, 4633524915, 4278276591, 5339092675, 4278276592], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 428829150, "nodes": [25903333, 25903309], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 428829151, "nodes": [25903333, 25901895], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 428829834, "nodes": [26067881, 1789638279, 5385241356, 298609370, 7934347520, 26068006, 1501200385, 5282009925], "tags": {"bicycle:lanes": "designated|no", "cycleway:lanes": "shared_lane|no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:lanes": "30|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|designated", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 428920234, "nodes": [4280384801, 1669117825, 4280384802], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920235, "nodes": [4280384803, 1669117838, 4280384804], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920236, "nodes": [4280384805, 1669117821, 4280384806], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920237, "nodes": [4280384807, 3212178930, 4280384808], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920238, "nodes": [4280384808, 4280384806], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920239, "nodes": [4280384804, 4280384805], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920240, "nodes": [4280384802, 4280384803], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 428920241, "nodes": [4280384801, 4280384807, 11225754941, 11225754940, 11225754938, 11225754836, 11225754939, 11225754937, 4280384801], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 428949464, "nodes": [81466847, 8427069635, 3347875437, 81466846], "tags": {"highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Orense", "surface": "asphalt"}}, {"type": "way", "id": 428949465, "nodes": [4280781514, 2466689608, 4280781515], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 428949467, "nodes": [9139732325, 2466689601, 9139732326], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 428949468, "nodes": [4280781526, 4280781516, 4280781514, 4280781527], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 428954816, "nodes": [4280822367, 4280822366, 4280822368], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 428954817, "nodes": [4280822373, 4280822368, 4280822372], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 428960697, "nodes": [4280901956, 4280901957, 5235742173, 5235742170, 5235742171], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 429211386, "nodes": [6981674373, 4283399301, 3471365928, 4283399302], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 429211387, "nodes": [4283399300, 4283399304, 4283399302], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 429691796, "nodes": [355172281, 351923288], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Raimundo Fern\u00e1ndez Villaverde", "name:etymology:wikidata": "Q959509", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 429691806, "nodes": [1336935931, 339636384], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 429691811, "nodes": [339636378, 355172281], "tags": {"cycleway:right": "shared_lane", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "paved"}}, {"type": "way", "id": 429692900, "nodes": [28096905, 4184539389, 4184539390, 1377881475, 4184539391, 4184539393, 29739617, 4184539400, 1377881473, 5232421896, 8479324955, 28096889, 7098087922, 1505106022, 29802991], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan Bravo", "name:etymology:wikidata": "Q2742152", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 429696851, "nodes": [1613048524, 25902800], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 429696856, "nodes": [1613048524, 25902821], "tags": {"highway": "residential", "lanes": "5", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 430419825, "nodes": [4208913662, 4208913676, 4208913680], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 430419826, "nodes": [4208913680, 4208916610, 4208916647, 4208913672], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 430419827, "nodes": [4208916614, 4536146127, 4583287789, 4637805030, 4637805034, 4208916603, 4637805033, 4208913662], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 430662594, "nodes": [4299253659, 4299253660], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 430662595, "nodes": [4299253660, 4299253661, 4299253662], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 431009605, "nodes": [4302598231, 4131272794, 3197987493], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 431027708, "nodes": [4302767564, 4302767565, 11225755091, 11225755128, 11225755092, 4470285271, 6440420383, 11225755093, 11225755097, 11225755094, 11225755095, 11225755096, 11225755132, 4302767564], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 431505098, "nodes": [4307136108, 4307136109, 4307136110], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 431505099, "nodes": [4307136111, 5802031862, 5802031863, 5802031866, 5802031865, 6614655212, 9999692406, 9999692405, 5802031867, 5802031869, 4307136108, 4307136111], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 431510464, "nodes": [4307191007, 1223809841, 4307191008], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 431510465, "nodes": [4307191021, 4307191020, 4307191007, 4307191009, 4307191015, 4307191012, 4307191010, 4307191011, 4307191017, 4307191022, 9130000726, 3627050626, 4626597075], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 431510466, "nodes": [4307191012, 4307191013, 4307191014, 4307191015], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 431510467, "nodes": [4307191017, 4307191016], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 431513782, "nodes": [4307222126, 1654250199, 4307222127], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 431513783, "nodes": [4307222130, 1654250202, 4307222131], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 431513784, "nodes": [4307222144, 4307222127, 4307222131, 4307222145], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 431514649, "nodes": [4307227337, 4307227338], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "no", "surface": "paving_stones"}}, {"type": "way", "id": 431524489, "nodes": [4583258813, 1669117834, 4583258814], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 431524490, "nodes": [4583258816, 1669117862, 4583258815], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 431525590, "nodes": [55161059, 55161064], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle del Rey Francisco", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 431525591, "nodes": [55161059, 55161082, 55161094, 4245283126, 55161130], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Mart\u00edn de los Heros", "name:etymology:wikidata": "Q9029845", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 431525592, "nodes": [55161064, 55161030, 55138166, 7619689678, 7619689680, 55161049], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Juan \u00c1lvarez Mendiz\u00e1bal", "name:etymology:wikidata": "Q167743", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 431525593, "nodes": [55161064, 4346484128, 55161067, 1364770912, 26080757], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle del Rey Francisco", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 431975616, "nodes": [4311812602, 4311812606], "tags": {"highway": "service", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 431975617, "nodes": [4311812564, 4311812601, 4311812616, 4311812620, 4431660198, 4431660199, 4431660201, 4431660203, 4431660204, 4431660205, 4431660206, 4431660208], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 431975618, "nodes": [4637277863, 4273925938, 4311812551, 4311812550, 4311812549, 4311812548, 4548435329, 4637277871, 4637277870, 4637277869, 4637277868, 4637277867, 4637277866, 4637277865, 4637277864, 4637277863], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 431975619, "nodes": [4637277842, 4311812564, 1669118122, 4311812554, 4311812553], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paved"}}, {"type": "way", "id": 432004482, "nodes": [4311985761, 4311985760, 4311985762], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 432004484, "nodes": [4311985762, 4311985763], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 432296988, "nodes": [4313763685, 4313763686], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 434276264, "nodes": [4324546703, 3927556773, 4324546704], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 434276265, "nodes": [4324546705, 3927556774, 4324546706], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 434276266, "nodes": [4324546707, 3927556775, 4324546708], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 434276267, "nodes": [4324546710, 4324546705, 4324546711, 4324546707, 4324546712], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 434276268, "nodes": [4324546713, 4324546706, 4324546703, 4324546714], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 434276269, "nodes": [4324546715, 4324546716, 4324546704, 4324546717], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 434835964, "nodes": [4327543828, 4327543829], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 435629248, "nodes": [4335298559, 4335298560, 8649272390], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 436761532, "nodes": [25902124, 1760085668, 25903290], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 436761533, "nodes": [25901951, 3428425020, 25903292, 1760085666, 25903290], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 436766213, "nodes": [25903288, 1760085699, 5006946998], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 436766214, "nodes": [25903288, 1760085693, 25902154], "tags": {"bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Villamagna", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 436773111, "nodes": [4457193354, 4457193356, 8577075126, 4346458223], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 437148479, "nodes": [4349725688, 4349725686, 4349727289, 4349727294, 4349727295, 4349725679], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437148480, "nodes": [4349725688, 4349727296, 4349727302, 4349727304, 4349725680], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157168, "nodes": [5006946998, 25903282], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157170, "nodes": [25902199, 1760085702, 5006946998], "tags": {"abutters": "residential", "bicycle": "yes", "cycleway:right": "no", "foot": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157171, "nodes": [25902327, 4349802687, 5242554915, 25902199], "tags": {"bicycle": "yes", "cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "postal_code": "28006", "sidewalk": "right", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 437157172, "nodes": [25902199, 4349802678, 4349802673, 4349802672, 25902327], "tags": {"bicycle": "yes", "cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "oneway": "yes", "postal_code": "28006", "sidewalk:left": "no", "sidewalk:right": "separate", "surface": "asphalt"}}, {"type": "way", "id": 437157173, "nodes": [25903282, 1760085696, 25903287], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 437157174, "nodes": [25903271, 1223809830, 25903282], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 437157175, "nodes": [25902199, 1223809784, 1085874133, 1493669252], "tags": {"cycleway:both": "no", "highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 437157177, "nodes": [4349802643, 4349802633], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157178, "nodes": [4349725679, 4349802670], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157179, "nodes": [4349802662, 5242554913, 4349802667], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 437157180, "nodes": [4349725680, 4349802670], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157181, "nodes": [4349725681, 5602471271, 4349725688], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157182, "nodes": [4349802634, 4349802688, 4349802790], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157183, "nodes": [4349802790, 4349802792, 5242554916, 25902199], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157184, "nodes": [4349802670, 4349802669, 4349802643], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157185, "nodes": [4349802673, 4349802680, 4349802681, 4349802682], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 437157186, "nodes": [4349802682, 4349802679, 4349802676, 4349802635], "tags": {"highway": "service", "lanes": "1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157187, "nodes": [4349802633, 4349802653, 4349802656, 4349802660, 4349802663, 4349802662], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 437157188, "nodes": [4349802643, 4349802632, 4349802641, 4349802645, 4349802649, 4349802655, 4349802662], "tags": {"highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 440871740, "nodes": [4386417608, 4386417609, 4386417610], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 440871741, "nodes": [4153824142, 4386417611, 4386417612], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2011", "surface": "asphalt"}}, {"type": "way", "id": 440871742, "nodes": [4470285261, 4470285263, 4470285265, 4470285273, 4470285275, 4470285277, 4470285279, 4470285280, 4428052212, 4386417614, 4386417612, 4386417615, 4386417610, 4470285261], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 440871871, "nodes": [11159850014, 1669117690, 11159850015, 4110020878], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2011", "surface": "asphalt"}}, {"type": "way", "id": 440871872, "nodes": [4153824143, 4153824141, 4153824138, 4153824137, 4153824139, 4153824140, 4153824142, 4386419253, 4428052213, 4428052214, 4428052209, 4428052210, 4428052205, 4428052202, 4428052200, 4428052198, 4428052194, 4428044482, 4234036249], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 440873725, "nodes": [9169688101, 4642427924, 8583841220, 4643041887, 4643041886, 4643041885, 4643041884, 9165505526, 9169688099, 9169688100, 9169688189, 9169688101], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 441588654, "nodes": [7300259095, 4393276539, 5602172191, 4393276540, 4393276541, 4393276542, 4823950344, 4823950345, 4823950346, 4823950347], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 443379009, "nodes": [4409649633, 4409649634, 4409649637, 4409649635, 4409649636], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 443993090, "nodes": [4414949439, 3646907642, 4414949438, 1364771980, 1364771974], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 443993091, "nodes": [4414949437, 1364772083, 3646907642], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 443994783, "nodes": [2759785958, 2759785960, 2759785962, 2759785964, 2759785965, 2759785967, 4131272793, 9116858092, 2759785969, 2759785973, 2759785974, 2759785976, 2759785979, 2759785984, 2759785987], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 444246008, "nodes": [4417323880, 4417323879], "tags": {"foot": "yes", "highway": "steps", "motor_vehicle": "no", "name": "Calle de Esquivel", "wheelchair": "no"}}, {"type": "way", "id": 444246009, "nodes": [4417323879, 4417346834, 8740749851, 2661689880], "tags": {"foot": "yes", "highway": "pedestrian", "motor_vehicle": "no", "name": "Calle de Esquivel", "postal_code": "28015", "surface": "sett"}}, {"type": "way", "id": 444249825, "nodes": [4417386079, 4417386080, 4417386081, 4417386082, 4417393081], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 444250837, "nodes": [4417396288, 4417396279, 4417396275, 4417396271, 4417396267, 4417396264, 4417396259, 4417396254, 4417396251, 4417396235, 4417396198], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 444250838, "nodes": [4417393088, 4417393081, 4417393063, 4417393064, 4417393065, 4417396196, 4417396200, 4417396204, 4417396207, 4417396210, 4417396233, 4417396232, 4417396231, 4417393088], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 444250839, "nodes": [4417396198, 4417386085, 4417393088], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 444250840, "nodes": [4417396253, 4417396249, 4417396238, 4417396236, 4417396234, 4417396226, 4417396224, 4417396223, 4417396217], "tags": {"handrail": "no", "highway": "steps", "incline": "down", "lit": "no", "ramp": "no", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 444810145, "nodes": [4422726767, 4422726766, 4422726764, 4422726762, 4422726761, 4422726760], "tags": {"foot": "no", "highway": "service", "maxheight": "2.10", "service": "parking_aisle"}}, {"type": "way", "id": 445362286, "nodes": [4428052287, 4428052286, 4428052285, 4428052284, 4428052391], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445362287, "nodes": [4428052266, 4428052268], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445362288, "nodes": [4428052288, 4428052287], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "24/7", "smoothness": "good", "surface": "paving_stones", "tunnel": "yes", "wheelchair": "yes"}}, {"type": "way", "id": 445362289, "nodes": [4428052280, 4428052277], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "building_passage", "wheelchair": "yes"}}, {"type": "way", "id": 445362290, "nodes": [4428052391, 3594842627], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362291, "nodes": [1364772807, 1364772850], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445362292, "nodes": [4549589319, 1364773043], "tags": {"check_date:smoothness": "2023-05-18", "crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362293, "nodes": [4428052389, 1669117758, 4428052390], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362294, "nodes": [4428052259, 1505081023, 4428052263], "tags": {"check_date:smoothness": "2023-05-19", "crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362295, "nodes": [4428052400, 4549603314, 1669117828, 4428052398], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362296, "nodes": [4178663199, 4428052204, 4234036250], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445362297, "nodes": [4428052286, 26579182, 26579183, 4428052278, 4428052276], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362298, "nodes": [4428052242, 4428052237, 1505081002, 4428052201, 4428052198], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 445362299, "nodes": [4428052277, 4428052276, 4428052271, 4428052266, 4428052264], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445362300, "nodes": [4428052242, 4428052252, 4428052255, 4428052258, 4428052259, 4428052268, 4428052281, 4428052280], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 445818384, "nodes": [4431660205, 4431660207], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 445818385, "nodes": [4311812620, 4311812619, 4311812611], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 446342083, "nodes": [4436330707, 4436330708, 4436330709, 4436330710], "tags": {"highway": "steps"}}, {"type": "way", "id": 446342087, "nodes": [4436330716, 1140217832, 4436330717], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 446342089, "nodes": [4436330710, 4436330716, 4436330721, 4436330723], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 446493663, "nodes": [4437536683, 4437536369, 4470297994, 4437536360, 4437536357, 4437536356, 4437536354, 4470297989, 4437536352, 4437536355, 4437536675, 4437536679, 4437536681, 4437536682, 4437536686, 4437536685, 4437536684, 4437536683], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 446510731, "nodes": [4437657601, 4437657600, 4437657602], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 446510732, "nodes": [4437657603, 4437657599, 4437657604], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 446510733, "nodes": [4437657605, 4437657601, 4437657606, 4437657603, 4437657607], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 446680606, "nodes": [4439143644, 4439143643, 4439143645], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 446680607, "nodes": [4439143655, 4439143648, 4439143654, 4439143645, 4439143646], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 446680608, "nodes": [4439143648, 4439143647, 4439143649], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 448227144, "nodes": [4452608819, 989278010, 4452608820], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 448227145, "nodes": [4452608821, 4452608819, 4452608822, 4452608823], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 448671775, "nodes": [4456608446, 1364771894, 1364771876, 1364771873, 4327543828, 1364771864, 1364771805, 1364771799, 1364771793, 1364771695, 1364771581, 7124682475, 1364771397, 1095709762], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 448687840, "nodes": [3527091834, 4456746626, 4456746622, 4470447684, 4470447682, 4456746619, 4456746625, 4470447687, 4470447686, 4456746623, 4456746617, 4470447680, 4470447679, 4456746615, 4470447683, 4456746620, 4470447681, 4456746618, 4456746614, 4470447677, 4456746613, 4456746621, 4470447685, 4456746616], "tags": {"highway": "footway", "wheelchair": "yes"}}, {"type": "way", "id": 448737292, "nodes": [8577075127, 622204587, 622204586, 4457193355], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 449183071, "nodes": [4461493483, 4461493484, 8625818254], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 449738572, "nodes": [4172945203, 4933405772, 4933405774, 4466748455, 4933405773, 4466748456], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 449771509, "nodes": [2053099688, 1760085654, 7326848786, 7326848785, 1278839008, 7326843484, 1278838934], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 449771510, "nodes": [1278838934, 1278838992, 1278839045, 4701287014, 4701287015, 4701273366], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 449771514, "nodes": [1278839045, 7326848787, 1278839071, 25903292, 1760085656, 25902054, 1760085655, 3073306064], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 449771515, "nodes": [3073306064, 25552450], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 449772532, "nodes": [4467080338, 4467080337, 4467080339], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 449772534, "nodes": [4467080341, 4467080343, 4467080344], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 449772622, "nodes": [4467081599, 4467081600], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 449773021, "nodes": [4467082435, 4467082436, 4840111215, 8911132532, 4840111216], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 450107578, "nodes": [4470285287, 4470285284, 4470285283, 4470285288, 4470297990, 4470297991, 4470297992, 4470312825, 4470312827, 4470312829, 4470312831, 4470297999, 4470298000, 4470298002, 4470298001, 4470297998, 4470297997, 4470297996, 4470312830, 4470312828, 4470312826, 4470312824, 4470285287], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 450107581, "nodes": [4470285259, 4470285260, 4470285262, 4470285264, 4470285266, 4470285272, 4470285274, 4470285276, 4470285270, 4470285269, 4470285268, 4470285267, 4470285258, 4470285257, 4470285256, 4470285259], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 450107584, "nodes": [4437536355, 1669117721, 4470297992], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107588, "nodes": [4437536679, 1669117734, 4470297999], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107590, "nodes": [4470297995, 1669117723, 4470297994], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107592, "nodes": [4470285287, 4470285286, 4470285285], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107594, "nodes": [4470298001, 1669117741, 4470298003], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107596, "nodes": [4470285288, 1669117711, 4470285276], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107599, "nodes": [4470285283, 1596698125, 4470285270], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107601, "nodes": [4437536356, 1669117718, 4470285279], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 450107603, "nodes": [4437536352, 1669117715, 4470285275], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 450107605, "nodes": [4470285281, 4470285278, 4470285271], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107608, "nodes": [4470285265, 1669117696, 4470285264], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 450107610, "nodes": [4470297993, 26578967, 4470285282, 4428052213], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 450123905, "nodes": [4470449592, 4470449599, 338945113, 4470449596], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 450126603, "nodes": [4470476663, 1364772887], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 450126604, "nodes": [1364772965, 1364772926, 4470476663], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "surface": "dirt"}}, {"type": "way", "id": 450126605, "nodes": [1364773004, 4470476666, 4470476667], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "lit": "yes", "surface": "dirt"}}, {"type": "way", "id": 450126606, "nodes": [1364773002, 1364772993, 1364772997, 1364773004], "tags": {"highway": "footway", "lit": "yes", "surface": "dirt"}}, {"type": "way", "id": 450126899, "nodes": [4470479428, 4470479430, 4470479429, 4470479427], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 450126900, "nodes": [338945047, 4470479434, 2319054900, 4470479428], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 450130128, "nodes": [4470512298, 4470512291, 4470512299, 4470512296, 4470512300], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 450131721, "nodes": [8566199520, 4470526573, 4470526574], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 450132559, "nodes": [4470531975, 6348133652, 6348133653, 6348133654, 6348133655, 6348133656, 6348133657, 6348133658, 6348133659, 6348133631, 6348133660, 6380794257, 6348133664, 6380794199, 6348133663, 6348133662, 6348133661, 4470531972, 4470531973, 6348133651, 4470531974, 10550528501, 4470531975], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 451731028, "nodes": [3096525892, 4485511538, 4548454357, 4548451519, 4485511536, 4485511535, 4637125745, 4485511533, 4637125752, 4485511531, 4485511529, 4485511532, 4485511534, 3096525890, 3096525892], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 451731029, "nodes": [3096525897, 3096525892], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 451731030, "nodes": [4485511527, 4485511533, 4485511537], "tags": {"highway": "service"}}, {"type": "way", "id": 451731031, "nodes": [3096525890, 3096525888, 3096525887], "tags": {"highway": "footway"}}, {"type": "way", "id": 452239245, "nodes": [4490265795, 4490265803], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 453058199, "nodes": [4498622027, 4498622026, 4498622028], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 453058200, "nodes": [4498622035, 4498622034, 4498622036], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 453058201, "nodes": [4498622038, 4498622037, 4498622039], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 453058202, "nodes": [3293613585, 6380794309, 6380794324, 6380794308, 9680529818, 4498622046, 4498622038, 4498622047, 4498622035, 4498622027, 4498622048, 6380794307], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 453135477, "nodes": [4499335098, 4499335099, 4499335100, 4499335101], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 453135478, "nodes": [4499335100, 4499335102, 4499335103], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 453135479, "nodes": [4499335099, 4499335104, 4499335105], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 453351907, "nodes": [4500945128, 4500945125], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 453351909, "nodes": [4500945116, 4500945124, 4500945136, 4500945137, 4500945143, 4500945125], "tags": {"highway": "path", "lit": "no"}}, {"type": "way", "id": 454045456, "nodes": [4506829281, 4506829282], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 454458185, "nodes": [4536011587, 4536011577, 4536011578, 4536011579, 4548405609, 4536011580, 4633502322, 4633502310, 4536011582, 4536011583, 4536011584, 4536011585, 4536011586, 4548435332, 4536011587], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 454915136, "nodes": [4513989459, 4513989460, 4513989461, 4513989462, 4513989463, 4513989464, 4513989465, 4513989466, 4513989467, 4513989468, 4513989469], "tags": {"highway": "path", "name": "Sendero Arboreto Montes", "surface": "unpaved", "width": "1"}}, {"type": "way", "id": 457458535, "nodes": [4536011553, 4548405658, 4536011552, 4536011551, 4260523375, 4536011550, 4548425717, 4548425711, 4536011549, 4536011548, 4536011547, 4548425760, 4536011546, 4536011545, 4548405654, 4536011544, 4536011553], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 457458536, "nodes": [4536011554, 4260523375], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 457458537, "nodes": [4260523374, 4490265790], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 457458538, "nodes": [4536011564, 4548425723, 4548425754, 4536011563, 4536011562, 4536011561, 4536011560, 4536011559, 4536011558, 4536011557, 4536011556, 4536011555, 4536011564], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 457458539, "nodes": [4536011576, 4536011575, 4548405637, 4536011574, 4536011573, 4536011572, 4536011571, 4536011570, 4536011569, 4536011568, 4536011567, 4536011566, 4536011565, 4548405627, 4536011576], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 457458540, "nodes": [4536013997, 4536013996, 4536013995, 4536013994, 4536013993, 4548451518, 4536013992, 4536013991, 4633502314, 4536013990, 4548451524, 4536013989, 4536011588, 4548454351, 4536013997], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 457461590, "nodes": [4536044173, 11381176989, 4536044172, 4536044171, 4536044170, 4536044169, 4536044167, 4536044168], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 457461591, "nodes": [4536044181, 4536044184], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 457461592, "nodes": [4536044185, 4536044182], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 457461593, "nodes": [4536044182, 4536044183, 4536044181], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 457461594, "nodes": [4470479427, 338945047], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 457461595, "nodes": [4536044188, 4536044187, 4536044186], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 457467088, "nodes": [4428052398, 4536099186, 4536099185, 4536099184, 4536099187, 11225755141, 4536099183, 4307324522, 4536099182, 4536099181, 11225755140, 4536099180, 4536099179, 4428052390, 4536099178, 4536099177, 11225755151, 1537917861, 11225755154, 4428052398], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 457467089, "nodes": [4536099187, 1669117865, 4536104708], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 457467090, "nodes": [4549589314, 1669117870], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 457467091, "nodes": [4549591267, 1669118015, 4549591266], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 457467092, "nodes": [4548405597, 1669118013, 4548405596], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 457467093, "nodes": [4536104701, 4583287794, 4536146127, 4583287791, 4536104700, 4536104699, 4536104698, 4536104697, 4536104696, 4536104695, 4548405595, 4536104694, 4536104693, 4536104692, 4548405643, 4536104691, 4536104690, 4536104701], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 457467094, "nodes": [4536104708, 4536104707, 4536099188, 4536104706, 4536104705, 4536104704, 4536104703, 4536104702, 4583258817, 4307324523, 4307324521, 4536104708], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 457468346, "nodes": [4208913672, 4208916603], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 458778826, "nodes": [25903324, 1278839062, 25903334, 25903337, 2508927633], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 458778827, "nodes": [25903324, 25903333], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Almirante", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458783505, "nodes": [4547336037, 7892603719, 4547336038, 4547336039, 4547336040], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 458783506, "nodes": [4547336042, 4547336041, 4547336038], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 458783507, "nodes": [4547336039, 4547336052, 4547336053], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 458912541, "nodes": [4548405594, 4548405595], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912542, "nodes": [3971000978, 4490265360], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912543, "nodes": [4490265360, 1669118077, 4548405594], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912544, "nodes": [4548405596, 4536104704], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912545, "nodes": [4536104699, 4548405597], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912546, "nodes": [4548405599, 4536104703], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912547, "nodes": [4536104701, 4548405598], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912548, "nodes": [4548405598, 1669118007, 4548405599], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912549, "nodes": [4548405601, 4536104690], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912550, "nodes": [4548405663, 4548405600], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912551, "nodes": [4548405600, 3136816570, 4548405601], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912552, "nodes": [4548405603, 4548405604], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912553, "nodes": [4548405605, 4548405602], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912554, "nodes": [4548405602, 1669118010, 4548405603], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912555, "nodes": [4548405607, 4548405606], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458912556, "nodes": [4548405609, 4548405608], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458912557, "nodes": [4548405608, 1669118019, 4548405607], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458912558, "nodes": [4548405614, 4548405685, 4548405616], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912559, "nodes": [4548405612, 4548405613], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912560, "nodes": [4548405610, 4548405611], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912561, "nodes": [4548405621, 4548387404], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912562, "nodes": [4548387404, 1669117964, 4548405610], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912563, "nodes": [4548387402, 4548405615], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912564, "nodes": [4548405613, 1669117965, 4548405614], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912565, "nodes": [4548405616, 2525814085, 4548387402], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912566, "nodes": [4548405626, 4548387389], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458912567, "nodes": [4536011576, 4548405628], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458912568, "nodes": [4548405628, 1669118030, 4548387389], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458912569, "nodes": [4548405633, 4548405634], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912570, "nodes": [4548405682, 4548405632], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912571, "nodes": [4548405636, 4548405635], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912572, "nodes": [4548405637, 4548405629], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912573, "nodes": [4548405630, 4536011573], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912574, "nodes": [4536011560, 4548405631], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912575, "nodes": [4548405639, 4548405640], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912576, "nodes": [4536011558, 4548405638], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912577, "nodes": [4548405632, 1669118016, 4548405633], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912578, "nodes": [4548405629, 1669118037, 4548405636], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912579, "nodes": [4548405631, 1669118047, 4548405630], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912580, "nodes": [4548405638, 1669118040, 4548405639], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912581, "nodes": [4548405642, 4548405643], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912582, "nodes": [4548405661, 4548405641], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912583, "nodes": [4548405641, 4536011543, 4548405642], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912584, "nodes": [4548387441, 4548405678], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912585, "nodes": [4548405670, 4548405644], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912586, "nodes": [4548405644, 1669118035, 4548387441], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912587, "nodes": [4548405646, 4536011555], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912588, "nodes": [4536011546, 4548405647], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912589, "nodes": [4548405647, 1669118075, 4548405646], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912590, "nodes": [4536011557, 4548405648], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912591, "nodes": [4548405650, 4548405649], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912592, "nodes": [4548405648, 1669118042, 4548405650], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912593, "nodes": [4548405652, 4548405653], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912594, "nodes": [4548405654, 4548405651], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912595, "nodes": [4548405651, 1669118045, 4548405652], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912596, "nodes": [4548405656, 4548405657], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912597, "nodes": [4548405658, 4548405655], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912598, "nodes": [4548405655, 1669118067, 4548405656], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912599, "nodes": [4548405659, 4536104692], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912600, "nodes": [4548405660, 4490265352], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912601, "nodes": [4490265352, 1669118071, 4548405659], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458912602, "nodes": [4548405672, 4548405671, 4548405653, 4548405670, 4548405645, 4548405669, 4548405668, 4548405605, 4548405667, 4548405666, 4548405665, 4548405664, 4548405663, 4548405662, 4548405661, 4548405657, 4548405672], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458912603, "nodes": [4548405687, 4548405686, 4548405685, 4548405684, 4548405683, 5777199721, 4548405682, 4548405681, 4548405680, 4548405640, 4548405649, 4548405679, 4548405678, 4548405677, 4548405676, 4548405675, 4548405674, 4548405604, 4548405673, 4548405687], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 458914848, "nodes": [4548425534, 1500124637], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 458914849, "nodes": [3575366930, 4548425533], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 458914850, "nodes": [4548425535, 1500124642], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 458914851, "nodes": [4490265365, 1500124436], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 458914852, "nodes": [1500124441, 4548425538], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 458914858, "nodes": [4548425708, 1500124587, 4548425709], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914859, "nodes": [4548425707, 4548425708], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458914860, "nodes": [4548425711, 4548425706], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458914861, "nodes": [4548425706, 1500124504, 4548425707], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914863, "nodes": [4548425713, 1500124593], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914864, "nodes": [4548425716, 4548425713], "tags": {"footway": "traffic_island", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914865, "nodes": [4548425717, 4548425712], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914866, "nodes": [4548425712, 1500124528, 4548425716], "tags": {"crossing": "traffic_signals", "crossing:island": "yes", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458914868, "nodes": [4548425722, 1500124571, 4548425720], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914869, "nodes": [4548425719, 4548425722], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914870, "nodes": [4548425723, 4548425718], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914871, "nodes": [4548425718, 1500124500, 4548425719], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914873, "nodes": [4548425737, 4633502251, 4536011568], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914874, "nodes": [4548425736, 1669118109, 4548425737], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458914875, "nodes": [4548425740, 4548425739, 4548425736], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914876, "nodes": [4548425742, 4633502248, 4548425741], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914877, "nodes": [4548425741, 1669118119, 4548425740], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458914878, "nodes": [4548425744, 4536011570], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914879, "nodes": [4548425745, 1500124468, 4548425744], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914882, "nodes": [1500124545, 4548425748, 4548425747, 4548425746, 4548425745], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 458914883, "nodes": [4548425750, 4548425754], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914884, "nodes": [4548425751, 1500124478, 4548425750], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914885, "nodes": [4548425752, 4548425751], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914887, "nodes": [1500124561, 4548425752], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914888, "nodes": [4548425756, 4536011570], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914889, "nodes": [4536011563, 4548425757], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914890, "nodes": [4548425757, 1669118101, 4548425756], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458914891, "nodes": [4548425759, 4536011564], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914892, "nodes": [4548425760, 4548425758], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458914893, "nodes": [4548425758, 1669118105, 4548425759], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458916152, "nodes": [4548435330, 4548435332], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458916153, "nodes": [4548435333, 1669118084, 4548435330], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458916154, "nodes": [4548435331, 4548435333], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458916155, "nodes": [4548435334, 26212617], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 458916156, "nodes": [4311812553, 4548435334], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 458916157, "nodes": [4311812554, 4548435339], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 458916158, "nodes": [4548435335, 4273925939], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458916159, "nodes": [4548435341, 1669118112, 4548435331], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 458916160, "nodes": [4311812548, 4548435341], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 458916161, "nodes": [4548435340, 4273925938], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 458916162, "nodes": [4548435337, 4311812552, 4548435340], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 458916163, "nodes": [4548435338, 4548435337], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 458916164, "nodes": [4548435339, 26212606, 4548435338], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 458917506, "nodes": [26025903, 1500124561, 1500124571, 26025902], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through"}}, {"type": "way", "id": 458917507, "nodes": [26025902, 1500124587, 2673302088], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through;right"}}, {"type": "way", "id": 458917940, "nodes": [4548451512, 4548451519], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458917941, "nodes": [4536013994, 4548451513], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458917942, "nodes": [4548451514, 4548451516], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458917943, "nodes": [4548451518, 4548451515], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458917944, "nodes": [4548451515, 4548451517, 4548451514], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458917945, "nodes": [4548451513, 4548451520, 4548451512], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458917946, "nodes": [4548451522, 4548451524], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458917947, "nodes": [4536011583, 4548451523], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458917948, "nodes": [4548451523, 4536011542, 4548451522], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458918473, "nodes": [4548454344, 26212622], "tags": {"cycleway:right": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458918474, "nodes": [4548454350, 4548454351], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458918475, "nodes": [4536011585, 4548435346], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 458918476, "nodes": [4548435346, 1669118079, 4548454350], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 458918477, "nodes": [4548454353, 4548454354], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 458918478, "nodes": [4536013996, 4548454352], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 458918479, "nodes": [4548454352, 4536011530, 4548454353], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 458918480, "nodes": [4548454355, 4548454357], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 458918481, "nodes": [4536013995, 4548454356], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 458918482, "nodes": [4548454356, 4536011531, 4548454355], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 459037781, "nodes": [4549582481, 4456746624], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "surface": "sett"}}, {"type": "way", "id": 459037782, "nodes": [4549584295, 4549584296, 4549584297], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "10", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 459037783, "nodes": [4549584298, 4549584294, 4549584295], "tags": {"highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 459038436, "nodes": [4549589325, 3567234599], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "no", "surface": "paved"}}, {"type": "way", "id": 459038437, "nodes": [4549589312, 1364773021], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 459038438, "nodes": [1869400497, 4549589319], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 459038703, "nodes": [4549591265, 4536099188], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 459038704, "nodes": [4536104689, 4549589314], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 459038705, "nodes": [4549591266, 4536104697], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 459038706, "nodes": [3971000962, 4549591267], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 459067272, "nodes": [3970983770, 26579107, 4549835129], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 459067273, "nodes": [3971001359, 3970983770], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 459068323, "nodes": [4549845081, 366033301, 4549845080], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "no", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 462173077, "nodes": [100890241, 1555729975, 5068655473, 100890242], "tags": {"foot": "yes", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 462173080, "nodes": [4575762004, 4575762333, 4575762332], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462173083, "nodes": [4575762008, 4575762009, 4575762007, 4575762006, 4575762005, 4575762004, 4575762003, 4575762002, 4575762001, 4575762000, 4575761999, 4575761998, 4575762008], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462173100, "nodes": [4575762003, 4575762320, 4575762329], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462173101, "nodes": [4575762332, 4575762331, 4575762330, 4575762329, 4575762319, 4575762328, 4575762327, 4575762326, 4575762325, 4575762324, 4575762323, 4575762322, 4575762321, 4575762332], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462173102, "nodes": [100891150, 11218056288, 11218056251, 4575762336, 4575762337, 4575762338, 11218056252, 4575762335, 100890241], "tags": {"highway": "primary_link", "lanes": "2", "oneway": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462173103, "nodes": [4575762339, 4575762340, 4575762341, 4575762342, 4575762343], "tags": {"highway": "primary_link", "lanes": "1", "oneway": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175849, "nodes": [4184539390, 4575801318, 4575801317], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462175850, "nodes": [4184539391, 4575801320, 4575801319], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462175851, "nodes": [1011869670, 4575801321], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 462175852, "nodes": [3280496572, 1689543025, 1689543026, 1689543046, 1555729994], "tags": {"est_width": "2", "highway": "cycleway", "maxspeed": "10", "name": "Carril Bici Serrano", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 462175853, "nodes": [1555729994, 1555729962, 3627050627, 1555729983, 1689543052, 1555729971, 1555729981, 3268713835, 1689543057], "tags": {"est_width": "2", "highway": "cycleway", "lit": "yes", "maxspeed": "10", "name": "Acera Bici Serrano", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 462175854, "nodes": [3567546250, 3567546251], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 462175855, "nodes": [3567546253, 3567546254], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "surface": "paving_stones"}}, {"type": "way", "id": 462175856, "nodes": [4575801326, 4626597087, 3627050623, 4626599508, 3627050625], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175857, "nodes": [4575801327, 3627050623, 25902243], "tags": {"cycleway:both": "no", "highway": "secondary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lit": "yes", "maxspeed": "50", "name": "Puente Enrique de la Mata Gorostizaga", "name:etymology:wikidata": "Q268599", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 462175858, "nodes": [327492878, 4575801328, 4575801331], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175859, "nodes": [4575801329, 4575801330, 4575801331, 4575801333], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175860, "nodes": [4575801333, 8307252470], "tags": {"highway": "service", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175861, "nodes": [4575801333, 4575801334, 4575801335, 4575801336], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462175862, "nodes": [4184539389, 4575801338, 4575801337, 8787245631], "tags": {"highway": "footway"}}, {"type": "way", "id": 462216258, "nodes": [4576234299, 1950481166], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216259, "nodes": [4576234300, 1950481162], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462216261, "nodes": [4576234304, 1981925778], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 462216262, "nodes": [4269562180, 1981925784], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216263, "nodes": [4576234312, 4576234313, 4576234314, 4576234315], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216265, "nodes": [1973690393, 4576234338], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216267, "nodes": [2053099684, 1278839042], "tags": {"highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 462216271, "nodes": [4576234362, 4576234358], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216272, "nodes": [4576234361, 4576234359], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216273, "nodes": [4576234374, 4576234366, 1555729985, 4576234368, 4576234367], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462216274, "nodes": [4576234372, 4576234360, 4576234361, 4576234362, 4576234363, 4576234364, 4576234375, 4576234365, 4576234374, 4576234373, 4576234372], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 462216275, "nodes": [4576234377, 4576234376, 4576234375], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 462216277, "nodes": [4140937589, 4576234381, 4576234367, 4576234380, 4576234386, 4576234387, 4576234385, 4576234384, 4576234383, 4576234382, 2506473194], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 462223483, "nodes": [4576288156, 150760316, 4576288157], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 462223484, "nodes": [4576288160, 6348124056, 9115409874, 6348124057, 6348124058, 6348124059, 6348124060, 6348124061, 6348124062, 6348124063, 6348124064, 6348124065, 9116858096, 6348124066, 6348124067, 9115409845, 6348124068, 9115409847, 6348124048, 9808450426, 4576288158, 4576288156, 4576288159, 4576288160], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 462223607, "nodes": [4576291396, 4576291395, 4576291397], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 462223608, "nodes": [4576291398, 4576291396, 4576291399, 4576291400, 4576291401], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 463008109, "nodes": [4583258814, 4307324522], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008112, "nodes": [4307324521, 4583258813], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008114, "nodes": [4583258815, 4307324524], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008116, "nodes": [4307324523, 4583258816], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008118, "nodes": [4583258818, 4583258820], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008121, "nodes": [4536104702, 4583258819], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463008122, "nodes": [4583258819, 1669117967, 4583258818], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 463008130, "nodes": [4280384802, 4583258880, 4583258879, 4307324524, 4583258878, 4583258820, 4583258877, 4583258876, 4583258875, 4583258874, 4583258873, 4280384803], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463009535, "nodes": [4583270505, 4583258876], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463009536, "nodes": [4548405665, 4583270506], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 463009537, "nodes": [4583270506, 1669118005, 4583270505], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 463010968, "nodes": [1500124498, 4583282673], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 464007525, "nodes": [2540742104, 4591902900, 4591902758, 4591902759, 4591902760, 4591902761, 4591902898, 4591902762, 4591902897, 4591902763, 4591902901, 4591902764, 4591902765, 4591902895, 4591902766, 4591902896, 4591902767, 4591902768, 4591902769, 4591902770, 4591902771, 4591902899, 4591902772, 4591902758], "tags": {"highway": "footway", "horse": "no", "lit": "yes", "surface": "paved", "width": "7"}}, {"type": "way", "id": 464007526, "nodes": [4591902770, 4591902773, 4591902774, 4591902775, 4591902776, 4591902777, 11225754998], "tags": {"highway": "footway", "horse": "no", "lit": "yes", "surface": "paved", "width": "3"}}, {"type": "way", "id": 464496886, "nodes": [4595952174, 581870023], "tags": {"admin_level": "9", "boundary": "administrative", "cycleway:right": "no", "foot": "no", "goods": "no", "hgv": "no", "highway": "primary", "lanes": "2", "layer": "-1", "lit": "yes", "loc_name": "T\u00fanel de Mar\u00eda de Molina", "maxheight": "3.5", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "shoulder": "no", "sidewalk": "no", "surface": "asphalt", "tunnel": "yes", "turn:lanes": "left|through"}}, {"type": "way", "id": 464834493, "nodes": [4599011690, 4599011691, 4599011693, 4599011692], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 464834494, "nodes": [4599011693, 1358036203, 4599011694], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 465434077, "nodes": [4576234305, 4603975784, 4603975785], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 465459555, "nodes": [1754816987, 1754816991, 1754817005, 1754817038], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "maxspeed:type": "ES:zone50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 465459557, "nodes": [1754816987, 845455932, 1613048525], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 465477737, "nodes": [4604349217, 5255281513, 4604349218, 4604349219], "tags": {"highway": "residential", "noname": "yes", "oneway": "yes"}}, {"type": "way", "id": 468105479, "nodes": [4626597047, 4626599497], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105481, "nodes": [4626597048, 4626597086], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105484, "nodes": [255881690, 10308321145, 4626597050, 4626597048, 4626597049], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105485, "nodes": [4626597051, 4626597052], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468105487, "nodes": [255881691, 4626597052], "tags": {"highway": "steps"}}, {"type": "way", "id": 468105489, "nodes": [4626597053, 4626597054], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 468105491, "nodes": [255881690, 4626597054], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 468105492, "nodes": [4626597059, 4626597057, 4626597056, 4626597060], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105494, "nodes": [4626597058, 4626597059], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105495, "nodes": [4626597061, 1760085716, 4626597058], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105497, "nodes": [4626597067, 4626597066, 4626597061], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 468105500, "nodes": [4626597060, 4626597065, 4626597053, 4626597064, 4626597063, 4626597062], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105502, "nodes": [4626597085, 4626597071], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468105503, "nodes": [4626597069, 4626597068], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468105506, "nodes": [4626597068, 1760085722, 4626597085], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 468105508, "nodes": [4626597073, 4626599498], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105510, "nodes": [4626597072, 3627050624, 4626597073], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105517, "nodes": [4802617274, 4626597071, 4626597084, 4626597083, 4626597051, 4626597082, 4626597067, 4626597081, 4626597080, 4626597079, 4626597078, 4626599498, 4626597077, 4626597076, 4626597075, 4626597074], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105520, "nodes": [4626597086, 341829497, 4626597047], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468105522, "nodes": [4626597088, 4626597087], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105523, "nodes": [4626599497, 4626599496, 4626599495, 4626599494, 4626599493, 4626599492, 4626599491, 4626599490, 4626599489, 4626597088], "tags": {"bridge": "yes", "footway": "sidewalk", "highway": "footway", "layer": "1", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105526, "nodes": [4626599500, 4626599499, 4626597072], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468105527, "nodes": [4626599508, 4626599507, 4626599506, 4626599505, 4626599504, 4626599503, 4626599502, 4626599501, 4626599500], "tags": {"bridge": "yes", "footway": "sidewalk", "highway": "footway", "layer": "1", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468168696, "nodes": [4627368190, 4627368189, 4627368191], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 468168699, "nodes": [4627368190, 4627367186, 4627368192], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 468168702, "nodes": [6314751525, 6314751524, 6314751523, 6314751522, 6314751521, 6314751531, 6314751520, 6314751519, 4627368193, 4627368190, 4627368194, 6314751518, 6314751517, 6314751526, 6314751525], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 468491070, "nodes": [4630240427, 11690678648, 4630240426, 4630240425, 4630240424, 4630240423, 4630240422, 4630240421, 4630240420], "tags": {"access": "private", "highway": "service", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 468491072, "nodes": [11690717897, 11690717944, 11690718006, 11690717910, 11690717870, 11690717976, 11690717978, 11690717945, 11690717993, 11690717874, 11690678653, 11690678666, 11690717968, 11690678645, 11690718002, 11690717907, 11690678651, 11690717999, 4257948305, 4630240465, 4630240466, 4630240467, 4630240461], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2023", "surface": "paving_stones"}}, {"type": "way", "id": 468491074, "nodes": [4519526434, 11381177031, 11690717946, 11381177026, 11690717948, 11690717914, 11690717920, 11690678648, 11690717909, 11690717927, 11690678646, 11690717919, 11690755766, 11690717888, 11690717872, 11690717891, 11690678643, 11690717931, 11690717981, 11690717952, 11690718015, 11690717943, 11690678639, 11690717911, 11381177031], "tags": {"crossing:island": "no", "crossing:markings": "zebra", "footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 468572914, "nodes": [4630936736, 4630936737], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 468699796, "nodes": [4629861375, 6841096838, 21990733], "tags": {"highway": "steps", "surface": "paving_stones"}}, {"type": "way", "id": 468699798, "nodes": [21990737, 6841096843, 4631802305, 4631802306, 4631802307, 4631802308, 4631802326, 4631802309, 4631802310, 4631802323, 4631802311, 4631802312, 4631802313, 4629861375, 4631802314, 4631802315, 4631802316, 4631802324, 4631802317, 4631802318, 4631802319, 4631802320, 4631802325, 4631802321, 4631802322, 4631802305], "tags": {"highway": "pedestrian", "surface": "paving_stones"}}, {"type": "way", "id": 468699799, "nodes": [4631802323, 4631802324], "tags": {"highway": "pedestrian"}}, {"type": "way", "id": 468699801, "nodes": [4631802325, 4631802326], "tags": {"highway": "pedestrian"}}, {"type": "way", "id": 468699802, "nodes": [4631802324, 4631802327], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 468895686, "nodes": [4633502235, 4260643623], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895687, "nodes": [4260643622, 4548387410], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895689, "nodes": [4633502249, 4633502248], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 468895690, "nodes": [26153114, 4633502249], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "32", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 468895691, "nodes": [4633502250, 4633502251], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 468895692, "nodes": [26153113, 4633502250], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "32", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 468895693, "nodes": [4633502253, 4536011587], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895694, "nodes": [4536011567, 4633502252], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895695, "nodes": [4633502252, 1669118081, 4633502253], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 468895696, "nodes": [4633502262, 4633502263], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895697, "nodes": [4633502261, 4633502260, 4633502262], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 468895698, "nodes": [4633502273, 4633502261], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895699, "nodes": [4633502273, 4633502272, 4633502271, 4260643623, 4633502270, 4633502269, 4548405606, 4633502268, 4633502321, 4633502267, 4633502318, 4633502266, 4633502265, 4633502264, 4633502273], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895702, "nodes": [4633502311, 4633502313], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468895703, "nodes": [4633502314, 4633502312], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895704, "nodes": [4633502312, 4536011540, 4633502311], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 468895705, "nodes": [4633502316, 4633502317], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468895706, "nodes": [4633502318, 4633502315], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 468895707, "nodes": [4633502315, 4536011539, 4633502316], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468895708, "nodes": [4633502319, 4633502321], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468895709, "nodes": [4633502322, 4633502320], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468895710, "nodes": [4633502320, 4536011541, 4633502319], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 468897411, "nodes": [4633524912, 4278276591], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 468897412, "nodes": [4278276590, 4633524911], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469366617, "nodes": [4637022777, 4637022779], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469366618, "nodes": [4278276592, 4637022778], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469366619, "nodes": [4637022778, 4548451521, 4637022777], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469381875, "nodes": [4637125731, 4637125733], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469381876, "nodes": [4633524913, 4637125732], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469381877, "nodes": [4637125732, 1669117919, 4637125731], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469381878, "nodes": [4637125735, 4637125736], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469381879, "nodes": [4485511529, 4637125734], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469381880, "nodes": [4637125734, 4536011533, 4637125735], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400643, "nodes": [4637277828, 4637277829], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 469400644, "nodes": [4637277830, 4637277827, 4637277828], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400645, "nodes": [4637277854, 4637277830], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400646, "nodes": [4637277843, 4311812567, 4637277842], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400647, "nodes": [4637277844, 4311812568, 4311812571, 4637277843], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paved"}}, {"type": "way", "id": 469400648, "nodes": [4637277845, 4311812558, 4637277844], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400649, "nodes": [4637277849, 4637277845], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paved"}}, {"type": "way", "id": 469400651, "nodes": [4637277862, 4637277870], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469400652, "nodes": [4273925940, 4637277861], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paved"}}, {"type": "way", "id": 469400653, "nodes": [4637277861, 1669118116, 4637277862], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 469400654, "nodes": [4548435336, 4637277863], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paved"}}, {"type": "way", "id": 469403429, "nodes": [26212608, 26212619], "tags": {"highway": "tertiary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through"}}, {"type": "way", "id": 469403430, "nodes": [26212619, 26025904], "tags": {"highway": "tertiary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left|through|through|through|"}}, {"type": "way", "id": 469403431, "nodes": [27517937, 26212616, 26212614], "tags": {"destination": "A-6 Villalba; Ciudad Universitaria", "hazmat": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Avenida de Filipinas", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 469451505, "nodes": [298157533, 4637799992, 4637799991, 4637799990], "tags": {"highway": "residential", "lanes": "1", "name": "Calle de Magallanes", "name:etymology:wikidata": "Q1496", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "source:name": "survey", "surface": "asphalt", "turn:lanes": "right"}}, {"type": "way", "id": 469454172, "nodes": [4637805030, 4637805031, 4637805032, 4637805033], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 469988735, "nodes": [4642427914, 1591330158, 10612891211, 4169858408], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 469988736, "nodes": [1591330146, 4642427919], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 469988737, "nodes": [1591330196, 4642427918, 4642427920], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 469988738, "nodes": [4169858411, 4642427915, 4642427914, 4642427916, 4642427917, 4642427919, 4642427920, 4642427925, 4642427923, 4642427922, 4642427921, 4169858411], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 469988739, "nodes": [4642427924, 1366142634, 3418127837, 4642427925], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014"}}, {"type": "way", "id": 470058934, "nodes": [1591330058, 4643041856], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 470058937, "nodes": [4643041852, 4643041853, 4643041854, 4643041855, 4643041856, 4643041860, 4643041861, 4643041859, 4643041858, 4643041857], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 470058940, "nodes": [1591330059, 4643041862, 4643041861], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 470058943, "nodes": [4643041872, 4643041852, 674492253], "tags": {"highway": "footway", "lit": "yes", "name": "Calle de Manuel Cortina", "name:etymology:wikidata": "Q5992686", "surface": "paving_stones"}}, {"type": "way", "id": 470058945, "nodes": [4643041871, 674492251, 4643041912], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 470058947, "nodes": [1591330163, 4643041869, 4643041870], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 470058960, "nodes": [674492255, 4643041890, 4643041889], "tags": {"highway": "service", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 470058972, "nodes": [4643041911, 4643041905, 4643041907, 4643041890, 4643041891, 4643041908, 4643041909, 4643041910, 4643041912, 4643041911], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 470058975, "nodes": [4643041911, 4643041904, 674492250], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 470058977, "nodes": [4643041866, 4643041867, 4643041870, 4643041868, 4643041871, 4643041865, 4643041873, 4643041872], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 475457681, "nodes": [25906137, 25906133, 8447121518, 25906134], "tags": {"highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de G\u00e9nova", "name:etymology:wikidata": "Q24294474", "oneway": "yes", "postal_code": "28004", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 480313429, "nodes": [4733151408, 3268713846, 4733151409], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 480313430, "nodes": [4733151410, 3268713845, 4733151411, 4172945206], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 480313432, "nodes": [8057391304, 8057391305, 4733151425, 4733151409, 4733151426, 4733151427, 3437178877], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 480313433, "nodes": [4733151408, 4733151410], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 480313925, "nodes": [4733163156, 4733163155, 4733163157], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 480313927, "nodes": [4733163165, 4733163157, 4733163166], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 484184419, "nodes": [4769240411, 4769240412], "tags": {"access": "private", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 484184420, "nodes": [4769240412, 4769240413], "tags": {"access": "private", "highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 484184421, "nodes": [4769240413, 4769240414], "tags": {"access": "private", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 484184422, "nodes": [4769240414, 4769240415], "tags": {"access": "private", "highway": "service", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 484184423, "nodes": [4769240415, 4769240416, 4769240417, 4769240418, 4769240419, 4769240420, 4769243621, 4769243626, 4769243625], "tags": {"access": "private", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 488586016, "nodes": [3964436608, 9115409844, 9115409843, 9115409842, 9115409846, 11645339893, 9115409841, 9115409840, 9116858087, 3382978638, 3382978637, 11645339883, 9116676723, 9116676724, 9116676725, 9116676726, 9116676722, 9116676727, 9116676728, 9116676729, 9116676730, 9292464420, 8439470066, 3575526165, 8439470065, 8439470064, 8439470063, 8439470062, 8439470060, 8461022369, 8439470061, 9116858091, 4808811223, 4808811224, 3964436610], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 490225590, "nodes": [4823975333, 4823975335, 8007694224, 8007694223, 4827701836], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 491216820, "nodes": [4833611536, 4833611535, 4833611537], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 491216821, "nodes": [9879403067, 4833611543, 4833611544, 4833611537, 4833611545], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 491841445, "nodes": [22023377, 674492244, 26066553, 26066550], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de San Bernardo", "name:etymology:wikidata": "Q188411", "oneway": "no", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 491927415, "nodes": [4840111215, 4840111217, 4840111218], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 494555761, "nodes": [4134046208, 4863086183, 3144095493], "tags": {"highway": "service", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 497630827, "nodes": [338956213, 3222122279, 2004157596, 338956205], "tags": {"highway": "service", "lit": "yes", "name": "Plaza de Ram\u00f3n y Cajal", "name:etymology:wikidata": "Q150526", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 497630845, "nodes": [4270693566, 2277540544], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 497630860, "nodes": [4891641091, 4891641090, 4891641089, 4891641088, 4891641087, 4891641086, 4891641085, 4891641084], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 497630862, "nodes": [4891641096, 3232931216, 4891641095, 4891641094, 4891641093, 4891641092], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 497630864, "nodes": [4891641103, 4891641102], "tags": {"highway": "steps"}}, {"type": "way", "id": 497630865, "nodes": [4891641104, 1993853752, 1993853733], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "no", "ramp": "no", "step_count": "25", "surface": "concrete", "tactile_paving": "no"}}, {"type": "way", "id": 497719949, "nodes": [4892388493, 11645339875, 4892388494], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 497719950, "nodes": [4892388495, 11645339874, 4892388492], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 497719951, "nodes": [4892388492, 1212072818, 4892388493], "tags": {"crossing": "traffic_signals", "crossing:markings": "dots", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 497719952, "nodes": [4892388502, 4892388501], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 497719953, "nodes": [1212072840, 4892388502], "tags": {"highway": "steps"}}, {"type": "way", "id": 497719954, "nodes": [3224859946, 9116676732, 4892388496, 4892388497, 4892388498, 4892388499, 4892388500, 4892388511, 4892388501, 4892388495, 4892388510, 4892388509, 4892388508, 4892388507, 4892388506, 4892388505, 4892388504, 4892388503, 4892388513, 4892388514, 4892388515, 4892388516, 4892388517, 4892388518], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 499670997, "nodes": [4909154222, 4909154221], "tags": {"handrail": "no", "highway": "steps", "lit": "no", "ramp": "no"}}, {"type": "way", "id": 499670998, "nodes": [4909154224, 4909154223], "tags": {"handrail": "yes", "highway": "steps", "lit": "no", "ramp": "no"}}, {"type": "way", "id": 499671000, "nodes": [4909154231, 4909154230], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 499671001, "nodes": [4909154233, 4909154232], "tags": {"highway": "steps", "lit": "no"}}, {"type": "way", "id": 499731331, "nodes": [27514670, 4909695835], "tags": {"change:lanes": "yes|not_right|no", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 499731332, "nodes": [4909695836, 27514670], "tags": {"change:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 500275624, "nodes": [26025896, 4637125717, 26025887], "tags": {"bicycle": "yes", "highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 500275625, "nodes": [26025887, 4637125716, 674477954, 26025888], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 500275626, "nodes": [26025887, 1596698113, 674477945, 25935134, 25935073, 1378696871, 25935071], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Galileo", "name:etymology:wikidata": "Q307", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 501236336, "nodes": [4921021994, 4921021993], "tags": {"highway": "pedestrian", "name": "Calle de Julio Nombela", "postal_code": "28015"}}, {"type": "way", "id": 501236337, "nodes": [4921021996, 4921021995], "tags": {"highway": "pedestrian", "name": "Callej\u00f3n de Blasco de Garay", "postal_code": "28015"}}, {"type": "way", "id": 501236338, "nodes": [4921021998, 4921021997], "tags": {"highway": "service", "name": "Calle Pontevedra"}}, {"type": "way", "id": 501236339, "nodes": [4921021999, 4921021998], "tags": {"highway": "service", "name": "Calle Pontevedra", "tunnel": "building_passage"}}, {"type": "way", "id": 501236340, "nodes": [4921022000, 4921021996, 4921021994, 4921021999], "tags": {"highway": "service", "name": "Calle Pontevedra"}}, {"type": "way", "id": 501236341, "nodes": [4921022001, 4921022000], "tags": {"highway": "service", "name": "Calle Pontevedra", "tunnel": "building_passage"}}, {"type": "way", "id": 501236342, "nodes": [4921022002, 4921022001], "tags": {"highway": "service", "name": "Calle Pontevedra"}}, {"type": "way", "id": 502406630, "nodes": [4928903257, 4179570128], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 502985206, "nodes": [4933405773, 4933405777, 4933405776, 4172945205, 4733151425], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 502985207, "nodes": [4933405774, 4172945204, 4933405775, 8057391304], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 504330764, "nodes": [3294582996, 3294582997, 3294583000, 3294583005, 3294583008, 3294583010, 5214866735, 1016578427, 3294583012], "tags": {"bicycle": "dismount", "highway": "footway", "lit": "yes", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943", "surface": "paving_stones"}}, {"type": "way", "id": 504330765, "nodes": [4945009664, 3294582994, 3294582993, 3294582991, 6450890223, 4945009665], "tags": {"bicycle": "dismount", "highway": "footway", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943"}}, {"type": "way", "id": 504330766, "nodes": [4945009665, 1016578323, 8583469091, 3294582986], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943", "surface": "asphalt"}}, {"type": "way", "id": 504330767, "nodes": [3294582986, 3294582987, 9157684232, 3294582989, 9157684231, 9157684230, 3294582992, 3294582990], "tags": {"bicycle": "dismount", "highway": "footway", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943"}}, {"type": "way", "id": 504903080, "nodes": [4949967422, 3258766765, 4949967220], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 504903081, "nodes": [4949967421, 4949967220], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 506199247, "nodes": [1993796499, 7058286495, 7058286494, 7058286493, 7058286492, 7058286491, 7058286490, 4959674880, 4959674872, 4959674897, 4959674896, 3964436619], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 509046213, "nodes": [4983379109, 1364773344, 7511745476, 1486142629], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "bing", "surface": "asphalt"}}, {"type": "way", "id": 510206436, "nodes": [1654250235, 1654250237], "tags": {"footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 510972116, "nodes": [4999318713, 4999318712, 4999318714, 4999318711, 4999318710], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 510972117, "nodes": [4999318715, 4999318714], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 510972118, "nodes": [4999318717, 4999318715, 4999318716], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 510972119, "nodes": [4999318719, 4999318717, 4999318718], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 510972120, "nodes": [4999319321, 4999318716, 4999318720], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 511122395, "nodes": [5000379721, 5000712440], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511149374, "nodes": [1491286103, 8385594966, 6450370649], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511153022, "nodes": [5000654864, 5000631027], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511159766, "nodes": [5000712440, 1491286102], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511223669, "nodes": [5001253641, 1505081002, 26578944], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "5", "lanes:psv": "1", "lit": "yes", "name": "Calle de Mel\u00e9ndez Vald\u00e9s", "name:etymology:wikidata": "Q2415144", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "turn:lanes": "left|left|left;through|through|right|"}}, {"type": "way", "id": 511224732, "nodes": [1500124428, 11157455813, 6320489341, 8441812640], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 511252893, "nodes": [3802946112, 616211591, 26413138], "tags": {"highway": "secondary", "lanes": "6", "lanes:psv": "2", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 511262701, "nodes": [150760466, 150760472, 4558946120, 150760477], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511262702, "nodes": [4558946114, 4558946115, 4558946116, 4558946117, 4558946119, 4558946125, 4558946126, 150760466], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511262703, "nodes": [4558946113, 4558946123, 4558946121, 4558946122, 4558946114], "tags": {"highway": "residential", "junction": "roundabout", "name": "Plaza del Marqu\u00e9s de Comillas", "surface": "asphalt"}}, {"type": "way", "id": 511361274, "nodes": [8589432332, 1868668291], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511362275, "nodes": [5002245430, 5002160585], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511362952, "nodes": [5002160585, 5002237431], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511410363, "nodes": [5002571275, 2057627664], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511410395, "nodes": [5002237431, 5002571278], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511544615, "nodes": [5003613394, 5003967824], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511544616, "nodes": [5003613395, 5003613394], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511544631, "nodes": [5003613397, 5002571275], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511566146, "nodes": [5003802453, 5003613397], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511570416, "nodes": [5003863730, 5008346925], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511574924, "nodes": [1868668291, 1868668289], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 511574927, "nodes": [5003912690, 5007921393], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511580702, "nodes": [5003967823, 6318921544], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511580703, "nodes": [5003967824, 5003967823], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 511777785, "nodes": [5005343788, 913080867], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511777786, "nodes": [5005343789, 5005343788], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511777787, "nodes": [5005343790, 5005343789], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 511895882, "nodes": [5006352946, 587643323], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 512095737, "nodes": [139975676, 4626597070, 306092390, 63530471], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 512095738, "nodes": [63530492, 63530481, 1011869674, 4626597055, 139971858, 1760085715, 63530476], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 512095739, "nodes": [5007730069, 25934317], "tags": {"highway": "tertiary", "maxspeed": "50", "name": "Calle de Almagro", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 512118081, "nodes": [5007921393, 5003802453], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 512124522, "nodes": [63530500, 306092392, 63530492], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 512149343, "nodes": [5008346925, 5002245430], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 519294613, "nodes": [8583869922, 5063896010, 8583509318, 5063895997, 8583509317, 5063895981, 5214866745, 5063896005, 5214866744, 8583469114, 8583469113, 5063895985, 5063895994, 8583469112, 5063895992, 8583791446, 6634926258, 5063896009, 5063895987, 8583469106, 8583469107, 6634926259, 8583469108, 8583469109, 8583469110, 5214866741, 5063896011, 5214866740, 8583469101, 5676700328, 5214866739, 8583469100, 5063896001, 8583469099, 8583469098, 8583469097, 8583469096, 5063895995, 8583469091, 5214866737, 8583469092, 8583469093, 8583469094, 5063895982, 8583469095, 5063895986, 5214866736], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "no", "name": "Carril bici Santa Engracia", "segregated": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 519917146, "nodes": [1759501505, 25902720], "tags": {"cycleway:both": "no", "foot": "yes", "highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "psv:lanes:forward": "designated|yes|yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 519998161, "nodes": [60030258, 5069264838, 60030259], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "surface": "asphalt", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 519998162, "nodes": [60030259, 8522340700, 3675303748, 60030301], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "lit": "yes", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 519998878, "nodes": [269361123, 8522340701, 5069264835, 60030258], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through"}}, {"type": "way", "id": 519998879, "nodes": [60030257, 60030399, 269361123], "tags": {"destination": "A-2;R-2;A-1;aeropuerto", "highway": "primary", "lanes": "5", "maxspeed": "50", "name": "Calle de Jos\u00e9 Abascal", "name:etymology:wikidata": "Q9013476", "oneway": "yes", "surface": "asphalt", "turn:lanes": "through;left|through|through|through|through;right"}}, {"type": "way", "id": 520069216, "nodes": [26067885, 7965756605, 1789638281, 7934347515], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 520069217, "nodes": [26080779, 927751052], "tags": {"bicycle:lanes": "no|designated", "cycleway:lanes": "no|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 522895328, "nodes": [5091750318, 6348197385, 150760661], "tags": {"change:lanes": "yes|yes|yes", "cycleway:lanes": "none|shared_lane|none", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "maxspeed:lanes": "50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|designated", "surface": "asphalt"}}, {"type": "way", "id": 522895329, "nodes": [359392869, 27517856], "tags": {"change:lanes": "yes|yes|yes|yes", "cycleway:lanes": "none|none|shared_lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "maxspeed:lanes": "50|50|30|50", "name": "Avenida de la Reina Victoria", "name:etymology:wikidata": "Q160001", "oneway": "yes", "psv:lanes": "yes|yes|yes|designated", "surface": "asphalt", "turn:lanes": "left|through;left|through;right|through;right"}}, {"type": "way", "id": 531932791, "nodes": [5162768435, 5162768434, 5162768430], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 531932792, "nodes": [5162768444, 3078426886, 5162768436], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 534512971, "nodes": [5183551633, 1501227838, 1501227829], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 534512972, "nodes": [5183551633, 5183551632], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 536315108, "nodes": [5195758592, 5195759987, 5195759986], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 536315109, "nodes": [5195758594, 5195760372, 5195759987], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 536601658, "nodes": [5197772325, 5197772332, 5197772329], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 537435924, "nodes": [2972941375, 5204319225], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 537435925, "nodes": [5204319237, 5204319229, 5204319228, 5204319227], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 537435926, "nodes": [2972941350, 5204319225, 5204319226, 3096525905, 5204319227, 5204319238], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 537435928, "nodes": [5204319256, 5204319239], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 537435929, "nodes": [5204319256, 5204319255, 5204319254, 5204319253, 5204319252, 5204319251, 5204319250, 5204319249, 5204319248, 5204319247, 5204319246, 5204319245, 5204319244, 5204319243, 5204319242, 5204319241, 5204319240, 5204319256], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 537435995, "nodes": [5204319848, 5339092675, 5204319847], "tags": {"highway": "service", "source": "survey"}}, {"type": "way", "id": 538821593, "nodes": [5214866727, 2283361250, 5214866726, 9999692404], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 538821594, "nodes": [5802031865, 2283361231, 5214866728, 9998406332], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 538821595, "nodes": [6614655212, 2283361233, 5214866730, 9999692408], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 538821596, "nodes": [5802031899, 3426732139, 5214866734], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 539326730, "nodes": [8057391306, 8057391307, 5218975648, 5218975635, 5218975638, 5218975632, 5218975658, 5218975660, 5218975657, 5218975659], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 540996200, "nodes": [5232402842, 5232404385, 5232402843], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 540997151, "nodes": [9879403075, 9879403076, 5232409903, 5232409904, 5232409902], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 540998946, "nodes": [5232421897, 4184539392, 4184539400, 4184539399, 4184539398, 4184539397, 4184539396, 4184539395, 4184539394, 4184539393, 327492852, 4575801320, 327492865, 4575801318, 4575801338], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 541449361, "nodes": [5235732359, 7300259080, 7300259081, 7300259082, 7300259084, 7300259085, 7300259086, 7300259087, 7300259088, 7300259089, 7300259090, 7300259091, 7300259092, 7300259093, 7300259094, 5235732356, 5235732359], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 541449940, "nodes": [5235742174, 5235745134, 5235742173], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 542237167, "nodes": [5242505640, 3258766779, 5242505642], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 542237169, "nodes": [5242505645, 3258766776, 5242505646], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 542237171, "nodes": [5242505643, 5242505642, 5242505646, 5242505647], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 542242848, "nodes": [8580966568, 5242554915, 5242554916, 4349802678, 8580966571], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 542242849, "nodes": [5242551250, 5242554913, 5602471271, 5242551246], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 542243289, "nodes": [5242551246, 5242554914, 8580966572], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 542243290, "nodes": [5242551249, 1760085702, 8580966573], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 542243291, "nodes": [1223809803, 8580966570], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 542243292, "nodes": [5242551251, 5242551246], "tags": {"crossing": "traffic_signals", "footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 543507143, "nodes": [142294064, 142294066, 142294067, 344604057, 344604046, 142294069, 2321219905, 142294070], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 543507144, "nodes": [3051151032, 5254164044, 5254164045, 5254164046, 5254164047, 5254164048, 5254164049], "tags": {"highway": "service", "motor_vehicle": "private", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 543510260, "nodes": [2846389464, 5254188517, 5254188518], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 543510261, "nodes": [5254188517, 5254188519, 5254188520], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 543510262, "nodes": [5254188520, 5254274447], "tags": {"highway": "steps"}}, {"type": "way", "id": 543510263, "nodes": [5254188622, 5254188623], "tags": {"highway": "footway"}}, {"type": "way", "id": 543510264, "nodes": [9054512006, 5254188624], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 543519991, "nodes": [5254274447, 5254188622, 5254188624, 5254188621], "tags": {"highway": "footway"}}, {"type": "way", "id": 543634993, "nodes": [2321219904, 344603995, 5255281514, 344603973, 142294054], "tags": {"highway": "service", "motor_vehicle": "private", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 543634994, "nodes": [2321219901, 2321219902, 142294054], "tags": {"highway": "service", "motor_vehicle": "private", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 543634995, "nodes": [5255281513, 5255281514], "tags": {"highway": "steps"}}, {"type": "way", "id": 545143016, "nodes": [26212621, 4548454344], "tags": {"hazmat": "no", "highway": "primary", "lanes": "2", "maxspeed": "50", "name": "Calle de Cea Berm\u00fadez", "name:etymology:wikidata": "Q963367", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 545351029, "nodes": [4140937600, 1555729969, 4576234371, 4576234370, 4576234369, 3280496565, 4576234376, 3280496566, 1900998825, 3280496567, 3280496568, 8003058431, 1555729951, 8003058430, 3280496569, 8003058428, 4220073058, 4576234351, 1555729967, 4576234350, 4220073059, 4576234345, 2377017999, 2377018034, 2377018039, 1555729961, 4576234331, 1555729980, 4346459674, 1555729952, 1555729941, 1963430774, 1555729955, 1555729956, 1689543016, 1555729978, 3280496570, 1555729995, 1689543018, 3280496571, 1555729973, 1555729959, 1555729954, 1689543023, 1555729972, 1555729960, 3627050621, 1555729957, 3280496572], "tags": {"est_width": "2", "highway": "cycleway", "lit": "yes", "maxspeed": "10", "name": "Acera Bici Serrano", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 545642109, "nodes": [5273347273, 5273347274], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 545642434, "nodes": [5273350504, 4203412903, 5273347274], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 545642435, "nodes": [5273347274, 4203412904, 4203412905, 4110020856], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 545643691, "nodes": [5273361954, 5273361955, 5273347274], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 549913120, "nodes": [25901925, 25903309], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Villanueva", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 551048958, "nodes": [5321904954, 1669117724, 26578965], "tags": {"highway": "residential", "lanes": "2", "lanes:psv": "1", "lit": "yes", "name": "Calle de Fernando el Cat\u00f3lico", "name:etymology:wikidata": "Q12860", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 551048959, "nodes": [2679640394, 25902469], "tags": {"highway": "residential", "name": "Calle del General Or\u00e1a", "oneway": "yes"}}, {"type": "way", "id": 551048960, "nodes": [2679640385, 11218044132, 2679640384, 2679640383], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de los Hermanos B\u00e9cquer", "oneway": "yes", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 551051372, "nodes": [63530535, 1760085713, 63530519], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551051374, "nodes": [63530519, 63530500], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary", "junction": "circular", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza de Rub\u00e9n Dar\u00edo", "oneway": "yes", "postal_code": "28010", "shoulder": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551051375, "nodes": [25934833, 25934835], "tags": {"foot": "no", "highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Ruiz Jim\u00e9nez", "oneway": "yes", "postal_code": "28015", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 551063047, "nodes": [2679640385, 4206086994], "tags": {"cycleway:right": "no", "highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "sidewalk": "left", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 551600609, "nodes": [21990728, 4134046209], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle de Mej\u00eda Lequerica", "oneway": "yes", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 553509829, "nodes": [26413358, 5963987030, 26413356, 5342774136], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 554230302, "nodes": [100891149, 100891150], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 554230310, "nodes": [25903298, 7537616087, 7537616086, 25901948], "tags": {"foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 554230311, "nodes": [26513155, 8294838433, 5385241348, 4470512290, 25552423, 1950481126, 28096482, 4576234312, 5385241347, 1950481160, 28096717, 1950481189, 29739615, 5385241346, 28097222], "tags": {"highway": "secondary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Vel\u00e1zquez", "name:etymology:wikidata": "Q297", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 554230313, "nodes": [25901948, 7549719172, 25901958], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 554505585, "nodes": [5350055330, 581287837], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "surface": "asphalt"}}, {"type": "way", "id": 555163966, "nodes": [141919137, 8464920934, 2688334675, 5007730069], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Almagro", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 556293553, "nodes": [25935514, 6981674376, 385569776], "tags": {"bicycle": "designated", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Serrano Jover", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 556293554, "nodes": [913080874, 25935149], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 562476850, "nodes": [1591330245, 298151463, 3096525835, 3279568933, 60672590, 3096525836], "tags": {"highway": "footway"}}, {"type": "way", "id": 562870982, "nodes": [5425359850, 5425359851, 5425359852, 5425359853], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Gabriel", "oneway": "yes", "smoothness": "intermediate", "surface": "asphalt"}}, {"type": "way", "id": 562895834, "nodes": [60030246, 2972995650, 2972995635, 60030240], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895835, "nodes": [60030242, 3096525842, 5422404801, 60030251], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895836, "nodes": [60030251, 3096525845, 60030243], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895837, "nodes": [60030243, 2972993228, 5422404797, 60030244], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 562895838, "nodes": [60030244, 3096525873, 2972993223, 3096525875, 2972993230, 60030246], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 568490930, "nodes": [5469158330, 5469164208, 5469158339], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 568490932, "nodes": [5469158334, 5469158329, 5469158337, 5469158339, 5469158340, 5469158333, 5469158328], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 568490933, "nodes": [5469158335, 5469164207, 5469158329], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 572095406, "nodes": [5496812949, 5496812950, 5496812951, 5496812952, 5204319238, 5496812935, 5496812936, 5204319237, 5496812937, 5496812938, 5496812944, 5496812945, 5496812946, 5496812947, 5496812948, 5496812939, 5496812940, 5204319239, 5496812941, 5496812942, 5496812943, 5496812949], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 572656341, "nodes": [55161145, 5501428618, 5501428617], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 572656342, "nodes": [3471365915, 5501428619, 5501428620], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 578194963, "nodes": [1491286098, 6450370646], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxheight": "below_default", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 587494933, "nodes": [1491286099, 6967867785, 1491286098], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 590611598, "nodes": [30914817, 5638627651, 5638627645, 3232900949], "tags": {"highway": "path"}}, {"type": "way", "id": 590611599, "nodes": [5638627646, 5638627647, 5638627648], "tags": {"highway": "path"}}, {"type": "way", "id": 590611600, "nodes": [5638627647, 5638627649, 5638627650, 5638627651], "tags": {"highway": "steps"}}, {"type": "way", "id": 590885482, "nodes": [1868668324, 1868668327], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 590885483, "nodes": [1868668327, 1868668329, 7549842318, 1868668321], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 590885484, "nodes": [1868668321, 5003863730], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 593887057, "nodes": [26067307, 7540286795, 26067304], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Amaniel", "oneway": "yes", "postal_code": "28015", "surface": "paving_stones"}}, {"type": "way", "id": 604682695, "nodes": [55161124, 8447121533, 55161130], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 604682696, "nodes": [55161135, 5273358099], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 604682697, "nodes": [55161135, 5273361955, 622204581, 25935524], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "separate", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 609942911, "nodes": [5776878414, 5776878413, 5776878412, 5776878420, 3578397079, 5776878411], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 609942912, "nodes": [5776878417, 5776878421, 5776878416, 5776878415], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 609942913, "nodes": [5776878419, 3321767702, 8483702503], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 609942915, "nodes": [5776878424, 5776878423, 5776878422, 5776878421, 5776878420], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647427, "nodes": [27519838, 5783023220, 5783023224], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 610647428, "nodes": [5783023221, 5783023222], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 610647429, "nodes": [5783023224, 5783023223, 5783023222], "tags": {"highway": "steps", "lit": "yes"}}, {"type": "way", "id": 610647434, "nodes": [5783023255, 5783023262, 5783023254, 5783023260, 5783023253, 5783023263, 5783023252, 5783023261, 5783023255], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647435, "nodes": [5783023259, 5783023262], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647436, "nodes": [5783023256, 5783023260], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647437, "nodes": [5783023259, 5783023258, 5783023257, 5783023256, 5783023259], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647438, "nodes": [5783023261, 5783023258], "tags": {"highway": "footway"}}, {"type": "way", "id": 610647439, "nodes": [5783023263, 5783023257], "tags": {"highway": "footway"}}, {"type": "way", "id": 610875751, "nodes": [5784870819, 5784870818], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 610875752, "nodes": [5784870826, 5784870825, 5784870824, 5784870823], "tags": {"highway": "footway"}}, {"type": "way", "id": 613095515, "nodes": [5802031861, 5069264830, 5802031853], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 613095516, "nodes": [5802031855, 5802031859, 4234097907], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 613095517, "nodes": [5802031857, 5802031858, 5802031856], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 613095518, "nodes": [5802031864, 2283361238, 5802031866], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 613095519, "nodes": [5802031869, 5069264832, 5802031868, 4412200931, 4234097906], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 613095520, "nodes": [5802031872, 5802031871, 5802031870], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 613095521, "nodes": [4467080344, 5802031855, 4234097903, 5802031874, 5802031870, 5802031877, 5802031876, 5802031878, 5802031875, 4467080344], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 613095522, "nodes": [5802031878, 3426732170, 5802031882], "tags": {"crossing": "uncontrolled", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 613095523, "nodes": [5802031880, 3426732167, 5802031879], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 613095524, "nodes": [5802031888, 5802031879, 5802031889, 5802031887, 5802031886, 9468418949, 5802031885, 5802031884, 5802031883, 5802031882, 5802031888], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 613095525, "nodes": [5802031889, 3426732162, 5802031894], "tags": {"footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 613095526, "nodes": [5802031894, 5802031898, 5802031893, 5802031892, 5802031891, 9468418950, 5802031890, 5802031894], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 613095527, "nodes": [5802031898, 3426732143, 5802031902], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 613095528, "nodes": [3294583012, 3294583011, 3294583009, 3294583007, 3294583002, 3294583003], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943"}}, {"type": "way", "id": 613095529, "nodes": [3294583012, 5802031899, 5802031902, 5802031901, 5802031900, 6450890228, 3294583003], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 627776151, "nodes": [1364773043, 4549589312], "tags": {"check_date:surface": "2023-04-23", "crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 627776152, "nodes": [3667374371, 1869400498], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 627776153, "nodes": [1669117870, 4549591265], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 627776154, "nodes": [4536104689, 1869400497, 3667374371], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 629294485, "nodes": [5941381327, 5941381325], "tags": {"highway": "service"}}, {"type": "way", "id": 634419728, "nodes": [26067291, 11228713079, 7930651367, 7930651371, 7930651365, 7930651366], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle del Duque de Liria", "oneway": "no", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 636275428, "nodes": [6000178811, 6000178814, 6000178815], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 654274091, "nodes": [6130961139, 614036239], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxheight": "3", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 654274092, "nodes": [25935174, 1357992454, 25935141], "tags": {"bicycle": "yes", "highway": "tertiary", "lanes": "3", "lit": "yes", "name": "Calle de los M\u00e1rtires de Alcal\u00e1", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 654274093, "nodes": [25935174, 25935066, 11145627655, 1660892630, 1660892624, 11533572595, 1651583795, 25935062], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Santa Cruz de Marcenado", "oneway": "yes", "postal_code": "28015", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 656511222, "nodes": [28096713, 28096714, 4603975784, 1981925778, 28096482, 1963430772, 1950481157, 28096715, 1950481156, 1950481154, 28096711, 6211774594, 11655970547, 1505184339, 5300692986, 8479324967, 28096486], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Hermosilla", "name:etymology:wikidata": "Q28052826", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 656511223, "nodes": [25552446, 1950481127, 1981925780, 28096713, 1981925787, 28096719, 1950481191, 28096821, 1950481195, 28097220], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28001", "source:maxspeed": "ES:zone30", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 657562133, "nodes": [28097220, 28097221], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 657562135, "nodes": [28097220, 28096922, 28096905], "tags": {"highway": "residential", "name": "Calle de Claudio Coello", "name:etymology:wikidata": "Q332466", "oneway": "yes", "postal_code": "28006", "source:name": "survey"}}, {"type": "way", "id": 657562138, "nodes": [28097221, 1950481194, 28096822, 1981925789, 1950481170, 28096718, 4269562177, 1981925784, 28096714, 1981925776, 1981925770, 25552425], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Lagasca", "name:etymology:wikidata": "Q891966", "oneway": "yes", "postal_code": "28001", "source:maxspeed": "ES:zone30", "surface": "asphalt"}}, {"type": "way", "id": 657562143, "nodes": [28097221, 28097222], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "4", "maxspeed:lanes:backward": "50|30", "maxspeed:lanes:forward": "50|30", "name": "Calle de Jos\u00e9 Ortega y Gasset", "name:etymology:wikidata": "Q153020", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 660227219, "nodes": [1754817201, 9571292152, 1754817198], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 660814633, "nodes": [9571292153, 6186804864], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814634, "nodes": [6186804869, 6186804868, 6186804867, 6186804866, 6186804865], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 660814635, "nodes": [6186804869, 6124013034], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 660814636, "nodes": [6186804870, 6124013036], "tags": {"highway": "steps", "incline": "up", "lit": "yes"}}, {"type": "way", "id": 660814637, "nodes": [6186804872, 6186804871, 6186804870], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 660814638, "nodes": [6186804884, 6186804872, 6124013035], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 660814639, "nodes": [6186804874, 6186804873], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814640, "nodes": [6186804876, 6186804874, 6186804875], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814641, "nodes": [1752467548, 6186804879, 3274917099, 1752467549], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 660814642, "nodes": [6186804877, 6186804875], "tags": {"highway": "steps", "incline": "up"}}, {"type": "way", "id": 660814643, "nodes": [6186804876, 6186804878], "tags": {"highway": "steps", "incline": "up"}}, {"type": "way", "id": 660814644, "nodes": [6186804877, 1437132917, 6186804879], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 660814645, "nodes": [6186804882, 6186804895], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814646, "nodes": [6186804881, 6124013038], "tags": {"highway": "steps", "incline": "up", "layer": "-1"}}, {"type": "way", "id": 660814647, "nodes": [6186804888, 6186804886], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814648, "nodes": [6186804887, 6186804888], "tags": {"conveying": "yes", "covered": "yes", "highway": "steps", "incline": "down", "level": "-1;0", "lit": "yes"}}, {"type": "way", "id": 660814649, "nodes": [6186804890, 9569418947, 9569418949, 6186804887], "tags": {"covered": "yes", "highway": "footway"}}, {"type": "way", "id": 660814650, "nodes": [6186804896, 6186804893], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 660814651, "nodes": [6186804894, 6186804893, 6186804892, 6186804891, 6186804885, 9569418943, 6186804889, 6186804886, 6186804864, 6186804865, 6186804884, 6186804873, 6186804883, 6186804882, 6186804881], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 660814652, "nodes": [6186804894, 1719813920], "tags": {"highway": "steps", "incline": "up"}}, {"type": "way", "id": 662314349, "nodes": [6200560265, 6200560249, 6200560248, 6200560247, 6200560246, 6200560245, 6200560244, 6200560243, 6200560195, 6200560194, 6200560193, 6200560192, 6200560191, 6200560190, 6200560196], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 662314352, "nodes": [6200560268, 6200560083, 6200560267, 6200560266, 6200560265, 6200560264, 6200560263, 6200560262, 6200560261, 6200560260, 6200560259, 6200560258, 6200560257, 6200560256, 6200560255, 6200560254, 6200560253, 6200560252, 6200560251, 6200560250], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 664411472, "nodes": [942080469, 1278839025, 7549719160, 7549719161, 26513072], "tags": {"highway": "primary", "lanes": "4", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "surface": "asphalt", "turn": "left|left;through|through;right|right"}}, {"type": "way", "id": 665636238, "nodes": [6214502304, 3374152547], "tags": {"highway": "footway", "tunnel": "yes"}}, {"type": "way", "id": 665691541, "nodes": [6231141666, 6231141665], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 665691542, "nodes": [141860144, 4108443945, 141860662, 6231141666], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Rodr\u00edguez San Pedro", "name:etymology:wikidata": "Q3821801", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 666344285, "nodes": [6238515257, 6238515258], "tags": {"highway": "steps"}}, {"type": "way", "id": 670304178, "nodes": [737215751, 6277264414, 6277264420, 6277264415, 6277264416, 6277264417], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304179, "nodes": [6277264416, 6277264419], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304180, "nodes": [6277264420, 6277264421], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304181, "nodes": [737215719, 6277264422], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304182, "nodes": [6277264417, 6277264423], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304183, "nodes": [6277264424, 10966341178, 6277264427, 6277264428, 6277264429, 6277264435, 6277264430, 6277264431, 6277264432, 6277264433, 6277264434], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 670304184, "nodes": [6277264435, 6277264436], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 670304185, "nodes": [6277264437, 6277264438, 6277264439, 6277264440, 6277264441, 6277264442, 6277264443, 6277264444, 6277264445, 6277264446, 6277264447, 6277264448, 6277264449, 6277264450, 6277264451, 6277264452, 6277264453, 6277264454, 6277264455], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304186, "nodes": [6277264472, 6277264473, 6277264455, 6277264456, 6277264457, 6277264458, 6277264459, 6277264460, 6277264461, 6277264469, 6277264470, 6277264471, 6277264462, 6277264463, 6277264464, 6277264465, 6277264466, 6277264467, 6277264468, 6277264472], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304187, "nodes": [6277264475, 6277264508, 6277264476, 6277264477, 6277264474, 613056120, 6277264489, 6277264490, 6277264478, 6277264479, 6277264480, 6277264481, 6277264482, 6277264483, 6277264484, 6277264486, 6277264487, 6277264488, 6277264485, 6277264475], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304188, "nodes": [6277264437, 6277264483], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304189, "nodes": [6277264492, 11061512911, 6277264493], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304191, "nodes": [6277264508, 6277264507, 6277264506, 613056126, 613056129, 613056132, 613056134, 6277264548, 6277264547], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304192, "nodes": [613056123, 6277264509, 6277264510, 6277264511, 6277264512, 6277264513, 6277264514, 6277264515, 6277264516, 6277264517, 6277264518, 6277264519, 6277264520, 6277264521, 6277264522, 6277264507], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304193, "nodes": [6277264511, 6277264523, 6277264524, 6277264525, 6277264526, 6277264527, 6277264528], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304194, "nodes": [6277264542, 6277264543, 6277264544, 613055512, 6277264545, 6277264546, 6277264529, 6277264530, 6277264531, 6277264532, 6277264533, 6277264540, 6277264541, 6277264534, 6277264535, 6277264536, 6277264547, 6277264537, 6277264538, 6277264539, 6277264542], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304195, "nodes": [6277264518, 6277264549, 6277264550, 6277264551, 6277264533], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304196, "nodes": [6277264530, 6277264552, 6277264553, 6277264554, 6277264555, 6277264556], "tags": {"highway": "footway"}}, {"type": "way", "id": 670304199, "nodes": [6277264578, 6277264579, 6277264580, 6277264581, 6277264582, 6277264569, 737215755, 6277264571, 6277264572, 6277264573, 737215719, 6277264574, 6277264575, 6277264576, 6277264577, 737215759, 737215752, 6277264570, 6277264568, 737215751, 6277264578], "tags": {"highway": "footway"}}, {"type": "way", "id": 671127489, "nodes": [6284747528, 8432952206, 8432952210, 8432952205, 3197987495], "tags": {"highway": "steps", "surface": "concrete"}}, {"type": "way", "id": 673879098, "nodes": [3247246414, 142283820], "tags": {"highway": "residential", "name": "Calle de Grijalba"}}, {"type": "way", "id": 673879100, "nodes": [3247246414, 3247246409, 6101370504], "tags": {"highway": "residential", "name": "Calle de Belalc\u00e1zar", "oneway": "yes"}}, {"type": "way", "id": 674273115, "nodes": [6314640624, 6314640615, 6314640591], "tags": {"highway": "service", "service": "alley"}}, {"type": "way", "id": 674284191, "nodes": [6314750364, 6314751504, 6314751503, 6314751502, 7526681393, 6314751501, 6314751500, 11525423851], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 674284192, "nodes": [6314750365, 6314750364], "tags": {"footway": "sidewalk", "highway": "footway", "tunnel": "building_passage"}}, {"type": "way", "id": 674284193, "nodes": [6314750372, 6314750367, 6314750366], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 674284194, "nodes": [6314750377, 6314751527, 6314750376, 6314750375, 6314750374, 6314750373, 6314750372, 6314750371, 6314750370, 6314750369, 6314750368, 6314750377], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 674284195, "nodes": [6314751529, 6314750362, 6314751495, 6314751494, 6314751493, 6314751492, 6314751491, 6314751490, 6314751489, 6314751488, 6314751487, 6314751486, 6314751485], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 674284196, "nodes": [6314751530, 7526681392, 6314751510, 6314751509, 6314751508, 6441681729, 6314751507, 6314751506, 6314751505, 6314750365], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 674284197, "nodes": [6314751526, 1211171045, 25934875, 6314750371], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 674284198, "nodes": [6314751528, 25934841, 6314751527], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 674284199, "nodes": [6314751529, 1211171046, 1211171047, 6314751530], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 674284200, "nodes": [6314751532, 2972995643, 6314751531], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 674726157, "nodes": [6318921544, 1868668338], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 2", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 674726161, "nodes": [6450370645, 11308306888], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726162, "nodes": [6318921553, 6318921556], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726163, "nodes": [6318921553, 1869400492], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726164, "nodes": [1869400492, 6318921556], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726165, "nodes": [11308306884, 11308306885], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726166, "nodes": [11308306894, 11308306896], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726167, "nodes": [1869400496, 6318921557], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726168, "nodes": [6318921558, 11308306898], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726169, "nodes": [6318921557, 6318921559, 6450370648], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674726170, "nodes": [11308306891, 1869400496], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 674741477, "nodes": [6319067315, 1364772870], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 674898988, "nodes": [6320489341, 3971001358, 6320489342, 6320489343, 6320489344], "tags": {"highway": "service", "lit": "no"}}, {"type": "way", "id": 675677509, "nodes": [6327649413, 6327649412, 6327649411], "tags": {"highway": "residential"}}, {"type": "way", "id": 675677514, "nodes": [6327649426, 11690767211, 6327649425, 6327649424, 6327649423, 6327649422], "tags": {"highway": "service"}}, {"type": "way", "id": 675677516, "nodes": [6327649429, 6327649428, 6327649427], "tags": {"highway": "steps", "incline": "up", "ramp:bicycle": "no", "ramp:luggage": "no", "ramp:wheelchair": "no"}}, {"type": "way", "id": 675901506, "nodes": [330179617, 6967836783], "tags": {"highway": "corridor", "indoor": "yes", "level": "0"}}, {"type": "way", "id": 675901507, "nodes": [1868668318, 1868668316], "tags": {"highway": "footway", "layer": "-1", "level": "-1", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 675901508, "nodes": [1868668318, 7635263894], "tags": {"highway": "footway", "layer": "-1", "level": "-1", "lit": "24/7", "smoothness": "good", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 675901509, "nodes": [330179617, 6329891674], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 675901510, "nodes": [1868668323, 6329891675], "tags": {"highway": "footway", "layer": "-2", "level": "-2", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 675901511, "nodes": [6329891675, 8423999124, 6329891676], "tags": {"highway": "footway", "layer": "-2", "level": "-2", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 675901512, "nodes": [6329891676, 6329891677, 1869400489], "tags": {"highway": "footway", "layer": "-2", "level": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 675901513, "nodes": [1869400489, 1869400493], "tags": {"highway": "footway", "layer": "-2", "level": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 675902213, "nodes": [6329901687, 4197170915], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 675902215, "nodes": [9440297915, 4193837454, 6329901687], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 677976994, "nodes": [6348124040, 6348124039, 6348124038], "tags": {"highway": "steps"}}, {"type": "way", "id": 677976996, "nodes": [6348124041, 6348124042, 6348124038, 6348124043, 6348124040, 6348124044, 6348124045], "tags": {"highway": "steps"}}, {"type": "way", "id": 677976998, "nodes": [6348124046, 6348124045], "tags": {"highway": "steps", "incline": "up"}}, {"type": "way", "id": 677977000, "nodes": [6348124047, 6348124046, 6348124070], "tags": {"highway": "footway"}}, {"type": "way", "id": 677977002, "nodes": [6348124048, 6348124069], "tags": {"highway": "footway", "surface": "sett"}}, {"type": "way", "id": 677977004, "nodes": [6348124070, 6348124069], "tags": {"highway": "footway", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 677978303, "nodes": [6348133643, 6348133631, 6348133642], "tags": {"access": "no", "emergency": "yes", "foot": "yes", "highway": "service"}}, {"type": "way", "id": 677978304, "nodes": [1212072904, 6348133646, 6348133645], "tags": {"highway": "footway"}}, {"type": "way", "id": 677978305, "nodes": [6348133651, 6348133650, 6348133649, 6348133646, 6348133648], "tags": {"access": "no", "emergency": "yes", "foot": "yes", "highway": "service", "service": "drive-through"}}, {"type": "way", "id": 677988839, "nodes": [6348196558, 6348196557, 6348196556, 6348196555, 6348196554, 6348196553, 6348196552, 6348196551, 6348196550, 6348196549, 6348196548, 6348196547, 6348196546, 6348196570, 6348196558], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 677988840, "nodes": [6348196559, 6348196560], "tags": {"highway": "footway"}}, {"type": "way", "id": 677988841, "nodes": [11142044322, 6348196561, 6348196559, 6348197392, 6348196568, 6348196569, 6348196567, 6348196566], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 677988842, "nodes": [6348196570, 6238487907, 6348196569], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 677988843, "nodes": [6348196572, 2436859026, 6348196571], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 677988844, "nodes": [6348196578, 6348196572, 6348196579, 9116858072, 6348196577, 6348196576, 9116858073, 9116858053, 6348196575, 6348196573, 6348196578], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 677988845, "nodes": [6348196580, 2436859060, 6348196579], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 677988846, "nodes": [6348197411, 2436859052, 6348196581], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 677988847, "nodes": [6348196582, 2436859061, 6348197410], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 677988848, "nodes": [6348197386, 8415877505, 6348197385, 6348196584], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 677988849, "nodes": [6348197389, 6238484470, 6348197388], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 677988850, "nodes": [6348197391, 6348197386, 8415877506, 4014645041, 8415878100, 6380794343, 6348197390], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 677988851, "nodes": [6348197394, 6348197395, 8415877504, 6348197391, 8415877503, 6348197393, 6348197392], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 677988852, "nodes": [6348197396, 2493627463, 6348197408], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 677988853, "nodes": [6348197401, 7058272480, 7058272478, 6348197398, 6348196582, 6348197397, 6348196571, 6348197401], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 677988854, "nodes": [6348197410, 6348196581, 6348197409, 6348197408, 6348197407, 6501186700, 6501186705, 6501186710, 6348197406, 8412813536, 6348197405, 6501186701, 6348197404, 8412813537, 6501186702, 6501186703, 6501186704, 6348197403, 6348197402, 6348197410], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 677988855, "nodes": [6348197417, 6348197416, 6348197415, 6348197389, 6348197414, 6348196584, 6348197394, 6348197413, 6348197396, 6348197412, 6348197411, 6348196580, 9116858071, 9116858068, 6348197417], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 677988856, "nodes": [6348197425, 6348197388, 6348197424, 9116858102, 6348197423, 6348197422, 9116858103, 6348197421, 6348197420, 6380794330, 6348197419, 6348197418, 6348197425], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 677988857, "nodes": [11142044321, 6348197427, 4498622039], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 679948585, "nodes": [6366504393, 9292464420, 6366504394, 6366504395], "tags": {"highway": "service"}}, {"type": "way", "id": 680426044, "nodes": [6370992540, 6370992542], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 680426045, "nodes": [6370992542, 6370992541], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 681374140, "nodes": [3293613586, 6380794297], "tags": {"highway": "footway"}}, {"type": "way", "id": 681374141, "nodes": [3382978631, 150760526, 3382978634, 3382978635, 3382978636, 9116858093, 3382978638], "tags": {"alt_name": "Plaza Isla de Albor\u00e1n", "crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "name": "Plaza de la Isla de Albor\u00e1n", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 681374142, "nodes": [6380794187, 6380794186, 6380793484, 6380794185], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 681374144, "nodes": [6380794197, 9116676515, 6380794196], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 681374145, "nodes": [6380794199, 6348133632, 6380794198], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 681374146, "nodes": [3382978631, 6380794202, 6380794201, 6380794200, 6380794198, 6380794217, 6380794216, 6380793484, 6380794215, 6380794214, 6380794213, 6380794212, 6380794211, 6380794210, 6380794209, 6380794208, 6380794207, 6380794206, 6380794205, 6380794204, 6380794203, 3382978629], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 681374153, "nodes": [6380794248, 9549391168, 9549391158], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 681374154, "nodes": [6380794250, 9549391167, 9549391159], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 681374156, "nodes": [6380794256, 6380794253], "tags": {"highway": "steps", "incline": "up"}}, {"type": "way", "id": 681374158, "nodes": [6380794257, 6380794256, 6380794255, 6380794254, 6380794253], "tags": {"highway": "footway", "incline": "up", "wheelchair": "yes"}}, {"type": "way", "id": 681374160, "nodes": [6348133660, 6380794264, 6380794294], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 681374161, "nodes": [6380794314, 6380794269, 9116858089, 6380794268, 6380794267, 6380794266, 6380794265, 6380794272, 6380794271], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 681374162, "nodes": [6277263775, 6380794270, 581287837], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 681374163, "nodes": [6380794314, 3293613593, 6380794270, 6380794271], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "sidewalk", "highway": "footway", "lit": "yes", "name": "Glorieta del Presidente Garc\u00eda Moreno", "surface": "asphalt"}}, {"type": "way", "id": 681374164, "nodes": [6380794281, 6380794279, 6380793480, 6380794280], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 681374165, "nodes": [6380794283, 6380793479, 6380794278, 6380794282], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 681374167, "nodes": [3293613589, 6380793479, 6380793480, 6380794294, 6380794293, 6380794292, 6380794291, 6380794290, 6380794289, 6380794288, 6380794287, 6380794286, 6380794305], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 681374168, "nodes": [6380794271, 3293613591, 27514646, 3293613589], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "crossing", "highway": "footway", "lit": "yes", "name": "Glorieta del Presidente Garc\u00eda Moreno", "surface": "asphalt"}}, {"type": "way", "id": 681374169, "nodes": [6380794297, 6380794298], "tags": {"highway": "steps", "incline": "up", "step_count": "13"}}, {"type": "way", "id": 681374170, "nodes": [6380794303, 6380794300], "tags": {"highway": "steps", "incline": "up", "step_count": "9"}}, {"type": "way", "id": 681374171, "nodes": [3293613580, 6380794304, 6380794303, 6380794302, 6380794301, 6380794300], "tags": {"highway": "footway", "incline": "up", "wheelchair": "yes"}}, {"type": "way", "id": 681374173, "nodes": [6380794305, 27514605, 6380794307], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "crossing", "highway": "footway", "name": "Glorieta del Presidente Garc\u00eda Moreno"}}, {"type": "way", "id": 681374174, "nodes": [6380794307, 3293613576, 3293613579, 3293613581, 3293613585], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "sidewalk", "highway": "footway", "name": "Glorieta del Presidente Garc\u00eda Moreno"}}, {"type": "way", "id": 681374175, "nodes": [6380794313, 1505081158, 6380794314], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "crossing", "highway": "footway", "name": "Glorieta del Presidente Garc\u00eda Moreno"}}, {"type": "way", "id": 681374176, "nodes": [3293613596, 3293613594, 3293613595, 9115409855, 6380794313], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "highway": "footway", "name": "Glorieta del Presidente Garc\u00eda Moreno"}}, {"type": "way", "id": 681374177, "nodes": [3293613585, 27514627, 8415878104, 6348197390, 4014645040, 8415878105, 27514644, 3293613596], "tags": {"alt_name": "Glorieta Presidente Garc\u00eda Moreno", "footway": "crossing", "highway": "footway", "lit": "yes", "name": "Glorieta del Presidente Garc\u00eda Moreno", "surface": "asphalt"}}, {"type": "way", "id": 681374178, "nodes": [6380794324, 3663308770, 6348197426], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 681374179, "nodes": [6380794330, 5783034260, 6380794329], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 681374180, "nodes": [6380794341, 6380794337, 6380794340, 6380794339, 6380794336, 9549391155], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 681374181, "nodes": [6380794343, 8415878106, 6238487900, 9549391156], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 681374182, "nodes": [6380794348, 6380793481, 6380794345, 6380794347, 6380794346], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 684939777, "nodes": [6417677196, 6417677203, 6417677197, 6417677198, 6417677199, 6417677200, 6417677201, 6417677202], "tags": {"highway": "service", "surface": "asphalt"}}, {"type": "way", "id": 685519036, "nodes": [6424299725, 9492744666, 6424299726, 6424299727], "tags": {"highway": "service"}}, {"type": "way", "id": 685983425, "nodes": [21990700, 25906296, 25906295, 25906293, 1754199353, 25906292, 25906290], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 686240338, "nodes": [27517898, 6432147970, 6312277081, 6432147971, 6432147972, 6432147977], "tags": {"highway": "service"}}, {"type": "way", "id": 686240339, "nodes": [6432147977, 6432147978, 6432147973, 6432147974, 6432147975, 6432147979, 6432147976, 6432147977], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 686240340, "nodes": [6432147978, 6432147979], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 687043581, "nodes": [6440420377, 4470285285, 4470285281, 6440420378, 11225755127, 6440420379, 11225755125, 6440420380, 6440420381, 6440420382, 6440420377], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 687043582, "nodes": [4470285268, 6440431086, 6440420383], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 687241632, "nodes": [55161167, 1095709764], "tags": {"access:lanes": "yes|yes", "bicycle:lanes": "yes|yes", "cycleway:lanes": "shared_lane|shared_lane", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 687246657, "nodes": [6441681703, 1357992473, 1357992474, 6441681718], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 687246658, "nodes": [4110020852, 858587232, 1179022535, 6441681704], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 687246659, "nodes": [3594842609, 6441681706], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 687246660, "nodes": [6441681729, 6441681725, 6441681728, 6441681727, 6441681726, 6441681724, 6441681723, 1378696871, 6441681722, 4255514048, 9839677014, 6441681720], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 687246661, "nodes": [4255514049, 6441681740, 1378696861, 6441681739, 6441681738, 6441681737, 6441681736, 1651583802, 6441681735, 6441681734, 6441681733, 6441681732, 6441681731, 6441681730, 1651583801, 6314751495], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 687246662, "nodes": [6441681703, 1357992454, 4255514050], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 687246663, "nodes": [25935139, 1357992474, 385569660], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 687246664, "nodes": [858587232, 913080874], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|yes"}}, {"type": "way", "id": 687861983, "nodes": [5385241321, 1179022127, 25935515], "tags": {"cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 688014653, "nodes": [6450370645, 11308306880], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 688014654, "nodes": [6450370648, 6450370651], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 688014655, "nodes": [6450370649, 5000654864], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 688014656, "nodes": [6450370650, 6450370651], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxheight": "4.3", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 688014657, "nodes": [6450370651, 1491286099], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 688059549, "nodes": [6450890225, 6450890226], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 688059550, "nodes": [6450890226, 6450890223], "tags": {"highway": "footway"}}, {"type": "way", "id": 688059551, "nodes": [6450890224, 6450890227], "tags": {"handrail": "yes", "highway": "steps", "ramp": "no"}}, {"type": "way", "id": 688059552, "nodes": [6450890227, 6450890228], "tags": {"highway": "footway"}}, {"type": "way", "id": 689069216, "nodes": [6277264474, 613056123], "tags": {"highway": "footway"}}, {"type": "way", "id": 692493711, "nodes": [6501186705, 6501186706, 6501186707], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 692493712, "nodes": [6501186707, 9680530036], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "surface": "concrete", "tactile_paving": "no"}}, {"type": "way", "id": 692493713, "nodes": [4356759579, 9680530034], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 692493714, "nodes": [6501186708, 6501186709, 6501186710], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "concrete"}}, {"type": "way", "id": 692493715, "nodes": [3196261071, 9680512496], "tags": {"highway": "steps"}}, {"type": "way", "id": 692493716, "nodes": [6501186714, 6501186715, 6501186713], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 704190178, "nodes": [3426732173, 1364773344, 305776147], "tags": {"highway": "secondary_link", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Avenida de S\u00e9neca", "oneway": "no", "source": "gps tracks", "surface": "asphalt"}}, {"type": "way", "id": 704190179, "nodes": [3426732176, 305776147], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Avenida de S\u00e9neca", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 704190180, "nodes": [2493539661, 6612101340, 2493539670], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 704350773, "nodes": [6614655208, 9998406325, 6614655201, 6614655202, 9998406324, 6614655203, 9998406323, 9998406322, 6614655204, 9998406321, 9998406320, 9998406319, 6614655205, 9998406327, 9998406326, 6614655206, 9998406330, 9998406331, 6614655207, 6614655208], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 704350774, "nodes": [6614655201, 6614655209, 6614655205], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 704549138, "nodes": [6614655200, 9998406334, 6614655208], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 704549139, "nodes": [6614655200, 6614655211, 9998406333], "tags": {"highway": "footway"}}, {"type": "way", "id": 710994735, "nodes": [6684049125, 6684049124, 6684049123, 6684049122], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 710994736, "nodes": [6684049129, 8633236084, 6684049128, 6684049127, 6684049126], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 720989700, "nodes": [6764785307, 6764785306], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989701, "nodes": [6764785309, 6764785308], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989702, "nodes": [6764785311, 6764785310], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989703, "nodes": [6764785313, 6764785312], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989704, "nodes": [6764785316, 6764785315, 6764785308, 6764785306, 6764785310, 6764785312, 6764785314, 6764785330], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989705, "nodes": [6764785318, 6764785316], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 720989706, "nodes": [6764785316, 3971975773, 6764785317], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 720989707, "nodes": [6764785320, 6764785321, 6764785319], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 720989711, "nodes": [6764785335, 6764785338, 6764785334, 6764785333, 6764785332, 6764785331, 6764785324, 6764785330, 6764785313, 6764785311, 6764785307, 6764785309, 6764785318, 6764785329, 6764785322, 6764785328, 6764785327, 6764785326, 6764785325, 6764785335], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 730234325, "nodes": [6841096835, 4631802323], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 730234326, "nodes": [4629861377, 4631802327], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 730234327, "nodes": [6841096836, 4631802326], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 730234328, "nodes": [6841096839, 6841096838, 6841096840, 6841096835, 6841096837, 6841096836, 6841096841, 6841096843, 6841096842], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 740663495, "nodes": [8563965575, 9569328012, 8563965576, 8563965573, 6934412482, 8563965574], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 740664763, "nodes": [8458948192, 8402179358, 8430141297], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 742123982, "nodes": [6947820724, 3575367195, 1245495098], "tags": {"access": "private", "highway": "footway"}}, {"type": "way", "id": 744502782, "nodes": [6967836783, 6967836784, 4549603072], "tags": {"highway": "corridor", "indoor": "yes", "level": "0"}}, {"type": "way", "id": 744502783, "nodes": [6967867786, 4549603071], "tags": {"footway": "sidewalk", "highway": "footway", "level": "1", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 744502784, "nodes": [6967867787, 6967836782], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0.5", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 746008106, "nodes": [1378696877, 3033655161], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 746008107, "nodes": [55161119, 55161167], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "psv": "taxi", "psv_1": "bus", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 746008108, "nodes": [11225755119, 7864693891, 7864693892, 7864693893, 7864693894, 6441681703], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 746008109, "nodes": [1937730979, 1179021817], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 746008110, "nodes": [25935532, 6981674372, 26578942], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "no", "source:name": "common knowledge", "surface": "asphalt", "vehicle:lanes": "yes|yes|no"}}, {"type": "way", "id": 746008111, "nodes": [6981674378, 6981674377], "tags": {"highway": "service", "lit": "no", "oneway": "yes", "service": "parking_aisle", "surface": "paving_stones"}}, {"type": "way", "id": 746008112, "nodes": [6981674381, 6981674382], "tags": {"highway": "service", "layer": "-1", "lit": "no", "oneway": "yes", "service": "parking_aisle", "surface": "paving_stones"}}, {"type": "way", "id": 751130872, "nodes": [6967867787, 4179348744, 6967867786], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0.5", "lit": "24/7", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130873, "nodes": [6967867786, 4179348739, 1364773023], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0.5", "lit": "24/7", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130874, "nodes": [1364773023, 1364773021, 4428052401, 4428052400, 4428052399, 4428052397, 1364772850, 1364772815, 4428052396, 4428052394, 4428052393, 4428052389, 4428052288], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130875, "nodes": [1364772837, 1364772870], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130876, "nodes": [1364772807, 1364772837], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130877, "nodes": [4428052391, 4428052392, 4428052395, 1364772807], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130878, "nodes": [1364772870, 6318921562, 6329891673, 3439683026], "tags": {"footway": "sidewalk", "highway": "footway", "level": "0", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 751130879, "nodes": [6967836783, 1868668325], "tags": {"highway": "corridor", "indoor": "yes", "level": "0"}}, {"type": "way", "id": 755659494, "nodes": [7058239996, 7058240062, 7058239997], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659495, "nodes": [7058239997, 7058239998, 7058240045, 7058239999, 7058240000, 3951439717], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755659496, "nodes": [7058239997, 7058240001, 7058240007, 7058240002, 7058240003, 7058240004, 7058240005, 7058240006, 3951449152], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755659497, "nodes": [7058240007, 7058240058, 7058240008], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659498, "nodes": [7058240018, 8707182063, 7058240020], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "concrete"}}, {"type": "way", "id": 755659499, "nodes": [7058240020, 1993796499], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 755659500, "nodes": [7058240021, 9294124000, 7058240022, 9294124002, 8707182004, 5776878419, 7058240023, 7058240024, 7058240025, 7058240026, 7058240027, 7058240028, 8707182003, 9294123999, 7058240021], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755659501, "nodes": [7058240029, 7058240030, 7058240031, 8589258539, 7058240033, 7058240049, 7058240035, 9294124006, 7058240036, 7058240029], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755659502, "nodes": [7058240026, 7058240037, 7058240036], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659503, "nodes": [7058240024, 7058240038, 7058240029], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659504, "nodes": [7058240031, 7058240040, 7058240039], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659505, "nodes": [7058240041, 7058240043, 7058240042], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755659506, "nodes": [7058240044, 7058240046, 7058240045], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 755659507, "nodes": [7058240048, 7058240050, 7058240049], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665330, "nodes": [7058240042, 7058272463, 7058272461, 8405406021, 8612377570, 8405406022, 7058272479, 7058272465, 7058272466, 4255508682, 7058272467, 8707182005, 8707182006, 7058272482, 8707182007, 8707182008, 7058272468, 7058240042], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 755665331, "nodes": [7058239996, 8404518423, 8404518422, 7058272469, 7058272462, 7058272470, 7058272471, 7058272477, 4436330723], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755665332, "nodes": [7058239996, 7058272472, 8404518421, 8458897493, 7058272473, 7058272474, 8541824812, 8404518424, 7058272475, 8404518425, 8404518426, 8404518427, 8404518428, 7058272476, 8404518429, 4436330710], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 755665333, "nodes": [1140217843, 7058272477], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665334, "nodes": [1140217820, 7058272478], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665335, "nodes": [7058272479, 7058272481, 7058272480], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665336, "nodes": [4131272800, 7058272483, 7058272482], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665337, "nodes": [4131272799, 7058286485, 7058272484], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 755665338, "nodes": [7058286486, 5553995268, 7058286487, 9802859476, 4260545534], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 755665339, "nodes": [7058286488, 6238484475, 7058286489], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 756122281, "nodes": [26413513, 26413576, 1203847162, 26413579], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "highway": "secondary", "lanes": "5", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "through|through|through|through;right|right"}}, {"type": "way", "id": 756122282, "nodes": [2615210656, 3258766781, 1613048569], "tags": {"highway": "primary", "lanes": "5", "name": "Calle de R\u00edos Rosas", "name:etymology:wikidata": "Q27267331", "oneway": "yes", "postal_code": "28003", "turn:lanes": "through|through|through|through|through;right"}}, {"type": "way", "id": 756122283, "nodes": [1924384878, 27522353], "tags": {"highway": "tertiary", "lanes": "2", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "sidewalk": "left"}}, {"type": "way", "id": 756122284, "nodes": [27522353, 7062214673, 27518078], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through|through|through|through;right"}}, {"type": "way", "id": 756122285, "nodes": [27521668, 4311812558, 27517937], "tags": {"highway": "primary", "lanes": "4", "maxspeed": "50", "name": "Avenida de Filipinas", "name:etymology:wikidata": "Q928", "old_name": "Avenida de las Islas Filipinas", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "through|through|through|through"}}, {"type": "way", "id": 756768031, "nodes": [7068076319, 2972941418, 7068076318], "tags": {"highway": "footway"}}, {"type": "way", "id": 756768032, "nodes": [7068076320, 7068076330], "tags": {"highway": "service"}}, {"type": "way", "id": 759274324, "nodes": [3439683027, 7124812262, 7124812261, 3439683026], "tags": {"highway": "corridor", "indoor": "yes"}}, {"type": "way", "id": 762521423, "nodes": [7124812261, 1869400491], "tags": {"highway": "corridor", "indoor": "yes"}}, {"type": "way", "id": 762521424, "nodes": [1869400494, 7124812262], "tags": {"highway": "corridor", "indoor": "yes"}}, {"type": "way", "id": 766591783, "nodes": [7159715764, 7159758683, 7159715763], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 766591808, "nodes": [7159758665, 7159758662], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 766591809, "nodes": [7159758667, 7159758666], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 766591810, "nodes": [7159758669, 7159758667, 7159758668], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 766591811, "nodes": [7159758672, 7159758671, 7159758670], "tags": {"highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 766591813, "nodes": [7159758684, 7159758683, 7159758682, 7159758668, 7159758681, 7159758680, 7159758671, 7159758679], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 766591814, "nodes": [7159758686, 7159758685], "tags": {"highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 766591815, "nodes": [7159758687, 2880395983, 7159758688], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 767263902, "nodes": [7164077790, 1869400500, 7164077789], "tags": {"foot": "yes", "highway": "cycleway", "lit": "yes", "segregated": "no", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 767263903, "nodes": [7164077790, 3527091818, 3527091811, 2512282983, 3527091798, 3527091796, 26579190, 2512282982, 26579189, 2446887427, 3667369103], "tags": {"foot": "yes", "highway": "cycleway", "lit": "yes", "segregated": "no", "smoothness": "intermediate", "surface": "paving_stones"}}, {"type": "way", "id": 767647774, "nodes": [5063895996, 26413145], "tags": {"cycleway:right": "shared_lane", "foot": "no", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 767647775, "nodes": [5214866736, 5063896002, 7832367678, 7832367681, 7832367680, 7832367679, 7832367682, 7832367683, 7832367684, 7832375785, 7832375787, 7832375786, 5063896007, 5214866735, 8583469088, 8583469089, 8583469090, 8583469087, 5214866734, 5214866733, 5063895998, 5802031880, 5214866732, 8583469086, 8583469080, 8583469081, 8583469082, 8583469085, 8583469084, 8583469083, 5214866731, 5214866730, 8583469078, 8583469079, 8583469077, 8583469076, 5063896006, 5214866729, 5214866728, 8583469074, 5214866726, 8583469073, 8583469075, 8583469072, 8583469071, 8583469070, 8582667046, 8582667047, 8582667048, 8582667049, 8582667050, 5214866725, 8582667051, 8582667052, 8582667053, 8582667054, 8582667055, 8582667056, 8582667042, 8582667043, 8582667045, 8582667044, 5063895988, 5214866724, 5063896000, 8583469068, 5214866723, 8582667041, 5063895991, 8582667040, 5214866722, 8582667039, 5063895984, 8582667038, 8582667037, 5214866721, 5063896004, 5063895996], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "no", "name": "Carril bici Santa Engracia", "segregated": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 767647776, "nodes": [5214866736, 60030248], "tags": {"cycleway:left": "track", "cycleway:left:oneway": "no", "cycleway:right": "no", "highway": "tertiary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Eloy Gonzalo", "name:etymology:wikidata": "Q1245933", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 772241088, "nodes": [21990706, 8441812493, 25906112], "tags": {"highway": "residential", "lanes": "3", "lanes:backward": "2", "lanes:forward": "1", "lit": "yes", "name": "Calle de Mej\u00eda Lequerica", "oneway": "no", "postal_code": "28004", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 776797452, "nodes": [25906098, 21990727], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "4", "lit": "yes", "maxspeed": "30", "name": "Calle de Mej\u00eda Lequerica", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 781906849, "nodes": [7300259079, 7300259080], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 781906850, "nodes": [7300259083, 7300259084], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 781906851, "nodes": [3675302630, 7300259095], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 783692065, "nodes": [7319929941, 1754819505], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 783692066, "nodes": [1754819491, 1754816982, 1754819502], "tags": {"crossing": "traffic_signals", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 783692067, "nodes": [7319929942, 1719813901, 8807074866, 1719813893], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 790588716, "nodes": [1752467537, 7391140898, 6124013036], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 791158798, "nodes": [7396188670, 141855434], "tags": {"highway": "service"}}, {"type": "way", "id": 791158799, "nodes": [7396188671, 7396188670], "tags": {"highway": "service", "tunnel": "building_passage"}}, {"type": "way", "id": 792554193, "nodes": [7411091836, 1474148445], "tags": {"covered": "no", "est_width": "5", "flood_prone": "yes", "highway": "service", "incline": "0%", "lanes": "1", "lit": "no", "service": "alley", "source": "local knowledge;aerial imagery", "surface": "asphalt", "trolley_wire": "no"}}, {"type": "way", "id": 792560328, "nodes": [7411148690, 7411148691, 7411148692, 7411148693, 7411148694, 7411148695, 7411148696, 7411148697, 7411148698, 7411148699, 7411148700, 7414071627, 7411148701, 7411148702, 7411148703, 7411148704, 7411148705, 7411148706, 7411148707], "tags": {"covered": "no", "est_width": "5", "flood_prone": "no", "highway": "service", "incline": "-30%", "lanes": "1", "lit": "no", "service": "driveway", "source": "local knowledge;aerial imagery;gps", "surface": "asphalt", "trolley_wire": "no"}}, {"type": "way", "id": 792863976, "nodes": [7411091836, 7414071628, 7414071626, 7414071627], "tags": {"covered": "no", "dog": "yes", "est_width": "1", "highway": "path", "horse_scale": "common", "incline": "-25%", "informal": "yes", "lit": "no", "mtb:scale": "1", "mtb:scale:uphill": "2", "sac_scale": "hiking", "smoothness": "bad", "source": "local knowledge;gps;aerial imagery", "stroller": "limited", "surface": "dirt/sand", "trail_visibility": "intermediate", "wheelchair": "no"}}, {"type": "way", "id": 792863979, "nodes": [7414071643, 7414071641, 7414071642], "tags": {"covered": "no", "dog": "yes", "est_width": "2", "footway": "sidewalk", "highway": "footway", "incline": "0%", "lit": "no", "smoothness": "good", "source": "local knowledge;gps;aerial imagery", "stroller": "yes", "surface": "paving_stones", "tactile_paving": "no", "wheelchair": "yes"}}, {"type": "way", "id": 801685736, "nodes": [3221366172, 3221366174], "tags": {"highway": "residential", "layer": "-1", "maxheight": "2.95", "name": "Calle de la Bas\u00edlica", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 801685737, "nodes": [1314926740, 1314916923], "tags": {"highway": "pedestrian", "layer": "-1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 806329880, "nodes": [7540286795, 4827701836], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "yes", "ramp:wheelchair": "yes", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 807319223, "nodes": [7549593985, 26579033], "tags": {"highway": "service", "lit": "yes", "name": "Intercambiador Moncloa Memoria", "old_name": "Intercambiador Moncloa Arco del Triunfo", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807319224, "nodes": [7549593985, 7549593991, 7549593992, 7549593993, 7549593994, 7549593995, 7549586484], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807334401, "nodes": [7549719194, 7549719193, 7549719192, 7549719191, 7549719169], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807334402, "nodes": [7549719175, 7549719176, 7549719178, 7549719177, 7549719167], "tags": {"highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 807334403, "nodes": [26513072, 9054521334, 5385241329, 3323813669, 942080445, 25901919, 1900998827, 4576234377, 942080448, 3235382373, 2506473199], "tags": {"cycleway:both": "separate", "highway": "secondary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Serrano", "name:etymology:wikidata": "Q515741", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 807334404, "nodes": [7549719200, 8427025401, 2827804125, 7549719201, 25552447], "tags": {"cycleway": "shared_lane", "destination": "Calle de Goya", "highway": "residential", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed:lanes": "50|30|50", "name": "Calle de Goya", "name:etymology:wikidata": "Q5432", "oneway": "yes", "postal_code": "28001", "surface": "asphalt"}}, {"type": "way", "id": 807921769, "nodes": [2973015613, 7555183386, 7555160482, 7555160483], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 807921770, "nodes": [7555160482, 7555183385], "tags": {"highway": "steps", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 807921771, "nodes": [7555160483, 7555160484], "tags": {"highway": "steps", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 808448055, "nodes": [7559826098, 904855961], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 808448056, "nodes": [904855961, 7569491949, 7559826141], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 808448057, "nodes": [7559826100, 1591329906, 7559826101, 1591329908, 7559826102, 1591329914, 7559826104, 1591329924, 7559826103, 1591329927], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 808448059, "nodes": [7559826109, 904855958], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no"}}, {"type": "way", "id": 808448060, "nodes": [904855958, 7559826141], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 808448062, "nodes": [7559826131, 904855951], "tags": {"highway": "steps", "surface": "paving_stones"}}, {"type": "way", "id": 808448063, "nodes": [904855951, 7559826168, 7559826132], "tags": {"highway": "footway", "layer": "-1", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 808448065, "nodes": [7559826139, 904855949], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no"}}, {"type": "way", "id": 808448066, "nodes": [904855949, 7559826140], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 809156091, "nodes": [7549719194, 25903298], "tags": {"foot": "no", "highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 809559939, "nodes": [7559826141, 7559826143, 7559826140], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 813689625, "nodes": [7600612665, 7549586483, 7549593988, 916938490], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 813689626, "nodes": [26579030, 266374396, 2823682506], "tags": {"highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 817537630, "nodes": [1869313927, 1869313926], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "24/7", "smoothness": "good", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 821334653, "nodes": [616264715, 616264718, 616264721, 616264722], "tags": {"highway": "residential", "name": "Plaza de Mar\u00eda Guerrero", "oneway": "yes"}}, {"type": "way", "id": 838504312, "nodes": [7825645057, 7825645059, 7825645058], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 843077656, "nodes": [7864693889, 1179022304, 7864693890, 7864693893], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 845968419, "nodes": [7892603718, 10059226229], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 845968420, "nodes": [7892603727, 7892603719, 7892603726, 7892603725, 7892603724, 7892603723, 7892603722, 7892603721, 7892603720], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 850049293, "nodes": [893869107, 7930651356, 7930651357, 7930651358, 7930651359, 4110093642, 7930651360, 7930651361, 7930651362, 7930651363, 7930651372, 7930651366, 893869106, 7934347516, 7934347517, 7934347518, 7934347519, 7934347505], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Duque de Liria", "oneway": "yes", "postal_code": "28015", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 850469758, "nodes": [7934347505, 7934347506, 7934347507, 7934347508, 7934347509, 7965756604, 7934347510, 7934347511], "tags": {"highway": "primary", "lit": "yes", "name": "Duque de Liria", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 855877065, "nodes": [7981026976, 1654250236, 1654250232, 7981026977], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 855877066, "nodes": [7981026975, 7981026974], "tags": {"highway": "footway"}}, {"type": "way", "id": 855877067, "nodes": [7981026973, 7981026974], "tags": {"highway": "footway"}}, {"type": "way", "id": 855877672, "nodes": [7981026974, 1654250231, 9601998689], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 857787079, "nodes": [7997051244, 7997067405, 7997051253], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 857787710, "nodes": [7997051253, 7997051247, 7997051249, 7997051250, 7997051252, 7997051246, 7997051251, 7997051245, 7997051248, 7997051254, 3078198915], "tags": {"highway": "footway"}}, {"type": "way", "id": 858485090, "nodes": [8003046433, 8003058428, 3323813669], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 858485091, "nodes": [8003046440, 8003058429], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 858735675, "nodes": [3268713831, 8004996330, 8004996328, 8004996333], "tags": {"highway": "footway"}}, {"type": "way", "id": 858738568, "nodes": [8004960874, 8004974956, 8004960873], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 858740085, "nodes": [8004960870, 8004974955, 8004960875], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 858740086, "nodes": [8004960873, 8004960870], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 858885642, "nodes": [55161074, 1358036199, 1358036201, 55161108], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Ferraz", "name:etymology:wikidata": "Q977583", "oneway": "yes", "postal_code": "28008", "surface": "asphalt"}}, {"type": "way", "id": 858885643, "nodes": [55161074, 1358036197, 1364770953, 26080763], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Quintana", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 859047279, "nodes": [8007694242, 8007694245], "tags": {"highway": "service", "lit": "no", "service": "driveway"}}, {"type": "way", "id": 864498072, "nodes": [8057443175, 4416531500, 8057443173, 4416531498, 8057443174], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 864498073, "nodes": [8057443172, 8057411475, 8057443173], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 867526078, "nodes": [8086154959, 8086154960, 8086154961], "tags": {"highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 867526079, "nodes": [3927597013, 8086154959, 8086154962, 8086154965], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 867526080, "nodes": [8086154966, 8086154965], "tags": {"highway": "footway", "tunnel": "building_passage"}}, {"type": "way", "id": 867526081, "nodes": [8086154962, 8086154957, 8086154958, 8086154964, 8086154963], "tags": {"highway": "footway"}}, {"type": "way", "id": 867526082, "nodes": [8086154961, 8086154968, 8086154967, 8086162062, 8086154963, 8086154966], "tags": {"highway": "footway"}}, {"type": "way", "id": 868615036, "nodes": [26211576, 1500124613, 26025902, 26025841], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Gaztambide", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 868615037, "nodes": [26025842, 3663308736, 26025903, 1500124594, 26211580, 3663308739, 3663308740, 27516696], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Andr\u00e9s Mellado", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 868615038, "nodes": [26025846, 27520754, 7062214671, 27520557, 8426942048, 27520539, 7062214674, 27518078], "tags": {"bicycle": "yes", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lanes": "3", "name": "Calle de Vallehermoso", "name:etymology:wikidata": "Q6122685", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615039, "nodes": [27521668, 4637277827, 3096525913, 4536011529, 26025845], "tags": {"highway": "residential", "lanes": "1", "maxspeed": "50", "name": "Calle de Galileo", "oneway": "yes", "postal_code": "28003", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615041, "nodes": [8096571921, 1016578409], "tags": {"access": "private", "highway": "service", "maxheight": "3", "name": "Calle Batalla de Otumba", "oneway": "yes", "tunnel": "building_passage"}}, {"type": "way", "id": 868615042, "nodes": [1016578441, 8096571920], "tags": {"access": "private", "highway": "service", "maxheight": "3", "name": "Calle Batalla de Otumba", "oneway": "yes", "tunnel": "building_passage"}}, {"type": "way", "id": 868615043, "nodes": [8807074826, 8807074832, 8807074831, 8807074827, 60017632, 4808839534, 25902757, 25902756, 3675303749, 25902676], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 868615044, "nodes": [60030301, 3675303750, 60030409, 60030408, 60030410, 1613048507, 1613048510, 60018312, 8807066209, 8807066210, 101181988], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Calle de Fern\u00e1ndez de la Hoz", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 868615045, "nodes": [60030259, 5069264836, 7892603727, 4547336041, 60030260, 5863695677, 60030279, 9468442517, 9468442518, 60030302], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Modesto Lafuente", "name:etymology:wikidata": "Q627987", "oneway": "yes", "postal_code": "28010", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 868615046, "nodes": [60030303, 9468421738, 9468421735, 60030278, 9468421736, 5802031896, 269361215, 9468418953, 9468418948, 60030277, 9468406684, 269361177, 5069264833, 9468406681, 60030258], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "maxspeed": "30", "name": "Calle de Alonso Cano", "name:etymology:wikidata": "Q378783", "oneway": "yes", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 871518682, "nodes": [8117606294, 8419169896, 8419169898, 8419169897, 8117606295, 4237239312], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 871519074, "nodes": [8117606296, 8117579706, 8778809317, 8117606294], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 873314041, "nodes": [7934347511, 1789638282, 26067884], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 873314042, "nodes": [7934347511, 7934347512, 7934347513, 7934347514, 7934347515], "tags": {"highway": "primary", "lanes": "1", "lit": "yes", "maxspeed": "30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 873314043, "nodes": [7934347515, 26067881], "tags": {"bicycle:lanes": "no|designated|no", "cycleway:lanes": "no|shared_lane|no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|30|50", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "psv:lanes": "yes|yes|designated", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 876209844, "nodes": [8155107977, 8155107987], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "separate"}}, {"type": "way", "id": 876209845, "nodes": [8155107978, 8155107984, 8155107985, 8155107986, 8155107987], "tags": {"highway": "footway", "incline": "up", "wheelchair": "yes"}}, {"type": "way", "id": 876209846, "nodes": [8155107987, 2060837653], "tags": {"highway": "footway", "ramp": "separate"}}, {"type": "way", "id": 876209847, "nodes": [8155107990, 8155107977], "tags": {"highway": "footway"}}, {"type": "way", "id": 876209848, "nodes": [8155107991, 8155107979], "tags": {"highway": "footway"}}, {"type": "way", "id": 876209849, "nodes": [8155107979, 8155107992], "tags": {"handrail": "yes", "highway": "steps", "incline": "down"}}, {"type": "way", "id": 876209850, "nodes": [8155107993, 8155107980, 8155107994], "tags": {"highway": "service", "service": "driveway"}}, {"type": "way", "id": 887986556, "nodes": [8255907447, 8284092934, 340225434], "tags": {"highway": "footway", "lit": "yes", "surface": "fine_gravel"}}, {"type": "way", "id": 890797389, "nodes": [7825645058, 25902793, 3078426886, 139982483], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Vitruvio", "name:etymology:wikidata": "Q47163", "surface": "asphalt"}}, {"type": "way", "id": 890797390, "nodes": [25902801, 25902773, 25903359, 8807074888, 25903358, 25903357, 1759501614, 25902677], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt"}}, {"type": "way", "id": 890797391, "nodes": [25902801, 8807074841, 356264959], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 890797392, "nodes": [356264959, 8807074846, 25902777, 1754819488, 25902808], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt", "turn:lanes": "left;through|through|through"}}, {"type": "way", "id": 890797393, "nodes": [25902807, 8807074821, 1754819503, 25902808], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 890797394, "nodes": [25902808, 267271033], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Plaza de San Juan de la Cruz", "name:etymology:wikidata": "Q190388", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 890797395, "nodes": [8279212876, 25903360], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "left|left;through|through|through"}}, {"type": "way", "id": 890797396, "nodes": [25902821, 25902824, 8807074845, 8807074846, 8807074850, 8807074851, 25902774, 8807074852, 8807074853, 8807074844], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 891287329, "nodes": [3225692038, 3225692043, 3225692044, 340225434], "tags": {"highway": "footway", "lit": "yes", "name": "Plaza de Manuel G\u00f3mez-Moreno", "surface": "paving_stones"}}, {"type": "way", "id": 891287331, "nodes": [340225417, 340225375], "tags": {"highway": "footway", "lit": "yes", "name": "Plaza de Manuel G\u00f3mez-Moreno", "surface": "paving_stones"}}, {"type": "way", "id": 891287353, "nodes": [8284112600, 8284112601], "tags": {"highway": "footway", "lit": "yes", "name": "Plaza de Manuel G\u00f3mez-Moreno", "surface": "paving_stones"}}, {"type": "way", "id": 892087949, "nodes": [8291665486, 8291665488], "tags": {"bicycle": "yes", "highway": "footway", "motor_vehicle": "no", "segregated": "no"}}, {"type": "way", "id": 892087950, "nodes": [8291665485, 8291665486], "tags": {"bicycle": "yes", "highway": "footway", "motor_vehicle": "no", "segregated": "no", "tunnel": "building_passage"}}, {"type": "way", "id": 892087951, "nodes": [8291665488, 8291665487], "tags": {"bicycle": "yes", "highway": "footway", "motor_vehicle": "no", "segregated": "no", "tunnel": "building_passage"}}, {"type": "way", "id": 892087952, "nodes": [6314750362, 8291665485], "tags": {"bicycle": "yes", "highway": "footway", "motor_vehicle": "no", "segregated": "no"}}, {"type": "way", "id": 893181796, "nodes": [3428425009, 8301341785, 8301341784, 8301341783, 8301341782, 8301341786, 8301341788, 8301341787, 8301341791, 8301341789, 8301341790, 2508927634], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "service": "parking_aisle", "tunnel": "yes"}}, {"type": "way", "id": 893796862, "nodes": [8307252470, 4575801332], "tags": {"highway": "service", "layer": "-1", "source": "PNOA", "source:date": "2014", "tunnel": "yes"}}, {"type": "way", "id": 893796863, "nodes": [8307252471, 1278839025], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt"}}, {"type": "way", "id": 902858315, "nodes": [1868668345, 8385594956, 8385594957], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Salida por Carril solo Bus/Area de Regulaci\u00f3n", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 902858317, "nodes": [8385594957, 8385594958, 8822145845, 2057627664], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "yes", "maxspeed": "20", "name": "Interc. Moncloa Entrada por Carril Solo Bus A-6", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 903220183, "nodes": [266372700, 8385594957], "tags": {"highway": "service", "lanes": "1", "layer": "-1", "lit": "yes", "name": "Solo Bus - A6", "oneway": "reversible", "psv": "yes", "ref": "A-6 BUS-VAO", "tunnel": "yes"}}, {"type": "way", "id": 903220185, "nodes": [8388879243, 5003912688], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 903220186, "nodes": [8388879242, 8388879243], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 903220187, "nodes": [8388879244, 2080593481, 1868668328, 1868668321], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 903220188, "nodes": [8388879244, 5003802453], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 903220189, "nodes": [5002571278, 8589432332], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 903579371, "nodes": [8381512931, 1868668324], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 904599914, "nodes": [4889799239, 8401038669, 8401038670, 8401038671, 8401038672, 8401038673, 8521700644, 8401038674, 4889799235], "tags": {"highway": "footway"}}, {"type": "way", "id": 904708598, "nodes": [8401920777, 8401920778, 8401920779, 8401920780, 8401920781, 8401920782, 8401920783, 8401920784, 8401920785, 8401920786, 8458897492, 8401920787, 8401920788, 8401920789, 8401920790, 8401920791, 8401972737, 8401920792, 8587019137, 8587019138, 8401920793, 8401920794, 8401920795, 8401920796, 8401920797, 8401920777], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 904708600, "nodes": [8401920790, 2436859064, 7058240005], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 904733723, "nodes": [3802946129, 3802946128, 4928903257, 8430141299, 3802946126, 8430141298, 8429634757, 8429634756, 8430141300, 8429634755, 8429634754, 8429634753, 3802946105], "tags": {"highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 904733724, "nodes": [3802946130, 8789170594, 26413137, 8778804414, 3802946129], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "source": "Bing", "source:date": "2015", "surface": "asphalt"}}, {"type": "way", "id": 904768403, "nodes": [8402493609, 8402493610, 8402493611, 8402493607], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 904768404, "nodes": [8402493607, 8402493613, 8402493612], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 904768405, "nodes": [8402493614, 8402493615, 8402493616], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 904768406, "nodes": [8402493614, 8402493618, 8402493619], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 904768407, "nodes": [8402493608, 34408611, 8402493616], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 905092058, "nodes": [98723334, 8405390293, 8405390292, 8405390291], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 905092061, "nodes": [8405406023, 8405406024, 8405406025, 339410670], "tags": {"highway": "service", "noname": "yes", "oneway": "yes"}}, {"type": "way", "id": 905564427, "nodes": [8409656015, 8419169740, 8409677817, 8419169733, 8416381984, 8409677820, 8409677818, 8409677819, 8409656015], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 905616918, "nodes": [8410136818, 8410136819, 8419169739, 8410136820, 8410136821, 8419169737, 8410136822, 8410136823, 8410136824, 8410136825, 8410136826, 8410136818], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 905616919, "nodes": [8410136818, 8410136827, 8409677819], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 905617778, "nodes": [8410136424, 8410136425, 8410136430, 8410136426, 8410136429, 8410136427, 8410136431, 8410136428, 8410136424], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 905617779, "nodes": [8410136427, 8410136432, 8410136822], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 905617780, "nodes": [8410136424, 8398199114, 8410136825], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 905921006, "nodes": [8412813522, 8412813536, 8412813549, 8412813523, 8412813524, 8412813525, 8412813526, 8412813527, 8412813528, 8412813529, 8412813530, 8412813531, 8412813532, 8412813533, 8412813534, 8412813535, 8412813537, 32602937], "tags": {"highway": "service", "surface": "sett"}}, {"type": "way", "id": 906194054, "nodes": [8415246954, 8415246955], "tags": {"access": "private", "bicycle": "yes", "foot": "yes", "highway": "service", "motor_vehicle": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 906335915, "nodes": [8416409723, 8416409724, 8416409725, 8416409726, 8416409727, 8416409728, 8416409729, 8416409730, 8458897491, 8416409731, 8458897490, 8416409732, 8416409723], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906335916, "nodes": [8416409735, 8419169787, 8416409736, 8416409737, 8416409738, 8416409739, 8416409735], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906335917, "nodes": [8416409739, 8416409741, 8416409723], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906335918, "nodes": [8416409735, 8416409740, 8410136429], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906335919, "nodes": [8416409726, 8416409742, 8416409736], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906638455, "nodes": [8418945155, 8418945156, 8418945157, 8419169741, 8418945158, 8418945159, 8418945160, 8418945161, 8418945155], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 906638456, "nodes": [8418945163, 8418945164, 8418945165, 8418945166, 8418945167, 8418945168, 8418945163], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906667505, "nodes": [8418945167, 8419169736, 8418945156], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667506, "nodes": [8418945168, 8419169738, 8419169737], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667507, "nodes": [8409656015, 8410125841, 8419169739], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667508, "nodes": [8419169740, 8398199208, 8419169741], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667511, "nodes": [8419169748, 8419169749, 8419169750, 8419169751, 8419169752, 8419169748], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906667520, "nodes": [8418945161, 8419169785, 8418945166], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667521, "nodes": [8418945165, 8419169786, 8419169748], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667522, "nodes": [8418945163, 8419169789, 8419169750], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667523, "nodes": [8419169750, 8419169788, 8419169787], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667524, "nodes": [8416409727, 8416409743, 8419169751], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667526, "nodes": [8419169791, 8419169792, 8419169793, 8419169794, 8419169795, 8419169796, 8419169797, 8419169798, 7058240008, 8419169799, 8419169800, 8419169801, 8419169802, 8419169791], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906667527, "nodes": [8419169798, 2436859012, 8416409728], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906667533, "nodes": [8117606296, 8450420425, 8419169861, 8419169862, 8419169863, 8419169864, 8483729858, 8419169865, 8419169866, 8419169867, 8419169868, 8419169869, 8419169870, 8419169871, 8419169872, 8419169873, 8419169874, 8458897494, 8419169875, 8419169876, 8419169877, 8419169878, 8419169879, 8419169880, 8419169881, 8419169882, 8419169883, 8419169884, 8419169885, 8419169886, 8419169887, 4436330717, 8419169888, 8419169889, 8419169895, 8419169890, 8419169891, 8419169892, 8419169893, 8117606296], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 906667534, "nodes": [8419169874, 8419169894, 8419169799], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906689983, "nodes": [8419403313, 8419403314, 8419403315, 8419403316, 8419412217, 8419412218, 8419412219, 8419403313], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906689984, "nodes": [8419412220, 8419412221, 8419412222, 8419412223, 8419412220], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906689985, "nodes": [8419412224, 8419412225, 8419412226, 8419412227, 8419412228, 8419412229, 8419412230, 8419412231, 8419412224], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906689987, "nodes": [8419412234, 8419412235, 8419412242, 8419412236, 8419412237, 8419412238, 8419412239, 8419412234], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906689988, "nodes": [8419412227, 8419412241, 8419412234], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906689989, "nodes": [8419412226, 8419412243, 8419412242], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906689990, "nodes": [8419412218, 8419412244, 8419412224], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906689991, "nodes": [8419403316, 8419412245, 8419412222], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906692689, "nodes": [8419169748, 8419437221, 8419412223], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906692690, "nodes": [8419169752, 8419397863, 8419412220], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906692691, "nodes": [8419412221, 8419397864, 8419403314], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906692692, "nodes": [8419403313, 8419437223, 8419169794], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697881, "nodes": [8419169867, 8419479065, 8419169791], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697890, "nodes": [8419484417, 8419484418, 8419484419, 8419484420, 8419484421, 8419484422, 8419484423, 8419484417], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 906697892, "nodes": [8419484442, 8419484443, 8419484444, 8419484445, 8419484446, 8419484442], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 906697896, "nodes": [8419412238, 8419484451, 8418945166], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697897, "nodes": [8419484444, 8419484452, 8419484418], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697898, "nodes": [8419412237, 8419484453, 8419484442], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697899, "nodes": [8419412223, 8419484454, 8419412229], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906697900, "nodes": [8419412238, 8419484455, 8419484417], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906896628, "nodes": [8421229157, 8421229164, 8421229158, 8421229159, 8421229160, 8587019131, 8421229161, 8421229162, 8421229157], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 906903725, "nodes": [8421307643, 8421307644, 8421307645, 8421307646, 8421307647, 8421307648, 8421307649, 8421307650, 8421307651, 8402493612, 8421307652, 8421307653, 8421307643], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906903726, "nodes": [8421307649, 8398199204, 8402493614], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906903727, "nodes": [8421307648, 8421307654, 8419412237], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906903728, "nodes": [8421307662, 8402493619], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 906903729, "nodes": [8402493619, 8421307663, 8421229162], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906903730, "nodes": [8421307662, 98726081, 8421229161], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 906914641, "nodes": [8421422523, 8421422524, 8421422525, 8421422526, 8421422527, 8421422528, 8421422529, 8421422523], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 906914642, "nodes": [8421422525, 8421422530, 8421307652], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906914643, "nodes": [8421422528, 8419397869, 8419412219], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906914644, "nodes": [8421422523, 8421422531, 8421307645], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 906914645, "nodes": [8419412218, 8421422532, 8421422523], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907110462, "nodes": [8423295095, 8423295096, 8423295097, 8423295098, 8423295099, 8423295095], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907168955, "nodes": [8423841201, 8423841202, 8423841203, 8423841204, 8423841205, 8423841206, 8423841210, 8423842217, 8423842219, 8423841207, 8423841208, 8423841209], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "1", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 907168956, "nodes": [8423841210, 8423841211, 8423841212, 8423841213], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 907168957, "nodes": [8423841206, 8423841214], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "yes"}}, {"type": "way", "id": 907168958, "nodes": [3347872582, 8423842217], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 907168959, "nodes": [8423842218, 8423842219], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 907168960, "nodes": [989204966, 989204869, 8423842224, 8807066147, 8423842234], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 907168962, "nodes": [8423842223, 8423842229, 8423842228, 8423842227, 8423842226, 8423842231], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "2", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168963, "nodes": [340228759, 8423842231], "tags": {"highway": "residential", "lanes": "1", "layer": "-1", "lit": "24/7", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168964, "nodes": [8423842231, 8423842232], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168965, "nodes": [1314916898, 8423842233, 1314916911], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-2", "lit": "24/7", "name": "Calle Vaguada", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168966, "nodes": [1314916911, 1314919703], "tags": {"bicycle": "no", "foot": "no", "highway": "residential", "horse": "no", "lanes": "3", "layer": "-1", "lit": "24/7", "maxheight": "4", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907168967, "nodes": [1752467616, 1752467620, 339636176, 339636170], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 907187411, "nodes": [8423999124, 8423999125], "tags": {"highway": "footway", "layer": "-2", "level": "-2", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907187412, "nodes": [8423999125, 8423999126], "tags": {"highway": "footway", "layer": "-2", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907187413, "nodes": [8423999125, 8423999127], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907187414, "nodes": [8423999126, 8423999128], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2;-3", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907187415, "nodes": [8423999127, 8423999129], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2;-3", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 907187416, "nodes": [8423999128, 8423999130], "tags": {"highway": "footway", "layer": "-3", "smoothness": "good", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907187417, "nodes": [8423999129, 8423999131], "tags": {"highway": "footway", "layer": "-3", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907552243, "nodes": [8427141979, 8427119564, 8427119565, 8427119566, 8427119567], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907552244, "nodes": [8419169791, 8427119577, 8423295095], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552245, "nodes": [8427119573, 8427119578, 8423295096], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552246, "nodes": [8423295098, 8427119579, 8421422526], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552247, "nodes": [8423295099, 8427119580, 8419169792], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552248, "nodes": [8427119564, 8427119581, 8402493611], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552249, "nodes": [8427119567, 34408479, 8402493609], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552251, "nodes": [8427119583, 8427119591, 8427119571], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 907552257, "nodes": [8427141926, 8427141927, 8427141928, 8427141929, 8427141930, 8427141931, 8427141977, 8427141932, 8427141926], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 907552259, "nodes": [8427141926, 8427141937, 8419169867], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552260, "nodes": [8427119571, 8427141938, 8427141930], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 907552272, "nodes": [8427141971, 8427141972, 8430141311, 8427141973, 8427141974, 8427141976, 8427141971], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907552273, "nodes": [8427141974, 8427141975, 8427141932], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907552274, "nodes": [8427141976, 8427141978, 8427141977], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 907552275, "nodes": [8427141979, 8427141980], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907552276, "nodes": [8427119576, 8427141981], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907723000, "nodes": [98723336, 7058240062, 98727478, 8419169894, 8412903968, 8412903969, 98727479, 98727480, 98727481, 8419479065, 34408179, 34408267], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 907723001, "nodes": [34408267, 8427141938, 34408287], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "maxspeed": "30", "name": "Calle de Almansa", "name:etymology:wikidata": "Q13930", "oneway": "yes", "postal_code": "28039", "surface": "asphalt", "width": "3"}}, {"type": "way", "id": 907726496, "nodes": [8428817426, 1789638281, 1789638282, 3606795768], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 907726498, "nodes": [8428817431, 8428817432], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 907726499, "nodes": [8428817434, 1789638279, 913080865, 8428817435], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 907726501, "nodes": [8428817440, 8428817441], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 907726502, "nodes": [8428817447, 8428817446, 3606795768, 8428817442], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 907726503, "nodes": [8428817442, 7965756604, 8428817443], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 907726504, "nodes": [8428817443, 8428817444], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 907726505, "nodes": [8428817444, 4110093642, 8428817445], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 907726506, "nodes": [8428817448, 8428817449, 8428817441], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907726507, "nodes": [8428817432, 8428817448, 3968353125], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907727380, "nodes": [8428800244, 8428800245], "tags": {"highway": "steps", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 907727381, "nodes": [8428800245, 8428800246, 8428800247, 8428800249, 8428800248], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907727382, "nodes": [8428800249, 6474157220], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 907759981, "nodes": [25935522, 622204584, 8447121545, 8429132490], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 907819847, "nodes": [98724253, 1016578249, 98726299, 8551133927, 98725055, 8486897780, 544435182, 8419397878, 8486897781, 11269072934, 8486897782, 544426537, 98726081], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 907819848, "nodes": [98726082, 8421307663, 98726081], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Las Carolinas", "oneway": "yes", "postal_code": "28039", "surface": "asphalt"}}, {"type": "way", "id": 907885270, "nodes": [8117606294, 8778809318, 8430141295, 8778804348, 8430141296], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907885271, "nodes": [8430141296, 3802946129], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907885272, "nodes": [8430141297, 8402179356, 8778804360, 8430141296], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 907885273, "nodes": [8430141304, 8430141305, 8430141306, 8430141307, 8430141308, 8430141304], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 907885274, "nodes": [8430141305, 8430141309, 8427141972], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 907885275, "nodes": [8430141295, 8430141310, 8430141307], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 907885276, "nodes": [8430141304, 8430141312, 8430141311], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 908200095, "nodes": [8960475134, 8432952204], "tags": {"highway": "steps", "incline": "up", "surface": "concrete"}}, {"type": "way", "id": 908546755, "nodes": [1505081040, 1446632660], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "sidewalk:right:surface": "paving_stones", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 908575083, "nodes": [8436282746, 8436282749, 8436282747], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 908575084, "nodes": [8436282747, 8436282748], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 908925353, "nodes": [3224866247, 8439470082, 8439470063], "tags": {"crossing": "uncontrolled", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 909190205, "nodes": [8441812640, 26211532], "tags": {"admin_level": "9", "boundary": "administrative", "highway": "residential", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Isaac Peral", "name:etymology:wikidata": "Q545065", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 909983459, "nodes": [34408462, 4461268759, 8409510075, 4461268763, 34408339], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 909983460, "nodes": [34408479, 34408462], "tags": {"bicycle": "yes", "highway": "pedestrian", "lanes": "1", "lit": "yes", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 909983461, "nodes": [34408479, 34408502], "tags": {"highway": "living_street", "lanes": "1", "name": "Calle de Tenerife", "name:etymology:wikidata": "Q40846", "oneway": "yes", "postal_code": "28039", "surface": "paving_stones"}}, {"type": "way", "id": 910090888, "nodes": [3951439718, 8412813546, 3951439727, 3951439717], "tags": {"highway": "footway"}}, {"type": "way", "id": 910090889, "nodes": [3951439730, 8412813541, 8572249331, 3951449126, 8412813542, 3951449119, 8476816342, 8450224134], "tags": {"highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 910094994, "nodes": [8402493607, 8402493608], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 910094995, "nodes": [4461268759, 8427119569, 8427119570, 8427119571, 8427119576, 8427119572, 8427119573, 8427119574, 8427119575, 8427141979], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 910094996, "nodes": [4461268759, 8427119588, 8427119589, 8427119590, 8427119583], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 910106480, "nodes": [8430141297, 8450338716, 8450352717, 8450352723, 8450352718, 8450420435, 8450352725, 8450352719], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 910106482, "nodes": [8450338716, 8450352721, 8430141306], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910106483, "nodes": [8427141972, 8450352724, 8450352723], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910106484, "nodes": [8427141931, 8450352726, 8450352725], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910106485, "nodes": [8427141930, 8450352727, 8450352719], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 910106486, "nodes": [8450352719, 8450352728, 8427119583], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 910118728, "nodes": [8430141295, 8450420426, 8450420425], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910118729, "nodes": [8450420427, 8450420435, 8450420434, 8450420431, 8450420428, 8450420433, 8450420429, 8450420430], "tags": {"highway": "living_street", "name": "Bravo Murillo", "postal_code": "28039"}}, {"type": "way", "id": 910118730, "nodes": [8851032220, 8402179358, 8402179392, 8450420430], "tags": {"highway": "living_street"}}, {"type": "way", "id": 910118731, "nodes": [8450420431, 8450420432, 8450420433], "tags": {"highway": "living_street", "postal_code": "28039"}}, {"type": "way", "id": 910922807, "nodes": [8458502440, 2053142696, 2053142667, 8458502441], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 910922808, "nodes": [8458502440, 8458502442, 8458502443, 8580966613, 8458502444, 8458502445, 8458502446, 8458502447], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 910922809, "nodes": [8458502447, 6059903783], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 910922810, "nodes": [8458502448, 8458502449], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 910922811, "nodes": [8458502441, 8458502448], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 910922812, "nodes": [8458502448, 8458502450, 8580966606, 8458502454, 8458502451, 8580966605, 8458502452], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 910922813, "nodes": [8458502452, 8458502455, 8458502453], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 910922814, "nodes": [8458502453, 6501186716], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "concrete"}}, {"type": "way", "id": 910979330, "nodes": [8458897490, 8398199115, 8410136425], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910979331, "nodes": [8458897491, 2436859054, 8458897492], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910979332, "nodes": [8458897493, 8458897495, 8458897494], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910983033, "nodes": [8486897769, 6934422584, 8458948187], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 910983034, "nodes": [8458948187, 6934437085, 8458948186], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910983035, "nodes": [8458948186, 8458948189], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 910983036, "nodes": [8458948189, 6934437086, 8458948188], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910983037, "nodes": [8458948188, 8458948190], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 910983038, "nodes": [8458948190, 11525423807, 8458948191], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 910983039, "nodes": [8458948191, 8458948193], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 910983040, "nodes": [8458948193, 6934437088, 8458948192], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 911211578, "nodes": [8460972703, 8474829012, 11645339893, 8460972704], "tags": {"highway": "footway"}}, {"type": "way", "id": 911311587, "nodes": [1067565849, 937660057, 1505081012, 26578954], "tags": {"bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "separate", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "turn:lanes": "through|through|through;right", "vehicle": "yes"}}, {"type": "way", "id": 911311588, "nodes": [1067565849, 1505081040], "tags": {"access": "designated", "highway": "service", "lit": "yes", "oneway": "yes", "psv": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 912295576, "nodes": [8474857999, 8461012823, 8474858000], "tags": {"highway": "service", "layer": "-1", "service": "parking_aisle", "tunnel": "yes"}}, {"type": "way", "id": 912295577, "nodes": [8474858001, 8461005484, 8474858002], "tags": {"highway": "service", "layer": "-1", "service": "parking_aisle", "tunnel": "yes"}}, {"type": "way", "id": 912553855, "nodes": [8477067909, 7058240044], "tags": {"highway": "footway"}}, {"type": "way", "id": 912553856, "nodes": [7058240039, 8477067909, 7058240041], "tags": {"highway": "footway"}}, {"type": "way", "id": 913275949, "nodes": [8483729855, 8483729858, 8483843751, 8483729861, 8483729864, 8483729859, 8483729856, 8483729857], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 913275950, "nodes": [8483729859, 8483729860], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 913275951, "nodes": [8483729861, 8483729862, 8483729863, 8483729864], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 913275952, "nodes": [8483729863, 8483729865], "tags": {"access": "private", "highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 913619808, "nodes": [98726081, 8486897760], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 913619809, "nodes": [8486897760, 8486897761, 8486897762, 8486897763, 8486897764, 8486897765, 8486897766], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 913980560, "nodes": [1364772947, 26578986, 8490180660], "tags": {"highway": "unclassified", "lane_markings": "no", "lit": "yes", "maxspeed": "40", "name": "Paseo de Ruperto Chap\u00ed", "oneway": "yes", "sidewalk": "separate", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 917634287, "nodes": [8522723083, 5754419282, 8522723084], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 917634288, "nodes": [8522723084, 8522723086], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 917634289, "nodes": [8522723086, 4637824948, 8522723087], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 918015709, "nodes": [3802946109, 26413142], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "secondary", "lanes": "5", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 918422318, "nodes": [8529770093, 8529770092], "tags": {"access": "permissive", "highway": "service", "smoothness": "excellent", "source": "PNOA", "source:date": "2017", "surface": "asphalt"}}, {"type": "way", "id": 918422319, "nodes": [3802947078, 26413324, 1505081213, 3802947057, 338727732], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "4", "maxspeed": "50", "name": "Glorieta de Cuatro Caminos", "oneway": "yes", "sidewalk": "right", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 918422320, "nodes": [8529770092, 8529770091, 8529770090, 8419499598, 8529770083, 3802947078], "tags": {"access": "permissive", "highway": "service", "source": "PNOA", "source:date": "2017", "surface": "asphalt"}}, {"type": "way", "id": 918422321, "nodes": [8419499610, 26413139], "tags": {"highway": "secondary", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "oneway": "yes", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 918422322, "nodes": [8419499610, 8529770097, 8529770096, 8529770095, 8529770094, 8529770093], "tags": {"access": "permissive", "highway": "service", "source": "PNOA", "source:date": "2017", "surface": "asphalt"}}, {"type": "way", "id": 918615361, "nodes": [8531511244, 8531511245, 8531511251, 8531511248, 8531511246, 8531511247], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 918615362, "nodes": [8531511248, 8531511249, 8531511250, 8531511251], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 918615363, "nodes": [8531511250, 8531511252], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 918615364, "nodes": [8531511249, 8531511253, 4311812606], "tags": {"covered": "yes", "highway": "service", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 920536266, "nodes": [8589432332, 1868668289], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "15", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 921115002, "nodes": [8551986254, 1760085695, 8551986255], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 921115003, "nodes": [8551986255, 9318816470, 9318816469, 9318816468, 9318816467, 9318816466, 9318816465, 9318816464, 9318816463, 8551986257, 8551986256, 8551986258, 9318816471, 8551986255], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 922487904, "nodes": [8563965574, 8563972585, 8563972586], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 922775574, "nodes": [8566147455, 1505081196, 8566147451], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 922881502, "nodes": [8567142845, 8381512931], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 923436235, "nodes": [8572249331, 8572249333, 8572249332], "tags": {"highway": "footway"}}, {"type": "way", "id": 923436236, "nodes": [8572249333, 8572249334], "tags": {"highway": "footway"}}, {"type": "way", "id": 923978765, "nodes": [4457193354, 8577075127], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 924568085, "nodes": [1223809784, 8580966569], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 924568086, "nodes": [8580966569, 5242551247, 8580966568], "tags": {"crossing": "traffic_signals", "footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568087, "nodes": [8580966570, 1223809784], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 924568088, "nodes": [8580966571, 5242551251], "tags": {"crossing": "traffic_signals", "footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568089, "nodes": [8580966572, 5242551249], "tags": {"crossing": "traffic_signals", "footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568090, "nodes": [8580966573, 1223809803], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568091, "nodes": [1223809845, 1223809805, 8580966574], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568092, "nodes": [8580966575, 1223809803], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568093, "nodes": [8580966577, 1759501568, 1759501609], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568094, "nodes": [8580966578, 1311052159, 8580966577], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568095, "nodes": [8580966579, 1759501557, 8580966578], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568096, "nodes": [8580966580, 1759501551, 8580966579], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568097, "nodes": [8580966591, 1759501491, 8580966590], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568098, "nodes": [8580966595, 25902717, 8580966596], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 924568099, "nodes": [8580966591, 8580966597, 8580966602, 8580966598, 8580966601, 8580966599, 8580966600, 8580966596], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 924568100, "nodes": [8580966595, 8580966603], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 924568101, "nodes": [8580966603, 8580966604, 8458502452], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 924568102, "nodes": [1759501646, 1759501640, 1759501622, 1759501621, 8580966607], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568103, "nodes": [8580966607, 1759501620, 394684648, 8580966608], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568104, "nodes": [8580966608, 8580966609], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568105, "nodes": [8580966609, 1759501614, 8580966610], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568106, "nodes": [8580966611, 1759501564, 8580966612], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "asphalt"}}, {"type": "way", "id": 924568107, "nodes": [1759501566, 8580966611], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 924568108, "nodes": [8580966612, 8580966613], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 924835163, "nodes": [8583242886, 5000379721], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 924891671, "nodes": [4643041884, 5214866741, 616220786, 8583841201], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 924891672, "nodes": [8583841202, 1366142631, 8583841122, 8583841203, 8583841205, 1366142630, 8583841204], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 924891673, "nodes": [8583841204, 8583841206, 8583841207, 8583841208, 8583841209, 8583841201, 8583841210, 8583841211, 11362355032], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 924891674, "nodes": [8583841204, 8583841212, 8583841213, 8583841219, 8583841214, 8583841215, 8583841216, 9879403078, 8583841217], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 924891675, "nodes": [8583841201, 8583841218, 8583841219], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 924891676, "nodes": [4169858413, 8583841221, 8583841202], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 924892734, "nodes": [3802947047, 8587019145, 8587019144, 8587019143, 8587019142, 8587019141, 3802947040, 3802947037], "tags": {"highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 924892736, "nodes": [3802947039, 5063896004, 338727916, 3802947041], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 924892738, "nodes": [8582667031, 3802947039], "tags": {"highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 924892739, "nodes": [3802947037, 8778804398, 338727906, 8582667031], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 924894758, "nodes": [8583869917, 8583869918, 8583869919, 8583869920], "tags": {"highway": "cycleway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 924894759, "nodes": [5214866747, 5063895999, 8583509321, 8583509320, 5063895983, 8583509319, 8583869917, 5063896008, 8583869921], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "no", "name": "Carril bici Santa Engracia", "segregated": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 924894760, "nodes": [8583869921, 5214866746, 8583869922], "tags": {"crossing": "marked", "cycleway": "crossing", "foot": "no", "highway": "cycleway", "horse": "no", "lit": "no", "name": "Carril bici Santa Engracia", "segregated": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 924897290, "nodes": [141862745, 298151333, 8583879002, 8583879003], "tags": {"bicycle": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de Jer\u00f3nimo de la Quintana", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 925095475, "nodes": [298153856, 298153472], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 925095476, "nodes": [298153463, 603072367], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 925256470, "nodes": [8421229156, 8587019132, 8587019131], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 925256473, "nodes": [8587019145, 4179570126], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 925256474, "nodes": [8587019146, 8587019150, 8587019148], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 925256475, "nodes": [4179570125, 8587019150], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 925256476, "nodes": [3802946105, 8778804415, 338727925, 8419499564, 1801212177, 8587019151, 8587019152], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 925256477, "nodes": [1801212174, 8587019153, 8587019158, 4237239313], "tags": {"highway": "footway"}}, {"type": "way", "id": 925256478, "nodes": [8587019153, 8587019154, 8587019155, 8587019157], "tags": {"highway": "footway"}}, {"type": "way", "id": 925256479, "nodes": [8587019152, 4179570127, 8587019157], "tags": {"highway": "footway"}}, {"type": "way", "id": 925256480, "nodes": [1801212178, 8587019158], "tags": {"highway": "footway"}}, {"type": "way", "id": 925256481, "nodes": [1439702944, 8419499565, 8419499564], "tags": {"highway": "footway"}}, {"type": "way", "id": 925268313, "nodes": [8587114719, 8483702459, 8587114720, 8587114721, 8483702453, 8561406510, 8561406503, 8483702494, 8587114722, 8587114723, 8587114725, 8587114724], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 925527396, "nodes": [1868668289, 8616238230, 1868668294, 8388879242], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa Isla 1", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 925611052, "nodes": [8590161664, 8590161665], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 925611053, "nodes": [8590161662, 8590161665], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 925611054, "nodes": [8590161665, 8590161666], "tags": {"handrail": "no", "highway": "steps", "incline": "down", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 925667324, "nodes": [7559826139, 8590458187, 8590458188], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025216, "nodes": [8593662526, 8593662564, 8593662527, 8593662528, 8593662565, 8593662529, 8593662530, 8593662531, 8593662594, 8593662526], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025219, "nodes": [902327004, 8593662563], "tags": {"highway": "steps", "surface": "paving_stones"}}, {"type": "way", "id": 926025220, "nodes": [1501227847, 1501227857], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025221, "nodes": [8593662565, 1501227820, 8593662566], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 926025222, "nodes": [8593662566, 8593662567], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025223, "nodes": [8593662567, 8593662572, 8593662568], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 926025224, "nodes": [8593662568, 8593662571, 8593662569, 8593662570], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025225, "nodes": [8593662563, 8593662571], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025227, "nodes": [8593662590, 8593662591, 8593662592, 8593662593, 8593662595, 8593662590], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025228, "nodes": [8593662594, 8593662596, 8593662595], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 926025229, "nodes": [8593662526, 8593662597, 8593662593], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 927937421, "nodes": [3451680109, 3451680108], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937422, "nodes": [8608388009, 3451680109], "tags": {"access": "private", "bridge": "yes", "highway": "service", "layer": "1", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937423, "nodes": [8608388010, 8608388009], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937424, "nodes": [3451680108, 8608388008, 8608388007, 8608388006, 8608388005, 8608388004, 8608388007], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937425, "nodes": [8608388016, 8608388015], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937426, "nodes": [8608463717, 8608388016], "tags": {"access": "private", "bridge": "yes", "highway": "service", "layer": "1", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937427, "nodes": [98949534, 8608463717], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937428, "nodes": [8608388015, 8608388011, 8608388014, 8608388013, 8608388012, 8608388011], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937434, "nodes": [8608463745, 8608463744], "tags": {"access": "private", "highway": "service", "layer": "-1", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937435, "nodes": [8608463746, 8608463745], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937436, "nodes": [8608463737, 8608463736], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937437, "nodes": [8608463738, 8608463742, 8608463741, 8608463737, 8608463740, 8608463739, 8608463736, 8608463738], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937439, "nodes": [8608463748, 8608463747], "tags": {"access": "private", "highway": "service", "layer": "-1", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937440, "nodes": [3077638492, 8608463755, 8608463748], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937441, "nodes": [8608463750, 8608463749], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937442, "nodes": [8608463747, 8608463746, 8608463751, 8608463749, 8608463754, 8608463753, 8608463750, 8608463752, 8608463751], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937448, "nodes": [8608463776, 8608463775], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937449, "nodes": [8608463778, 8608463777], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937450, "nodes": [8608463780, 8608463779], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937452, "nodes": [8608463781, 102215555], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937453, "nodes": [102214347, 8608467302], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937454, "nodes": [3077638491, 8807066181, 8807066182, 102215558, 8608467301, 8807066153, 8807066154, 102215559, 8807066156, 10197766008], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937455, "nodes": [8608463783, 102214348], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937456, "nodes": [8608463784, 9533539715, 8608463783], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937457, "nodes": [8608463785, 8608463776, 8608463778, 8608463780, 8608463784], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937458, "nodes": [8608463786, 8608463785], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 927937459, "nodes": [3077638491, 8807066184, 8807066183, 8807066175, 8608463787, 8807066176, 3077638490, 3077638489], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927937460, "nodes": [3077638493, 8807066192, 8807066191, 8807066190, 8807066196, 8807066189, 8608463789, 8608463788, 8807066185, 8807066186, 102215557], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 927939160, "nodes": [8608467302, 9533539716, 8608463782], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 928489622, "nodes": [7058272465, 8612377568, 8612377567], "tags": {"highway": "steps"}}, {"type": "way", "id": 928489623, "nodes": [8612377567, 8612377569, 8612377571, 8612377570], "tags": {"highway": "footway"}}, {"type": "way", "id": 928725814, "nodes": [8587019148, 1654250211, 8613792100], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 928725815, "nodes": [8587019148, 8613792101, 8613792102, 1654250213], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 928809506, "nodes": [8608463744, 8608463738], "tags": {"access": "private", "highway": "service", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 931154646, "nodes": [8633236083, 6885254472], "tags": {"highway": "service"}}, {"type": "way", "id": 932813519, "nodes": [4437657602, 8646829050, 8646829051], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 932813520, "nodes": [8646829051, 8646829052], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 932816265, "nodes": [8428800244, 8646860731], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 940054743, "nodes": [8707182002, 150760682, 8707182003], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 940054744, "nodes": [8483702503, 8587114722, 8561406515, 8561406514, 8483702502, 5776878418], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 940054745, "nodes": [8707182009, 8707182010, 7058272467], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 940054746, "nodes": [8707182021, 8707182042, 8707182022, 8707182023, 8707182024, 8707182025, 8707182026, 8707182027, 8707182028, 8707182029, 8707182030, 8707182031, 8707182032, 8707182033, 8707182034, 8707182035, 8707182036, 8707182037, 8707182038, 8707182039, 8707182040, 8707182041], "tags": {"access": "private", "highway": "service", "service": "driveway"}}, {"type": "way", "id": 940054747, "nodes": [8707182057, 8707182058, 8707182059, 8707182060, 8707182061, 8707182063, 8707182062], "tags": {"access": "private", "highway": "service", "service": "driveway"}}, {"type": "way", "id": 940803290, "nodes": [5006352965, 5005343790], "tags": {"cycleway:backward": "shared_lane", "cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "secondary", "lanes": "4", "lanes:forward": "3", "lit": "yes", "maxspeed:backward": "30", "maxspeed:forward": "50", "name": "Paseo de Moret", "name:etymology:wikidata": "Q562515", "postal_code": "28008", "surface": "asphalt", "turn:lanes:forward": "through|through|through;right"}}, {"type": "way", "id": 942014824, "nodes": [8723432998, 1591329982, 1591329962, 8723432999], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 942014825, "nodes": [8723433000, 1591329948, 8723433001, 1591329944], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 942014826, "nodes": [8723433002, 8723432999, 8723433003, 8723433004, 8723433000, 8723433005], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 943670011, "nodes": [8737409027, 8737409028], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 943670012, "nodes": [8737409028, 8737409030, 8737409029], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 943670013, "nodes": [8737409026, 8737409031, 8737409027], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 944066962, "nodes": [8740749851, 8740749852, 8522723083], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 944465279, "nodes": [8744168238, 8744168237, 8744168236, 8744168235, 8744168234, 8744168233, 8744168232, 8744168231, 8744168230, 8744168226, 8744168227, 8744168228, 3078426887, 8744168229], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 944557396, "nodes": [8423842234, 8423842235], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 946007149, "nodes": [8757709903, 8757709904, 1613048661], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 946007150, "nodes": [8757709902, 1613048666, 8757709903], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 946653367, "nodes": [8762934495, 1759501679, 8762934496, 8762934497], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 947529095, "nodes": [1486142511, 1537917872], "tags": {"access": "yes", "highway": "service", "lit": "yes", "maxspeed": "50", "name": "Solo Bus - A6", "oneway": "yes", "psv": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 948288438, "nodes": [8777714421, 8583242886], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 948303168, "nodes": [8777858660, 3927556758, 8777858661], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 948303169, "nodes": [8777858662, 3927556757, 8777858663], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 948303170, "nodes": [8777858664, 8777858661, 8777858662, 8777858665], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 948407948, "nodes": [1801212171, 1505081210, 8778804413, 3802947047], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "source": "Bing", "source:date": "2015"}}, {"type": "way", "id": 948407956, "nodes": [338727751, 8778809404, 8778809403], "tags": {"highway": "service"}}, {"type": "way", "id": 948844647, "nodes": [6450370646, 8777714421], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Interc. Moncloa Isla 3", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 949206352, "nodes": [8787245617, 8787245618], "tags": {"highway": "service"}}, {"type": "way", "id": 949206353, "nodes": [8787245619, 8787245623, 8787245620], "tags": {"highway": "footway"}}, {"type": "way", "id": 949206354, "nodes": [8787245621, 8787245624, 8787245630, 8787245622], "tags": {"highway": "footway"}}, {"type": "way", "id": 949206355, "nodes": [8787245623, 8787245624], "tags": {"highway": "footway"}}, {"type": "way", "id": 949206356, "nodes": [8787245625, 8787245620, 8787245626, 8787245627, 8787245631, 8787245628, 8787245632, 8787245625], "tags": {"highway": "pedestrian", "place": "square"}}, {"type": "way", "id": 949206357, "nodes": [8787245627, 8787245630], "tags": {"highway": "footway"}}, {"type": "way", "id": 949206358, "nodes": [8787245632, 8787245633], "tags": {"highway": "footway"}}, {"type": "way", "id": 949843140, "nodes": [8793094960, 339391801], "tags": {"highway": "footway", "name": "Calle de Cicer\u00f3n", "surface": "paving_stones"}}, {"type": "way", "id": 949843141, "nodes": [81581407, 82500158, 81605092], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle de La Orden", "oneway": "yes", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 949843142, "nodes": [81581407, 81581408, 4280822366, 339391870], "tags": {"highway": "residential", "lane_markings": "no", "maxspeed": "50", "name": "Calle de Hernani", "oneway": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 949847451, "nodes": [4280822367, 8793113477], "tags": {"highway": "footway"}}, {"type": "way", "id": 949847452, "nodes": [3802946130, 8793113478], "tags": {"highway": "footway"}}, {"type": "way", "id": 949847453, "nodes": [8793113478, 8793113479, 8793113477], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 949847454, "nodes": [340226353, 340226383, 340226382], "tags": {"highway": "footway", "name": "Calle de los Artistas", "source": "survey"}}, {"type": "way", "id": 949849804, "nodes": [81605097, 81580405], "tags": {"highway": "living_street", "lanes": "1", "maxspeed": "20", "name": "Calle Dulcinea", "oneway": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 951255142, "nodes": [8804961576, 8804961577], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 951255147, "nodes": [26413585, 3380591995, 8804961576, 8804961554], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 951255148, "nodes": [8804963660, 8804963661], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 951255149, "nodes": [8804961554, 1203847134, 8804963660], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 951255150, "nodes": [1203847129, 8804961577, 8804961575, 1203847155], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 951255151, "nodes": [1203847214, 1203847117, 1203847129], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 951255157, "nodes": [8804963842, 8804963843, 8804963844, 8804963845, 8804963846, 8804963847, 8804963848, 8804963849, 8804963850, 8804963851, 8804963852, 8804963853, 8804963854, 8804963855, 8804963856, 8804963857], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 951255159, "nodes": [8804963863, 3508651596, 8804963864], "tags": {"access": "private", "highway": "service"}}, {"type": "way", "id": 951255160, "nodes": [8804963864, 8804963865, 8804963866, 8804963867, 8804963868, 8804963869, 8804963870, 8804963871, 8804963872, 8804963873, 8804963874, 8804963875, 8804963876, 8804963877, 8804963878, 8804963879, 8804963864], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 951255161, "nodes": [8804963882, 5784462287, 8804963883], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 951255162, "nodes": [8804963884, 5784462286, 8804963885], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 951255163, "nodes": [8804963883, 8804963884], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 951268701, "nodes": [8805121824, 8805121868, 8805121864], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 951268702, "nodes": [8805121824, 8805121865], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 951268703, "nodes": [8805121865, 8805121867, 8805121866], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 951483208, "nodes": [3077638488, 8807066178, 8807066179, 3077638489], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 951483209, "nodes": [3077638489, 8608463786], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 951483210, "nodes": [3077638493, 8807066197, 8608463789], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 951483211, "nodes": [3077638492, 8807066188, 102215556, 8807066180, 3077638489], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 951483212, "nodes": [3077638492, 3077638493], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 951483213, "nodes": [8807066191, 8807066193, 8807066194, 8807066195, 3077638492], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 951483214, "nodes": [25902808, 8807074822, 1754816979, 8807074839, 8807074838, 25902758], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Zurbano", "name:etymology:wikidata": "Q3295691", "oneway": "yes", "postal_code": "28003", "sidewalk": "no", "smoothness": "excellent", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 951483216, "nodes": [4547724402, 8807074904, 8807074901, 8807074902, 8807074903, 1505081196], "tags": {"highway": "tertiary", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 951683409, "nodes": [8807074844, 1719813895, 25902759], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "20", "maxspeed:type": "ES:zone20", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 952459907, "nodes": [8815557569, 8815557570, 8815557568, 8815557567], "tags": {"highway": "service"}}, {"type": "way", "id": 953138340, "nodes": [3946934257, 8822146144, 8822146145, 8822146146, 8822146151], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "name": "Intercambiador de Moncloa - Acceso lateral", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 953138341, "nodes": [8822146151, 26579080], "tags": {"cycleway:right": "no", "foot": "no", "highway": "secondary_link", "lanes": "1", "lit": "yes", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 953138342, "nodes": [3946934257, 1486142561, 26579080], "tags": {"foot": "no", "highway": "trunk", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Avenida de la Memoria", "old_name": "Avenida del Arco de la Victoria", "oneway": "yes", "sidewalk": "no", "turn:lanes": "through|right"}}, {"type": "way", "id": 953142282, "nodes": [2057627664, 8822145846], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 953142283, "nodes": [8822145846, 1868668339, 8388879244], "tags": {"highway": "service", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador Moncloa", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 953381370, "nodes": [82499216, 8824409710, 8824409709, 338734241, 8824409708], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 955870411, "nodes": [8846574704, 8846574703, 8846574702, 8846574701, 8846574700, 8846574699], "tags": {"highway": "service", "name": "Acceso a Urgencias", "oneway": "yes", "service": "drive-through"}}, {"type": "way", "id": 957933863, "nodes": [25906265, 25906286], "tags": {"highway": "living_street", "maxspeed": "50", "name": "Calle de Piamonte", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 961618047, "nodes": [25935071, 5777200233, 6441681746, 25935139], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 961618048, "nodes": [25935069, 1378696861, 1651583800, 11533572604, 25935066], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Baltasar Graci\u00e1n", "name:etymology:wikidata": "Q360512", "oneway": "yes", "postal_code": "28015", "surface": "asphalt"}}, {"type": "way", "id": 961618049, "nodes": [25935069, 6441681751, 365886560, 25935058], "tags": {"access:lanes": "yes|yes|no|no", "bicycle:lanes": "yes|yes|designated|no", "bus:lanes": "yes|yes|no|designated", "cycleway:lanes": "none|none|lane|none", "highway": "primary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|no|yes", "name": "Calle de Alberto Aguilera", "name:etymology:wikidata": "Q3773729", "oneway": "yes", "postal_code": "28015", "surface": "asphalt", "taxi:lanes": "yes|yes|no|designated"}}, {"type": "way", "id": 963354311, "nodes": [11676998739, 4467082436, 6912403231], "tags": {"access": "private", "highway": "service", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 963354312, "nodes": [8911132534, 8911132532, 6912403230, 8911132531, 9128991226], "tags": {"highway": "service", "service": "driveway"}}, {"type": "way", "id": 963937001, "nodes": [8916338260, 8916338261, 8916338262], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 963937002, "nodes": [8916338259, 4416845741, 8916338260], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 964260817, "nodes": [8919225428, 8919225427, 8919931549, 8919225426, 8919225425], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 964260818, "nodes": [3474142103, 8919225425, 2959128153, 8919931548, 3474142107, 3474142106, 8919225428], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 964260819, "nodes": [8919225430, 8919225432], "tags": {"highway": "service", "oneway": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 964260820, "nodes": [8919225435, 8919225434, 8919225433, 8919225430], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 964260821, "nodes": [3474142103, 2959128154, 8919225430], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 964260822, "nodes": [8919225430, 8919225436, 8919225437, 8919225438], "tags": {"highway": "service", "oneway": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 965370226, "nodes": [7981026977, 9601998687, 9601998685, 9601998683, 11200852770, 8930620532, 9601998680, 9601998713, 8930620533], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 965714406, "nodes": [4213142665, 5423721297], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "surface": "paving_stones"}}, {"type": "way", "id": 965714407, "nodes": [8933854104, 1465071283, 3441195977, 1465071282, 1465071281], "tags": {"handrail": "no", "highway": "steps", "incline": "down", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 965851701, "nodes": [8935124345, 9398011425, 8935124346, 8935124347, 8935124348], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 965851702, "nodes": [8935124349, 8935124350, 8935124351, 25906131], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 965986738, "nodes": [8936377434, 5423721318], "tags": {"highway": "steps", "incline": "down", "ramp": "yes", "ramp:wheelchair": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 967811474, "nodes": [8953723325, 8953723327, 8953723326], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 967811475, "nodes": [8953723328, 8953723330, 8953723329], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 967811476, "nodes": [8953723331, 8953723329, 8953723325, 8953723332], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 968530957, "nodes": [3197987493, 8960475134], "tags": {"highway": "footway"}}, {"type": "way", "id": 968530969, "nodes": [3455857375, 3455857365, 8960475861], "tags": {"highway": "path", "surface": "asphalt"}}, {"type": "way", "id": 968530970, "nodes": [8960475861, 8960475860], "tags": {"highway": "steps", "surface": "asphalt"}}, {"type": "way", "id": 968891845, "nodes": [8963996218, 8963996217], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 968891846, "nodes": [7892603717, 8963957716, 8963996219], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 974770043, "nodes": [3445429888, 9020774011, 9020774012], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "segregated": "no", "wikidata": "Q29200152"}}, {"type": "way", "id": 974770044, "nodes": [9020774012, 9020774013, 1377881520], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 978012868, "nodes": [9049533282, 9049533283, 9049533284], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 978109739, "nodes": [9050570326, 9050570327, 1981925787], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 978392579, "nodes": [9053166224, 9053166225, 9053166226], "tags": {"highway": "service", "oneway": "no", "service": "driveway"}}, {"type": "way", "id": 978543232, "nodes": [9054521339, 9054511981, 9054511996], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 978543233, "nodes": [9054512004, 9054521329, 9054511993, 9054511958, 9054512015, 9054511977], "tags": {"highway": "footway", "incline": "up", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 978543234, "nodes": [9054521336, 9054512011], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "tactile_paving": "no"}}, {"type": "way", "id": 978543236, "nodes": [2846389490, 9054511983], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 978543237, "nodes": [9054511981, 9054511958], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 978543238, "nodes": [9054511983, 9054512006], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 978543239, "nodes": [9054512001, 9054511966, 3552759909, 9054511975, 9054521317, 9054521340, 9054511999, 9054511979, 9054512013, 9054521349, 3552759908, 9054511990, 9054521326], "tags": {"highway": "service", "service": "driveway"}}, {"type": "way", "id": 978543240, "nodes": [10653139005, 9054521332, 9054511970], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 978543241, "nodes": [9054521348, 9054511974], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "11", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 978543243, "nodes": [142298992, 9054521342], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 978543244, "nodes": [9054521339, 9054511963], "tags": {"handrail": "yes", "handrail:center": "yes", "handrail:left": "yes", "handrail:right": "yes", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 978543245, "nodes": [9054511995, 9054521333], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 978543246, "nodes": [9054521334, 9054521322, 9054512009, 9054511977, 9054511963], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 978543247, "nodes": [9054511999, 9054521331], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 978543248, "nodes": [9054511991, 2846390871], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 978543249, "nodes": [9054521342, 9054512002, 9054511967, 9054521327, 9054511991], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "18", "surface": "paved"}}, {"type": "way", "id": 979716660, "nodes": [8715771071, 9063249262, 9063249263, 9063249264], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 982158212, "nodes": [9083393663, 9083393666], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "ramp": "no", "step_count": "2", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 982158213, "nodes": [9083393668, 9083393657, 9083393659, 9083393662, 9083393668], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 982158214, "nodes": [9083393653, 9083393663], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 982158215, "nodes": [9083393662, 9083393655, 9083393653, 9083393661, 9083393665], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 983426561, "nodes": [9092836278, 9092836279, 3927556763], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 986056824, "nodes": [9115409846, 9116858107, 9115409845], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056825, "nodes": [9115409848, 9116858108, 9115409847], "tags": {"bicycle": "no", "crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056826, "nodes": [6348197420, 9116858097, 9115409849], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056827, "nodes": [6348124057, 9115409850], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056828, "nodes": [3293613596, 9115409854, 9115409853, 9115409852, 9115409851, 6380794329, 9115409849, 9115409869], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 986056829, "nodes": [9115409869, 9115409868, 9115409867, 9115409850, 9115409865, 9115409864, 9115409863, 9115409862, 9115409861, 9115409860, 9115409859, 9115409858, 9115409857, 9115409855], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 986056830, "nodes": [9115409871, 9116858099, 6348197421], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056831, "nodes": [9115409873, 9115409872], "tags": {"crossing": "traffic_signals;marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986056832, "nodes": [9115409875, 9116858098, 9115409874], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986056833, "nodes": [9115409877, 9116858106, 9115409876], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986056834, "nodes": [9115409893, 9115409871, 9116858104, 9115409890, 9115409888, 9116858078, 9116858064, 9115409887, 9115409876, 9116858105, 9115409883, 9115409878, 9115409875, 9115409893], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 986205110, "nodes": [9116676721, 9116858086, 9116676720, 3382978634, 9116676719, 9116676718, 9116676717, 9116676516, 9116676515, 9549391167, 9549391168, 9116676514, 9116676513, 9116676512, 9116676511, 9116676510, 9116676509, 9116676508, 9116676507, 9116858095, 9116676721], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 986205111, "nodes": [3224865968, 9116676731, 9116676732], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 986226706, "nodes": [9116858054, 9116858052, 9116858053], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986226707, "nodes": [9116858058, 9116858056, 9116858057], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986226708, "nodes": [9116858060, 9116858055, 9116858059], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986226709, "nodes": [9116858064, 9116858062, 9116858063], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 986226710, "nodes": [9116858076, 9116858075, 9116858068], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226712, "nodes": [9116858072, 9116858065, 9116858071], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226713, "nodes": [9116858074, 9116858066, 9116858073], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226714, "nodes": [9116858078, 9116858067, 9116858077], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226715, "nodes": [9116858084, 9116858059, 9116858083, 9116858054, 9116858074, 9116858082, 9116858081, 9116858076, 9116858080, 9116858077, 9116858063, 9116858079, 9116858084], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 986226716, "nodes": [9116858087, 9116858085, 9116858086], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226717, "nodes": [9116676508, 9116858088, 9116858089], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226718, "nodes": [9116858092, 9116858090, 9116858091], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "traffic_signals:vibration": "yes"}}, {"type": "way", "id": 986226719, "nodes": [6348124066, 9116858094, 9116676721], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226720, "nodes": [9116858096, 150760286, 9116858095], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226721, "nodes": [6348197416, 9116858100, 9116858102], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226722, "nodes": [9116858104, 9116858101, 9116858103], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "no", "surface": "asphalt"}}, {"type": "way", "id": 986226723, "nodes": [7058286500, 150760313, 9116858105], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 988849719, "nodes": [4280781516, 9139732325], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 988849720, "nodes": [9139732326, 4280781517], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 990430645, "nodes": [8537288347, 3437178880, 1474148380, 4575762339, 3216764229, 100891149], "tags": {"foot": "yes", "highway": "primary", "lanes": "3", "maxspeed": "50", "name": "Calle de Mar\u00eda de Molina", "name:etymology:wikidata": "Q266025", "oneway": "yes", "postal_code": "28006", "surface": "asphalt"}}, {"type": "way", "id": 990481640, "nodes": [9152508753, 3225747851], "tags": {"highway": "footway"}}, {"type": "way", "id": 990481641, "nodes": [9152508754, 9152508753], "tags": {"access": "yes", "handrail": "no", "highway": "steps", "incline": "up", "step_count": "3", "tactile_paving": "no"}}, {"type": "way", "id": 991139316, "nodes": [3294582990, 1016578253, 3294582996], "tags": {"bicycle": "dismount", "crossing": "marked", "footway": "crossing", "highway": "footway", "name": "Glorieta del Pintor Sorolla", "name:etymology:wikidata": "Q26791943", "surface": "paving_stones"}}, {"type": "way", "id": 991139317, "nodes": [9157684235, 9157684245, 9157684244, 9157684243, 9157684330, 9157684242, 9157684241, 9157684240, 9157684239, 9157684238, 9157684237, 9157684332, 9157684236, 9157684235], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 991139318, "nodes": [9157684246, 9157684311, 9157684247, 9157684248, 9164484341, 9164484293, 9157684249, 9157684250, 9157684313, 9157684251, 9157684321, 9157684246], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991139319, "nodes": [9157684245, 9157684252, 9157684246], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 991139320, "nodes": [9157684253, 9157684314, 9157684254, 9157684255, 9164484345, 9164484319, 9157684256, 9157684257, 9157684316, 9157684258, 9157684253], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991139321, "nodes": [9157684260, 9157684264, 9157684266, 9157684267, 9157684265, 3294582990], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991139322, "nodes": [9157684251, 9157684259, 9157684253], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991139323, "nodes": [9157684260, 9157684317, 9157684261, 9157684262, 9164484325, 9157684263, 3294582986], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991139325, "nodes": [6370992541, 9157684264], "tags": {"highway": "footway"}}, {"type": "way", "id": 991139326, "nodes": [9157684244, 9157684312, 9157684311], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991139327, "nodes": [9157684313, 9157684315, 9157684314], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991139328, "nodes": [9157684316, 9157684318, 9157684317], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 991139329, "nodes": [9157684263, 9157684320, 9157684319], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 991139330, "nodes": [9157684321, 9157684323, 9157684322], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991139331, "nodes": [9157684235, 9157684325, 9157684324], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 991139332, "nodes": [9157684326, 98959776, 9157684327, 141885133], "tags": {"highway": "living_street", "name": "Calle de Santa Feliciana", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 991139334, "nodes": [9157684242, 298153706], "tags": {"highway": "footway"}}, {"type": "way", "id": 991139335, "nodes": [9157684237, 9157684331], "tags": {"highway": "footway"}}, {"type": "way", "id": 991139336, "nodes": [9157684258, 9157684333, 9157684260], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991279064, "nodes": [9158965236, 9158965238], "tags": {"highway": "footway"}}, {"type": "way", "id": 991279065, "nodes": [9158965237, 9158965236], "tags": {"highway": "steps"}}, {"type": "way", "id": 991898773, "nodes": [9164484293, 9164484295, 9164484294], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898774, "nodes": [9164484305, 9164484307, 9164484306], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898775, "nodes": [9164484308, 9164484310, 9164484309], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898776, "nodes": [9164484298, 9164484344, 9164484320, 9164484311, 9164484313, 9164484322, 9164484314, 9164484315, 9164484302, 9164484303, 9164484306, 9164484309, 9164484304, 9164484298], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991898777, "nodes": [9164484319, 9164484321, 9164484320], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 991898778, "nodes": [9164484322, 9164484324, 9164484323], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898779, "nodes": [9164484325, 9164484327, 9164484326], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898780, "nodes": [9164484315, 9164484328, 9164484316], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 991898781, "nodes": [9157684319, 9164484334, 9164484349, 9164484291, 9164484316, 9164484317, 9164484323, 9164484318, 9164484312, 9164484326, 9157684319], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991898783, "nodes": [3629636196, 9164484333], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 991898784, "nodes": [9164484333, 9164484334], "tags": {"highway": "footway"}}, {"type": "way", "id": 991898785, "nodes": [9164484292, 9164484335, 9164484336, 9164484337, 9164484338, 9164484339, 9164484340, 9164484290, 9165505521, 9164484301, 9164484305, 9164484300, 9164484308, 9164484299, 9164484297, 9164484294, 9164484342, 9164484292], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 991898786, "nodes": [9164484341, 9164484343, 9164484342], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898787, "nodes": [9164484344, 9164484346, 9164484345], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 991898788, "nodes": [9164484291, 9164484348, 9164484347], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 992006147, "nodes": [9165503396, 9165530284, 9165505522, 9165503397, 9165503398, 9165505523, 9165503402, 9165503403, 9165503400], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 992006148, "nodes": [9165503408, 9165503409, 9165503410, 9165503411, 9165503407, 9165503406, 9165505524, 9165503405, 9165503404, 9165503408], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 992006149, "nodes": [9164484347, 9165503412, 9165503413, 9165503416, 9165503414, 9165503415, 9165503401, 11362355011, 9165505518, 9164484347], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 992006150, "nodes": [9165503409, 9165505517, 9165503416], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992006151, "nodes": [9165503411, 9165505519, 9165503412], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992006152, "nodes": [9165503398, 9165505520, 9165503406], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992006153, "nodes": [9165505521, 9157684326, 9165505522], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 992006154, "nodes": [9165505523, 9165505525, 9165505524], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992006155, "nodes": [9165503401, 9165505527, 9165505526], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 992006156, "nodes": [9165503400, 9165505529, 9165503399], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 992464846, "nodes": [9169688165, 9169688166, 9169688167, 9169688168, 9169688169, 9169688170, 9169688173, 9169688171, 9169688188, 9169688165], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 992464847, "nodes": [9169688101, 1591330194, 9169688171], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992464848, "nodes": [9169688173, 9169688175, 9169688174], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992464849, "nodes": [9169688170, 9169688176, 4643041910], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992464850, "nodes": [9169688177, 9169688178, 9169688183, 9169688182, 9169688179, 9169688180, 9169688181, 9165503399], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 992464851, "nodes": [9169688179, 9169688184, 4643041907], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992464852, "nodes": [4643041909, 9169688187, 9169688186, 9169688180], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 992464853, "nodes": [9169688188, 9169688190, 9169688189], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 992729383, "nodes": [141881729, 1596698110], "tags": {"alt_name": "Calle Gonzalo de C\u00f3rdoba", "bicycle": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de Gonzalo de C\u00f3rdoba", "oneway": "yes", "postal_code": "28010", "sidewalk": "both", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 993035587, "nodes": [9172003699, 9172003703, 9172003704, 141881345], "tags": {"highway": "living_street", "name": "Calle de Jord\u00e1n", "oneway": "yes", "postal_code": "28010", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 993112338, "nodes": [9175086681, 9175086698, 9175086696, 9175086669, 9175086670, 9175086671, 9175086672, 9175086673, 9175086674, 9175086675, 9175086676, 9175086677, 9175086705, 9175086678, 9281641940, 9281641971, 9175086679, 9175086680, 9175086693, 9175086681], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 993112339, "nodes": [298153478, 9175086703, 9175086702, 9175086701, 9175086700], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 993112340, "nodes": [9175086700, 9175086694, 9175086685, 9175086686, 9281641990, 9175086687, 9175086688, 9175086689, 9175086690, 9175086692, 9175086691], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 993112341, "nodes": [9175086693, 9175086695, 9175086694], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 993112342, "nodes": [9175086696, 141865273, 9175086697], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 993112343, "nodes": [9175086698, 674477982, 9175086699], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 993112344, "nodes": [9175086700, 2283361221, 9175086681], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 993112345, "nodes": [9157684236, 4229127178, 9175086702], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 993112346, "nodes": [9175086701, 2283361223, 9175086704], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 997864026, "nodes": [4637125733, 9213584626], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 997864027, "nodes": [9213584627, 1669117913, 9213584628], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 997864028, "nodes": [4637125733, 9213584628, 9213584629], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 997864029, "nodes": [4633502263, 9213584627], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1004364030, "nodes": [5802031862, 9266993695, 9266993698], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1004364031, "nodes": [9266993698, 4307136110], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1004364032, "nodes": [9266993698, 9266993700, 9266993701], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1004364033, "nodes": [9266993702, 9266993696, 9266993700], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1005277934, "nodes": [9275138544, 4637824952, 9275138545], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1005277935, "nodes": [9275138545, 9275138546], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1005277936, "nodes": [9275138546, 1669117882, 9275138547], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1005277937, "nodes": [9275138547, 9275138544], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1005983089, "nodes": [9281641932, 9281641933, 9281668032, 9281641934, 9281641935, 9281641988, 9281641936, 9281641937, 9281641972, 9281641938, 9281641939, 9281641932], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1005983090, "nodes": [9175086678, 1591330231, 9281641939], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1005983091, "nodes": [9281641932, 9281641942, 9281641941], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1005983092, "nodes": [9281641971, 9281641973, 9281641972], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1005983093, "nodes": [9281641974, 9281641975, 9281641976, 9281641977, 9281641978, 9281641979, 9281641980, 9281641981, 9281641982, 9281641983, 9281641984, 9281641985, 9281641989, 9281641986, 9281641987, 9281641974], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1005983094, "nodes": [9281641987, 1596698118, 9281641988], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005983095, "nodes": [9281641989, 1596698124, 9281641990], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005983096, "nodes": [9281641934, 1591330222, 9281641975], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005985061, "nodes": [9281668024, 9281668025, 9281668026, 9281668027, 9281668028, 9281668029, 9281668031, 9281668040, 9281668030], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1005985062, "nodes": [9281668031, 1591330220, 9281641975], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005985063, "nodes": [9281668032, 1591330218, 9281668033], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005985064, "nodes": [9281668024, 141880907, 9281668034], "tags": {"crossing": "unmarked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1005985065, "nodes": [9281668027, 9281668036, 9281668035], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1005985066, "nodes": [9281668026, 1591330198, 9281668037], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1006451275, "nodes": [9281668033, 9285824690, 9281641941, 9285824691, 9285824692, 9285824693, 9285824694, 9285824695, 9281668035, 9281668033], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1007059805, "nodes": [8388879235, 9290677529, 9290677530, 9290677531, 9290677540, 9290677532, 9290677533, 9290677535, 1868668291], "tags": {"highway": "service", "junction": "roundabout", "layer": "-1", "level": "-1", "maxspeed": "20", "name": "Intercambiador de Moncloa - Acceso Princesa", "tunnel": "yes"}}, {"type": "way", "id": 1007059806, "nodes": [1868668291, 9290677534, 9290677536, 9290677518, 9290677519, 9290677537, 9290677520, 9290677538, 9290677521, 9290677539, 9290677522, 9290677545, 9290677523, 9290677544, 9290677524, 9290677543, 9290677525, 9290677542, 9290677526, 9290677541, 9290677527, 9290677528, 8388879235], "tags": {"highway": "service", "junction": "roundabout", "layer": "-1", "level": "-1", "lit": "24/7", "maxspeed": "20", "name": "Intercambiador de Moncloa - Acceso Princesa", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 1007425403, "nodes": [3578397084, 9294124001, 9294124000], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1007584648, "nodes": [11200863917, 11343888029, 2004157542, 150760955], "tags": {"bicycle": "destination", "cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "motor_vehicle": "destination", "name": "Calle Doctor Severo Ochoa", "oneway": "no", "parking:left": "no", "parking:right": "on_kerb", "parking:right:orientation": "perpendicular", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1009569237, "nodes": [9935842810, 3663308751, 3663308752, 3663308749, 9935842811], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1009569238, "nodes": [3663308757, 2466312890, 3663308755], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1014474061, "nodes": [26412916, 26413032], "tags": {"alt_name": "Bravo Murillo", "cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "parking:both": "no", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474062, "nodes": [26413086, 3659320548, 339391870], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474063, "nodes": [339391870, 8851032220], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474064, "nodes": [8851032220, 338727758], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474065, "nodes": [1801212265, 26413137], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1014474066, "nodes": [338727758, 1801212265], "tags": {"cycleway": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "lanes:psv:backward": "1", "lanes:psv:forward": "1", "maxspeed": "50", "name": "Calle de Bravo Murillo", "name:etymology:wikidata": "Q200476", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1018885966, "nodes": [9397668135, 9397668168], "tags": {"highway": "steps"}}, {"type": "way", "id": 1018885967, "nodes": [9397668168, 9397668169], "tags": {"highway": "footway"}}, {"type": "way", "id": 1018885968, "nodes": [9397668169, 9397668170], "tags": {"highway": "steps"}}, {"type": "way", "id": 1018885969, "nodes": [9397668170, 9397668172, 9397668171], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1023633508, "nodes": [9439650458, 9439650456, 9439650455, 9439650457], "tags": {"highway": "service", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1023633509, "nodes": [4193838292, 9439650461], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1023633510, "nodes": [9439650465, 9439650464, 9439650463, 9439650462, 9439650461], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1023705326, "nodes": [9440297884, 9440297883], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705327, "nodes": [9440297886, 9440297885], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705328, "nodes": [9440297888, 9440297887], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705329, "nodes": [9440297890, 9440297889], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705330, "nodes": [9440297892, 9440297890, 9440297888, 9440297886, 9440297884, 9440297891], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705331, "nodes": [9440297894, 9440297893, 9439650463], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705332, "nodes": [9440297892, 9440297896, 9440297889, 9440297887, 9440297894, 9440297885, 9440297883, 9440297895], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1023705337, "nodes": [9440297915, 9440297891, 9440297895, 4193838292], "tags": {"highway": "service", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1026998527, "nodes": [5802031853, 9468415547, 9468415548, 4467080339, 4856142695, 5802031856, 5802031853], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1026998528, "nodes": [4467080341, 4467080338, 9468415549, 9468415550, 9468415551, 4467080341], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1026998529, "nodes": [9468415548, 9468415552, 9468415549], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1026999183, "nodes": [9468418944, 9468418945, 9468418946, 9468418947, 9468418952, 9468418944], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1026999184, "nodes": [5802031884, 9468418948, 9468418944], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1026999185, "nodes": [9468418949, 9468418951, 9468418950], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1026999186, "nodes": [9468418949, 9468418953, 9468418952], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1026999941, "nodes": [9468406678, 9468406679, 4547336042, 9468406680, 9468406682, 4103639922, 9468406678], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1026999942, "nodes": [9468415547, 9468406681, 9468406678], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1026999943, "nodes": [9468415550, 9468406684, 9468406682, 9468406683, 9468418944], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1026999944, "nodes": [5802031884, 9468415550], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1027000330, "nodes": [9468421730, 9468421731, 9468421732, 9468421733, 9468421730], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1027000331, "nodes": [5802031893, 9468421736, 9468418947, 9468421734, 9468421730, 9468421735, 5802031901, 9468421737, 5802031893], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1027000332, "nodes": [5802031900, 9468421738, 9468421733], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1027001865, "nodes": [9468439514, 4431658918, 9468439515, 9468439516, 9468439514], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1027001866, "nodes": [9468439514, 9468442517, 9468421731], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1027001867, "nodes": [9468439516, 9468442518, 9468421732], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1027001868, "nodes": [9468418946, 9468442519, 9468421731], "tags": {"crossing": "marked", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1027007805, "nodes": [9468483005, 5802031868, 5802031872, 9468483005], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1027008148, "nodes": [5802031867, 2283361222, 9468483005], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1028737876, "nodes": [9484310903, 2972941385, 9484310904], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1028737877, "nodes": [9484310903, 9484310905, 2972941375], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1028737878, "nodes": [9484310903, 9484310906, 9484310907, 9484310908, 3096525884], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1028737879, "nodes": [9484310903, 4179550394], "tags": {"highway": "footway"}}, {"type": "way", "id": 1028737880, "nodes": [9484310904, 4179550395], "tags": {"highway": "footway"}}, {"type": "way", "id": 1028737881, "nodes": [9484310904, 9484310909], "tags": {"highway": "footway"}}, {"type": "way", "id": 1028737882, "nodes": [9484310909, 2972941183, 9484310910], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1028737883, "nodes": [9484310911, 9484310910, 9484310912, 9484310913, 9484310914], "tags": {"highway": "footway"}}, {"type": "way", "id": 1028737884, "nodes": [9484310914, 2283361212, 9484310915], "tags": {"crossing": "marked", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1028737885, "nodes": [5195758592, 9484310915], "tags": {"highway": "footway"}}, {"type": "way", "id": 1029656489, "nodes": [4179550395, 9492744666], "tags": {"highway": "footway"}}, {"type": "way", "id": 1029656490, "nodes": [4179550394, 9492744667], "tags": {"highway": "footway"}}, {"type": "way", "id": 1029656491, "nodes": [9492744666, 9492744668], "tags": {"highway": "footway"}}, {"type": "way", "id": 1029656492, "nodes": [9492744667, 3418224234], "tags": {"highway": "footway"}}, {"type": "way", "id": 1030188967, "nodes": [9496525310, 9496525311, 9496525312, 9496525313, 25902778], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 1032962168, "nodes": [100881578, 101190157, 100881579], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 1032962169, "nodes": [989278228, 100881578], "tags": {"highway": "residential", "lanes": "4", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "surface": "asphalt"}}, {"type": "way", "id": 1032962170, "nodes": [100881334, 8440634346, 989278057, 100881577], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1032962171, "nodes": [989278010, 100881715], "tags": {"highway": "residential", "name": "Paseo de La Habana", "name:etymology:wikidata": "Q1563", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1032962172, "nodes": [989278265, 100881715], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "residential", "name": "Calle de los Hermanos Pinz\u00f3n", "name:etymology:wikidata": "Q3388890", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1034932996, "nodes": [9533539679, 3451273055, 9533539678], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034932997, "nodes": [9533539677, 9533539676, 9533539675], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034932998, "nodes": [9533539701, 9533539676], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034932999, "nodes": [9533539685, 9533539678, 9533539677, 3451212169], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034933000, "nodes": [9533539702, 9533539679, 3451273071, 9533539704], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034933001, "nodes": [9533539702, 9533539680, 9533539681, 9533539682, 9533539683, 9533539684, 9533539685, 9533539686, 9533539687, 9533539688, 9533539689, 9533539690, 9533539701, 9533539691, 9533539692, 9533539693, 9533539694, 9533539695, 9533539703, 9533539696, 9533539697, 9533539698, 9533539699, 9533539700, 9533539702], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034933002, "nodes": [3451273073, 3451250601, 3451250603, 9533539675, 3451273072, 9533539704, 9533539703], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1034933003, "nodes": [9533552117, 9533539712], "tags": {"covered": "arcade", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1034933004, "nodes": [3451273053, 9533552118, 9533552117, 9533539673, 9533539708, 9533539716, 9533539715, 9533539711, 3451273034, 9533539714, 9533539713], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1037838533, "nodes": [1754817087, 25902847], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 1037838534, "nodes": [9559283926, 1754817090], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1037838535, "nodes": [9559283924, 1754817087], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1037838536, "nodes": [9559283926, 9559283925], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1037838537, "nodes": [9559283925, 9559283924], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 1037838538, "nodes": [9559283927, 9559298067], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 1037838539, "nodes": [9559283928, 1754817101, 102216201], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 1037838540, "nodes": [1754817099, 9559283932], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "1", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1037838541, "nodes": [1754817095, 9559283934], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 1037838542, "nodes": [9559283933, 9559283932], "tags": {"access": "yes", "highway": "service", "oneway": "yes"}}, {"type": "way", "id": 1037838543, "nodes": [9559283934, 9559283933], "tags": {"bicycle": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "layer": "-1", "oneway": "yes", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 1037840540, "nodes": [9559298073, 9559283921], "tags": {"bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 1037840541, "nodes": [9559298073, 9559298072, 9559298071, 9559298070, 9559298069, 9559298068, 9559298067], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 1037841087, "nodes": [9559298067, 9559283926], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1037841088, "nodes": [9559283932, 9559298073], "tags": {"access": "yes", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1039155026, "nodes": [9569418944, 9569418945], "tags": {"conveying": "yes", "covered": "yes", "highway": "steps", "level": "0;-1"}}, {"type": "way", "id": 1039155027, "nodes": [9569418949, 9569418948], "tags": {"conveying": "yes", "covered": "yes", "highway": "steps", "incline": "down", "level": "0;-1", "lit": "yes"}}, {"type": "way", "id": 1039155028, "nodes": [9569418945, 9569418949], "tags": {"covered": "yes", "highway": "footway"}}, {"type": "way", "id": 1039155029, "nodes": [9569418946, 6186804886], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1039155030, "nodes": [9569418947, 9569418946], "tags": {"covered": "yes", "handrail": "yes", "highway": "steps", "incline": "down", "level": "0;-1", "lit": "yes", "ramp": "no", "step_count": "39", "surface": "paving_stones"}}, {"type": "way", "id": 1039155031, "nodes": [9569418948, 6186804886], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1039155032, "nodes": [9569418943, 9569418944], "tags": {"conveying": "yes", "highway": "footway", "layer": "-1", "level": "0;-1", "tunnel": "yes"}}, {"type": "way", "id": 1039156975, "nodes": [9559214847, 6186804890], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1039388518, "nodes": [1437132913, 9571292153], "tags": {"conveying": "yes", "covered": "yes", "handrail": "yes", "highway": "steps", "layer": "-1"}}, {"type": "way", "id": 1039388519, "nodes": [9571292152, 1437132913], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 1039388520, "nodes": [9571292155, 9571292154, 6186804886], "tags": {"highway": "footway", "layer": "-1", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1039388521, "nodes": [6186804887, 9571292156, 9571292155], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1043287214, "nodes": [9601998680, 9601998682, 9601998684, 9601998686, 9601998688, 9601998681], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1043287215, "nodes": [9601998682, 9601998683], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1043287216, "nodes": [9601998684, 9601998685], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1043287217, "nodes": [9601998686, 9601998687], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1043287218, "nodes": [9601998688, 9601998689, 7981026977], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1043287224, "nodes": [9601998712, 9601998713, 9601998714], "tags": {"highway": "service"}}, {"type": "way", "id": 1043287226, "nodes": [9602013218, 9602013219], "tags": {"highway": "service"}}, {"type": "way", "id": 1053381582, "nodes": [6380794349, 9680512475], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381583, "nodes": [9680512477, 9680512476], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381584, "nodes": [9680512477, 9680512478], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381585, "nodes": [9680512480, 9680512479, 9680512477], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381586, "nodes": [9680512482, 9680512481], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381587, "nodes": [9680512482, 9680512483], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381588, "nodes": [9680529830, 9680512485, 9680512484, 9680512482], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381589, "nodes": [9680512486, 9680512487], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381590, "nodes": [9680512487, 9680512489], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381591, "nodes": [9680512488, 9680512490], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381592, "nodes": [9680512489, 9680512488], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381593, "nodes": [9680512490, 9680512491], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381594, "nodes": [9680512494, 9680512486], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381595, "nodes": [9680512492, 3196261071], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381596, "nodes": [9680512493, 9680512492], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381597, "nodes": [9680512491, 9680512510, 9680512493], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381598, "nodes": [9680512495, 6501186714], "tags": {"highway": "steps"}}, {"type": "way", "id": 1053381599, "nodes": [9680512496, 9680512495], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053381600, "nodes": [9680512497, 9680512498], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381601, "nodes": [9680512498, 9680512499], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381602, "nodes": [9680512499, 9680512500], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381603, "nodes": [9680512500, 9680512501], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381604, "nodes": [9680512501, 9680512502], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381605, "nodes": [9680512502, 9680512515, 3196261070], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381606, "nodes": [9680512509, 9680512508], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381607, "nodes": [9680512512, 9680512511], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381608, "nodes": [9680512505, 9680512503, 9680512475, 9680512504, 9680512507, 9680512512], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381609, "nodes": [9680512508, 9680512494, 9680512507], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381610, "nodes": [9680512506, 9680512505], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381611, "nodes": [9680512515, 9680512513, 9680512506], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381612, "nodes": [9680512511, 9680512510, 9680512509], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381613, "nodes": [3196261070, 9680529817], "tags": {"highway": "steps"}}, {"type": "way", "id": 1053381614, "nodes": [9680529819, 9680529818], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053381615, "nodes": [9680529817, 9680512516], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053381616, "nodes": [9680512503, 9680512514, 9680512497], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381617, "nodes": [9680512516, 9680529819], "tags": {"highway": "steps"}}, {"type": "way", "id": 1053381618, "nodes": [9680529822, 9680529820], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381619, "nodes": [9680529821, 9680529822], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381620, "nodes": [9680529823, 9680529821], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381621, "nodes": [9680529824, 9680529823], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381622, "nodes": [9680529825, 9680529824], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381623, "nodes": [9680529826, 9680529825], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381624, "nodes": [9680529827, 9680529826], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381625, "nodes": [9680529820, 9680529830, 9680512480, 9680529903, 9680512504], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381626, "nodes": [9680529829, 9680529828], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381627, "nodes": [9680529831, 9680529830, 9680529829], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381628, "nodes": [9680529832, 9680529831], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381629, "nodes": [9680529828, 9680529864, 9680529832], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381630, "nodes": [9680529833, 9680529834], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381631, "nodes": [9680529834, 9680529835], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381632, "nodes": [9680529835, 9680529836], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381633, "nodes": [9680529836, 9680529837], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381634, "nodes": [9680529855, 9680529833], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381635, "nodes": [9680529838, 9680529843], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381636, "nodes": [9680529840, 9680529839, 9680529838], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381637, "nodes": [9680529841, 9680529840], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381638, "nodes": [9680529843, 9680529842, 9680529841], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381639, "nodes": [9680529844, 9680529845], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381640, "nodes": [9680529845, 9680529846], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381641, "nodes": [9680529846, 9680529847], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381642, "nodes": [9680529847, 9680529848], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381643, "nodes": [9680529856, 9680529844], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381644, "nodes": [9680529850, 9680529849], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381645, "nodes": [9680529852, 9680529851, 9680529850], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381646, "nodes": [9680529853, 9680529852], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381647, "nodes": [9680529849, 9680529854, 9680529853], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381648, "nodes": [9680529860, 9680529861, 9680529842, 9680529855], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381649, "nodes": [9680529848, 9680529854, 9680529857, 9680529863], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381650, "nodes": [9680529859, 9680529858, 9680529851, 9680529856], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381651, "nodes": [9680529837, 9680529839, 9680529862, 9680529863, 9680529864, 9680529827], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381652, "nodes": [9680529866, 9680529865], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381653, "nodes": [9680529867, 9680529866], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381654, "nodes": [9680529868, 9680529867], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381655, "nodes": [9680529869, 9680529868], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381656, "nodes": [9680529870, 9680529869], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381657, "nodes": [9680529865, 9680529901, 9680529903], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381658, "nodes": [9680529872, 9680529871], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381659, "nodes": [9680529873, 9680529872], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381660, "nodes": [9680529874, 9680529873], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381661, "nodes": [9680529875, 9680529874], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381662, "nodes": [9680529876, 9680529875], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381663, "nodes": [9680529881, 9680529882, 9680529876], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381664, "nodes": [9680529877, 9680529878], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381665, "nodes": [9680529878, 9680529879], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381666, "nodes": [9680529879, 9680529880], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381667, "nodes": [9680529880, 9680529881], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381668, "nodes": [9680529902, 9680529877], "tags": {"highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381669, "nodes": [9680529884, 9680529882, 9680529883], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381670, "nodes": [9680529887, 9680529885, 9680529886], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381671, "nodes": [9680529888, 9680529886, 9680529889], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381672, "nodes": [9680529889, 9680529890], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381673, "nodes": [9680529890, 9680529883, 9680529891], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381674, "nodes": [9680529891, 9680529899], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381675, "nodes": [9680529892, 9680529884, 9680529893], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381676, "nodes": [9680529893, 9680529894], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381677, "nodes": [9680529894, 9680529887, 9680529895], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381678, "nodes": [9680529895, 9680529896], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381679, "nodes": [9680529897, 9680529892], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381680, "nodes": [9680529899, 9680529898, 9680529897], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381681, "nodes": [9680529900, 9680529888], "tags": {"conveying": "yes", "highway": "steps", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381682, "nodes": [9680529896, 9680529901, 9680529900], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381683, "nodes": [9680529871, 9680529885, 9680529870], "tags": {"highway": "footway", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1053381684, "nodes": [9680529904, 9680529898, 9680529902], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381685, "nodes": [9680529907, 9680529906], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381686, "nodes": [9680529905, 9680529907], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381687, "nodes": [9680529909, 9680529908], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381688, "nodes": [9680529910, 9680529909], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381689, "nodes": [9680529912, 9680529911], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381690, "nodes": [9680529913, 9680529912], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381691, "nodes": [9680529914, 9680529913], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381692, "nodes": [9680529915, 9680529914], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381693, "nodes": [9680529916, 9680529915], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381694, "nodes": [9680529917, 9680529916], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381695, "nodes": [9680529936, 9680529917], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381696, "nodes": [9680529919, 9680529918], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381697, "nodes": [9680529921, 9680529920, 9680529919], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381698, "nodes": [9680529922, 9680529921], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381699, "nodes": [9680529918, 9680529923, 9680529922], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381700, "nodes": [9680529927, 9680529934], "tags": {"conveying": "yes", "highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381701, "nodes": [9680529928, 9680529924, 9680529930], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381702, "nodes": [9680529929, 9680529926, 9680529927], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381703, "nodes": [9680529930, 9680529931], "tags": {"conveying": "yes", "highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381704, "nodes": [9680529932, 9680529928], "tags": {"conveying": "yes", "highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381705, "nodes": [9680529935, 9680529929], "tags": {"conveying": "yes", "highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381706, "nodes": [9680529931, 9680529954, 9680529935], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381707, "nodes": [9680529934, 9680529933, 9680529932], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381708, "nodes": [9680529911, 9680529920, 9680529937, 9680529924, 9680529925, 9680529926], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381709, "nodes": [9680529938, 9680529923, 9680529936], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381710, "nodes": [9680529941, 9680529939], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381711, "nodes": [9680529940, 9680529941], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381712, "nodes": [9680529943, 9680529940], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381713, "nodes": [9680529942, 9680529943], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381714, "nodes": [9680529945, 9680529942], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381715, "nodes": [9680529944, 9680529945], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381716, "nodes": [9680529946, 9680529944], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381717, "nodes": [9680529957, 9680529956, 9680529948, 9680529946], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381718, "nodes": [9680529947, 9680529952], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381719, "nodes": [9680529949, 9680529948, 9680529947], "tags": {"highway": "footway", "layer": "-3", "tunnel": "yes"}}, {"type": "way", "id": 1053381720, "nodes": [9680529950, 9680529949], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381721, "nodes": [9680529952, 9680529951, 9680529950], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381722, "nodes": [9680529939, 9680529951, 9680529955, 9680512481, 9680512476, 9680529954, 9680529925, 9680529933, 9680529953], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381723, "nodes": [9680529958, 9680529959], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381724, "nodes": [9680529959, 9680529964], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381725, "nodes": [9680529960, 9680529961], "tags": {"conveying": "yes", "highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381726, "nodes": [9680529961, 9680529962], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381727, "nodes": [9680529963, 9680529960], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381728, "nodes": [9680529965, 9680529958], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381729, "nodes": [9680529966, 9680529967], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381730, "nodes": [9680529968, 9680529966], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381731, "nodes": [9680529969, 9680529968], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381732, "nodes": [9680529970, 9680529969], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381733, "nodes": [9680529971, 9680529970], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381734, "nodes": [9680529983, 9680529962, 9680529982, 9680529971], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381735, "nodes": [9680529972, 9680529973], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381736, "nodes": [9680529973, 9680529974], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381737, "nodes": [9680529974, 9680529975], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381738, "nodes": [9680529975, 9680529976], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381739, "nodes": [9680529976, 9680529977], "tags": {"highway": "steps", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381740, "nodes": [9680529977, 9680529979, 9680529965, 9680529978], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381741, "nodes": [9680529967, 9680529981, 9680529963, 9680529908, 9680529904, 9680529905, 9680529953, 9680529964, 9680529980, 9680529972], "tags": {"highway": "footway", "layer": "-4", "tunnel": "yes"}}, {"type": "way", "id": 1053381746, "nodes": [9680529985, 9680529991], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381747, "nodes": [9680529987, 9680529990, 9680529985], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381748, "nodes": [9680529992, 9680529987], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381749, "nodes": [9680529993, 9680530039, 9680529992], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381750, "nodes": [9680529986, 9680529993], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381751, "nodes": [9680529984, 9680529989, 9680529986], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381752, "nodes": [9680529994, 9680529984], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381753, "nodes": [9680529990, 9680529988, 9680529989], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381754, "nodes": [9680529991, 9680529995, 9680529994], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381755, "nodes": [9680529997, 9680529996], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381756, "nodes": [9680529998, 9680529997], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381757, "nodes": [9680529999, 9680529998], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381758, "nodes": [9680530000, 9680529999], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381759, "nodes": [9680530001, 9680530000], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381760, "nodes": [9680530002, 9680529988, 9680530001], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381761, "nodes": [9680530003, 9680530002], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381762, "nodes": [9680530004, 9680530003], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381763, "nodes": [9680530005, 9680530004], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381764, "nodes": [9680530006, 9680530005], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381765, "nodes": [9680530007, 9680530006], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381766, "nodes": [9680530040, 9680529995, 9680530007], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381767, "nodes": [9680530013, 9680530027], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381768, "nodes": [9680530008, 9680530009], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381769, "nodes": [9680530009, 9680530010], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381770, "nodes": [9680530010, 9680530011], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381771, "nodes": [9680530012, 9680530008], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381772, "nodes": [9680530014, 9680530012], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381773, "nodes": [9680530011, 9680530013], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381774, "nodes": [9680530015, 9680530025], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381775, "nodes": [9680530016, 9680530015], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381776, "nodes": [9680530017, 9680530026], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381777, "nodes": [9680530018, 9680530017], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381778, "nodes": [9680530019, 9680530018], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381779, "nodes": [9680530020, 9680530019], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381780, "nodes": [9680530021, 9680530020], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381781, "nodes": [9680530022, 9680530021], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381782, "nodes": [9680530023, 9680530029], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381783, "nodes": [9680530028, 9680530024], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381784, "nodes": [9680530029, 9680530038, 9680530028], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381785, "nodes": [9680530024, 9680530027, 9680530025, 9680530026, 9680530030, 9680530023], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381786, "nodes": [9680530032, 9680530014, 9680530031, 9680530016], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381787, "nodes": [9680530033, 6501186708], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "ramp": "no"}}, {"type": "way", "id": 1053381788, "nodes": [9680530034, 9680530033], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053381789, "nodes": [9680530035, 4356759578], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "ramp": "no", "surface": "concrete", "tactile_paving": "no"}}, {"type": "way", "id": 1053381790, "nodes": [9680530036, 9680530035], "tags": {"highway": "footway", "surface": "concrete"}}, {"type": "way", "id": 1053381791, "nodes": [9680530037, 9680530032, 4356759578], "tags": {"highway": "footway", "layer": "-2", "surface": "concrete", "tunnel": "yes"}}, {"type": "way", "id": 1053381792, "nodes": [4356759579, 9680530037], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "ramp": "no", "tunnel": "yes"}}, {"type": "way", "id": 1053381793, "nodes": [9680529996, 9680530039, 9680530038, 9680530022], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381794, "nodes": [9680530041, 9680530044], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381795, "nodes": [9680530042, 9680530047], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381796, "nodes": [9680530043, 9680530041], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381797, "nodes": [9680530045, 9680530043], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381798, "nodes": [9680530046, 9680530042], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381799, "nodes": [9680530048, 9680530046], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381800, "nodes": [9680530049, 9680530050], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381801, "nodes": [9680530050, 9680530051], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381802, "nodes": [9680530051, 9680530052], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381803, "nodes": [9680530052, 9680530053], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381804, "nodes": [9680530053, 9680530059], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381805, "nodes": [9680530054, 9680530056], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381806, "nodes": [9680530055, 9680530054], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381807, "nodes": [9680530056, 9680530057], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381808, "nodes": [9680530057, 9680530058], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381809, "nodes": [9680530060, 9680530055], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053381810, "nodes": [9680530059, 9680530062, 9680530045, 9680530061], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381811, "nodes": [9680530066, 9680530048, 9680530065, 9680530060], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053381812, "nodes": [9680530058, 9680530064, 9680530047, 9680530040, 9680530044, 9680530063, 9680530049], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597893, "nodes": [9682523780, 9682523779], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597894, "nodes": [9682523781, 9682523780], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597895, "nodes": [9682523793, 9682523783, 9682523782], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597896, "nodes": [9682523787, 9682523784], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597897, "nodes": [9682523785, 9682523800], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597898, "nodes": [9682523786, 9682523785], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597899, "nodes": [9682523803, 9682523795, 9682523802, 9682523787], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597900, "nodes": [9682523788, 9682523791], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597901, "nodes": [9682523790, 9682523789], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597902, "nodes": [9682523789, 9682523798, 9682523794, 9682523797], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597903, "nodes": [9682523794, 9682523788], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597904, "nodes": [9682523791, 9682523792, 9682523793], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597905, "nodes": [9682523795, 9682523786], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597906, "nodes": [9682523784, 9682523801, 9682523800, 9682523796, 9682523792, 9682523799, 9682523790], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597907, "nodes": [9682523804, 9682523805], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597908, "nodes": [9682523805, 9682523806], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597909, "nodes": [9682523806, 9682523807], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597910, "nodes": [9682523807, 9682523814, 9682523813], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597911, "nodes": [9682523809, 9682523808], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597912, "nodes": [9682523810, 9682523809], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597913, "nodes": [9682523811, 9682523810], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597914, "nodes": [9682524418, 9682524417, 9682523811], "tags": {"highway": "footway", "layer": "-5", "tunnel": "yes"}}, {"type": "way", "id": 1053597915, "nodes": [9682523808, 9682523816, 9682523812, 9682523815, 9682523804], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597916, "nodes": [9682524419, 9682524420], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597917, "nodes": [9682524420, 9682524421], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597918, "nodes": [9682524421, 9682524422], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597919, "nodes": [9682524422, 9682524423], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597920, "nodes": [9682524423, 9682524424], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597921, "nodes": [9682524424, 9682524425], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597922, "nodes": [9682524425, 9682524426], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597923, "nodes": [9682524426, 9682524430], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597924, "nodes": [4179548216, 9682524428, 9682524427], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597925, "nodes": [9682523812, 9682523796, 9682523779, 9682524429, 9682524427, 9682524435, 9682524419], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597926, "nodes": [9682524432, 9682524436], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597927, "nodes": [9682524434, 9682524431], "tags": {"conveying": "yes", "highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597928, "nodes": [9682524431, 9682524433], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597929, "nodes": [9682524438, 9682524433, 9682524430, 9682524437, 9682524432], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597930, "nodes": [9682524436, 9682524435, 9682524434], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597931, "nodes": [9682524439, 9682524440], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597932, "nodes": [9682524440, 9682524438, 9682524441], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597933, "nodes": [9682524441, 9682524442], "tags": {"highway": "steps", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597934, "nodes": [9682524442, 321256790], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053597935, "nodes": [9682524443, 4179548217], "tags": {"highway": "steps"}}, {"type": "way", "id": 1053597936, "nodes": [9682524444, 9682524443], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053597937, "nodes": [9682524445, 9682524446], "tags": {"highway": "footway"}}, {"type": "way", "id": 1053597938, "nodes": [9682524446, 4179548218], "tags": {"highway": "steps"}}, {"type": "way", "id": 1053597939, "nodes": [4179548215, 9682524439], "tags": {"highway": "footway", "layer": "-2", "tunnel": "yes"}}, {"type": "way", "id": 1053835163, "nodes": [9684595514, 9684595515, 9684595516, 9684664017], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 1053862018, "nodes": [9684850520, 9684850519], "tags": {"highway": "service", "service": "parking_aisle", "surface": "concrete"}}, {"type": "way", "id": 1055545955, "nodes": [1770052234, 9699225796, 9699225800, 9699225797, 9699225803, 9699225798], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 1055545957, "nodes": [1770052234, 9699225795, 9699225801, 9699225799, 9699225802, 27516322], "tags": {"bicycle": "yes", "highway": "residential", "name": "Calle del General Ampudia", "oneway": "yes", "postal_code": "28003"}}, {"type": "way", "id": 1067766109, "nodes": [9802859472, 9802859471, 9802859470, 9802859469], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1067766110, "nodes": [9802859473, 9802859472, 9802859475], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1067766111, "nodes": [7058286487, 9802859475, 9802859474], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1077504502, "nodes": [9879403068, 4335298559], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1077504503, "nodes": [9879403079, 9879403078, 9879403077], "tags": {"highway": "service"}}, {"type": "way", "id": 1078520633, "nodes": [9887424164, 9887424163, 9887424162], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "lit": "no"}}, {"type": "way", "id": 1081529198, "nodes": [27508201, 4498622034, 4498622026, 4498622025, 27508200], "tags": {"highway": "residential", "maxspeed": "30", "name": "Calle de la Poeta \u00c1ngela Figuera", "old_name": "Calle del General Asensio Cabanillas", "oneway": "yes", "postal_code": "28003", "source:name": "Pleno del Ayuntamiento de Madrid de 28/04/2017", "surface": "asphalt"}}, {"type": "way", "id": 1081529199, "nodes": [27508201, 4498622037, 3663308770, 27514667], "tags": {"highway": "residential", "maxspeed": "50", "name": "Calle del Maestro \u00c1ngel Llorca", "old_name": "Calle del General Rodrigo", "oneway": "yes", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1084269564, "nodes": [3663308755, 9935842809], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1084269565, "nodes": [9935842809, 2466312898, 9935842810], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1084269566, "nodes": [9935842811, 2466312906, 3663308748], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1084269567, "nodes": [3663308748, 3663308754], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1091695950, "nodes": [6614655203, 9998406318, 9998406317, 9998366116], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 1091695951, "nodes": [6614655206, 9998406329, 9998406328], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 1091695962, "nodes": [9998406809, 9998406808], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 1091695963, "nodes": [9998406808, 1203847161, 8804963881], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 1091695964, "nodes": [9998406814, 9998406813], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 1091695965, "nodes": [9998406809, 9998406807, 9998406806, 9998406805, 5204319225], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 1091695966, "nodes": [9998406812, 2972892248, 9998406814], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 1091852689, "nodes": [1203847126, 9999692402], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1091852690, "nodes": [9999692402, 302786451, 8582667046, 9999692403], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1091852691, "nodes": [9999692403, 9999692404, 9998406333, 9998406332, 9999692409, 9999692408, 9999692407, 9484310914], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1091886395, "nodes": [9999997219, 9999997218], "tags": {"highway": "service", "source": "PNOA", "source:date": "2020"}}, {"type": "way", "id": 1093111976, "nodes": [25901892, 10011023609, 10011023608, 2959128463, 305536077, 2959128466, 25901891], "tags": {"highway": "pedestrian", "name": "Calle de Tamayo y Baus", "oneway": "no", "postal_code": "28004"}}, {"type": "way", "id": 1098628344, "nodes": [10059226229, 10059226231, 10059226230], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt", "tunnel": "building_passage"}}, {"type": "way", "id": 1098628345, "nodes": [10059226230, 7892603717], "tags": {"highway": "service", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1105886710, "nodes": [10119591013, 10119591012, 10119591011, 150760418], "tags": {"highway": "service"}}, {"type": "way", "id": 1107709922, "nodes": [25901897, 8307252472, 942080448], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Recoletos", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1107709923, "nodes": [25901917, 25901921], "tags": {"highway": "residential", "name": "Calle del Cid", "name:etymology:wikidata": "Q43958", "oneway": "yes", "postal_code": "28001", "wikidata": "Q52665136", "wikipedia": "es:Calle del Cid"}}, {"type": "way", "id": 1110166117, "nodes": [60030252, 3096525844, 5422404800, 60030242], "tags": {"highway": "secondary", "junction": "circular", "lanes": "2", "maxspeed": "50", "name": "Glorieta de Quevedo", "name:etymology:wikidata": "Q201315", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1114990827, "nodes": [8423842235, 8423842236], "tags": {"highway": "residential", "lanes": "3", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 1114990828, "nodes": [10197766008, 8423842235], "tags": {"access": "private", "bicycle:source": "enbicipormadrid", "highway": "service", "lanes": "2", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 1114990829, "nodes": [8423842236, 8807066145, 8423842222, 8423842223], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 1114990830, "nodes": [8423842236, 8807066134, 10197766006, 989205027, 989204960, 8807066144, 4825301730, 989205057, 989205097], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Agust\u00edn de Betancourt", "oneway": "yes", "postal_code": "28003", "sidewalk": "right", "surface": "asphalt"}}, {"type": "way", "id": 1114990831, "nodes": [10197766007, 8423842235], "tags": {"cycleway:both": "no", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "name": "Calle de Agust\u00edn de Betancourt", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1117798460, "nodes": [7549719175, 7549719171, 25901948], "tags": {"cycleway:right": "shared_lane", "highway": "residential", "lit": "yes", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117798461, "nodes": [7549719167, 1915012230, 3418035839, 942080477, 942080469], "tags": {"highway": "primary", "lanes": "3", "lit": "yes", "name": "Calle de la Armada Espa\u00f1ola", "oneway": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1117798462, "nodes": [7549719169, 3323948845, 8931354149, 3323948846, 1915012248, 1278839038, 1915012263, 7549719179, 25901951], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Paseo de Recoletos", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117798463, "nodes": [7549719169, 7537616088, 1278838956, 7549719173, 25901958], "tags": {"foot": "no", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Plaza de Col\u00f3n", "old_name": "Glorieta de la Libertad", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1117831239, "nodes": [55161051, 1378696850, 26080779], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de Evaristo San Miguel", "name:etymology:wikidata": "Q3816067", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt", "turn:lanes": "left|right"}}, {"type": "way", "id": 1117831240, "nodes": [55138206, 7537446003, 7537446004, 4285281350, 55161044, 927751050, 55161051], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Tutor", "oneway": "yes", "postal_code": "28008", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1119740183, "nodes": [8583869920, 25934447], "tags": {"cycleway:right": "shared_lane", "highway": "secondary", "lanes": "6", "lanes:backward": "3", "lanes:forward": "3", "maxspeed": "50", "name": "Calle de Santa Engracia", "name:etymology:wikidata": "Q18246552", "source:name": "survey", "surface": "asphalt"}}, {"type": "way", "id": 1120054369, "nodes": [10244148852, 10244148853, 1128664801], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 1122024359, "nodes": [10262250950, 10262250948], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024362, "nodes": [10262238705, 10262238699], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1122024363, "nodes": [10262238705, 10262238704, 10262238698], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024364, "nodes": [10262238698, 584209224], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024365, "nodes": [10262238699, 10262238697, 10262238698], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024366, "nodes": [10262238700, 10262238699], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024367, "nodes": [10262250951, 10262250949], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024394, "nodes": [10262250915, 10262250925, 10262250923, 10262250924, 10262250916, 10262250917, 10262250918, 10262250919, 10262250920, 10262250921, 10262250922], "tags": {"access": "no", "highway": "service", "service": "alley"}}, {"type": "way", "id": 1122024417, "nodes": [10262250946, 10262250947], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1122024418, "nodes": [10262250946, 10262238700], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024419, "nodes": [10262250947, 10262238705], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024420, "nodes": [10262250948, 10262250949], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1122024421, "nodes": [10262250948, 10262250946], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024422, "nodes": [10262250949, 10262250947], "tags": {"highway": "pedestrian", "name": "Real Jard\u00edn Bot\u00e1nico Alfonso XIII"}}, {"type": "way", "id": 1122024442, "nodes": [10262250974, 3452166807, 3452166806, 4161771983, 3452166805, 3452166802, 3452166801, 3452166800, 3452166799, 3452166798, 3452166797, 3452166796, 3452166795, 3452166794, 3452166793, 3452165792, 3452165791, 3452165790, 3574220196, 3452165789, 3452165787, 10262238699], "tags": {"highway": "footway", "lit": "no", "surface": "gravel"}}, {"type": "way", "id": 1122496865, "nodes": [10266331336, 10266331335, 10266331334, 10266331333], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 1127454437, "nodes": [4626597065, 10308321145], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1130974105, "nodes": [3232901619, 10540247648, 10540247649, 10540247650, 10540247651], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 1131682187, "nodes": [10550528449, 10550528447, 10550528448], "tags": {"highway": "service"}}, {"type": "way", "id": 1131682193, "nodes": [10550528506, 10550528501, 10550528500, 10550528505, 10550528504, 10550528503, 10550528502], "tags": {"highway": "service"}}, {"type": "way", "id": 1137690631, "nodes": [55161119, 3471365915, 55161124], "tags": {"access:lanes": "yes|yes|no", "bicycle:lanes": "yes|yes|no", "bus:lanes": "yes|yes|designated", "cycleway:lanes": "none|shared_lane|none", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "motorcycle:lanes": "yes|yes|yes", "name": "Calle del Marqu\u00e9s de Urquijo", "name:etymology:wikidata": "Q8843105", "oneway": "yes", "postal_code": "28008", "sidewalk": "right", "surface": "asphalt", "taxi:lanes": "yes|yes|designated"}}, {"type": "way", "id": 1138507438, "nodes": [8953723326, 10612891211], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1138507439, "nodes": [8953723332, 10612891212], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1138507440, "nodes": [8953723326, 10612891213], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1138507441, "nodes": [10612891212, 10612891214, 10612891215, 8953723331], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1149505319, "nodes": [10693694167, 10693694168], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Bajos de Arg\u00fcelles", "name:etymology:wikidata": "Q6392595", "surface": "paving_stones"}}, {"type": "way", "id": 1175179154, "nodes": [10920210170, 10920210171], "tags": {"footway": "sidewalk", "highway": "footway", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 1175179155, "nodes": [1278839005, 10920210170], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 1175179160, "nodes": [10920210188, 4349802672], "tags": {"footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2023"}}, {"type": "way", "id": 1175179161, "nodes": [4840111218, 10920210190, 10920210189, 10920210188, 5242551251], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2023", "surface": "paving_stones"}}, {"type": "way", "id": 1175179162, "nodes": [10920210190, 1963430778], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1176064257, "nodes": [1752467538, 10927499975], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064258, "nodes": [10927537030, 10927499927, 10927525543, 10927525544, 10927499941, 10927525542, 10927499963, 10927499950, 10927499914, 10927525541, 10927525540, 10927499946, 10927499958, 10927525539], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064279, "nodes": [10927537026, 10927537025], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064280, "nodes": [10927537028, 10927537027], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064281, "nodes": [10927537029, 25902943], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064282, "nodes": [10927525539, 10927525533, 25902895, 1752467545], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064283, "nodes": [10927525539, 1752467533], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1176064291, "nodes": [10927499975, 10927499974, 10927499973, 10927537029, 10927537022, 10927537020, 10927537021, 10927537019, 10927499968, 10927537027, 10927537025, 10927537018, 10927537023, 10927537017, 10927537016, 10927499966, 10927537024], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1180769575, "nodes": [10966341191, 10966341122], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769583, "nodes": [10966341177, 10968366790, 10966341176], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769584, "nodes": [10966341208, 10966341176, 10968366786, 10968366784, 10968366788, 10966341178], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769585, "nodes": [10966341185, 10966341184, 10966341183, 10966341182, 10966341181, 10966341180, 10966341179], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769586, "nodes": [10966341186, 10966341143, 10966341188], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769587, "nodes": [10966341193, 10968366778, 10968366780, 10966341192, 10966341181, 10966341191, 10966341190, 10966341183, 10966341189, 10968366779, 10968366777, 10968366776, 10966341188, 10966341187], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769588, "nodes": [10966341195, 10966341144, 10968366776, 10966341193, 10966341194], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769589, "nodes": [10966341197, 10968366777, 10968366778, 10966341196], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769590, "nodes": [10966341200, 10966341189, 10966341192, 10966341199, 10968366780, 10968366779, 10966341198], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769591, "nodes": [10966341117, 10966341116, 11061512915, 10968366794, 10966341115, 10966341114, 10966341113, 10966341112, 10966341111, 10966341110, 10966335602], "tags": {"highway": "footway", "surface": "concrete:lanes"}}, {"type": "way", "id": 1180769592, "nodes": [10966341201, 10966341298, 10966341299, 10966341300], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769593, "nodes": [10966341296, 10966341295, 10966341294, 11061512919, 11061512920, 10966341115, 11061512921, 1203847199, 10966341202], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769594, "nodes": [10966341294, 10966341290, 10966341204, 10966341203], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769595, "nodes": [10966341206, 10966341300, 11061512920, 11061512913, 10966341297, 10966341205], "tags": {"highway": "footway"}}, {"type": "way", "id": 1180769596, "nodes": [1203847209, 10966335603, 10966341205, 11061512912, 11061512917, 10966341202, 11061512918, 11061512916, 11061512915, 11061512913, 11061512914, 10966341209, 10966341203, 10966341208, 10966341187, 10966341201, 10966341194, 10966341206, 10966335602, 10966341196, 10966341199, 10966341179, 10966341122, 10966341207, 10968366797], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769605, "nodes": [10966341290, 10966341289], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769606, "nodes": [10966341293, 10966341289, 10966341292, 10966341291], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1180769607, "nodes": [10966341295, 10966341293, 10966341298], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040409, "nodes": [10968366785, 10968366784], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040410, "nodes": [10968366787, 10968366786], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040411, "nodes": [10968366790, 10968366787, 10968366785, 10968366789, 10968366788], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040412, "nodes": [10966341299, 10966341296, 11061512919, 11061512914, 10966341297, 10966341117], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040413, "nodes": [10966341116, 10968366793, 10968366792], "tags": {"highway": "footway", "surface": "concrete:lanes"}}, {"type": "way", "id": 1181040414, "nodes": [1203847209, 1203847195, 11061512912, 11061512916, 11061512921, 10968366795], "tags": {"covered": "yes", "highway": "footway", "shade": "yes"}}, {"type": "way", "id": 1181040415, "nodes": [10966341209, 10968366796], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1181040417, "nodes": [10968366799, 10966341190, 10968366800], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1182170362, "nodes": [565714231, 1752467540, 1752467538, 2053142710, 2053142680, 3452092473, 2053142693, 1752467531], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 1182170363, "nodes": [1752467545, 565714231], "tags": {"bicycle": "yes", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 1182170364, "nodes": [565714231, 11016216297, 10927499975], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "motor_vehicle": "no", "name": "Carril bici del Paseo de la Castellana", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1183725678, "nodes": [1339493706, 1339493591], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1183725679, "nodes": [1339493591, 1339493488, 1339493574], "tags": {"crossing": "uncontrolled", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1183725680, "nodes": [1339493362, 4131272770, 1339493673, 1339493706], "tags": {"crossing": "uncontrolled", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1183725681, "nodes": [1339493574, 10992413038, 10992413039, 10992413040, 10992413041, 10992413042, 10992413043, 10992413044, 10992413045, 2759785987], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1183725682, "nodes": [10992413047, 2759785989, 2759785993, 2759786010, 2759785995, 2759785997, 2961204204, 2759786000], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1183725683, "nodes": [10992413046, 3425361815, 10992413047], "tags": {"crossing": "uncontrolled", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1183725684, "nodes": [10992413046, 10992413031, 10992413032, 10992413033, 10992413034, 10992413035, 10992413036, 10992413037], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1183725685, "nodes": [2759785987, 10992413047], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1186014734, "nodes": [25902675, 1759501555], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014735, "nodes": [394684646, 25902675], "tags": {"cycleway:both": "no", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "maxspeed:type": "ES:zone30", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "postal_code": "28046", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014736, "nodes": [394684646, 1759501559], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014737, "nodes": [1759501559, 1759501555], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 1186014738, "nodes": [1759501559, 1311052159, 25902677], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014739, "nodes": [1759501555, 1759501551, 25902678], "tags": {"cycleway:right": "no", "foot": "no", "highway": "primary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Plaza del Doctor Mara\u00f1\u00f3n", "name:etymology:wikidata": "Q708559", "oneway": "yes", "shoulder": "no", "sidewalk": "no", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 1186014740, "nodes": [1759501555, 1759501515, 1759501505], "tags": {"access": "no", "highway": "service", "lanes": "1", "name": "Paseo de la Castellana", "name:etymology:wikidata": "Q1473674", "oneway": "yes", "psv": "yes", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 1190823350, "nodes": [4626597069, 11056722063, 11056722064, 11056722065, 11056722073, 11056722066, 11056722067, 11056722068, 11056722069, 11056722070, 11056722072, 11056722071, 4626597062], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1201728769, "nodes": [11141805128, 3927597013, 3927597014, 25906300], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Santa Br\u00edgida", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 1201759996, "nodes": [4498622039, 6348197426, 6380793481, 6501186711, 6501186712, 6501186713, 6380794337, 6380794336, 6348197429, 9549391156, 6348197428, 11142044321], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1201759997, "nodes": [6348196566, 6348196565, 6348196564, 6348196563, 6348196562, 11142044322], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1201759998, "nodes": [11142044321, 6238487901, 11142044322], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1202697113, "nodes": [1339493499, 2093538983, 1339493580, 1339493463, 1339493546, 1339493548, 1339493428, 3089542102, 1339493397, 1339493439, 1339493516, 1339493662, 1339493695, 1339493648, 3233003278, 1339493396, 1339493509, 4131272655], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 1202697119, "nodes": [1339493666, 4131272677], "tags": {"crossing": "traffic_signals;marked", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1204038594, "nodes": [4153824136, 11159850014], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2011", "surface": "asphalt"}}, {"type": "way", "id": 1204038595, "nodes": [4110020878, 11159850016, 11159850017, 11159850026, 11159850018, 11159850019, 11159850020, 11159850021, 11159850022, 11159850023, 11159850024, 11159850025, 4457193355], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1204038596, "nodes": [6981674374, 4110020861], "tags": {"highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 1204038597, "nodes": [8646829052, 11159850028], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1204038598, "nodes": [11159850029, 1179022518, 11159850028], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1204038599, "nodes": [11159850029, 11159850030, 11159850031, 11159850032, 11159850033, 11159850034, 11159850035, 11159850036], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1204038600, "nodes": [8646829052, 11159850037, 11159850038, 11159850039, 11159850040, 4110020856], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1205576792, "nodes": [11172580734, 11172580731, 11172580732, 11172580733], "tags": {"highway": "living_street", "layer": "-1"}}, {"type": "way", "id": 1205576793, "nodes": [11172580730, 11525423852, 11172580735], "tags": {"highway": "living_street", "layer": "-1"}}, {"type": "way", "id": 1205576794, "nodes": [11172580735, 11172580734], "tags": {"highway": "living_street", "layer": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1208526525, "nodes": [11200852770, 1505081180, 1505081192], "tags": {"crossing": "marked", "crossing:island": "yes", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1208895839, "nodes": [11200863931, 11200863932, 11200863933, 11200863934, 11200863916, 11200863919, 11200863920, 11200863921, 11200863922, 11200863917, 11200863923, 11200863924, 11200863925, 11200863926, 11200863918, 11200863927, 11200863928, 11200863929, 11200863930, 150760950, 11200863931], "tags": {"highway": "residential", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 1209149087, "nodes": [11203180090, 11203180091, 11203180092, 11203180093, 11203180094, 11203180095, 11203180096, 11203180097], "tags": {"highway": "unclassified", "lanes": "1", "maxspeed": "30", "motor_vehicle": "no", "surface": "paved"}}, {"type": "way", "id": 1210948388, "nodes": [25906140, 370503470], "tags": {"access": "private", "foot": "yes", "highway": "pedestrian", "name": "Calle de Orellana", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 1211675396, "nodes": [4428052288, 26579184, 344601408, 4428052280], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 1211675397, "nodes": [4536099181, 1669117762, 11225754836], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 1211675398, "nodes": [4583258880, 1669117831, 11225754937], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 1211675399, "nodes": [4437536686, 1669117747, 11225754938], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 1211675400, "nodes": [4536099182, 1669117805, 11225754939], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675401, "nodes": [4280384808, 11225754942, 11225754943, 4470298003, 11225754944, 11225754945, 11225754946, 11225754947, 4280384806], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1211675402, "nodes": [11225754941, 1669117752, 11225754943], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675403, "nodes": [11225754946, 2525814070, 11225754948], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675404, "nodes": [11225754949, 1669117800, 11225754947], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675405, "nodes": [11225754950, 1669117836, 11225754951], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675406, "nodes": [11225754952, 2525814073, 11225754953], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675407, "nodes": [11225754953, 11225754948, 11225754954, 11225754955, 11225754956, 11225754957, 11225754958, 11225754959, 11225754960, 11225754953], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675408, "nodes": [11225754956, 1596698153, 11225754961], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675409, "nodes": [11225754957, 1596698152, 11225754962], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675410, "nodes": [11225754960, 1596698156, 11225754963], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675411, "nodes": [11225754964, 1596698157, 11225754965], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675412, "nodes": [11225754966, 4437576923, 11225754967], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675413, "nodes": [11225754959, 4437576921, 11225754968], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675414, "nodes": [11225754967, 11225754968, 11225754969, 11225754970, 26153007, 11225754971, 11225754972, 11225754984, 11225754973, 11225754974, 11225755002, 11225754975, 11225754976, 4249577921, 11225754977, 11225754978, 11225754967], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675415, "nodes": [11225754972, 1596698151, 11225754969], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675416, "nodes": [11225754977, 1596698154, 11225754980], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675417, "nodes": [11225754978, 1596698155, 11225754981], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675418, "nodes": [6440420381, 1596698146, 11225754982], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675419, "nodes": [11225754983, 1596698148, 11225754984], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675420, "nodes": [11225754961, 11225754985, 11225754986, 11225754987, 11225754982, 11225754983, 11225754988, 11225754962, 11225754961], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675421, "nodes": [11225754974, 1596698145, 11225754989], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675422, "nodes": [11225754989, 11225754990, 11225754991, 11225754998, 11225754992, 2540742104, 11225754993, 11225754994, 11225755129, 11225754995, 11225755126, 11225754996, 11225754997, 11225754989], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675423, "nodes": [11225754999, 1596698119, 2540742104, 1596698123, 11225755000], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "horse": "no", "lit": "yes", "surface": "paved", "width": "7"}}, {"type": "way", "id": 1211675424, "nodes": [11225754990, 11225755001, 11225755002], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675425, "nodes": [11225754991, 11225755003, 11225755004], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675426, "nodes": [11225754976, 1596698144, 11225755005], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675427, "nodes": [11225755006, 1596698141, 11225755007], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675428, "nodes": [11225755004, 11225755007, 11225755008, 11225755009, 11225755024, 11225755010, 11225755011, 11225755070, 11225755012, 11225755000, 11225755014, 11225755013, 11225755004], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675429, "nodes": [11225755014, 11225755015, 11225755016, 11225755017, 11225755018, 11225755019, 11225755020, 11225755021, 11225755022, 11225755023, 11225755024], "tags": {"highway": "footway"}}, {"type": "way", "id": 1211675430, "nodes": [11225755022, 11225755025, 11225755026, 11225755027, 11225755028, 11225755029], "tags": {"highway": "footway"}}, {"type": "way", "id": 1211675431, "nodes": [11225755026, 11225755030, 11225755031, 11225755016], "tags": {"highway": "footway"}}, {"type": "way", "id": 1211675432, "nodes": [11225755028, 11225755032, 11225755033, 11225755034, 11225755035, 11225755031], "tags": {"highway": "footway"}}, {"type": "way", "id": 1211675433, "nodes": [11225755023, 11225755036, 11225755037], "tags": {"highway": "footway"}}, {"type": "way", "id": 1211675434, "nodes": [11225755038, 1596698139, 11225755008], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675435, "nodes": [11225755039, 1596698143, 11225755040], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675436, "nodes": [11225755009, 4637125719, 11225755041, 1596698138, 11225755042], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675437, "nodes": [11225755041, 11225755044, 11225755045, 11225755057, 11225755046, 8916338259, 11225755047, 11225755048, 11225755041], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675438, "nodes": [11225755049, 4416845743, 11225755048], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675439, "nodes": [11225755050, 11225755051, 11225755052, 11225755053, 11225755054, 11225755055, 11225755056, 11225755050], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675440, "nodes": [11225755057, 11225755058, 11225755052], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675441, "nodes": [11225755046, 4416845740, 11225755053], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675442, "nodes": [11225755010, 4637125717, 11225755050], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675443, "nodes": [11225755056, 4637125716, 11225755059], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675444, "nodes": [11225755011, 1596698117, 11225755060], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675445, "nodes": [11225755061, 1596698113, 11225755062], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675446, "nodes": [11225755063, 11225755064, 11225755065, 11225755066, 11225755060, 11225755061, 11225755067, 11225755068, 11225755063], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675447, "nodes": [11225755066, 11225755069, 11225755070], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675448, "nodes": [11225755065, 1596698115, 11225755071], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675449, "nodes": [11225755071, 11225754999, 11225755072, 11225755073, 11225755122, 11225755074, 11225755075, 11225755076, 11225755071], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1211675450, "nodes": [11225755077, 1596698116, 11225755072], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675451, "nodes": [11225755077, 11225755078, 11225755130, 11225755079, 11225755080, 11225755089, 11225755081, 11225755082, 11225755077], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675452, "nodes": [11225755083, 11225755131, 11225755084, 11225755108, 11225755085, 11225755086, 11225755123, 11225755087, 11225755090, 11225755083], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675453, "nodes": [11225755080, 11225755088, 11225755083], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675454, "nodes": [11225755089, 1596698108, 11225755090], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675455, "nodes": [4470285257, 1596698107, 11225755097], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675456, "nodes": [4470285261, 1596698105, 4110020875], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675457, "nodes": [4470285260, 1596698104, 11225755098], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675458, "nodes": [6441681707, 1378696873, 4110020868], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675459, "nodes": [6441681707, 11225755099, 11225755098, 11225755100, 11225755101, 6441681709, 6441681706, 6441681708, 6441681707], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675460, "nodes": [6441681711, 6441681710, 6441681709], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675461, "nodes": [4470285256, 1596698102, 11225755100], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675462, "nodes": [11225755101, 1596698098, 11225755102], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675463, "nodes": [11225755094, 1596698101, 11225755103], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675464, "nodes": [6441681714, 11225755104, 11225755106, 11225755105, 11225755103, 11225755102, 6441681711, 6441681712, 8646860731, 6441681704, 6441681713, 6441681714], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675465, "nodes": [11225755095, 1596698100, 11225755106, 1596698097, 11225755107, 1596698099, 11225755108], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675466, "nodes": [11225755107, 11225755109, 11225755110, 11225755120, 11225755111, 11225755112, 11225755113, 11225755114, 11225755107], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675467, "nodes": [11225755110, 1596698085, 11225755115], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675468, "nodes": [6441681715, 11225755115, 11225755116, 11225755121, 11225755117, 11225755118, 6441681719], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675469, "nodes": [6441681715, 1179022148, 6441681714], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675470, "nodes": [4110020852, 1179021796, 913080868, 11225755119], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1211675471, "nodes": [6441681719, 6441681718, 6441681717, 7864693889, 6441681716, 6441681715], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675472, "nodes": [6441681720, 1596698083, 6441681719], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1211675473, "nodes": [11225755120, 1596698084, 11225755121], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675474, "nodes": [11225755122, 1596698103, 11225755123], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675475, "nodes": [11225755076, 11225755124, 11225755064], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675476, "nodes": [11225755075, 1596698096, 11225755113], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675477, "nodes": [11225755125, 1596698127, 11225755126], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675478, "nodes": [11225755127, 1596698122, 11225755128], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675479, "nodes": [11225755129, 1596698121, 11225755130], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1211675480, "nodes": [11225755131, 1596698106, 11225755132], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675481, "nodes": [4536099180, 1669117724, 11225755133], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 1211675482, "nodes": [11225755133, 11225755139, 11225755134, 11225755135, 4470297995, 4470297993, 11225755136, 4428052263, 11225755137, 11225755133], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1211675483, "nodes": [11225755137, 11225755138, 11225755139], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1211675484, "nodes": [11225755140, 11225755147, 11225755169, 11225755142, 11225755141], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1211675485, "nodes": [11225755142, 11225755167, 11225755143, 11225755170, 11225755150, 11225755144, 11225755166, 11225755145, 11225755146, 11225755147], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1211675486, "nodes": [11225755143, 11225755155, 11225755148, 11225755149, 11225755150], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "surface": "paving_stones"}}, {"type": "way", "id": 1211675487, "nodes": [11225755151, 11225755152, 11225755153, 11225755154], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1211675488, "nodes": [11225755155, 11225755156, 11225755157, 11225755158, 11225755159, 11225755160, 11225755165, 11225755161, 11225755164, 11225755162, 11225755163, 11225755152], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "surface": "paving_stones"}}, {"type": "way", "id": 1211675489, "nodes": [11225755166, 11225755168, 11225755167], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1211675490, "nodes": [11225755170, 11225755168, 11225755169], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1217439339, "nodes": [11280466187, 587643325, 2480629206], "tags": {"bus": "designated", "highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1217439340, "nodes": [11280466189, 1505081037, 937660053], "tags": {"bus": "designated", "highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes", "psv:lanes": "yes|no", "surface": "asphalt"}}, {"type": "way", "id": 1217444756, "nodes": [8577075130, 26578946], "tags": {"bicycle": "designated", "bicycle:lanes": "no|no|designated", "cycleway:lanes": "no|no|shared_lane", "foot": "no", "highway": "primary", "lanes": "3", "lit": "yes", "maxspeed": "50", "maxspeed:lanes": "50|50|30", "maxspeed:type": "sign", "name": "Calle de la Princesa", "name:etymology:wikidata": "Q5740935", "oneway": "yes", "postal_code": "28008", "sidewalk": "no", "smoothness": "excellent", "source:name": "common knowledge", "surface": "asphalt", "vehicle": "yes"}}, {"type": "way", "id": 1220364041, "nodes": [11308306880, 11408268315, 11308306881], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364042, "nodes": [5003967823, 11308306881], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364043, "nodes": [5003967824, 11308306882], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364044, "nodes": [5003613394, 11308306883], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364045, "nodes": [5003613395, 11308306884], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364046, "nodes": [5002571275, 11308306885], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364047, "nodes": [5003613397, 11308306886], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364048, "nodes": [5003802453, 11308306887], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364049, "nodes": [5007921393, 11308306888], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364050, "nodes": [5003912690, 11308306889], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364051, "nodes": [6450370646, 11308306890], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364052, "nodes": [8777714421, 11308306891], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364053, "nodes": [8583242886, 11308306892], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364054, "nodes": [5000379721, 11308306893], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364055, "nodes": [5000712440, 11308306894], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364056, "nodes": [6450370649, 11308306895], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364057, "nodes": [5000654864, 11308306896], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364058, "nodes": [5000631027, 11308306897], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1220364059, "nodes": [6450370650, 11308306898], "tags": {"highway": "corridor", "indoor": "yes", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1225234101, "nodes": [11362355032, 1591330252, 3474119018], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1225234102, "nodes": [8583841211, 1591330247, 5676700328, 11362355011], "tags": {"footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1226953467, "nodes": [345538475, 1915012227, 1915012228, 11377765528], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1227220243, "nodes": [98958747, 1591330244, 9157684326], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Santa Feliciana", "oneway": "no", "postal_code": "28010", "surface": "asphalt"}}, {"type": "way", "id": 1227322824, "nodes": [3971001258, 11381137918, 11381137921], "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 1227322829, "nodes": [11381137921, 3971000869], "tags": {"crossing:island": "no", "footway": "sidewalk", "highway": "footway", "incline": "down", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 1227322831, "nodes": [1500124642, 3575366935, 3575366940, 11381137922, 11381137923, 11381137924, 11381137955, 11381137925], "tags": {"footway": "sidewalk", "handrail": "yes", "highway": "footway", "lit": "yes", "ramp": "no", "step_count": "1", "surface": "paving_stones"}}, {"type": "way", "id": 1227322832, "nodes": [4583282626, 2459056920, 11381137928], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "yes", "footway": "crossing", "handrail": "yes", "highway": "footway", "ramp": "no", "step_count": "1", "surface": "asphalt"}}, {"type": "way", "id": 1227322833, "nodes": [11381137940, 11381137939, 11381137938, 11690216374, 11381137937, 11381137936, 11381137935, 11381137934, 11381137928, 11381137929, 11381177034], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1227322834, "nodes": [11381137929, 2448104606], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1227322835, "nodes": [11381137933, 3575366933], "tags": {"handrail": "yes", "highway": "footway", "ramp": "no", "step_count": "0"}}, {"type": "way", "id": 1227322836, "nodes": [2462922516, 11381137933], "tags": {"handrail": "no", "highway": "steps", "ramp": "no", "step_count": "8", "tactile_paving": "no"}}, {"type": "way", "id": 1227322837, "nodes": [11381137932, 2462922516], "tags": {"handrail": "yes", "highway": "footway", "ramp": "no", "step_count": "1"}}, {"type": "way", "id": 1227322838, "nodes": [11381137931, 11381137932], "tags": {"handrail": "no", "highway": "steps", "ramp": "no", "step_count": "4", "tactile_paving": "no"}}, {"type": "way", "id": 1227322839, "nodes": [11381137935, 11690717953], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "tactile_paving": "no"}}, {"type": "way", "id": 1227322840, "nodes": [11381137922, 3575366943, 3575366944], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1227322841, "nodes": [11381137925, 11381137926, 11381137927, 11381137962, 11381137963, 11381137966, 11381137967, 11381137968, 11381176987, 11381176969, 11381176970, 11381176971, 11381176972, 11381176973, 11381176989], "tags": {"footway": "sidewalk", "handrail": "yes", "highway": "footway", "lit": "yes", "ramp": "no", "step_count": "0", "surface": "paving_stones"}}, {"type": "way", "id": 1227322842, "nodes": [4583282626, 11381137963, 2462922514, 2462922515], "tags": {"footway": "sidewalk", "handrail": "yes", "highway": "footway", "lit": "yes", "ramp": "no", "step_count": "0", "surface": "paving_stones"}}, {"type": "way", "id": 1227322844, "nodes": [11381176974, 11381176975, 11381176976, 11381176977, 11381176978, 11381176984, 11381176979, 11381176980, 11381176981, 11381176982, 11381176983], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1227322845, "nodes": [11381176984, 2459163120], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1227322846, "nodes": [11381176988, 2462922547, 11381176986], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "handrail": "yes", "highway": "footway", "lit": "yes", "ramp": "no", "step_count": "0", "surface": "paving_stones"}}, {"type": "way", "id": 1227322847, "nodes": [11381176986, 11381176973], "tags": {"footway": "sidewalk", "handrail": "yes", "highway": "footway", "lit": "yes", "ramp": "no", "step_count": "0", "surface": "paving_stones"}}, {"type": "way", "id": 1227322848, "nodes": [11381176994, 4536044167], "tags": {"highway": "footway"}}, {"type": "way", "id": 1227322849, "nodes": [11381176995, 11381176994], "tags": {"handrail": "no", "highway": "steps", "step_count": "5", "tactile_paving": "no"}}, {"type": "way", "id": 1227322851, "nodes": [4536044168, 11381176998, 3575366931], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1227322852, "nodes": [11381176997, 11381176998, 11381176999], "tags": {"highway": "service"}}, {"type": "way", "id": 1227322853, "nodes": [11381177009, 1500124644], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1227322854, "nodes": [4548425537, 1500124640], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1227322855, "nodes": [11381177025, 1770052216, 11381177028], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1227322856, "nodes": [11381177013, 11381177014], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1227322857, "nodes": [4630240468, 11645339829, 11381177025], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1227322858, "nodes": [11381177028, 11645339828, 11381177029, 3575366947], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1227322859, "nodes": [11381177027, 1770052218, 11381177013], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1227322860, "nodes": [11381177026, 11381177027], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1227322861, "nodes": [4630240459, 4630240460, 11381177030], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1227322862, "nodes": [11381177030, 1770052237, 4519526434], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 1227322863, "nodes": [11381177033, 11381137930, 11381176988], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1227322864, "nodes": [11381177034, 11381177033], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1230166475, "nodes": [11408056409, 11408056410], "tags": {"highway": "footway"}}, {"type": "way", "id": 1230166476, "nodes": [11408056408, 11408056409], "tags": {"highway": "steps"}}, {"type": "way", "id": 1230166477, "nodes": [11408056412, 11377765529, 11408056411, 11408056408], "tags": {"highway": "footway"}}, {"type": "way", "id": 1230181919, "nodes": [11308306880, 6318921544], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181920, "nodes": [1869400490, 11308306889], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181921, "nodes": [11308306889, 6450370645], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181922, "nodes": [11308306888, 6318921553], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181923, "nodes": [6318921556, 11308306882], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181924, "nodes": [11308306882, 11308306887], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181925, "nodes": [11308306883, 11308306886], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181926, "nodes": [11308306886, 11308306884], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181927, "nodes": [11308306885, 6318921555], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181928, "nodes": [11308306887, 11308306883], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181929, "nodes": [6450370648, 11308306890, 1869400495], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181930, "nodes": [11308306898, 6318921557], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181931, "nodes": [6318921558, 11308306891], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181932, "nodes": [11308306897, 6318921558], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181933, "nodes": [11308306892, 11308306897], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181934, "nodes": [11308306893, 11308306892], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181935, "nodes": [11308306896, 11308306893], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181936, "nodes": [6318921560, 11308306895], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1230181937, "nodes": [11308306895, 11308306894], "tags": {"highway": "corridor", "indoor": "yes", "layer": "-1", "level": "-1", "tunnel": "yes"}}, {"type": "way", "id": 1236908646, "nodes": [11486687686, 11486687685, 11486687684], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 1240524415, "nodes": [8587019157, 8587019156, 1801212171], "tags": {"highway": "footway"}}, {"type": "way", "id": 1240524416, "nodes": [3802947037, 11525423827, 11525423808, 11525423809, 8778804404, 1654250215, 11525423810, 11525423811, 11525423812, 11525423813, 11525423815, 11525423816, 11525423817, 11525423818, 1613048646, 11525423819, 11525423820, 11525423821, 11525423822, 11525423823, 11525423824, 11525423825, 11525423826, 1203847155], "tags": {"footway": "sidewalk", "highway": "footway", "name": "Calle de Bravo Murillo"}}, {"type": "way", "id": 1240524417, "nodes": [2972892296, 9998406812, 9998406811, 9998406810, 9998406809], "tags": {"footway": "sidewalk", "highway": "footway", "source": "PNOA", "source:date": "2020", "surface": "paving_stones"}}, {"type": "way", "id": 1240524418, "nodes": [3418224234, 298157773], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524419, "nodes": [298157709, 298157772, 3418224225], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524420, "nodes": [3418224225, 7068076318], "tags": {"footway": "sidewalk", "highway": "footway", "name": "Calle de Bravo Murillo"}}, {"type": "way", "id": 1240524421, "nodes": [7068076318, 2972941337], "tags": {"highway": "footway"}}, {"type": "way", "id": 1240524422, "nodes": [7068076319, 11525423828, 11525423829, 11525423830, 2972941176, 11525423831, 11525423832, 11525423833, 11525423834, 11525423835], "tags": {"footway": "sidewalk", "highway": "footway", "name": "Calle de Bravo Murillo"}}, {"type": "way", "id": 1240524423, "nodes": [11525423835, 11525423836, 11525423837, 11525423838, 11525423839, 11525423840, 11525423841, 11525423842, 3096525843], "tags": {"footway": "sidewalk", "highway": "footway", "name": "Glorieta de Quevedo"}}, {"type": "way", "id": 1240524424, "nodes": [3096525836, 3096525837, 3096525838, 3096525843], "tags": {"highway": "footway"}}, {"type": "way", "id": 1240524425, "nodes": [3096525836, 11525423843, 11525423844, 11525423845, 11525423846, 2972993211, 11525423847, 11525423848, 11525423849, 11525423850, 1596698088, 11525423851], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1240524426, "nodes": [11525423851, 6314751499, 6314751498, 6314751497, 11525423852, 6314751532], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524427, "nodes": [6314751532, 11525423853, 6314751516, 6314751515, 6314751514, 6314751513, 6314751512, 6314751511, 6314751530], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524428, "nodes": [11525423854, 6314750382, 6314751528, 6314750381, 6314750380, 6314750379, 6314750378, 6314751496, 6314751529], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524429, "nodes": [6314751485, 6314750384, 6314750383, 11525423854], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1240524430, "nodes": [11525423854, 1651583798, 2973015554, 11525423855, 11225233751, 11525423856, 11525423857, 11220757842, 11525423858, 11220779544, 11525423861, 11525423860, 11525423859, 11525423862, 9712059180, 11525478869, 11525423863, 11525423865, 11525423866, 11525478870, 11525478872, 11525478871, 3927640950, 11525423867, 11525423868, 11525478873, 4110068970], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "name": "Calle de San Bernardo"}}, {"type": "way", "id": 1240524431, "nodes": [4179587976, 11525423859], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1241312282, "nodes": [4827704136, 11533548037], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312283, "nodes": [11533572569, 11533572570, 11533572571, 11533572635, 11533572572, 11533572573, 11533572574, 11533572625, 11533572580, 11533548037, 11533572583, 11533548038, 11533548039, 11533548040], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312284, "nodes": [11533572575, 11533572576], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312285, "nodes": [11533572576, 11533572578, 11533572579], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312286, "nodes": [11533572579, 11533572580], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312288, "nodes": [11533572582, 11533572583], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312289, "nodes": [11533572584, 11533572585, 11533572582], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312290, "nodes": [11533572586, 11533572584], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312291, "nodes": [11533548040, 11533548041, 11533548042, 11533548043, 11533548044, 11533572592, 11533548045, 11533548046, 11533548047, 11533548048, 11533548049, 11533548050, 11533548051, 11533548052, 11533548053, 11533548054, 11533548055, 11533548056, 11533548057, 11533548058, 11533548059], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312292, "nodes": [11533548040, 4909154233], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1241312293, "nodes": [11533548039, 4909154231], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1241312294, "nodes": [11533572587, 11533572590, 11533548043], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312295, "nodes": [11533572588, 26067301, 11533572587], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312296, "nodes": [11533572589, 11533572603, 11533572588], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312297, "nodes": [11533572591, 11533572602, 11533572592], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312298, "nodes": [11533572593, 1651583795, 11533572591], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312299, "nodes": [11533572594, 11533572601, 11533572593], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312300, "nodes": [11533548045, 4909154224], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1241312301, "nodes": [11533548046, 4909154222], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1241312302, "nodes": [11533572605, 11533572606, 11533572607], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312303, "nodes": [11533572608, 11533572609, 11533572605], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312304, "nodes": [11533548050, 11533572610, 11533572608], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312305, "nodes": [11533572611, 11533572612, 11533572607], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312306, "nodes": [11533572613, 11533572614, 11533572611], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312307, "nodes": [11533572615, 11533572616, 11533572613], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312308, "nodes": [11533572617, 11533572618], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312309, "nodes": [11533572619, 2551347562, 11533572617], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312310, "nodes": [11533572620, 11533572619], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312311, "nodes": [11533548059, 11533548060, 11533548061, 11533572621], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312312, "nodes": [11533572621, 11533572623, 11533572622], "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "smoothness": "good", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 1241312313, "nodes": [11533572622, 11533548062, 11533548063, 11533548064, 11533548065, 11533548066, 11533548067, 11533548068], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312314, "nodes": [11533548068, 11533572569], "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "smoothness": "good", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 1241312315, "nodes": [11533572624, 11533572625], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312316, "nodes": [11533572626, 11533572627, 11533572624], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312317, "nodes": [11533572628, 11533572626], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312318, "nodes": [11533572629, 11533572630], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312319, "nodes": [11533572631, 11533572632, 11533572629], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312320, "nodes": [11533572633, 11533572631], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312321, "nodes": [11533572634, 11533572635], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312322, "nodes": [11533572636, 11533572637, 11533572634], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312323, "nodes": [11533572638, 11533572636], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312324, "nodes": [11533572639, 11533572640], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312325, "nodes": [11533572641, 4827701833, 11533572639], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312326, "nodes": [11533572642, 11533572641], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312327, "nodes": [11533572643, 11533572644], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1241312328, "nodes": [11533572645, 1651583800, 11533572643], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1241312329, "nodes": [11533572646, 11533572645], "tags": {"footway": "sidewalk", "highway": "footway", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1244023643, "nodes": [11563811456, 1286234982, 11563811459, 11563811463, 11563811464, 11563811457, 11563811458], "tags": {"highway": "service", "service": "parking_aisle"}}, {"type": "way", "id": 1252825683, "nodes": [11645324625, 3232901611], "tags": {"highway": "footway", "surface": "paved"}}, {"type": "way", "id": 1252825684, "nodes": [11645324626, 11645324625], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825685, "nodes": [3232901589, 3575383405], "tags": {"highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825686, "nodes": [11645324645, 11645324646, 11645324647, 11645324648, 11645324649, 11645324652], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825687, "nodes": [11645324638, 3575378570, 3232901611], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825688, "nodes": [11645339804, 11645339802, 11645339801, 11645339800, 11645339799, 11645339798, 11645339797, 11645339796, 11645339795, 11645339794, 11645339793, 11645339813], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825689, "nodes": [11645324640, 11645324641, 11645324639], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825690, "nodes": [11645324642, 3575378568, 11645324639], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825691, "nodes": [11645324642, 11645324643, 11645324644, 3575378567], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825692, "nodes": [11645324637, 3575378568, 11645324645, 11645324650], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825693, "nodes": [11645324651, 11645324652, 2448104593], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825694, "nodes": [11645324650, 11645324651], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "step_count": "6", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825697, "nodes": [11645324668, 11645324665], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "step_count": "11", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825698, "nodes": [11645324664, 11645324666], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "step_count": "11", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825699, "nodes": [11645324666, 11645324667], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825700, "nodes": [11645324667, 11645339769], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "step_count": "11", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825701, "nodes": [11645339769, 11645324668], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1252825702, "nodes": [3232901624, 3575366976], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825703, "nodes": [11645339776, 11645339777, 11645339778, 11645339779, 11645339780], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 1252825704, "nodes": [3232901624, 11645339771, 2900420513, 11645339781, 11645339782, 10540247650], "tags": {"highway": "path", "informal": "yes", "smoothness": "bad", "surface": "ground"}}, {"type": "way", "id": 1252825705, "nodes": [11645339783, 11645339784], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825706, "nodes": [11645339776, 3575366977], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825707, "nodes": [11645339786, 11645339780], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825708, "nodes": [11645339787, 10540247651], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825709, "nodes": [3575378578, 11645339788, 11645339789], "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "no"}}, {"type": "way", "id": 1252825710, "nodes": [11645339803, 2448267187, 11645339804], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825711, "nodes": [11645339812, 11645339789], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825712, "nodes": [11645339814, 11645339792, 11645339810, 11645339791, 11645339812, 11645339790, 11645339811, 3575378575, 3575378573, 3575378569, 11645324640], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825713, "nodes": [11645339813, 11645339815, 11645339814], "tags": {"crossing": "unmarked", "crossing:island": "no", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "no"}}, {"type": "way", "id": 1252825716, "nodes": [11645339802, 11690717985, 11690717886, 11690717906, 11690717899, 11645339827, 3575366947, 3575366946, 3575366945, 3575366944, 11381137945, 11381137946, 11381137947, 11381137948, 11381137942], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1252825717, "nodes": [11645339824, 1770052219, 11645339823], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825718, "nodes": [11645339821, 11645339826, 11645339824], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1252825719, "nodes": [11645339823, 11645339825, 11645339827], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1252825720, "nodes": [3575366987, 3575366982, 3575366969, 4257948309, 3575366968, 3575366966, 3575366964, 3575366962, 3575366963, 3575366960, 3575366958, 3575366959, 3575366961, 3575366970], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825721, "nodes": [3575366970, 11645339832], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825722, "nodes": [11645339833, 11645339835, 11645339834], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825723, "nodes": [11645339836, 11645339833], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825724, "nodes": [11645339834, 11645339838], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825725, "nodes": [3575366989, 2900420503], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825726, "nodes": [11645339843, 3575366990, 3575366989, 3575366986, 11645339837, 11645339838, 11645339839, 11645339840, 11645339841], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 1252825727, "nodes": [11645339843, 11645339844], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825728, "nodes": [11645339844, 3575367195, 11645339845], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825729, "nodes": [11645339845, 3575367197], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825730, "nodes": [11645339847, 4108431407, 1339493628, 3575367214, 11645339846, 11645339865, 3575367206, 3575367202, 4108431403, 3575367199, 3575367197], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 1252825731, "nodes": [11645339847, 11645339849], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825732, "nodes": [11645339849, 1339493656, 11645339850], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825733, "nodes": [11645339850, 11645339848], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825734, "nodes": [4892388518, 11645339852], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825735, "nodes": [11645339852, 11645339853, 11645339854], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825736, "nodes": [11645339854, 4892388725], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "compacted"}}, {"type": "way", "id": 1252825737, "nodes": [11645339832, 3575366985, 11645339858], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825738, "nodes": [11645339858, 11645339857], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825739, "nodes": [11645339857, 3575367198], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825740, "nodes": [3575367198, 11645339859], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1252825741, "nodes": [11645339860, 11645339861, 11645339862], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825742, "nodes": [11645339865, 11645339862], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "unhewn_cobblestone"}}, {"type": "way", "id": 1252825743, "nodes": [11645339860, 3575367207], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1252825744, "nodes": [11645339869, 9116676722], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1252825745, "nodes": [11645339868, 11645339870, 11645339869], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1252825746, "nodes": [11645339876, 11645339877, 11645339878], "tags": {"crossing": "traffic_signals", "crossing:markings": "dots", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1252825747, "nodes": [11645339878, 11645339879, 11645339880], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825748, "nodes": [9116676723, 11645339881, 11645339876], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825749, "nodes": [11645339884, 11645339885, 11645339886], "tags": {"crossing": "traffic_signals", "crossing:markings": "dots", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1252825750, "nodes": [11645339886, 11645339887, 6380794203], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1252825751, "nodes": [11645339888, 11645339889, 11645339884], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1256068886, "nodes": [11676998739, 11676998741, 11676998740], "tags": {"highway": "service", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 1256068887, "nodes": [8911132530, 11676998739], "tags": {"highway": "service", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 1257362847, "nodes": [11690216376, 11690216374], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "step_count": "7", "surface": "paving_stones"}}, {"type": "way", "id": 1257362848, "nodes": [11690216371, 11690216375], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "step_count": "14"}}, {"type": "way", "id": 1257362849, "nodes": [11690216375, 11690216372, 11690216376], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1257362850, "nodes": [11690216371, 11690216373], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1257437161, "nodes": [11690717969, 11690717876], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437162, "nodes": [11381177022, 11690717973], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437163, "nodes": [1993853754, 1993853757, 1993853730, 11645324664], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1257437164, "nodes": [11690678639, 11690717882], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437165, "nodes": [11690717983, 11690718001, 11690755768, 11690717923, 11690678640, 11690717954, 11690717971, 11690717902, 4506829281], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437166, "nodes": [3232901623, 11690717962], "tags": {"handrail:center": "yes", "highway": "steps", "incline": "up", "step_count": "5", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1257437167, "nodes": [11690678644, 11690717964], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 1257437168, "nodes": [11690717896, 11690717884, 11690717963, 11381137940, 11690678641], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1257437169, "nodes": [11690717911, 11690718020], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437170, "nodes": [11690718020, 4630240464, 11690678667], "tags": {"footway": "crossing", "highway": "footway", "surface": "asphalt"}}, {"type": "way", "id": 1257437171, "nodes": [11690718014, 4257948308], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437172, "nodes": [11690717932, 11690717893], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437173, "nodes": [11690717892, 4630240469, 1770052217], "tags": {"access": "no", "highway": "service"}}, {"type": "way", "id": 1257437174, "nodes": [4506829282, 11690718000, 11690718013, 11690717983], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437175, "nodes": [3575366947, 11690717998], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1257437176, "nodes": [11690717953, 11690678641], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "tactile_paving": "no"}}, {"type": "way", "id": 1257437177, "nodes": [11690678640, 11690717995], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437178, "nodes": [11381177023, 11690678652], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437179, "nodes": [11690717991, 11690717936, 11690717905, 11690718008], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437180, "nodes": [11690717946, 11690717869], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437181, "nodes": [11690718001, 11690718017], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437182, "nodes": [11690717966, 11690717912], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437183, "nodes": [11690718015, 11690717987], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437184, "nodes": [11690717949, 3575366967, 1212072795, 11690717941], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1257437185, "nodes": [11690717993, 11690717989], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437186, "nodes": [11690717976, 11690717961], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437187, "nodes": [11690717890, 27508181, 11690718014], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1257437188, "nodes": [11690718013, 11690718019], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437189, "nodes": [11690717881, 11690717990], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 1257437190, "nodes": [11690718016, 3575367194], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437191, "nodes": [3232901621, 1993853754], "tags": {"handrail": "no", "handrail:center": "yes", "highway": "steps", "incline": "up", "step_count": "4", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1257437192, "nodes": [11690717956, 11690678649], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437193, "nodes": [11690717962, 3232901622, 3232901621], "tags": {"handrail": "no", "highway": "footway", "incline": "up", "surface": "paved", "tactile_paving": "no"}}, {"type": "way", "id": 1257437194, "nodes": [11690717897, 11690718009], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437195, "nodes": [11690717897, 11690717950, 11690717972, 4630240463, 4630240462, 4630240459, 4630240461], "tags": {"highway": "footway", "source": "PNOA", "source:date": "2014", "surface": "paving_stones"}}, {"type": "way", "id": 1257437197, "nodes": [4257948304, 11690717949], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437198, "nodes": [11690718008, 11690678660, 11690717940, 11690678659, 11690717918, 11690717980, 11690717878, 11690717970, 11690678663, 11690717942, 11690717994, 11690717917, 11690717960, 11690717885, 11690717934, 11690717924], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437199, "nodes": [11690717981, 11690678665], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437200, "nodes": [11381137940, 11381137941, 11381177032, 11381137942], "tags": {"footway": "sidewalk", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 1257437201, "nodes": [11690717964, 11690678668, 11690678661, 11690717982, 11690717986, 11690717956, 11690718011, 11690717966, 11690717979, 11690717933, 11690678656, 11690718016, 11690718003, 11690718005, 11690717984, 11690717958, 11690718010, 11690717964], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1257437202, "nodes": [11690718008, 11690717900], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437203, "nodes": [11690717983, 11690717880], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437204, "nodes": [11381177032, 2448293771, 2448293784, 2450250434, 2448293762, 2448293773, 2448293750, 11690717884, 11690717892], "tags": {"access": "no", "highway": "service", "surface": "paved"}}, {"type": "way", "id": 1257437205, "nodes": [11690717902, 11690717997], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437206, "nodes": [11690717937, 11690717969, 11690717959, 11690717939, 11690718018, 11690678655, 11690717894, 11690717967, 11690717947, 11690717908, 11690678642, 11690678664, 11690717887, 11690717889, 11690717921, 11690717915, 11690678658, 11690678650, 11690717871, 11690717937], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437207, "nodes": [11690717875, 11690717983], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437208, "nodes": [11690717998, 11690717896], "tags": {"handrail:center": "yes", "highway": "steps", "incline": "up", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 1257437209, "nodes": [11690678643, 11690718007], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437210, "nodes": [11690717910, 11690717883], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257437211, "nodes": [4630240463, 11690678667], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446706, "nodes": [11690717880, 1770052225, 11690718007], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446707, "nodes": [11690717875, 11690755762, 11690717973], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446708, "nodes": [11381177020, 11690755763], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446709, "nodes": [11690755763, 11690755764, 11690755765], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446710, "nodes": [11690755766, 11690755765], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446711, "nodes": [11690718017, 11690755767, 11690678665], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446712, "nodes": [11690717995, 1770052227, 11690767169], "tags": {"crossing": "traffic_signals", "crossing:island": "no", "crossing:markings": "dots", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446713, "nodes": [11690767174, 9699225795, 9699225800, 11690717987], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446714, "nodes": [11690717882, 11690767175, 11690718009], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446715, "nodes": [11690767176, 11690767177, 11690717883], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446716, "nodes": [11690767178, 11690767179, 11690767180], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446717, "nodes": [11690767181, 11690767182, 11690717961], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446718, "nodes": [11690717989, 11690767183, 11690767184], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446719, "nodes": [11690767186, 11690767187, 11690767188], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446720, "nodes": [27508196, 11690767191], "tags": {"highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "maxspeed": "40", "name": "Avenida del Valle", "oneway": "no", "postal_code": "28003", "surface": "asphalt"}}, {"type": "way", "id": 1257446721, "nodes": [11690767192, 11690767193, 11690767194], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446722, "nodes": [11690767195, 11690767196, 11690767197], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446723, "nodes": [11690767195, 4277504642], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1257446724, "nodes": [11690767198, 11690767199, 11690767200], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446725, "nodes": [11690767203, 11690717991, 6327649429], "tags": {"highway": "footway"}}, {"type": "way", "id": 1257446726, "nodes": [11690767201, 11690767202, 11690767203], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446727, "nodes": [11690717900, 11690767204, 11690717893], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446728, "nodes": [11690767205, 11690767206, 11690767207], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446729, "nodes": [11690767208, 11690767209, 11690767210], "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing:markings": "zebra", "footway": "crossing", "highway": "footway", "surface": "asphalt", "tactile_paving": "yes"}}, {"type": "way", "id": 1257446730, "nodes": [11690717938, 11690678662, 11690717898, 11690717991], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446731, "nodes": [11690767213, 11690767211, 11690767212], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446732, "nodes": [11690767212, 11690717938], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "incline": "up", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1257446733, "nodes": [11690717924, 11690767213], "tags": {"crossing": "unmarked", "crossing:markings": "no", "footway": "crossing", "highway": "footway", "incline": "down", "lit": "yes", "smoothness": "good"}}, {"type": "way", "id": 1258973440, "nodes": [11703559429, 11703559430], "tags": {"handrail": "yes", "highway": "steps", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 1258973441, "nodes": [11703559430, 1754817006], "tags": {"highway": "footway", "lit": "yes", "source": "bing", "source:date": "2012", "surface": "paving_stones"}}, {"type": "way", "id": 1259255499, "nodes": [6764785330, 3971975774, 11706898258], "tags": {"crossing": "traffic_signals", "crossing:markings": "yes", "footway": "crossing", "highway": "footway"}}, {"type": "way", "id": 1262722818, "nodes": [1654250233, 11732310476, 11732274944, 11732274945, 1654250234], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1262723889, "nodes": [1654250209, 11732302961, 11732302962, 11732302963, 1654250210, 11732302964, 11732302965, 11732302966, 1654250207, 11732302967, 11732302968, 1654250205, 11732310469, 11732310470, 11732310471, 1654250209], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1262723890, "nodes": [11732302963, 11732310476], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1262723891, "nodes": [11732302964, 11732310477, 11732310478], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1262723892, "nodes": [11732310478, 11732310479, 1654250233], "tags": {"footway": "sidewalk", "highway": "footway"}}, {"type": "way", "id": 1262859591, "nodes": [1963430775, 1963430776, 10550528448, 1760085667, 25902124], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Ayala", "name:etymology:wikidata": "Q354137", "oneway": "yes", "postal_code": "28001", "sidewalk": "both", "surface": "asphalt"}}]} \ No newline at end of file diff --git a/examples/markov_chains/cache/cd74ca98335920ce3055676b8729521ca6f6767a.json b/examples/markov_chains/cache/cd74ca98335920ce3055676b8729521ca6f6767a.json new file mode 100644 index 0000000..6862c29 --- /dev/null +++ b/examples/markov_chains/cache/cd74ca98335920ce3055676b8729521ca6f6767a.json @@ -0,0 +1 @@ +{"version": 0.6, "generator": "Overpass API 0.7.62.1 084b4234", "osm3s": {"timestamp_osm_base": "2024-04-03T13:17:15Z", "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."}, "elements": [{"type": "node", "id": 20953226, "lat": 40.420314, "lon": -3.7060675, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 20953234, "lat": 40.4188362, "lon": -3.6958407, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 20953235, "lat": 40.4191621, "lon": -3.6940479, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 21734214, "lat": 40.4166232, "lon": -3.7042814, "tags": {"source": "yahoo_maps", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 21734217, "lat": 40.4167222, "lon": -3.7022894, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734218, "lat": 40.4170682, "lon": -3.7023693, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734220, "lat": 40.4172377, "lon": -3.7035591, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734221, "lat": 40.4171197, "lon": -3.7040697, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734223, "lat": 40.4164992, "lon": -3.7051099}, {"type": "node", "id": 21734224, "lat": 40.4164178, "lon": -3.705769, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734225, "lat": 40.4159998, "lon": -3.7056934, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734227, "lat": 40.4157304, "lon": -3.7052295, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734228, "lat": 40.4157671, "lon": -3.7061973, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734229, "lat": 40.4157431, "lon": -3.705711, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734231, "lat": 40.415718, "lon": -3.7066906, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734234, "lat": 40.4149993, "lon": -3.7080313, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734236, "lat": 40.4154054, "lon": -3.7066619, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734237, "lat": 40.4151308, "lon": -3.7066371, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734238, "lat": 40.4157561, "lon": -3.7079446, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734239, "lat": 40.4158086, "lon": -3.7068343, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734240, "lat": 40.4150168, "lon": -3.7076657, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734241, "lat": 40.4153211, "lon": -3.7057754, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734242, "lat": 40.4152841, "lon": -3.7055127, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734243, "lat": 40.4154017, "lon": -3.7064585, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734244, "lat": 40.4162625, "lon": -3.7069956, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734245, "lat": 40.4167624, "lon": -3.7069796, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734246, "lat": 40.4168528, "lon": -3.7073845, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734249, "lat": 40.4161369, "lon": -3.7079559, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734250, "lat": 40.4161249, "lon": -3.7080199, "tags": {"check_date:crossing": "2023-05-30", "crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 21734251, "lat": 40.4163757, "lon": -3.7083902, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734252, "lat": 40.4167712, "lon": -3.7084672, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 21734253, "lat": 40.4175707, "lon": -3.7077681, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734254, "lat": 40.4163773, "lon": -3.7086384, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734255, "lat": 40.4167948, "lon": -3.7087281, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734256, "lat": 40.4159887, "lon": -3.7085766, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734260, "lat": 40.4150482, "lon": -3.7062931, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734261, "lat": 40.4147546, "lon": -3.7063589, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734262, "lat": 40.4149078, "lon": -3.7058508, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734263, "lat": 40.4149991, "lon": -3.7055935, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734264, "lat": 40.4147968, "lon": -3.7056015, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734266, "lat": 40.4143755, "lon": -3.7064047, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734267, "lat": 40.4142913, "lon": -3.7075209, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734269, "lat": 40.4143302, "lon": -3.7072691, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734270, "lat": 40.4146198, "lon": -3.7070137, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734271, "lat": 40.4147482, "lon": -3.7070436}, {"type": "node", "id": 21734272, "lat": 40.4146884, "lon": -3.7068005, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734274, "lat": 40.4150606, "lon": -3.706742, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734275, "lat": 40.4157044, "lon": -3.7044878, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734277, "lat": 40.4160399, "lon": -3.7041967, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734278, "lat": 40.4156905, "lon": -3.7041924, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734279, "lat": 40.4155975, "lon": -3.703978, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734280, "lat": 40.4152992, "lon": -3.7041798, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734281, "lat": 40.4148393, "lon": -3.7044106, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734282, "lat": 40.4149608, "lon": -3.704955, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734283, "lat": 40.4160908, "lon": -3.7036865, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734284, "lat": 40.4161348, "lon": -3.7032503, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734285, "lat": 40.415837, "lon": -3.7032401, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734286, "lat": 40.4152474, "lon": -3.7032201, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734287, "lat": 40.4145751, "lon": -3.7033558, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734288, "lat": 40.4147291, "lon": -3.7039672, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734289, "lat": 40.4143736, "lon": -3.7041323, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734290, "lat": 40.4140127, "lon": -3.7045481, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734292, "lat": 40.4141821, "lon": -3.7035667}, {"type": "node", "id": 21734293, "lat": 40.414099, "lon": -3.7033242}, {"type": "node", "id": 21734295, "lat": 40.4151447, "lon": -3.7023266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734296, "lat": 40.4143441, "lon": -3.7023071, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734297, "lat": 40.4139296, "lon": -3.7028457, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734298, "lat": 40.4149603, "lon": -3.7025602, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734299, "lat": 40.415804, "lon": -3.7025992, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734300, "lat": 40.4157908, "lon": -3.7023154, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734301, "lat": 40.4156435, "lon": -3.7016665, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734302, "lat": 40.4161041, "lon": -3.7016756, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734303, "lat": 40.4161214, "lon": -3.7023072, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734304, "lat": 40.4150556, "lon": -3.7013368, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734305, "lat": 40.4148761, "lon": -3.7013566, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734306, "lat": 40.4144375, "lon": -3.7013238, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734307, "lat": 40.4141279, "lon": -3.7014257, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21734308, "lat": 40.4135324, "lon": -3.7017025, "tags": {"highway": "traffic_signals", "source": "yahoo_maps", "traffic_signals": "signal"}}, {"type": "node", "id": 21734309, "lat": 40.4137142, "lon": -3.7022238, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21943059, "lat": 40.4102663, "lon": -3.7025174, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21943148, "lat": 40.4105801, "lon": -3.7026217, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21947451, "lat": 40.4114049, "lon": -3.7029174, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21947464, "lat": 40.4118598, "lon": -3.7030934, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21951386, "lat": 40.4130242, "lon": -3.7064671}, {"type": "node", "id": 21951394, "lat": 40.412597, "lon": -3.7051025}, {"type": "node", "id": 21951400, "lat": 40.412484, "lon": -3.703962}, {"type": "node", "id": 21951406, "lat": 40.4123944, "lon": -3.7032087}, {"type": "node", "id": 21951413, "lat": 40.412485, "lon": -3.7034655}, {"type": "node", "id": 21951420, "lat": 40.4124166, "lon": -3.702569, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 21951427, "lat": 40.41234, "lon": -3.7016673, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21953728, "lat": 40.413982, "lon": -3.7055564, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960415, "lat": 40.4177045, "lon": -3.7034823, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960421, "lat": 40.4184174, "lon": -3.7030558, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960432, "lat": 40.4180631, "lon": -3.7025894, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960445, "lat": 40.4182329, "lon": -3.7024955, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960491, "lat": 40.4187494, "lon": -3.703753, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960681, "lat": 40.4194164, "lon": -3.7044072, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21960737, "lat": 40.41883, "lon": -3.7037165, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21961236, "lat": 40.4183149, "lon": -3.7054002, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21961265, "lat": 40.4179712, "lon": -3.7056288, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21961284, "lat": 40.4174116, "lon": -3.7059132, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21964093, "lat": 40.4202601, "lon": -3.7055566, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21967746, "lat": 40.4175095, "lon": -3.6997847, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968056, "lat": 40.4189428, "lon": -3.6968706, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 21968124, "lat": 40.4189299, "lon": -3.6963748, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968125, "lat": 40.4189426, "lon": -3.6959965, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968127, "lat": 40.4186504, "lon": -3.6970086}, {"type": "node", "id": 21968128, "lat": 40.4185449, "lon": -3.6969767, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 21968130, "lat": 40.4186997, "lon": -3.6964282, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968131, "lat": 40.4180794, "lon": -3.6985781, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 21968132, "lat": 40.4181171, "lon": -3.6987412, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968134, "lat": 40.4178578, "lon": -3.6994513, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 21968136, "lat": 40.4179335, "lon": -3.6992336, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968139, "lat": 40.4170791, "lon": -3.7001007, "tags": {"bus": "yes", "public_transport": "stop_position", "source": "yahoo_maps"}}, {"type": "node", "id": 21968140, "lat": 40.4166207, "lon": -3.7004373, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968141, "lat": 40.4170244, "lon": -3.6988986, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968142, "lat": 40.4171109, "lon": -3.6984255, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968143, "lat": 40.4174754, "lon": -3.6984712, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 21968146, "lat": 40.4164349, "lon": -3.6983409, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968147, "lat": 40.416781, "lon": -3.6967945, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968148, "lat": 40.4170446, "lon": -3.6966729, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968149, "lat": 40.4176243, "lon": -3.6967124, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968150, "lat": 40.4176158, "lon": -3.6970974, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968151, "lat": 40.4176566, "lon": -3.6955775, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968152, "lat": 40.4168692, "lon": -3.6954843, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968163, "lat": 40.4167029, "lon": -3.7016606, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968172, "lat": 40.4163145, "lon": -3.7016737, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968185, "lat": 40.4163025, "lon": -3.701208, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968192, "lat": 40.4162179, "lon": -3.7008279, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968197, "lat": 40.4164546, "lon": -3.7005388, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes"}}, {"type": "node", "id": 21968209, "lat": 40.4151278, "lon": -3.7002683, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968213, "lat": 40.4151516, "lon": -3.6995745, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968221, "lat": 40.4165861, "lon": -3.6996402, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968226, "lat": 40.4151752, "lon": -3.6989846, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968232, "lat": 40.4165646, "lon": -3.6988202}, {"type": "node", "id": 21968336, "lat": 40.4159459, "lon": -3.7012179, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968344, "lat": 40.41454, "lon": -3.7001968, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968352, "lat": 40.4146465, "lon": -3.6995615, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968359, "lat": 40.4142217, "lon": -3.6995308, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968365, "lat": 40.4142221, "lon": -3.6987569, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968370, "lat": 40.4143393, "lon": -3.698709, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968375, "lat": 40.4149415, "lon": -3.6984628, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968380, "lat": 40.4148243, "lon": -3.6988211, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968384, "lat": 40.4151275, "lon": -3.6978737, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968391, "lat": 40.4162502, "lon": -3.6976854, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968400, "lat": 40.4160426, "lon": -3.6969185, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968406, "lat": 40.4154335, "lon": -3.696968, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21968411, "lat": 40.4143256, "lon": -3.6969327, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21969744, "lat": 40.4197567, "lon": -3.6996714}, {"type": "node", "id": 21969758, "lat": 40.4193037, "lon": -3.6997513, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21969773, "lat": 40.4189766, "lon": -3.6983299, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21969807, "lat": 40.4189473, "lon": -3.6977026, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21969824, "lat": 40.418912, "lon": -3.6996629, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21969828, "lat": 40.4185311, "lon": -3.6995672, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21970134, "lat": 40.4176414, "lon": -3.6960387, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 21970158, "lat": 40.4192896, "lon": -3.6940758, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 25891942, "lat": 40.4193366, "lon": -3.6938297, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906112, "lat": 40.4259731, "lon": -3.6971958, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906212, "lat": 40.424433, "lon": -3.6972609, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906216, "lat": 40.4246876, "lon": -3.6970308, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906221, "lat": 40.4250492, "lon": -3.6977867, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906270, "lat": 40.4219361, "lon": -3.6956524, "tags": {"highway": "traffic_signals", "source": "PNOA", "source:date": "2014"}}, {"type": "node", "id": 25906274, "lat": 40.4239442, "lon": -3.6976776, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906275, "lat": 40.4232162, "lon": -3.6981721, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906276, "lat": 40.4234533, "lon": -3.6987951, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906277, "lat": 40.4237089, "lon": -3.6986266, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906284, "lat": 40.4221689, "lon": -3.6977371, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906285, "lat": 40.422066, "lon": -3.697324, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906287, "lat": 40.4224938, "lon": -3.6986906, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906288, "lat": 40.4227186, "lon": -3.6993179, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906289, "lat": 40.4232299, "lon": -3.6989408, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906290, "lat": 40.4236109, "lon": -3.7006635}, {"type": "node", "id": 25906291, "lat": 40.4230577, "lon": -3.7006922}, {"type": "node", "id": 25906300, "lat": 40.4245788, "lon": -3.6980909, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906301, "lat": 40.4247336, "lon": -3.6979921, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906368, "lat": 40.4211553, "lon": -3.6967234, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906378, "lat": 40.4190271, "lon": -3.6955619, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 25906392, "lat": 40.4197604, "lon": -3.6981414, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906395, "lat": 40.4202573, "lon": -3.6981012, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906403, "lat": 40.4200586, "lon": -3.6974229, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906404, "lat": 40.4200183, "lon": -3.6972056, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906405, "lat": 40.4212265, "lon": -3.6973585, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906406, "lat": 40.421291, "lon": -3.6980778, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906407, "lat": 40.4203394, "lon": -3.6983864, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906408, "lat": 40.4205989, "lon": -3.6992766, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906409, "lat": 40.4201448, "lon": -3.699507, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906410, "lat": 40.4195546, "lon": -3.6971135, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906411, "lat": 40.4190066, "lon": -3.6970921, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 25906418, "lat": 40.4198053, "lon": -3.6998848, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906420, "lat": 40.4205457, "lon": -3.7008834, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906421, "lat": 40.420994, "lon": -3.7006147, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906422, "lat": 40.4207831, "lon": -3.6999023, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906423, "lat": 40.4211636, "lon": -3.701216, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906424, "lat": 40.4213263, "lon": -3.7011615, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906425, "lat": 40.4215806, "lon": -3.7019024, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906426, "lat": 40.4219276, "lon": -3.7017886, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906427, "lat": 40.4221379, "lon": -3.7008923, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906429, "lat": 40.4218928, "lon": -3.6999293, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906430, "lat": 40.421733, "lon": -3.6994395, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906431, "lat": 40.4216722, "lon": -3.6992596, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906432, "lat": 40.4214828, "lon": -3.6986819, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906498, "lat": 40.4223637, "lon": -3.7000565, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906500, "lat": 40.4223488, "lon": -3.6982455, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906640, "lat": 40.4196286, "lon": -3.7014746, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906642, "lat": 40.4181007, "lon": -3.7022447, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906643, "lat": 40.4183332, "lon": -3.7012157}, {"type": "node", "id": 25906743, "lat": 40.4171423, "lon": -3.7020253}, {"type": "node", "id": 25906774, "lat": 40.419113, "lon": -3.7034382, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906775, "lat": 40.4191242, "lon": -3.7031963, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906777, "lat": 40.4185396, "lon": -3.703026, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906778, "lat": 40.4185954, "lon": -3.7030535, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25906779, "lat": 40.4187754, "lon": -3.7034849, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25907052, "lat": 40.4195804, "lon": -3.7030849, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25907094, "lat": 40.419622, "lon": -3.7047258, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25907096, "lat": 40.4197845, "lon": -3.7048904, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25907101, "lat": 40.4201795, "lon": -3.7039144}, {"type": "node", "id": 25907102, "lat": 40.4191679, "lon": -3.7041298, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 25907103, "lat": 40.4201498, "lon": -3.7034844, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 26058800, "lat": 40.4238571, "lon": -3.7022903}, {"type": "node", "id": 26058805, "lat": 40.4236189, "lon": -3.7024882}, {"type": "node", "id": 26066564, "lat": 40.4240887, "lon": -3.7062896}, {"type": "node", "id": 26066565, "lat": 40.422869, "lon": -3.7069162}, {"type": "node", "id": 26066566, "lat": 40.4238598, "lon": -3.7056302}, {"type": "node", "id": 26066567, "lat": 40.4237699, "lon": -3.7053919}, {"type": "node", "id": 26066568, "lat": 40.4225163, "lon": -3.7063525}, {"type": "node", "id": 26066569, "lat": 40.4232001, "lon": -3.7075264, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066572, "lat": 40.4243242, "lon": -3.7073916, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066573, "lat": 40.4242426, "lon": -3.7066205}, {"type": "node", "id": 26066574, "lat": 40.4237232, "lon": -3.7053087}, {"type": "node", "id": 26066576, "lat": 40.4232018, "lon": -3.7046553}, {"type": "node", "id": 26066577, "lat": 40.4229476, "lon": -3.7042807}, {"type": "node", "id": 26066580, "lat": 40.4230306, "lon": -3.7044059}, {"type": "node", "id": 26066581, "lat": 40.4225675, "lon": -3.7037307}, {"type": "node", "id": 26066582, "lat": 40.4229525, "lon": -3.7031658}, {"type": "node", "id": 26066583, "lat": 40.4232154, "lon": -3.7028019}, {"type": "node", "id": 26066585, "lat": 40.4221425, "lon": -3.7057814}, {"type": "node", "id": 26066586, "lat": 40.4219183, "lon": -3.705505}, {"type": "node", "id": 26066587, "lat": 40.4217809, "lon": -3.7057377}, {"type": "node", "id": 26066588, "lat": 40.4217227, "lon": -3.7058105}, {"type": "node", "id": 26066589, "lat": 40.421268, "lon": -3.7053213}, {"type": "node", "id": 26066590, "lat": 40.4214624, "lon": -3.7049982}, {"type": "node", "id": 26066592, "lat": 40.4209298, "lon": -3.7046966}, {"type": "node", "id": 26066593, "lat": 40.421122, "lon": -3.7046571}, {"type": "node", "id": 26066594, "lat": 40.4210044, "lon": -3.7038337}, {"type": "node", "id": 26066595, "lat": 40.4209826, "lon": -3.7036787}, {"type": "node", "id": 26066596, "lat": 40.4213392, "lon": -3.7035674}, {"type": "node", "id": 26066597, "lat": 40.4216761, "lon": -3.7042608}, {"type": "node", "id": 26066598, "lat": 40.4218577, "lon": -3.7046031}, {"type": "node", "id": 26066599, "lat": 40.4223395, "lon": -3.7040464}, {"type": "node", "id": 26066600, "lat": 40.422261, "lon": -3.7036164}, {"type": "node", "id": 26066601, "lat": 40.422211, "lon": -3.7033428}, {"type": "node", "id": 26066603, "lat": 40.4210948, "lon": -3.7028897}, {"type": "node", "id": 26066604, "lat": 40.420824, "lon": -3.7029647}, {"type": "node", "id": 26066609, "lat": 40.4220808, "lon": -3.7026213}, {"type": "node", "id": 26066610, "lat": 40.4238225, "lon": -3.7014872}, {"type": "node", "id": 26066612, "lat": 40.4205788, "lon": -3.7022505}, {"type": "node", "id": 26066613, "lat": 40.4200728, "lon": -3.702366, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066614, "lat": 40.4201175, "lon": -3.7030154, "tags": {"highway": "traffic_signals", "source": "yahoo_maps"}}, {"type": "node", "id": 26066616, "lat": 40.4209283, "lon": -3.702129}, {"type": "node", "id": 26066618, "lat": 40.4205893, "lon": -3.7064456}, {"type": "node", "id": 26066619, "lat": 40.4203197, "lon": -3.7056834}, {"type": "node", "id": 26066621, "lat": 40.4204144, "lon": -3.7061744, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 26066623, "lat": 40.4210909, "lon": -3.7056089}, {"type": "node", "id": 26066624, "lat": 40.4206948, "lon": -3.7056471}, {"type": "node", "id": 26066627, "lat": 40.4208827, "lon": -3.7047066}, {"type": "node", "id": 26066628, "lat": 40.4207882, "lon": -3.7038635}, {"type": "node", "id": 26066630, "lat": 40.4208795, "lon": -3.7068988, "tags": {"highway": "traffic_signals", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 26066631, "lat": 40.4210577, "lon": -3.707185}, {"type": "node", "id": 26066644, "lat": 40.4219608, "lon": -3.7059854}, {"type": "node", "id": 26066648, "lat": 40.4221733, "lon": -3.7063224}, {"type": "node", "id": 26066665, "lat": 40.422618, "lon": -3.7076562}, {"type": "node", "id": 26067812, "lat": 40.4205143, "lon": -3.7083574}, {"type": "node", "id": 26067814, "lat": 40.4202383, "lon": -3.7081532}, {"type": "node", "id": 26213289, "lat": 40.4183551, "lon": -3.7084669}, {"type": "node", "id": 26213290, "lat": 40.4183117, "lon": -3.7081824}, {"type": "node", "id": 26213303, "lat": 40.4178479, "lon": -3.7090479}, {"type": "node", "id": 26213306, "lat": 40.4188248, "lon": -3.7082236}, {"type": "node", "id": 26213313, "lat": 40.4182761, "lon": -3.7064915, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 26213314, "lat": 40.4182164, "lon": -3.7067774}, {"type": "node", "id": 26213315, "lat": 40.4182763, "lon": -3.7072121, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "wheelchair": "yes"}}, {"type": "node", "id": 26213317, "lat": 40.4186223, "lon": -3.7070898}, {"type": "node", "id": 26213322, "lat": 40.4191835, "lon": -3.7067173}, {"type": "node", "id": 26213323, "lat": 40.4190952, "lon": -3.7073667}, {"type": "node", "id": 26213324, "lat": 40.4197453, "lon": -3.7077477, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 26213325, "lat": 40.4186701, "lon": -3.7074364}, {"type": "node", "id": 26213326, "lat": 40.4182276, "lon": -3.7075314}, {"type": "node", "id": 26213327, "lat": 40.4182283, "lon": -3.7073452}, {"type": "node", "id": 26213328, "lat": 40.4181302, "lon": -3.7072813, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "wheelchair": "yes"}}, {"type": "node", "id": 26213329, "lat": 40.4179792, "lon": -3.7074056}, {"type": "node", "id": 26213330, "lat": 40.4177653, "lon": -3.7069019}, {"type": "node", "id": 26213539, "lat": 40.4158424, "lon": -3.708836}, {"type": "node", "id": 26213540, "lat": 40.4156605, "lon": -3.7081125}, {"type": "node", "id": 26310454, "lat": 40.4138603, "lon": -3.7001023}, {"type": "node", "id": 26310457, "lat": 40.4137862, "lon": -3.6997258}, {"type": "node", "id": 26310460, "lat": 40.4137391, "lon": -3.6995137}, {"type": "node", "id": 26310463, "lat": 40.4136367, "lon": -3.6989962}, {"type": "node", "id": 26310467, "lat": 40.4133531, "lon": -3.6991122}, {"type": "node", "id": 26310476, "lat": 40.4128779, "lon": -3.7001157}, {"type": "node", "id": 26310515, "lat": 40.4134769, "lon": -3.6981655}, {"type": "node", "id": 26310518, "lat": 40.413157, "lon": -3.6982733}, {"type": "node", "id": 26310541, "lat": 40.4137308, "lon": -3.6977208}, {"type": "node", "id": 26310550, "lat": 40.4128824, "lon": -3.6970673}, {"type": "node", "id": 26310554, "lat": 40.4129612, "lon": -3.6974236}, {"type": "node", "id": 26310569, "lat": 40.412763, "lon": -3.6965433}, {"type": "node", "id": 26310573, "lat": 40.413935, "lon": -3.6988755}, {"type": "node", "id": 26341187, "lat": 40.4134694, "lon": -3.7015346}, {"type": "node", "id": 26341190, "lat": 40.415008, "lon": -3.7002632}, {"type": "node", "id": 26341191, "lat": 40.4148114, "lon": -3.7003137}, {"type": "node", "id": 26341193, "lat": 40.4144691, "lon": -3.7035492, "tags": {"access": "yes", "amenity": "parking", "capacity": "285", "fee": "yes", "layer": "-1", "maxheight": "1.8", "name": "Parking Benavente", "opening_hours": "24/7", "parking": "underground"}}, {"type": "node", "id": 26341673, "lat": 40.4200052, "lon": -3.7011016, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 26341674, "lat": 40.4199445, "lon": -3.7005989}, {"type": "node", "id": 26341675, "lat": 40.4197532, "lon": -3.6996724}, {"type": "node", "id": 26341676, "lat": 40.4193201, "lon": -3.6981777, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 26341677, "lat": 40.419097, "lon": -3.6974291}, {"type": "node", "id": 26341678, "lat": 40.4188397, "lon": -3.696795}, {"type": "node", "id": 26486524, "lat": 40.4174476, "lon": -3.6942111}, {"type": "node", "id": 26486526, "lat": 40.4166937, "lon": -3.6944277}, {"type": "node", "id": 26487767, "lat": 40.4157289, "lon": -3.6960102}, {"type": "node", "id": 26487769, "lat": 40.4143237, "lon": -3.6957021}, {"type": "node", "id": 26487775, "lat": 40.4125443, "lon": -3.6956337}, {"type": "node", "id": 27508534, "lat": 40.4213535, "lon": -3.6996241}, {"type": "node", "id": 27508535, "lat": 40.421148, "lon": -3.698849}, {"type": "node", "id": 27717686, "lat": 40.4162571, "lon": -3.7081475}, {"type": "node", "id": 48752939, "lat": 40.4147423, "lon": -3.7064412}, {"type": "node", "id": 48752941, "lat": 40.4153449, "lon": -3.7060049}, {"type": "node", "id": 48752943, "lat": 40.4149792, "lon": -3.70608, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 48752945, "lat": 40.4148032, "lon": -3.7060109, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 48752949, "lat": 40.414334, "lon": -3.7071001}, {"type": "node", "id": 48752951, "lat": 40.4142535, "lon": -3.7063957}, {"type": "node", "id": 48752963, "lat": 40.4148249, "lon": -3.7080259}, {"type": "node", "id": 48753331, "lat": 40.4165176, "lon": -3.704259, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 48753676, "lat": 40.4166877, "lon": -3.7037089}, {"type": "node", "id": 48753682, "lat": 40.4167278, "lon": -3.7032794, "tags": {"traffic_signals:sound": "yes"}}, {"type": "node", "id": 48753688, "lat": 40.416727, "lon": -3.7026456}, {"type": "node", "id": 48827271, "lat": 40.4173493, "lon": -3.7053634, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 48827280, "lat": 40.417303, "lon": -3.7050885}, {"type": "node", "id": 48827287, "lat": 40.4175691, "lon": -3.7052746, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 48827295, "lat": 40.4177329, "lon": -3.7057392}, {"type": "node", "id": 48827310, "lat": 40.4180894, "lon": -3.705141, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 48827314, "lat": 40.4182032, "lon": -3.7054745}, {"type": "node", "id": 48842574, "lat": 40.4192914, "lon": -3.7074415}, {"type": "node", "id": 48842577, "lat": 40.4202424, "lon": -3.7048281, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 59633356, "lat": 40.4224983, "lon": -3.7004902}, {"type": "node", "id": 59633357, "lat": 40.4218947, "lon": -3.7009552, "tags": {"created_by": "JOSM"}}, {"type": "node", "id": 59633358, "lat": 40.4225589, "lon": -3.7007959}, {"type": "node", "id": 59633359, "lat": 40.42222, "lon": -3.6996855}, {"type": "node", "id": 167302840, "lat": 40.4161103, "lon": -3.6971593}, {"type": "node", "id": 178821153, "lat": 40.4168121, "lon": -3.7067922}, {"type": "node", "id": 184049173, "lat": 40.4193847, "lon": -3.7071332}, {"type": "node", "id": 184049174, "lat": 40.4191327, "lon": -3.7071247}, {"type": "node", "id": 265983581, "lat": 40.4200671, "lon": -3.7057727, "tags": {"name": "Plaza de Callao", "railway": "subway_entrance", "wheelchair": "yes", "wheelchair:description": "Steps here, a lift is nearby."}}, {"type": "node", "id": 265983582, "lat": 40.4201402, "lon": -3.7064077, "tags": {"name": "Jacometrezo", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 265983583, "lat": 40.4201777, "lon": -3.7053784, "tags": {"name": "Cine Avenida", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 266220430, "lat": 40.4208085, "lon": -3.6992225, "tags": {"access": "yes", "amenity": "parking_entrance", "capacity": "113", "description": "Parking autorizado para el acceso dentro de la Zona de Bajas Emisiones de Especial Protecci\u00f3n, \u201cMadrid Central\u201d. Ser\u00eda interesante que se reflejase en el mapa.", "fee": "yes", "layer": "-1", "name": "Pedro Zerolo", "parking": "underground"}}, {"type": "node", "id": 321520746, "lat": 40.4134529, "lon": -3.6998652}, {"type": "node", "id": 321520747, "lat": 40.4138232, "lon": -3.6999266}, {"type": "node", "id": 323767923, "lat": 40.4221956, "lon": -3.7008791}, {"type": "node", "id": 323767933, "lat": 40.4220773, "lon": -3.7009094}, {"type": "node", "id": 325172862, "lat": 40.4242994, "lon": -3.7070302}, {"type": "node", "id": 325172867, "lat": 40.4230314, "lon": -3.7072075}, {"type": "node", "id": 326196041, "lat": 40.4238382, "lon": -3.6977583}, {"type": "node", "id": 333218855, "lat": 40.4180831, "lon": -3.706645, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 333218857, "lat": 40.4181778, "lon": -3.7066739, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 333219053, "lat": 40.4182974, "lon": -3.7065698}, {"type": "node", "id": 333219460, "lat": 40.4182951, "lon": -3.7071703}, {"type": "node", "id": 333219510, "lat": 40.4185705, "lon": -3.7069761}, {"type": "node", "id": 333219513, "lat": 40.4184496, "lon": -3.706947}, {"type": "node", "id": 333219515, "lat": 40.4184278, "lon": -3.7069791}, {"type": "node", "id": 333219518, "lat": 40.4183446, "lon": -3.7071225}, {"type": "node", "id": 339238838, "lat": 40.4158992, "lon": -3.6964056}, {"type": "node", "id": 339239255, "lat": 40.4168245, "lon": -3.6959908}, {"type": "node", "id": 339242703, "lat": 40.4167092, "lon": -3.7003723, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 339243196, "lat": 40.416641, "lon": -3.7007554}, {"type": "node", "id": 339243713, "lat": 40.416639, "lon": -3.7007114, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "flush", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 344923509, "lat": 40.4186092, "lon": -3.7031858, "tags": {"access": "yes", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Aparcamiento Plaza del Carmen", "parking": "underground"}}, {"type": "node", "id": 344926731, "lat": 40.4180751, "lon": -3.7059051}, {"type": "node", "id": 344926746, "lat": 40.4182374, "lon": -3.7073005}, {"type": "node", "id": 345198428, "lat": 40.4202326, "lon": -3.7079508, "tags": {"highway": "crossing"}}, {"type": "node", "id": 345198464, "lat": 40.4205446, "lon": -3.7082384, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 345198507, "lat": 40.4181728, "lon": -3.7082652}, {"type": "node", "id": 345198554, "lat": 40.4181408, "lon": -3.7063436, "tags": {"amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 345198573, "lat": 40.418081, "lon": -3.7063674}, {"type": "node", "id": 345198582, "lat": 40.4180985, "lon": -3.7062059}, {"type": "node", "id": 345198587, "lat": 40.4181587, "lon": -3.7061455}, {"type": "node", "id": 345198588, "lat": 40.4185285, "lon": -3.7069751}, {"type": "node", "id": 345198597, "lat": 40.4184811, "lon": -3.707011}, {"type": "node", "id": 345198606, "lat": 40.4183703, "lon": -3.7071751, "tags": {"amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 345198616, "lat": 40.4181685, "lon": -3.706332}, {"type": "node", "id": 345198636, "lat": 40.4177948, "lon": -3.7069713, "tags": {"barrier": "gate", "bicycle": "no", "foot": "no"}}, {"type": "node", "id": 345198640, "lat": 40.4179625, "lon": -3.7073663, "tags": {"barrier": "gate", "bicycle": "no", "foot": "no"}}, {"type": "node", "id": 345198647, "lat": 40.4180236, "lon": -3.7067479, "tags": {"amenity": "parking_entrance", "parking": "underground"}}, {"type": "node", "id": 345198655, "lat": 40.4167888, "lon": -3.7068699}, {"type": "node", "id": 345198673, "lat": 40.4167666, "lon": -3.7069519}, {"type": "node", "id": 345198698, "lat": 40.4159636, "lon": -3.7086772, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 347602936, "lat": 40.4159316, "lon": -3.7068919}, {"type": "node", "id": 347603099, "lat": 40.4151678, "lon": -3.7072429, "tags": {"amenity": "parking", "layer": "-1", "name": "Parking Plaza Mayor", "parking": "underground", "phone": "+34 913 66 13 43"}}, {"type": "node", "id": 347617892, "lat": 40.4134951, "lon": -3.7047445}, {"type": "node", "id": 347617905, "lat": 40.4139267, "lon": -3.7048415}, {"type": "node", "id": 351959168, "lat": 40.414124, "lon": -3.703398}, {"type": "node", "id": 351959174, "lat": 40.4144897, "lon": -3.7031447}, {"type": "node", "id": 351959175, "lat": 40.4145221, "lon": -3.7031173, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 351959288, "lat": 40.4141681, "lon": -3.7035325}, {"type": "node", "id": 351959289, "lat": 40.414262, "lon": -3.7033968}, {"type": "node", "id": 370152059, "lat": 40.4213614, "lon": -3.7053475, "tags": {"amenity": "parking", "fee": "yes", "layer": "-1", "name": "P 24h Tudescos", "parking": "underground"}}, {"type": "node", "id": 370152501, "lat": 40.4207515, "lon": -3.7056607}, {"type": "node", "id": 390826838, "lat": 40.4192227, "lon": -3.7029793}, {"type": "node", "id": 390826839, "lat": 40.4178485, "lon": -3.7021918}, {"type": "node", "id": 390826846, "lat": 40.4139503, "lon": -3.7063758, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 390826851, "lat": 40.4139839, "lon": -3.7058261}, {"type": "node", "id": 390826852, "lat": 40.4135156, "lon": -3.7058882, "tags": {"amenity": "parking_entrance"}}, {"type": "node", "id": 390826853, "lat": 40.4140937, "lon": -3.70436}, {"type": "node", "id": 390826854, "lat": 40.4142723, "lon": -3.7040699}, {"type": "node", "id": 401890729, "lat": 40.4200354, "lon": -3.6968592}, {"type": "node", "id": 435728967, "lat": 40.4187521, "lon": -3.6966527}, {"type": "node", "id": 435728976, "lat": 40.4191484, "lon": -3.6938432}, {"type": "node", "id": 435728984, "lat": 40.4176537, "lon": -3.6996788}, {"type": "node", "id": 435729027, "lat": 40.4193855, "lon": -3.6936875}, {"type": "node", "id": 510812872, "lat": 40.4175031, "lon": -3.7044361, "tags": {"name": "Centro Comercial", "railway": "subway_entrance"}}, {"type": "node", "id": 510812874, "lat": 40.4168512, "lon": -3.7028273, "tags": {"name": "Cercan\u00edas", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "Escalators down to RENFE & Metro ticket halls"}}, {"type": "node", "id": 510827492, "lat": 40.4147142, "lon": -3.7052021}, {"type": "node", "id": 510827494, "lat": 40.4148715, "lon": -3.705724}, {"type": "node", "id": 510827495, "lat": 40.4150114, "lon": -3.706208}, {"type": "node", "id": 510827497, "lat": 40.4151302, "lon": -3.7068937}, {"type": "node", "id": 510827499, "lat": 40.4151114, "lon": -3.707181}, {"type": "node", "id": 510827501, "lat": 40.4151066, "lon": -3.7072982}, {"type": "node", "id": 510827503, "lat": 40.4151195, "lon": -3.707502}, {"type": "node", "id": 510827506, "lat": 40.4151658, "lon": -3.7076044}, {"type": "node", "id": 510827508, "lat": 40.4154622, "lon": -3.7078387}, {"type": "node", "id": 510827512, "lat": 40.4151325, "lon": -3.7072433}, {"type": "node", "id": 510827515, "lat": 40.4156582, "lon": -3.7068808}, {"type": "node", "id": 510827526, "lat": 40.415781, "lon": -3.7079362}, {"type": "node", "id": 510827529, "lat": 40.4160665, "lon": -3.7079813}, {"type": "node", "id": 510827531, "lat": 40.4161747, "lon": -3.7080297}, {"type": "node", "id": 510827540, "lat": 40.4145347, "lon": -3.7046848}, {"type": "node", "id": 534586126, "lat": 40.4193307, "lon": -3.7032874}, {"type": "node", "id": 534950139, "lat": 40.418433, "lon": -3.7030939}, {"type": "node", "id": 551479454, "lat": 40.4137466, "lon": -3.7036677}, {"type": "node", "id": 551479494, "lat": 40.4138704, "lon": -3.7036693}, {"type": "node", "id": 551479496, "lat": 40.4140415, "lon": -3.7036403}, {"type": "node", "id": 551573440, "lat": 40.4182133, "lon": -3.7066603, "tags": {"access": "customers", "amenity": "parking", "fee": "yes", "layer": "-1", "name": "Parking Plaza de las Descalzas", "parking": "underground", "phone": "+34 915 32 57 57"}}, {"type": "node", "id": 551573493, "lat": 40.4183229, "lon": -3.7072455}, {"type": "node", "id": 551573502, "lat": 40.4182834, "lon": -3.7072674}, {"type": "node", "id": 614123393, "lat": 40.4128973, "lon": -3.7001627, "tags": {"crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 619886891, "lat": 40.4126305, "lon": -3.6996002, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 619886896, "lat": 40.412549, "lon": -3.6994409}, {"type": "node", "id": 622204636, "lat": 40.4107309, "lon": -3.70268}, {"type": "node", "id": 623922410, "lat": 40.4145042, "lon": -3.7003584}, {"type": "node", "id": 623922413, "lat": 40.4148283, "lon": -3.7013386}, {"type": "node", "id": 623922429, "lat": 40.4145206, "lon": -3.7004519}, {"type": "node", "id": 623922431, "lat": 40.414503, "lon": -3.7006926, "tags": {"amenity": "parking_entrance", "fee": "yes", "layer": "-1", "name": "Parking de Santa Ana", "parking": "underground"}}, {"type": "node", "id": 623922438, "lat": 40.4148803, "lon": -3.7008566, "tags": {"amenity": "parking_entrance", "fee": "yes", "layer": "-1", "name": "Parking de Santa Ana", "parking": "underground"}}, {"type": "node", "id": 814676851, "lat": 40.4170548, "lon": -3.7024005}, {"type": "node", "id": 834140096, "lat": 40.4217554, "lon": -3.7057749}, {"type": "node", "id": 845674258, "lat": 40.4143001, "lon": -3.70356}, {"type": "node", "id": 845674260, "lat": 40.4143709, "lon": -3.7038675, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 851942131, "lat": 40.4149259, "lon": -3.7076317}, {"type": "node", "id": 910343138, "lat": 40.4166495, "lon": -3.7035394, "tags": {"name": "Carretas", "railway": "subway_entrance", "tunnel": "yes", "wheelchair": "no"}}, {"type": "node", "id": 910343139, "lat": 40.417763, "lon": -3.7001066, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "maxheight": "2.05", "name": "Parking Centro Canalejas", "parking": "underground"}}, {"type": "node", "id": 910343140, "lat": 40.4171311, "lon": -3.703293, "tags": {"name": "Carmen", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "Steps down to ticket hall from street."}}, {"type": "node", "id": 910343141, "lat": 40.416714, "lon": -3.704493, "tags": {"check_date:wheelchair": "2023-12-15", "name": "Mayor", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "Stairs down to ticket hall from street."}}, {"type": "node", "id": 910344724, "lat": 40.4204571, "lon": -3.706025, "tags": {"name": "Palacio de la Prensa", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 929294332, "lat": 40.4178399, "lon": -3.6998588}, {"type": "node", "id": 929294340, "lat": 40.4201363, "lon": -3.7019174, "tags": {"check_date:wheelchair": "2023-12-15", "name": "Fuencarral", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 929294347, "lat": 40.4177838, "lon": -3.6997409}, {"type": "node", "id": 929294354, "lat": 40.4172722, "lon": -3.7020569, "tags": {"barrier": "lift_gate"}}, {"type": "node", "id": 929294358, "lat": 40.4199297, "lon": -3.7019398, "tags": {"name": "Gran V\u00eda", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 938516023, "lat": 40.4200602, "lon": -3.7021841, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 938516026, "lat": 40.4202709, "lon": -3.705242, "tags": {"crossing": "traffic_signals", "highway": "traffic_signals"}}, {"type": "node", "id": 942080443, "lat": 40.4201646, "lon": -3.7036988, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 942080453, "lat": 40.4147991, "lon": -3.7057481}, {"type": "node", "id": 942080475, "lat": 40.4165822, "lon": -3.698898, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 942080479, "lat": 40.4201736, "lon": -3.7022965, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 960747239, "lat": 40.4144472, "lon": -3.7033176}, {"type": "node", "id": 960747242, "lat": 40.4151239, "lon": -3.7032408}, {"type": "node", "id": 960871283, "lat": 40.4190905, "lon": -3.6957368, "tags": {"name": "Barquillo", "railway": "subway_entrance", "wheelchair": "yes", "wheelchair:description": "Steps to ticket Hall. No lifts at this station"}}, {"type": "node", "id": 1132727515, "lat": 40.4166909, "lon": -3.6968822, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 1132727600, "lat": 40.4162591, "lon": -3.6970864, "tags": {"access": "private", "barrier": "gate"}}, {"type": "node", "id": 1187929637, "lat": 40.4145109, "lon": -3.7036733}, {"type": "node", "id": 1187929655, "lat": 40.4143584, "lon": -3.7035396}, {"type": "node", "id": 1187929678, "lat": 40.4141078, "lon": -3.703614}, {"type": "node", "id": 1187929701, "lat": 40.4141904, "lon": -3.7034862}, {"type": "node", "id": 1187929707, "lat": 40.4145109, "lon": -3.7032985}, {"type": "node", "id": 1187929710, "lat": 40.4158174, "lon": -3.7028926}, {"type": "node", "id": 1187929728, "lat": 40.4145467, "lon": -3.7034254}, {"type": "node", "id": 1187929774, "lat": 40.4144831, "lon": -3.7033678}, {"type": "node", "id": 1187929781, "lat": 40.4141414, "lon": -3.7043323}, {"type": "node", "id": 1200524877, "lat": 40.4182947, "lon": -3.7066312, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1200524897, "lat": 40.4185905, "lon": -3.7070044}, {"type": "node", "id": 1209330584, "lat": 40.4165954, "lon": -3.6984141}, {"type": "node", "id": 1209330745, "lat": 40.4166022, "lon": -3.6983232, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 1209330764, "lat": 40.4154541, "lon": -3.6969036}, {"type": "node", "id": 1209331114, "lat": 40.4164631, "lon": -3.6983198}, {"type": "node", "id": 1235055752, "lat": 40.4151332, "lon": -3.7065616}, {"type": "node", "id": 1235055758, "lat": 40.4165641, "lon": -3.7084185}, {"type": "node", "id": 1235055767, "lat": 40.4149633, "lon": -3.707652}, {"type": "node", "id": 1235055783, "lat": 40.4154082, "lon": -3.7065847}, {"type": "node", "id": 1235055787, "lat": 40.4150088, "lon": -3.7067264}, {"type": "node", "id": 1235055793, "lat": 40.4158134, "lon": -3.7079543}, {"type": "node", "id": 1235055815, "lat": 40.4167414, "lon": -3.7086317}, {"type": "node", "id": 1255433813, "lat": 40.4209932, "lon": -3.7056387}, {"type": "node", "id": 1255433819, "lat": 40.4215544, "lon": -3.7055574, "tags": {"amenity": "parking_entrance", "name": "Tudescos"}}, {"type": "node", "id": 1255433821, "lat": 40.421201, "lon": -3.7056197}, {"type": "node", "id": 1258876329, "lat": 40.4164911, "lon": -3.7051871, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1258876333, "lat": 40.4163341, "lon": -3.7070298}, {"type": "node", "id": 1258876334, "lat": 40.4162365, "lon": -3.7071809, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1258876336, "lat": 40.4158693, "lon": -3.7060246}, {"type": "node", "id": 1258876338, "lat": 40.4160093, "lon": -3.7084938, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1258876345, "lat": 40.4161601, "lon": -3.7076908, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 1258876347, "lat": 40.4162606, "lon": -3.7070122, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1316127214, "lat": 40.4160998, "lon": -3.7076749}, {"type": "node", "id": 1316127385, "lat": 40.4157715, "lon": -3.7076233}, {"type": "node", "id": 1316127468, "lat": 40.4159807, "lon": -3.70765}, {"type": "node", "id": 1316127619, "lat": 40.4158902, "lon": -3.7076371}, {"type": "node", "id": 1367876340, "lat": 40.412662, "lon": -3.7016763}, {"type": "node", "id": 1416249446, "lat": 40.4149034, "lon": -3.6946769}, {"type": "node", "id": 1437056478, "lat": 40.4134496, "lon": -3.7064184, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1474148372, "lat": 40.4207206, "lon": -3.7028434}, {"type": "node", "id": 1474148373, "lat": 40.4230342, "lon": -3.7015918}, {"type": "node", "id": 1493715148, "lat": 40.4143594, "lon": -3.7036976, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 1522689973, "lat": 40.4165634, "lon": -3.7045806}, {"type": "node", "id": 1522690014, "lat": 40.4178932, "lon": -3.7068389}, {"type": "node", "id": 1522690015, "lat": 40.4180403, "lon": -3.7063203}, {"type": "node", "id": 1522690016, "lat": 40.4180384, "lon": -3.7062742}, {"type": "node", "id": 1522690018, "lat": 40.4181285, "lon": -3.7066256}, {"type": "node", "id": 1522690019, "lat": 40.4181607, "lon": -3.7065901}, {"type": "node", "id": 1522690022, "lat": 40.4181809, "lon": -3.7065551}, {"type": "node", "id": 1522690024, "lat": 40.4181768, "lon": -3.7072825}, {"type": "node", "id": 1522690025, "lat": 40.4181958, "lon": -3.7065086, "tags": {"crossing": "uncontrolled", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1522690026, "lat": 40.4181712, "lon": -3.7062484, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1522690027, "lat": 40.4181956, "lon": -3.706723}, {"type": "node", "id": 1522690029, "lat": 40.4182207, "lon": -3.7068411}, {"type": "node", "id": 1522690031, "lat": 40.4182405, "lon": -3.7069399, "tags": {"crossing": "uncontrolled", "footway": "crossing"}}, {"type": "node", "id": 1522690032, "lat": 40.418275, "lon": -3.7066921}, {"type": "node", "id": 1522690036, "lat": 40.4184816, "lon": -3.706927}, {"type": "node", "id": 1522690037, "lat": 40.4185204, "lon": -3.7069348}, {"type": "node", "id": 1522690038, "lat": 40.41859, "lon": -3.6972194, "tags": {"crossing": "traffic_signals", "highway": "crossing", "traffic_signals:sound": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 1522690043, "lat": 40.4186767, "lon": -3.6969139}, {"type": "node", "id": 1522690047, "lat": 40.4189198, "lon": -3.6966621}, {"type": "node", "id": 1522690051, "lat": 40.4190419, "lon": -3.6974696, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1522690055, "lat": 40.419079, "lon": -3.6973666, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1522690058, "lat": 40.4190774, "lon": -3.6970394, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1522690059, "lat": 40.4191651, "lon": -3.6955731, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1522690072, "lat": 40.4199922, "lon": -3.7009577}, {"type": "node", "id": 1522690080, "lat": 40.4202392, "lon": -3.7061777, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1522690082, "lat": 40.4202377, "lon": -3.705711, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1522690084, "lat": 40.4202772, "lon": -3.7053328}, {"type": "node", "id": 1522690085, "lat": 40.4203412, "lon": -3.7059476}, {"type": "node", "id": 1522690086, "lat": 40.4203492, "lon": -3.7059981, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 1530664324, "lat": 40.4213501, "lon": -3.7035902, "tags": {"barrier": "bollard"}}, {"type": "node", "id": 1636940728, "lat": 40.4180635, "lon": -3.7066571}, {"type": "node", "id": 1636940730, "lat": 40.4181555, "lon": -3.7066487}, {"type": "node", "id": 1645108319, "lat": 40.4124695, "lon": -3.7032162}, {"type": "node", "id": 1645108320, "lat": 40.4124845, "lon": -3.7025556, "tags": {"highway": "give_way"}}, {"type": "node", "id": 1645108329, "lat": 40.4140766, "lon": -3.7035912, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1682265913, "lat": 40.414151, "lon": -3.7034752, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1682265918, "lat": 40.4142055, "lon": -3.703374}, {"type": "node", "id": 1682265920, "lat": 40.4143103, "lon": -3.7014061}, {"type": "node", "id": 1682265928, "lat": 40.4143881, "lon": -3.7013708}, {"type": "node", "id": 1682265938, "lat": 40.4144608, "lon": -3.700806}, {"type": "node", "id": 1682265950, "lat": 40.4144702, "lon": -3.7001862, "tags": {"access": "destination", "barrier": "bollard"}}, {"type": "node", "id": 1682265955, "lat": 40.4144904, "lon": -3.7032142}, {"type": "node", "id": 1682265969, "lat": 40.4145516, "lon": -3.7001351, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 1682265980, "lat": 40.4146585, "lon": -3.7033644, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "kerb": "flush", "tactile_paving": "no"}}, {"type": "node", "id": 1682265986, "lat": 40.4146872, "lon": -3.7002876}, {"type": "node", "id": 1682265991, "lat": 40.4147485, "lon": -3.7003091}, {"type": "node", "id": 1682266010, "lat": 40.4147641, "lon": -3.7033491}, {"type": "node", "id": 1682266025, "lat": 40.4148768, "lon": -3.703314}, {"type": "node", "id": 1682266029, "lat": 40.41492, "lon": -3.7002932}, {"type": "node", "id": 1682266037, "lat": 40.4155209, "lon": -3.6969695}, {"type": "node", "id": 1682266051, "lat": 40.4157539, "lon": -3.7025982, "tags": {"barrier": "bollard", "bollard": "rising"}}, {"type": "node", "id": 1682266055, "lat": 40.4159004, "lon": -3.6969799}, {"type": "node", "id": 1682266063, "lat": 40.4164326, "lon": -3.700402, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 1682266080, "lat": 40.4168067, "lon": -3.7003007}, {"type": "node", "id": 1718376823, "lat": 40.4220095, "lon": -3.6966717}, {"type": "node", "id": 1777473019, "lat": 40.4102937, "lon": -3.7025233}, {"type": "node", "id": 1777473022, "lat": 40.4124445, "lon": -3.7031817, "tags": {"direction": "forward", "highway": "give_way", "side": "right", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 1777473023, "lat": 40.412466, "lon": -3.7031488}, {"type": "node", "id": 1777473024, "lat": 40.4124662, "lon": -3.703161}, {"type": "node", "id": 1777473028, "lat": 40.4125262, "lon": -3.7039528, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 1777473030, "lat": 40.4125535, "lon": -3.7034349}, {"type": "node", "id": 1777473033, "lat": 40.4126667, "lon": -3.7050512, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals"}}, {"type": "node", "id": 1777869683, "lat": 40.4139567, "lon": -3.7051897}, {"type": "node", "id": 1777869684, "lat": 40.4140368, "lon": -3.7044929}, {"type": "node", "id": 1783889513, "lat": 40.4147974, "lon": -3.7056377}, {"type": "node", "id": 1783889515, "lat": 40.4149486, "lon": -3.7058434}, {"type": "node", "id": 1783889517, "lat": 40.4150175, "lon": -3.7060722}, {"type": "node", "id": 1789051704, "lat": 40.4162687, "lon": -3.7078461}, {"type": "node", "id": 1796743677, "lat": 40.4146448, "lon": -3.7075498, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 1796743678, "lat": 40.4151376, "lon": -3.7078478}, {"type": "node", "id": 1796759112, "lat": 40.4143162, "lon": -3.7074525, "tags": {"highway": "crossing"}}, {"type": "node", "id": 1797905478, "lat": 40.4147492, "lon": -3.7055991, "tags": {"barrier": "bollard", "bollard": "fixed"}}, {"type": "node", "id": 1855027664, "lat": 40.4250234, "lon": -3.6967412}, {"type": "node", "id": 1855054520, "lat": 40.4134153, "lon": -3.6978194}, {"type": "node", "id": 1855054523, "lat": 40.4137391, "lon": -3.6977665}, {"type": "node", "id": 1884620167, "lat": 40.4205845, "lon": -3.6992209}, {"type": "node", "id": 1900998783, "lat": 40.4200523, "lon": -3.6956435, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 2005647245, "lat": 40.4179982, "lon": -3.6993008}, {"type": "node", "id": 2005647247, "lat": 40.4186877, "lon": -3.6970446, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 2005647254, "lat": 40.4186755, "lon": -3.695799, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes"}}, {"type": "node", "id": 2005647285, "lat": 40.4190365, "lon": -3.6940168}, {"type": "node", "id": 2005647289, "lat": 40.4196305, "lon": -3.69364}, {"type": "node", "id": 2005647290, "lat": 40.4195218, "lon": -3.6937181}, {"type": "node", "id": 2005647291, "lat": 40.4180444, "lon": -3.699379, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 2005647292, "lat": 40.4189758, "lon": -3.6939312}, {"type": "node", "id": 2005647297, "lat": 40.4194693, "lon": -3.6937773}, {"type": "node", "id": 2005647299, "lat": 40.4197897, "lon": -3.6934379}, {"type": "node", "id": 2005647302, "lat": 40.4198591, "lon": -3.6934026}, {"type": "node", "id": 2005647304, "lat": 40.4189261, "lon": -3.693906}, {"type": "node", "id": 2005647306, "lat": 40.4196831, "lon": -3.6935823}, {"type": "node", "id": 2005647308, "lat": 40.4197499, "lon": -3.6934786}, {"type": "node", "id": 2005647312, "lat": 40.4188945, "lon": -3.6939074}, {"type": "node", "id": 2005647314, "lat": 40.4184217, "lon": -3.6969262}, {"type": "node", "id": 2005647993, "lat": 40.4145984, "lon": -3.7075649}, {"type": "node", "id": 2090546860, "lat": 40.4147304, "lon": -3.7055978}, {"type": "node", "id": 2090546861, "lat": 40.4147563, "lon": -3.7054599}, {"type": "node", "id": 2090546862, "lat": 40.414988, "lon": -3.7054195}, {"type": "node", "id": 2090546863, "lat": 40.4163934, "lon": -3.7003969}, {"type": "node", "id": 2090546864, "lat": 40.4164117, "lon": -3.7005949}, {"type": "node", "id": 2090546865, "lat": 40.4165499, "lon": -3.7046869}, {"type": "node", "id": 2090546866, "lat": 40.416598, "lon": -3.7001671}, {"type": "node", "id": 2121950927, "lat": 40.4204225, "lon": -3.7059141}, {"type": "node", "id": 2121950928, "lat": 40.4204058, "lon": -3.705675, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 2121950931, "lat": 40.4206606, "lon": -3.7063216, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 2239998764, "lat": 40.421982, "lon": -3.6964719}, {"type": "node", "id": 2446976641, "lat": 40.41487, "lon": -3.7067427}, {"type": "node", "id": 2472773299, "lat": 40.4203354, "lon": -3.706058}, {"type": "node", "id": 2472773301, "lat": 40.4202403, "lon": -3.7058183}, {"type": "node", "id": 2472773305, "lat": 40.4202731, "lon": -3.7059832}, {"type": "node", "id": 2505404898, "lat": 40.4167729, "lon": -3.7023588}, {"type": "node", "id": 2505404899, "lat": 40.4168008, "lon": -3.7023919}, {"type": "node", "id": 2505404903, "lat": 40.4170142, "lon": -3.7024504}, {"type": "node", "id": 2505405832, "lat": 40.4170706, "lon": -3.7029423, "tags": {"name": "Alcal\u00e1", "railway": "subway_entrance", "wheelchair": "no"}}, {"type": "node", "id": 2506473225, "lat": 40.4191039, "lon": -3.6940564}, {"type": "node", "id": 2506478057, "lat": 40.4187529, "lon": -3.6958187}, {"type": "node", "id": 2506478058, "lat": 40.4186089, "lon": -3.696415, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing"}}, {"type": "node", "id": 2506478062, "lat": 40.4180399, "lon": -3.698568}, {"type": "node", "id": 2506478082, "lat": 40.4164454, "lon": -3.7057738}, {"type": "node", "id": 2506478084, "lat": 40.4162851, "lon": -3.7070187}, {"type": "node", "id": 2506478087, "lat": 40.4161568, "lon": -3.7080395}, {"type": "node", "id": 2513452429, "lat": 40.4187872, "lon": -3.6965375, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 2600764328, "lat": 40.4163369, "lon": -3.7086118}, {"type": "node", "id": 2600764330, "lat": 40.4163453, "lon": -3.7085603}, {"type": "node", "id": 2600764336, "lat": 40.4163615, "lon": -3.7084733}, {"type": "node", "id": 2622900858, "lat": 40.4161666, "lon": -3.707928}, {"type": "node", "id": 2650143148, "lat": 40.4184819, "lon": -3.6969504}, {"type": "node", "id": 2650143188, "lat": 40.4201983, "lon": -3.7063111}, {"type": "node", "id": 2673249151, "lat": 40.4185379, "lon": -3.6973845, "tags": {"bus": "yes", "name": "Alcal\u00e1 - Gran V\u00eda", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "3411"}}, {"type": "node", "id": 2674601893, "lat": 40.4170993, "lon": -3.702222}, {"type": "node", "id": 2689497182, "lat": 40.4213403, "lon": -3.6995834}, {"type": "node", "id": 2711609450, "lat": 40.4206122, "lon": -3.6993216}, {"type": "node", "id": 2711609456, "lat": 40.4206373, "lon": -3.6994069, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 2711609464, "lat": 40.4206617, "lon": -3.6993935}, {"type": "node", "id": 2711609496, "lat": 40.4207709, "lon": -3.6991258}, {"type": "node", "id": 2711609520, "lat": 40.4208096, "lon": -3.6998543}, {"type": "node", "id": 2711609529, "lat": 40.4208194, "lon": -3.6998843, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "incorrect"}}, {"type": "node", "id": 2734140708, "lat": 40.4139771, "lon": -3.7061889}, {"type": "node", "id": 2827847194, "lat": 40.4165225, "lon": -3.7049261}, {"type": "node", "id": 2835449216, "lat": 40.4186099, "lon": -3.7070371}, {"type": "node", "id": 3103665947, "lat": 40.4225953, "lon": -3.7075539}, {"type": "node", "id": 3160932223, "lat": 40.4219271, "lon": -3.7055485}, {"type": "node", "id": 3160932224, "lat": 40.4219411, "lon": -3.7055332}, {"type": "node", "id": 3160949633, "lat": 40.4227508, "lon": -3.6993974}, {"type": "node", "id": 3160949634, "lat": 40.4228808, "lon": -3.6999198}, {"type": "node", "id": 3160949635, "lat": 40.4228886, "lon": -3.6999937}, {"type": "node", "id": 3160949636, "lat": 40.4229579, "lon": -3.7002646}, {"type": "node", "id": 3160962491, "lat": 40.4206072, "lon": -3.6992093}, {"type": "node", "id": 3160962492, "lat": 40.4206368, "lon": -3.6993092}, {"type": "node", "id": 3160962493, "lat": 40.4208699, "lon": -3.6990811}, {"type": "node", "id": 3160962494, "lat": 40.4209725, "lon": -3.6990304}, {"type": "node", "id": 3160962495, "lat": 40.421011, "lon": -3.6989985}, {"type": "node", "id": 3160962496, "lat": 40.4210945, "lon": -3.6988898}, {"type": "node", "id": 3163832977, "lat": 40.4229377, "lon": -3.7007136}, {"type": "node", "id": 3205417098, "lat": 40.4163198, "lon": -3.6979383}, {"type": "node", "id": 3205417105, "lat": 40.417981, "lon": -3.699195}, {"type": "node", "id": 3208415469, "lat": 40.4155714, "lon": -3.7040391}, {"type": "node", "id": 3208415483, "lat": 40.4158337, "lon": -3.6961638}, {"type": "node", "id": 3208415531, "lat": 40.4168633, "lon": -3.6955515}, {"type": "node", "id": 3257183375, "lat": 40.416392, "lon": -3.7086796}, {"type": "node", "id": 3257183384, "lat": 40.4165107, "lon": -3.7086979}, {"type": "node", "id": 3257183401, "lat": 40.416781, "lon": -3.7085718}, {"type": "node", "id": 3257183404, "lat": 40.4168, "lon": -3.7086729}, {"type": "node", "id": 3257183408, "lat": 40.4168689, "lon": -3.7024496}, {"type": "node", "id": 3257183415, "lat": 40.416911, "lon": -3.702468}, {"type": "node", "id": 3257183416, "lat": 40.4169729, "lon": -3.7024702}, {"type": "node", "id": 3257183417, "lat": 40.4170317, "lon": -3.702437}, {"type": "node", "id": 3257430275, "lat": 40.4165086, "lon": -3.7084118}, {"type": "node", "id": 3257430281, "lat": 40.416566, "lon": -3.7086989}, {"type": "node", "id": 3257430289, "lat": 40.416606, "lon": -3.7087054}, {"type": "node", "id": 3257430303, "lat": 40.4166676, "lon": -3.7087164}, {"type": "node", "id": 3257430309, "lat": 40.4166904, "lon": -3.7084339}, {"type": "node", "id": 3257430311, "lat": 40.4167274, "lon": -3.7084384}, {"type": "node", "id": 3257510593, "lat": 40.4195557, "lon": -3.7016122, "tags": {"name": "Montera", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3257510594, "lat": 40.4198403, "lon": -3.7013648, "tags": {"name": "Hortaleza", "railway": "subway_entrance", "wheelchair": "yes"}}, {"type": "node", "id": 3257510604, "lat": 40.4166572, "lon": -3.7034502}, {"type": "node", "id": 3257510605, "lat": 40.4167046, "lon": -3.70459}, {"type": "node", "id": 3257510606, "lat": 40.4168454, "lon": -3.7030263}, {"type": "node", "id": 3257510607, "lat": 40.417093, "lon": -3.7030361}, {"type": "node", "id": 3257510608, "lat": 40.4171122, "lon": -3.70319}, {"type": "node", "id": 3257510610, "lat": 40.4195128, "lon": -3.7016479}, {"type": "node", "id": 3257510611, "lat": 40.4198829, "lon": -3.7013258}, {"type": "node", "id": 3257510612, "lat": 40.4199239, "lon": -3.7018609}, {"type": "node", "id": 3257510613, "lat": 40.4201308, "lon": -3.701839}, {"type": "node", "id": 3265952297, "lat": 40.4180673, "lon": -3.6991202, "tags": {"addr:city": "Madrid", "addr:street": "Calle Alcala", "name": "Sevilla", "railway": "subway_entrance", "wheelchair": "no", "wheelchair:description": "Steps to Ticket Hall, No lifts at this station."}}, {"type": "node", "id": 3275558361, "lat": 40.419812, "lon": -3.7078264}, {"type": "node", "id": 3275558363, "lat": 40.420008, "lon": -3.7057846}, {"type": "node", "id": 3275558364, "lat": 40.4201575, "lon": -3.7060543}, {"type": "node", "id": 3275558365, "lat": 40.4201376, "lon": -3.7062769}, {"type": "node", "id": 3275558366, "lat": 40.4201709, "lon": -3.7052519}, {"type": "node", "id": 3275558367, "lat": 40.4201735, "lon": -3.7053238}, {"type": "node", "id": 3275558369, "lat": 40.4204916, "lon": -3.7060745}, {"type": "node", "id": 3275558370, "lat": 40.4205078, "lon": -3.7060561}, {"type": "node", "id": 3275673380, "lat": 40.416735, "lon": -3.7030753}, {"type": "node", "id": 3275673385, "lat": 40.418115, "lon": -3.7063614}, {"type": "node", "id": 3280495557, "lat": 40.4177622, "lon": -3.6995965, "tags": {"bicycle": "yes", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes"}}, {"type": "node", "id": 3280548361, "lat": 40.4166358, "lon": -3.7037004}, {"type": "node", "id": 3295637735, "lat": 40.4165008, "lon": -3.6983073}, {"type": "node", "id": 3323223799, "lat": 40.4180377, "lon": -3.7062972}, {"type": "node", "id": 3323223800, "lat": 40.4180471, "lon": -3.7062575}, {"type": "node", "id": 3323223801, "lat": 40.4180492, "lon": -3.706343}, {"type": "node", "id": 3323223802, "lat": 40.4180622, "lon": -3.7062377}, {"type": "node", "id": 3323223803, "lat": 40.4180638, "lon": -3.7063604}, {"type": "node", "id": 3323223804, "lat": 40.4180952, "lon": -3.7063676}, {"type": "node", "id": 3323223805, "lat": 40.4181274, "lon": -3.7061747, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3323223806, "lat": 40.4182041, "lon": -3.7064681}, {"type": "node", "id": 3323223807, "lat": 40.4182002, "lon": -3.7063694}, {"type": "node", "id": 3323223808, "lat": 40.418247, "lon": -3.7067371, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3323223809, "lat": 40.4183172, "lon": -3.7071497, "tags": {"highway": "give_way"}}, {"type": "node", "id": 3323271327, "lat": 40.413575, "lon": -3.7016835, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3323271328, "lat": 40.4146567, "lon": -3.7069581}, {"type": "node", "id": 3387688920, "lat": 40.4178096, "lon": -3.6995298}, {"type": "node", "id": 3387688924, "lat": 40.4181034, "lon": -3.6986424}, {"type": "node", "id": 3387688925, "lat": 40.4181597, "lon": -3.6986361, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 3387932502, "lat": 40.420543, "lon": -3.7063714, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3411942221, "lat": 40.4195094, "lon": -3.7056629}, {"type": "node", "id": 3411942222, "lat": 40.4195291, "lon": -3.7059526}, {"type": "node", "id": 3411942226, "lat": 40.4196476, "lon": -3.7054759}, {"type": "node", "id": 3411942228, "lat": 40.4201434, "lon": -3.7049038}, {"type": "node", "id": 3411942229, "lat": 40.4201484, "lon": -3.705253}, {"type": "node", "id": 3411942231, "lat": 40.420163, "lon": -3.7054752}, {"type": "node", "id": 3411959152, "lat": 40.417329, "lon": -3.7042911}, {"type": "node", "id": 3411959153, "lat": 40.4173843, "lon": -3.7041524}, {"type": "node", "id": 3411959154, "lat": 40.4175116, "lon": -3.7044088}, {"type": "node", "id": 3411959155, "lat": 40.4179223, "lon": -3.7045066}, {"type": "node", "id": 3411959156, "lat": 40.4183212, "lon": -3.7049514}, {"type": "node", "id": 3411959157, "lat": 40.4186041, "lon": -3.7051376}, {"type": "node", "id": 3411968694, "lat": 40.4189511, "lon": -3.7048721}, {"type": "node", "id": 3412466778, "lat": 40.4183554, "lon": -3.7042507}, {"type": "node", "id": 3412477711, "lat": 40.418152, "lon": -3.704198}, {"type": "node", "id": 3412512764, "lat": 40.4175686, "lon": -3.703724}, {"type": "node", "id": 3412512765, "lat": 40.4176277, "lon": -3.7035827}, {"type": "node", "id": 3412532922, "lat": 40.4179312, "lon": -3.7056053}, {"type": "node", "id": 3412532923, "lat": 40.41795, "lon": -3.705608}, {"type": "node", "id": 3412532924, "lat": 40.4186955, "lon": -3.7038743}, {"type": "node", "id": 3412532926, "lat": 40.4187973, "lon": -3.703734}, {"type": "node", "id": 3412532927, "lat": 40.4188598, "lon": -3.7037925}, {"type": "node", "id": 3412532928, "lat": 40.4188682, "lon": -3.703814, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3412546847, "lat": 40.4189067, "lon": -3.7022466}, {"type": "node", "id": 3412546848, "lat": 40.4192058, "lon": -3.7029273}, {"type": "node", "id": 3413063116, "lat": 40.4189809, "lon": -3.7024092}, {"type": "node", "id": 3413063130, "lat": 40.4191439, "lon": -3.7027668}, {"type": "node", "id": 3414873427, "lat": 40.4183598, "lon": -3.703091, "tags": {"crossing": "uncontrolled", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3414972214, "lat": 40.4170212, "lon": -3.7058995}, {"type": "node", "id": 3414972215, "lat": 40.417175, "lon": -3.7059998}, {"type": "node", "id": 3414972216, "lat": 40.417198, "lon": -3.7066593}, {"type": "node", "id": 3414972217, "lat": 40.4173346, "lon": -3.7050769}, {"type": "node", "id": 3414972218, "lat": 40.4173403, "lon": -3.7071859}, {"type": "node", "id": 3414972220, "lat": 40.4173648, "lon": -3.705228}, {"type": "node", "id": 3414972221, "lat": 40.4173757, "lon": -3.705319}, {"type": "node", "id": 3414972222, "lat": 40.417383, "lon": -3.7053241}, {"type": "node", "id": 3414972223, "lat": 40.4173916, "lon": -3.7053235}, {"type": "node", "id": 3414972225, "lat": 40.4174573, "lon": -3.7071212}, {"type": "node", "id": 3414972228, "lat": 40.4175201, "lon": -3.7078124}, {"type": "node", "id": 3414972229, "lat": 40.417573, "lon": -3.7052442}, {"type": "node", "id": 3414972230, "lat": 40.4175875, "lon": -3.7052448}, {"type": "node", "id": 3414972231, "lat": 40.4176043, "lon": -3.7052621}, {"type": "node", "id": 3414972232, "lat": 40.4176272, "lon": -3.7077179}, {"type": "node", "id": 3414972234, "lat": 40.4177058, "lon": -3.70556}, {"type": "node", "id": 3414972236, "lat": 40.4177438, "lon": -3.7055447}, {"type": "node", "id": 3414972238, "lat": 40.4177294, "lon": -3.7085853}, {"type": "node", "id": 3414972240, "lat": 40.4177617, "lon": -3.7055728}, {"type": "node", "id": 3414972241, "lat": 40.4177781, "lon": -3.7055856}, {"type": "node", "id": 3414972243, "lat": 40.4178316, "lon": -3.7084733}, {"type": "node", "id": 3414972244, "lat": 40.4178862, "lon": -3.7056357, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3414972248, "lat": 40.4179652, "lon": -3.7054775}, {"type": "node", "id": 3414972249, "lat": 40.4179755, "lon": -3.7054801}, {"type": "node", "id": 3414972250, "lat": 40.4179918, "lon": -3.7056836, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "smoothness": "excellent", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3414972251, "lat": 40.4180191, "lon": -3.705597}, {"type": "node", "id": 3414972252, "lat": 40.4181118, "lon": -3.7058843}, {"type": "node", "id": 3414972258, "lat": 40.4185731, "lon": -3.7065418}, {"type": "node", "id": 3416565680, "lat": 40.4193192, "lon": -3.7074528}, {"type": "node", "id": 3416565683, "lat": 40.419364, "lon": -3.7074829}, {"type": "node", "id": 3425030903, "lat": 40.4142148, "lon": -3.7017802}, {"type": "node", "id": 3425030904, "lat": 40.4143978, "lon": -3.7025585}, {"type": "node", "id": 3428239936, "lat": 40.420215, "lon": -3.7072453, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3428610312, "lat": 40.4139498, "lon": -3.7047141, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3428624760, "lat": 40.4143528, "lon": -3.7040558, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3428636172, "lat": 40.4130856, "lon": -3.706426, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 3429275120, "lat": 40.4196352, "lon": -3.7030533}, {"type": "node", "id": 3429275121, "lat": 40.4196835, "lon": -3.7030481}, {"type": "node", "id": 3429293416, "lat": 40.4202122, "lon": -3.7030084, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3429367514, "lat": 40.4189432, "lon": -3.7019641}, {"type": "node", "id": 3429367519, "lat": 40.4196896, "lon": -3.6997621}, {"type": "node", "id": 3429367521, "lat": 40.4197513, "lon": -3.7000072}, {"type": "node", "id": 3429367522, "lat": 40.4198221, "lon": -3.7003449}, {"type": "node", "id": 3429367525, "lat": 40.4198777, "lon": -3.7006765}, {"type": "node", "id": 3429367526, "lat": 40.4198417, "lon": -3.699722}, {"type": "node", "id": 3429367528, "lat": 40.4199338, "lon": -3.7017499}, {"type": "node", "id": 3429367530, "lat": 40.4199136, "lon": -3.7009456}, {"type": "node", "id": 3429367532, "lat": 40.419927, "lon": -3.701654}, {"type": "node", "id": 3429367534, "lat": 40.4199347, "lon": -3.7012397}, {"type": "node", "id": 3429367535, "lat": 40.4199631, "lon": -3.7021949}, {"type": "node", "id": 3429367536, "lat": 40.4199786, "lon": -3.70243, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429367537, "lat": 40.4199482, "lon": -3.7001629}, {"type": "node", "id": 3429367538, "lat": 40.4200195, "lon": -3.7014665, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3429367539, "lat": 40.4200197, "lon": -3.7030218, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3429367540, "lat": 40.4200503, "lon": -3.7034472, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3429367542, "lat": 40.4199985, "lon": -3.7004689}, {"type": "node", "id": 3429367543, "lat": 40.4200851, "lon": -3.7039462, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429367545, "lat": 40.4200487, "lon": -3.7008286}, {"type": "node", "id": 3429367546, "lat": 40.4200706, "lon": -3.7011589}, {"type": "node", "id": 3429367547, "lat": 40.4200835, "lon": -3.7010712}, {"type": "node", "id": 3429367548, "lat": 40.4201389, "lon": -3.7048348, "tags": {"crossing": "traffic_signals", "highway": "crossing", "wheelchair": "yes"}}, {"type": "node", "id": 3429367549, "lat": 40.4200933, "lon": -3.7011556, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429367550, "lat": 40.4201004, "lon": -3.7014643}, {"type": "node", "id": 3429367551, "lat": 40.420119, "lon": -3.7016219}, {"type": "node", "id": 3429367552, "lat": 40.4201508, "lon": -3.7018016}, {"type": "node", "id": 3429367553, "lat": 40.4201607, "lon": -3.7021697}, {"type": "node", "id": 3429367555, "lat": 40.420258, "lon": -3.7036859}, {"type": "node", "id": 3429367556, "lat": 40.4202748, "lon": -3.7039039, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3429367557, "lat": 40.4203369, "lon": -3.7048246, "tags": {"crossing": "traffic_signals", "highway": "crossing", "wheelchair": "yes"}}, {"type": "node", "id": 3429367558, "lat": 40.4203705, "lon": -3.7052294}, {"type": "node", "id": 3429367776, "lat": 40.4199547, "lon": -3.701842}, {"type": "node", "id": 3429376972, "lat": 40.4190695, "lon": -3.6976145}, {"type": "node", "id": 3429376973, "lat": 40.4191266, "lon": -3.69721}, {"type": "node", "id": 3429376974, "lat": 40.4192799, "lon": -3.6983314}, {"type": "node", "id": 3429376975, "lat": 40.4193933, "lon": -3.6981703, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429376976, "lat": 40.419435, "lon": -3.698293}, {"type": "node", "id": 3429376979, "lat": 40.419609, "lon": -3.6994606}, {"type": "node", "id": 3429376980, "lat": 40.4196707, "lon": -3.699685, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429376983, "lat": 40.4198027, "lon": -3.6995644}, {"type": "node", "id": 3429376984, "lat": 40.4198208, "lon": -3.6996469, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 3429376990, "lat": 40.4200978, "lon": -3.7012455}, {"type": "node", "id": 3429401831, "lat": 40.4180708, "lon": -3.7025184}, {"type": "node", "id": 3429401833, "lat": 40.4182575, "lon": -3.7025731}, {"type": "node", "id": 3429417264, "lat": 40.418935, "lon": -3.7008037}, {"type": "node", "id": 3429417269, "lat": 40.4200221, "lon": -3.7016306}, {"type": "node", "id": 3430170247, "lat": 40.4194129, "lon": -3.7039396}, {"type": "node", "id": 3430170248, "lat": 40.4194566, "lon": -3.7038755}, {"type": "node", "id": 3430170250, "lat": 40.4195115, "lon": -3.704589}, {"type": "node", "id": 3430170253, "lat": 40.4196465, "lon": -3.7042523}, {"type": "node", "id": 3436803700, "lat": 40.4175707, "lon": -3.7004568, "tags": {"crossing": "unmarked", "crossing:markings": "no", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "no"}}, {"type": "node", "id": 3436803701, "lat": 40.4180047, "lon": -3.6985594, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3436803703, "lat": 40.4180592, "lon": -3.6992795}, {"type": "node", "id": 3436803704, "lat": 40.4180716, "lon": -3.6992345}, {"type": "node", "id": 3436803707, "lat": 40.4181129, "lon": -3.6991127}, {"type": "node", "id": 3436803708, "lat": 40.4182034, "lon": -3.6987458, "tags": {"amenity": "parking_entrance", "layer": "-1", "maxheight": "1.9", "parking": "underground"}}, {"type": "node", "id": 3436803709, "lat": 40.4182535, "lon": -3.6987269}, {"type": "node", "id": 3436803710, "lat": 40.4182624, "lon": -3.6983034}, {"type": "node", "id": 3436803711, "lat": 40.4182666, "lon": -3.6984228}, {"type": "node", "id": 3436803712, "lat": 40.4182692, "lon": -3.6985543}, {"type": "node", "id": 3436803713, "lat": 40.4182744, "lon": -3.6984891}, {"type": "node", "id": 3436803714, "lat": 40.4183605, "lon": -3.6994373}, {"type": "node", "id": 3436803715, "lat": 40.4184618, "lon": -3.6994876}, {"type": "node", "id": 3436803716, "lat": 40.4186979, "lon": -3.6972503}, {"type": "node", "id": 3436803717, "lat": 40.4187219, "lon": -3.6971479}, {"type": "node", "id": 3436803718, "lat": 40.4188371, "lon": -3.6970167}, {"type": "node", "id": 3436803720, "lat": 40.4188776, "lon": -3.6971057}, {"type": "node", "id": 3436803721, "lat": 40.4189053, "lon": -3.6971688}, {"type": "node", "id": 3436803722, "lat": 40.418929, "lon": -3.697224}, {"type": "node", "id": 3436803723, "lat": 40.4189979, "lon": -3.6974108}, {"type": "node", "id": 3436803724, "lat": 40.4189536, "lon": -3.6975255}, {"type": "node", "id": 3436803725, "lat": 40.4189162, "lon": -3.6978034}, {"type": "node", "id": 3436803726, "lat": 40.4189541, "lon": -3.6972911}, {"type": "node", "id": 3436803727, "lat": 40.4189379, "lon": -3.6983019}, {"type": "node", "id": 3436803728, "lat": 40.4189456, "lon": -3.6983612}, {"type": "node", "id": 3436803729, "lat": 40.4189583, "lon": -3.6976089}, {"type": "node", "id": 3436803730, "lat": 40.4189748, "lon": -3.6977778}, {"type": "node", "id": 3436803731, "lat": 40.4190281, "lon": -3.6974873, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3436803732, "lat": 40.4190043, "lon": -3.6982546}, {"type": "node", "id": 3436803733, "lat": 40.4190043, "lon": -3.6984644}, {"type": "node", "id": 3436803734, "lat": 40.4190108, "lon": -3.6983134}, {"type": "node", "id": 3436803735, "lat": 40.4190622, "lon": -3.6989048}, {"type": "node", "id": 3436803736, "lat": 40.4191705, "lon": -3.6990861}, {"type": "node", "id": 3436803737, "lat": 40.4191934, "lon": -3.6996588}, {"type": "node", "id": 3436803738, "lat": 40.4192138, "lon": -3.6996465}, {"type": "node", "id": 3436803739, "lat": 40.4192206, "lon": -3.6996185}, {"type": "node", "id": 3436803740, "lat": 40.4192495, "lon": -3.6995839}, {"type": "node", "id": 3436803741, "lat": 40.4192907, "lon": -3.6995978}, {"type": "node", "id": 3436803742, "lat": 40.419319, "lon": -3.6996474}, {"type": "node", "id": 3436803743, "lat": 40.4193438, "lon": -3.699666}, {"type": "node", "id": 3436803744, "lat": 40.4195902, "lon": -3.6996304}, {"type": "node", "id": 3436803745, "lat": 40.4196043, "lon": -3.6996226}, {"type": "node", "id": 3436803746, "lat": 40.419646, "lon": -3.6995934}, {"type": "node", "id": 3436809571, "lat": 40.4187127, "lon": -3.6956347}, {"type": "node", "id": 3436809574, "lat": 40.4190078, "lon": -3.6949733}, {"type": "node", "id": 3436809575, "lat": 40.4189998, "lon": -3.6966921}, {"type": "node", "id": 3436809576, "lat": 40.4190045, "lon": -3.6965989}, {"type": "node", "id": 3436809578, "lat": 40.4190092, "lon": -3.6967633}, {"type": "node", "id": 3436809579, "lat": 40.4190112, "lon": -3.6939704}, {"type": "node", "id": 3436809580, "lat": 40.4190216, "lon": -3.6964755}, {"type": "node", "id": 3436809581, "lat": 40.4190343, "lon": -3.6940598}, {"type": "node", "id": 3436809583, "lat": 40.4190742, "lon": -3.6958262}, {"type": "node", "id": 3436809584, "lat": 40.4190239, "lon": -3.6968744}, {"type": "node", "id": 3436809585, "lat": 40.4191461, "lon": -3.6942132}, {"type": "node", "id": 3436809589, "lat": 40.4191011, "lon": -3.6971214}, {"type": "node", "id": 3436814273, "lat": 40.4185265, "lon": -3.6964993}, {"type": "node", "id": 3436814274, "lat": 40.4185493, "lon": -3.6963922, "tags": {"button_operated": "no", "check_date:crossing": "2023-10-19", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3436814275, "lat": 40.4186929, "lon": -3.6957262}, {"type": "node", "id": 3436814276, "lat": 40.4189644, "lon": -3.6944022}, {"type": "node", "id": 3436814277, "lat": 40.4191224, "lon": -3.6958416}, {"type": "node", "id": 3436824693, "lat": 40.4193979, "lon": -3.6941522}, {"type": "node", "id": 3436824694, "lat": 40.4194071, "lon": -3.6941032}, {"type": "node", "id": 3436824695, "lat": 40.4194462, "lon": -3.6938287}, {"type": "node", "id": 3502487950, "lat": 40.416901, "lon": -3.7073649}, {"type": "node", "id": 3506679268, "lat": 40.4187, "lon": -3.7037171}, {"type": "node", "id": 3506679269, "lat": 40.418731, "lon": -3.7038189}, {"type": "node", "id": 3506679270, "lat": 40.4191206, "lon": -3.7031416}, {"type": "node", "id": 3506679271, "lat": 40.4191396, "lon": -3.7033694}, {"type": "node", "id": 3506679272, "lat": 40.4191365, "lon": -3.7030768}, {"type": "node", "id": 3506679273, "lat": 40.4191443, "lon": -3.7033204}, {"type": "node", "id": 3506679274, "lat": 40.4191423, "lon": -3.703291}, {"type": "node", "id": 3506679275, "lat": 40.4191813, "lon": -3.7030139, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3506720022, "lat": 40.4198725, "lon": -3.699847}, {"type": "node", "id": 3507528474, "lat": 40.4156693, "lon": -3.7081816}, {"type": "node", "id": 3507528475, "lat": 40.4157255, "lon": -3.7066135}, {"type": "node", "id": 3507528477, "lat": 40.4158642, "lon": -3.7068442}, {"type": "node", "id": 3507528479, "lat": 40.416071, "lon": -3.7080019}, {"type": "node", "id": 3507528481, "lat": 40.416127, "lon": -3.7076826}, {"type": "node", "id": 3507528492, "lat": 40.4162208, "lon": -3.7078803, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 3507529697, "lat": 40.4162892, "lon": -3.7067907, "tags": {"crossing": "marked", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 3507529700, "lat": 40.4163124, "lon": -3.7070249}, {"type": "node", "id": 3507529702, "lat": 40.4163229, "lon": -3.7051435}, {"type": "node", "id": 3507529704, "lat": 40.4164023, "lon": -3.7058927, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 3507529705, "lat": 40.4163712, "lon": -3.7057605}, {"type": "node", "id": 3507529708, "lat": 40.4163612, "lon": -3.7050809, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3507529720, "lat": 40.4164819, "lon": -3.7057818, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 3507529722, "lat": 40.4166047, "lon": -3.7032742}, {"type": "node", "id": 3507557297, "lat": 40.4162225, "lon": -3.7081118}, {"type": "node", "id": 3507557298, "lat": 40.4168206, "lon": -3.7074059}, {"type": "node", "id": 3507562279, "lat": 40.4166175, "lon": -3.708425, "tags": {"addr:city": "Madrid", "addr:housenumber": "10", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507562283, "lat": 40.4164468, "lon": -3.708688, "tags": {"addr:housenumber": "4", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507562288, "lat": 40.416537, "lon": -3.7086984, "tags": {"addr:housenumber": "5", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507562994, "lat": 40.4165874, "lon": -3.7087032, "tags": {"addr:housenumber": "6", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507562998, "lat": 40.4166214, "lon": -3.7087082, "tags": {"addr:housenumber": "7", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507563000, "lat": 40.4167693, "lon": -3.7087258, "tags": {"addr:housenumber": "8", "addr:postcode": "28013", "addr:street": "Plaza de Herradores", "entrance": "main"}}, {"type": "node", "id": 3507563005, "lat": 40.4167887, "lon": -3.7086104}, {"type": "node", "id": 3512893996, "lat": 40.4183027, "lon": -3.7078493, "tags": {"addr:city": "Madrid", "addr:housenumber": "4", "addr:postcode": "28013", "addr:street": "Calle de la Flora", "entrance": "main"}}, {"type": "node", "id": 3512893999, "lat": 40.4183234, "lon": -3.7080102, "tags": {"addr:city": "Madrid", "addr:housenumber": "6", "addr:postcode": "28013", "addr:street": "Calle de la Flora", "entrance": "main"}}, {"type": "node", "id": 3512894003, "lat": 40.4183565, "lon": -3.7082644, "tags": {"addr:city": "Madrid", "addr:housenumber": "8", "addr:postcode": "28013", "addr:street": "Calle de la Flora", "entrance": "main"}}, {"type": "node", "id": 3512977915, "lat": 40.4173678, "lon": -3.7011689, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3519104382, "lat": 40.4142947, "lon": -3.7039426}, {"type": "node", "id": 3519104384, "lat": 40.4203727, "lon": -3.7060687}, {"type": "node", "id": 3579004075, "lat": 40.4242757, "lon": -3.7067033}, {"type": "node", "id": 3597242738, "lat": 40.4176996, "lon": -3.6994827}, {"type": "node", "id": 3597242741, "lat": 40.418355, "lon": -3.6973576, "tags": {"access": "yes", "amenity": "parking_entrance", "fee": "yes", "parking": "underground"}}, {"type": "node", "id": 3597242742, "lat": 40.4183922, "lon": -3.6972173}, {"type": "node", "id": 3597242743, "lat": 40.4184044, "lon": -3.6971908}, {"type": "node", "id": 3597242744, "lat": 40.4184246, "lon": -3.6971767}, {"type": "node", "id": 3597242745, "lat": 40.4184892, "lon": -3.6971786}, {"type": "node", "id": 3656019307, "lat": 40.4139361, "lon": -3.7047738}, {"type": "node", "id": 3656019308, "lat": 40.4139835, "lon": -3.7046157}, {"type": "node", "id": 3656019311, "lat": 40.4141188, "lon": -3.7043553, "tags": {"highway": "stop"}}, {"type": "node", "id": 3656019316, "lat": 40.4142605, "lon": -3.7039911, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3656019318, "lat": 40.4143095, "lon": -3.7039317}, {"type": "node", "id": 3656022721, "lat": 40.4144028, "lon": -3.7038021}, {"type": "node", "id": 3656023026, "lat": 40.4147243, "lon": -3.7033624}, {"type": "node", "id": 3656041440, "lat": 40.4146296, "lon": -3.7049147}, {"type": "node", "id": 3656050006, "lat": 40.4144249, "lon": -3.7012473}, {"type": "node", "id": 3656050013, "lat": 40.4149266, "lon": -3.7013557, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 3656054828, "lat": 40.4150275, "lon": -3.700264, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3656060239, "lat": 40.4146178, "lon": -3.7029831, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 3656060240, "lat": 40.4157786, "lon": -3.7016808}, {"type": "node", "id": 3656060241, "lat": 40.4162692, "lon": -3.7010273}, {"type": "node", "id": 3656091300, "lat": 40.4165605, "lon": -3.6985126}, {"type": "node", "id": 3690186524, "lat": 40.4202522, "lon": -3.7059148}, {"type": "node", "id": 3690187725, "lat": 40.4202689, "lon": -3.7054769}, {"type": "node", "id": 3690187726, "lat": 40.4203052, "lon": -3.7055388, "tags": {"crossing": "no", "highway": "traffic_signals"}}, {"type": "node", "id": 3753576443, "lat": 40.4197212, "lon": -3.7016538}, {"type": "node", "id": 3771938839, "lat": 40.414334, "lon": -3.6976884}, {"type": "node", "id": 3835537680, "lat": 40.4142733, "lon": -3.7074492}, {"type": "node", "id": 3835537683, "lat": 40.4143348, "lon": -3.7075271}, {"type": "node", "id": 3835537684, "lat": 40.4143444, "lon": -3.7064476}, {"type": "node", "id": 3835537686, "lat": 40.4143543, "lon": -3.7071466}, {"type": "node", "id": 3835537687, "lat": 40.4143564, "lon": -3.7074647}, {"type": "node", "id": 3835537688, "lat": 40.4143652, "lon": -3.7072122}, {"type": "node", "id": 3835537690, "lat": 40.4143728, "lon": -3.7064501, "tags": {"highway": "crossing"}}, {"type": "node", "id": 3835537691, "lat": 40.4143748, "lon": -3.7071597}, {"type": "node", "id": 3835537692, "lat": 40.4143916, "lon": -3.7064518}, {"type": "node", "id": 3835537693, "lat": 40.4144126, "lon": -3.7071626}, {"type": "node", "id": 3837996383, "lat": 40.4191389, "lon": -3.7062196}, {"type": "node", "id": 3837996384, "lat": 40.4196631, "lon": -3.7070701}, {"type": "node", "id": 3838014628, "lat": 40.4182137, "lon": -3.7063487}, {"type": "node", "id": 3838014629, "lat": 40.4182484, "lon": -3.7072415}, {"type": "node", "id": 3838014630, "lat": 40.4182512, "lon": -3.7071675}, {"type": "node", "id": 3838014631, "lat": 40.4182927, "lon": -3.7070765}, {"type": "node", "id": 3838014632, "lat": 40.4182988, "lon": -3.7071413}, {"type": "node", "id": 3838019457, "lat": 40.4198328, "lon": -3.7077445}, {"type": "node", "id": 3838019458, "lat": 40.4198598, "lon": -3.7077928}, {"type": "node", "id": 3838019460, "lat": 40.4199238, "lon": -3.7078886}, {"type": "node", "id": 3838019462, "lat": 40.4200616, "lon": -3.707986}, {"type": "node", "id": 3838019463, "lat": 40.4200995, "lon": -3.7079866}, {"type": "node", "id": 3838019464, "lat": 40.4201011, "lon": -3.7062559}, {"type": "node", "id": 3838019465, "lat": 40.420104, "lon": -3.7061621}, {"type": "node", "id": 3838019466, "lat": 40.4201101, "lon": -3.7060538}, {"type": "node", "id": 3838019467, "lat": 40.4201115, "lon": -3.706566}, {"type": "node", "id": 3838019468, "lat": 40.4201236, "lon": -3.7079729}, {"type": "node", "id": 3838019469, "lat": 40.4201388, "lon": -3.7079434}, {"type": "node", "id": 3838019470, "lat": 40.4201393, "lon": -3.7062579}, {"type": "node", "id": 3838019471, "lat": 40.4201557, "lon": -3.7078843}, {"type": "node", "id": 3838019472, "lat": 40.4201613, "lon": -3.707801}, {"type": "node", "id": 3838019474, "lat": 40.4202172, "lon": -3.7073987}, {"type": "node", "id": 3838019475, "lat": 40.4202436, "lon": -3.7063953}, {"type": "node", "id": 3838019476, "lat": 40.4202439, "lon": -3.7065281}, {"type": "node", "id": 3838019477, "lat": 40.4202487, "lon": -3.7074669}, {"type": "node", "id": 3838019479, "lat": 40.4202525, "lon": -3.7063375}, {"type": "node", "id": 3838019481, "lat": 40.4202632, "lon": -3.7075184}, {"type": "node", "id": 3838019482, "lat": 40.4202686, "lon": -3.7075747}, {"type": "node", "id": 3838019483, "lat": 40.4202721, "lon": -3.7073565}, {"type": "node", "id": 3838019484, "lat": 40.4202755, "lon": -3.7063039}, {"type": "node", "id": 3838019485, "lat": 40.4202772, "lon": -3.707782}, {"type": "node", "id": 3838019487, "lat": 40.4202875, "lon": -3.7074373}, {"type": "node", "id": 3838019488, "lat": 40.4202892, "lon": -3.7079462}, {"type": "node", "id": 3838019490, "lat": 40.4202977, "lon": -3.7080482}, {"type": "node", "id": 3838019491, "lat": 40.420302, "lon": -3.7078599}, {"type": "node", "id": 3838019492, "lat": 40.4203052, "lon": -3.7062857}, {"type": "node", "id": 3838019493, "lat": 40.4203054, "lon": -3.7078195}, {"type": "node", "id": 3838019494, "lat": 40.4203139, "lon": -3.7080908}, {"type": "node", "id": 3838019495, "lat": 40.4203199, "lon": -3.7062893}, {"type": "node", "id": 3838019496, "lat": 40.4203378, "lon": -3.7063005}, {"type": "node", "id": 3838019497, "lat": 40.4204863, "lon": -3.7082253}, {"type": "node", "id": 3838019498, "lat": 40.4205085, "lon": -3.7082309}, {"type": "node", "id": 3838019499, "lat": 40.4205222, "lon": -3.7082186}, {"type": "node", "id": 3838019500, "lat": 40.4205315, "lon": -3.7081457}, {"type": "node", "id": 3838019501, "lat": 40.4208084, "lon": -3.7070304}, {"type": "node", "id": 3838019502, "lat": 40.4208064, "lon": -3.7070729}, {"type": "node", "id": 3838019503, "lat": 40.4208322, "lon": -3.7071079, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 3838019504, "lat": 40.4208609, "lon": -3.7071509}, {"type": "node", "id": 3842236788, "lat": 40.422164, "lon": -3.7057595}, {"type": "node", "id": 3927597018, "lat": 40.424983, "lon": -3.6978298, "tags": {"crossing": "zebra", "highway": "crossing"}}, {"type": "node", "id": 3927640945, "lat": 40.4187744, "lon": -3.6957424}, {"type": "node", "id": 3927640946, "lat": 40.4205351, "lon": -3.699309, "tags": {"crossing": "zebra", "crossing:island": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 3927640947, "lat": 40.4206508, "lon": -3.6991871, "tags": {"crossing": "uncontrolled", "highway": "crossing", "kerb": "lowered", "tactile_paving": "no"}}, {"type": "node", "id": 3927640948, "lat": 40.421499, "lon": -3.6987314, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3927640949, "lat": 40.4215222, "lon": -3.6986621, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 3949472792, "lat": 40.4171459, "lon": -3.7024211}, {"type": "node", "id": 3949472793, "lat": 40.4172416, "lon": -3.7020486}, {"type": "node", "id": 3949472794, "lat": 40.4173236, "lon": -3.701627}, {"type": "node", "id": 3949472797, "lat": 40.4176762, "lon": -3.699526}, {"type": "node", "id": 3949472798, "lat": 40.4177049, "lon": -3.6994666}, {"type": "node", "id": 3949472799, "lat": 40.4177175, "lon": -3.6995883, "tags": {"crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3949472801, "lat": 40.4177352, "lon": -3.6996189, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3949472803, "lat": 40.4177581, "lon": -3.6996548}, {"type": "node", "id": 3949472805, "lat": 40.4177988, "lon": -3.7000902}, {"type": "node", "id": 3949472806, "lat": 40.4178022, "lon": -3.6996815}, {"type": "node", "id": 3949472813, "lat": 40.417913, "lon": -3.6997426}, {"type": "node", "id": 3949472816, "lat": 40.4179902, "lon": -3.6994844}, {"type": "node", "id": 3949472817, "lat": 40.418003, "lon": -3.699446}, {"type": "node", "id": 3949472820, "lat": 40.418477, "lon": -3.6995998}, {"type": "node", "id": 3949472821, "lat": 40.4184903, "lon": -3.6996217}, {"type": "node", "id": 3949472822, "lat": 40.4184987, "lon": -3.6996524}, {"type": "node", "id": 3949475117, "lat": 40.4169849, "lon": -3.7000663, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes", "wheelchair": "yes"}}, {"type": "node", "id": 3949475118, "lat": 40.4170111, "lon": -3.6999878}, {"type": "node", "id": 3949475119, "lat": 40.4170181, "lon": -3.7000049}, {"type": "node", "id": 3949475120, "lat": 40.417032, "lon": -3.7000237}, {"type": "node", "id": 3949475121, "lat": 40.4170376, "lon": -3.7000312}, {"type": "node", "id": 3949475122, "lat": 40.4170506, "lon": -3.6989008}, {"type": "node", "id": 3949475123, "lat": 40.4170593, "lon": -3.7000298}, {"type": "node", "id": 3949475124, "lat": 40.417114, "lon": -3.6985273}, {"type": "node", "id": 3949475125, "lat": 40.4171248, "lon": -3.6985095}, {"type": "node", "id": 3949475126, "lat": 40.4171373, "lon": -3.6985003}, {"type": "node", "id": 3949475127, "lat": 40.4171481, "lon": -3.6984995}, {"type": "node", "id": 3949475151, "lat": 40.4174959, "lon": -3.6997082}, {"type": "node", "id": 3949478659, "lat": 40.4175825, "lon": -3.6996385}, {"type": "node", "id": 3949478670, "lat": 40.417641, "lon": -3.6995759}, {"type": "node", "id": 3949478684, "lat": 40.4179324, "lon": -3.6986112}, {"type": "node", "id": 3949478685, "lat": 40.4179492, "lon": -3.6986205}, {"type": "node", "id": 3949478686, "lat": 40.4179734, "lon": -3.6986542}, {"type": "node", "id": 3949498571, "lat": 40.417988, "lon": -3.6992488}, {"type": "node", "id": 3949498572, "lat": 40.4179739, "lon": -3.6991288}, {"type": "node", "id": 3949498573, "lat": 40.4180094, "lon": -3.6993273}, {"type": "node", "id": 3949503505, "lat": 40.4180301, "lon": -3.6994135, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 3949503527, "lat": 40.4187001, "lon": -3.6965284}, {"type": "node", "id": 3950943294, "lat": 40.4196296, "lon": -3.7061232}, {"type": "node", "id": 4062425597, "lat": 40.4238471, "lon": -3.70215}, {"type": "node", "id": 4062425599, "lat": 40.4238248, "lon": -3.7021501}, {"type": "node", "id": 4110068960, "lat": 40.4209408, "lon": -3.7067819}, {"type": "node", "id": 4110068961, "lat": 40.4211317, "lon": -3.7071053}, {"type": "node", "id": 4110068963, "lat": 40.4215714, "lon": -3.707772}, {"type": "node", "id": 4110068965, "lat": 40.4216276, "lon": -3.7078083}, {"type": "node", "id": 4110080032, "lat": 40.4208452, "lon": -3.7071862}, {"type": "node", "id": 4110080033, "lat": 40.4208707, "lon": -3.7071547}, {"type": "node", "id": 4110080034, "lat": 40.4212499, "lon": -3.7077455}, {"type": "node", "id": 4110080035, "lat": 40.4212838, "lon": -3.7078018}, {"type": "node", "id": 4110080036, "lat": 40.42132, "lon": -3.7079567}, {"type": "node", "id": 4110080037, "lat": 40.4213414, "lon": -3.7079332}, {"type": "node", "id": 4110080038, "lat": 40.4213506, "lon": -3.7079023}, {"type": "node", "id": 4110080042, "lat": 40.4214266, "lon": -3.7075514}, {"type": "node", "id": 4173565966, "lat": 40.4193593, "lon": -3.7043409, "tags": {"crossing": "unmarked", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 4197261937, "lat": 40.4166825, "lon": -3.6983597}, {"type": "node", "id": 4249089769, "lat": 40.4165737, "lon": -3.6984612}, {"type": "node", "id": 4249089770, "lat": 40.4165456, "lon": -3.6983085}, {"type": "node", "id": 4249089771, "lat": 40.4166253, "lon": -3.6983809}, {"type": "node", "id": 4263222974, "lat": 40.4214738, "lon": -3.6995676}, {"type": "node", "id": 4263222976, "lat": 40.4214595, "lon": -3.6995742}, {"type": "node", "id": 4277492753, "lat": 40.4134967, "lon": -3.7016103, "tags": {"button_operated": "no", "crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "no", "traffic_signals:sound": "no", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 4277492754, "lat": 40.4135831, "lon": -3.7017056, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "no"}}, {"type": "node", "id": 4277492755, "lat": 40.413568, "lon": -3.7016613, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "no"}}, {"type": "node", "id": 4277492756, "lat": 40.4137728, "lon": -3.7022642}, {"type": "node", "id": 4309740695, "lat": 40.4185868, "lon": -3.6969963, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740696, "lat": 40.418622, "lon": -3.6963562}, {"type": "node", "id": 4309740699, "lat": 40.4186701, "lon": -3.6958243, "tags": {"barrier": "kerb", "kerb": "raised", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740705, "lat": 40.4187359, "lon": -3.6958788}, {"type": "node", "id": 4309740714, "lat": 40.4189562, "lon": -3.6969217, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "source": "yahoo_maps", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no", "wheelchair": "yes"}}, {"type": "node", "id": 4309740716, "lat": 40.4189716, "lon": -3.6977169}, {"type": "node", "id": 4309740734, "lat": 40.4189907, "lon": -3.696895, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740746, "lat": 40.4190761, "lon": -3.6970198, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740750, "lat": 40.4190844, "lon": -3.6970623, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740762, "lat": 40.4199702, "lon": -3.7014707, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309740766, "lat": 40.42, "lon": -3.7021916, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309747752, "lat": 40.41847, "lon": -3.6969456, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309747755, "lat": 40.4185434, "lon": -3.696418, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4309747756, "lat": 40.4185566, "lon": -3.696363, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4309747761, "lat": 40.4186816, "lon": -3.6957734, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4309747781, "lat": 40.4191565, "lon": -3.6956272, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309755492, "lat": 40.4200501, "lon": -3.6957195, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826932, "lat": 40.4191721, "lon": -3.6955305, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4309826953, "lat": 40.4219395, "lon": -3.6957201, "tags": {"crossing": "uncontrolled", "crossing:island": "no", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309836318, "lat": 40.42008, "lon": -3.6968577, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 4309854555, "lat": 40.4181652, "lon": -3.6983797}, {"type": "node", "id": 4309854556, "lat": 40.4183005, "lon": -3.6978969}, {"type": "node", "id": 4309854557, "lat": 40.4183929, "lon": -3.6975428}, {"type": "node", "id": 4309854558, "lat": 40.4184342, "lon": -3.6973966}, {"type": "node", "id": 4309854559, "lat": 40.4187718, "lon": -3.6968083}, {"type": "node", "id": 4309854560, "lat": 40.4191566, "lon": -3.693897}, {"type": "node", "id": 4309854561, "lat": 40.4191576, "lon": -3.6941304}, {"type": "node", "id": 4309854562, "lat": 40.4191612, "lon": -3.6939781}, {"type": "node", "id": 4396614774, "lat": 40.4204493, "lon": -3.7064774}, {"type": "node", "id": 4396614775, "lat": 40.4206341, "lon": -3.706271}, {"type": "node", "id": 4461049903, "lat": 40.4125773, "lon": -3.6956744}, {"type": "node", "id": 4471142288, "lat": 40.4191535, "lon": -3.6956463}, {"type": "node", "id": 4483800030, "lat": 40.4200904, "lon": -3.7011284, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4483800037, "lat": 40.4201788, "lon": -3.7024551}, {"type": "node", "id": 4483800045, "lat": 40.4202092, "lon": -3.7029583}, {"type": "node", "id": 4483800046, "lat": 40.4202143, "lon": -3.7036918}, {"type": "node", "id": 4483800047, "lat": 40.4202141, "lon": -3.7030441}, {"type": "node", "id": 4483800056, "lat": 40.4202667, "lon": -3.7038026}, {"type": "node", "id": 4590471792, "lat": 40.4197458, "lon": -3.6996468}, {"type": "node", "id": 4951747250, "lat": 40.4220687, "lon": -3.6972252, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4951747251, "lat": 40.4220155, "lon": -3.6973261, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4951747252, "lat": 40.4221899, "lon": -3.6977965, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4951747253, "lat": 40.4222956, "lon": -3.6982723, "tags": {"check_date:crossing": "2023-10-11", "crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 4951747254, "lat": 40.4224759, "lon": -3.6986357, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 4951747255, "lat": 40.4225238, "lon": -3.6986691, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 5006352930, "lat": 40.4178869, "lon": -3.6985387, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5225041505, "lat": 40.413865, "lon": -3.7064128}, {"type": "node", "id": 5292423517, "lat": 40.4185735, "lon": -3.7031026}, {"type": "node", "id": 5292423518, "lat": 40.4188602, "lon": -3.7029073}, {"type": "node", "id": 5292423519, "lat": 40.4190379, "lon": -3.7033635}, {"type": "node", "id": 5292423520, "lat": 40.4188171, "lon": -3.7035789}, {"type": "node", "id": 5302261806, "lat": 40.4173563, "lon": -3.7042228}, {"type": "node", "id": 5302261807, "lat": 40.4191146, "lon": -3.7061707}, {"type": "node", "id": 5302261808, "lat": 40.4188786, "lon": -3.706361}, {"type": "node", "id": 5302261809, "lat": 40.4190703, "lon": -3.7062268}, {"type": "node", "id": 5302261810, "lat": 40.4191396, "lon": -3.706139}, {"type": "node", "id": 5302261811, "lat": 40.4183258, "lon": -3.7042918}, {"type": "node", "id": 5302261812, "lat": 40.4176554, "lon": -3.7035287}, {"type": "node", "id": 5302261813, "lat": 40.4188627, "lon": -3.7021445}, {"type": "node", "id": 5302261814, "lat": 40.4197351, "lon": -3.7070534}, {"type": "node", "id": 5302261815, "lat": 40.4198115, "lon": -3.7077278}, {"type": "node", "id": 5302261816, "lat": 40.4170909, "lon": -3.7059143}, {"type": "node", "id": 5302261817, "lat": 40.4171164, "lon": -3.7060209}, {"type": "node", "id": 5302261818, "lat": 40.4172633, "lon": -3.7066361}, {"type": "node", "id": 5302261819, "lat": 40.4168303, "lon": -3.7047055}, {"type": "node", "id": 5302261820, "lat": 40.4169751, "lon": -3.7054293}, {"type": "node", "id": 5302264621, "lat": 40.4173883, "lon": -3.7071594}, {"type": "node", "id": 5302264622, "lat": 40.4177742, "lon": -3.7085362}, {"type": "node", "id": 5302264623, "lat": 40.4189129, "lon": -3.7049077}, {"type": "node", "id": 5302264624, "lat": 40.4187924, "lon": -3.7050812}, {"type": "node", "id": 5302264625, "lat": 40.4188694, "lon": -3.7049445}, {"type": "node", "id": 5302264626, "lat": 40.4188968, "lon": -3.7048958}, {"type": "node", "id": 5302264627, "lat": 40.41875, "lon": -3.7051565}, {"type": "node", "id": 5302264628, "lat": 40.4186579, "lon": -3.7050914}, {"type": "node", "id": 5302264629, "lat": 40.4172153, "lon": -3.7046691}, {"type": "node", "id": 5302264630, "lat": 40.4172223, "lon": -3.7045813}, {"type": "node", "id": 5302264631, "lat": 40.4178118, "lon": -3.7045175}, {"type": "node", "id": 5302264632, "lat": 40.418349, "lon": -3.7048736}, {"type": "node", "id": 5302264633, "lat": 40.4187765, "lon": -3.7051751}, {"type": "node", "id": 5302264634, "lat": 40.4190148, "lon": -3.7049829}, {"type": "node", "id": 5302264635, "lat": 40.4187525, "lon": -3.7047892}, {"type": "node", "id": 5302264636, "lat": 40.4186642, "lon": -3.7047047}, {"type": "node", "id": 5302264637, "lat": 40.4181144, "lon": -3.7040521}, {"type": "node", "id": 5302264638, "lat": 40.4179757, "lon": -3.7039279}, {"type": "node", "id": 5302264639, "lat": 40.4175995, "lon": -3.70365}, {"type": "node", "id": 5302264640, "lat": 40.4172097, "lon": -3.7030631}, {"type": "node", "id": 5302264641, "lat": 40.4184448, "lon": -3.7023776}, {"type": "node", "id": 5302264642, "lat": 40.4187966, "lon": -3.7021805}, {"type": "node", "id": 5302264643, "lat": 40.4189486, "lon": -3.7020977}, {"type": "node", "id": 5302264644, "lat": 40.4191686, "lon": -3.7019768}, {"type": "node", "id": 5302264645, "lat": 40.4194757, "lon": -3.7017722}, {"type": "node", "id": 5302457119, "lat": 40.4195979, "lon": -3.7059231}, {"type": "node", "id": 5302457120, "lat": 40.4201563, "lon": -3.705546}, {"type": "node", "id": 5302457521, "lat": 40.4198032, "lon": -3.7056055}, {"type": "node", "id": 5302457522, "lat": 40.4196738, "lon": -3.7055023}, {"type": "node", "id": 5302457523, "lat": 40.4195718, "lon": -3.7057176}, {"type": "node", "id": 5302457525, "lat": 40.4201145, "lon": -3.7059974}, {"type": "node", "id": 5302457526, "lat": 40.4201407, "lon": -3.7056913}, {"type": "node", "id": 5302457527, "lat": 40.4201279, "lon": -3.7057888}, {"type": "node", "id": 5302458911, "lat": 40.4202166, "lon": -3.7052482}, {"type": "node", "id": 5302458917, "lat": 40.4202061, "lon": -3.7061235, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 5308158333, "lat": 40.4187022, "lon": -3.7073916}, {"type": "node", "id": 5308158334, "lat": 40.4190639, "lon": -3.7073432}, {"type": "node", "id": 5308158335, "lat": 40.4190998, "lon": -3.7073372}, {"type": "node", "id": 5308158336, "lat": 40.4191205, "lon": -3.7073422}, {"type": "node", "id": 5308158337, "lat": 40.4193053, "lon": -3.7074142}, {"type": "node", "id": 5308158338, "lat": 40.4193876, "lon": -3.7074616}, {"type": "node", "id": 5308158339, "lat": 40.4194229, "lon": -3.7074841}, {"type": "node", "id": 5308158340, "lat": 40.4196274, "lon": -3.707627}, {"type": "node", "id": 5308158341, "lat": 40.4197049, "lon": -3.7076764}, {"type": "node", "id": 5308158342, "lat": 40.4197198, "lon": -3.7076808}, {"type": "node", "id": 5308158343, "lat": 40.4197255, "lon": -3.7076697}, {"type": "node", "id": 5308195619, "lat": 40.4206454, "lon": -3.7082696}, {"type": "node", "id": 5308227108, "lat": 40.4206097, "lon": -3.7062957, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 5308227109, "lat": 40.4204909, "lon": -3.7064292, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 5308227110, "lat": 40.4202125, "lon": -3.7062436}, {"type": "node", "id": 5308227121, "lat": 40.4202879, "lon": -3.7062574, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 5308227129, "lat": 40.420817, "lon": -3.7070852}, {"type": "node", "id": 5308255539, "lat": 40.4170241, "lon": -3.7029508}, {"type": "node", "id": 5308255540, "lat": 40.417091, "lon": -3.7033129}, {"type": "node", "id": 5308255541, "lat": 40.4170717, "lon": -3.7031321}, {"type": "node", "id": 5308255542, "lat": 40.4170626, "lon": -3.7037544}, {"type": "node", "id": 5308255543, "lat": 40.4170874, "lon": -3.7035215}, {"type": "node", "id": 5308255544, "lat": 40.4169951, "lon": -3.703978}, {"type": "node", "id": 5308255545, "lat": 40.4168457, "lon": -3.7026735}, {"type": "node", "id": 5308255546, "lat": 40.4168983, "lon": -3.7027171}, {"type": "node", "id": 5308255547, "lat": 40.416979, "lon": -3.702841}, {"type": "node", "id": 5308255548, "lat": 40.4170131, "lon": -3.7029149}, {"type": "node", "id": 5308255549, "lat": 40.4170626, "lon": -3.7030772}, {"type": "node", "id": 5308255550, "lat": 40.4170872, "lon": -3.7032261}, {"type": "node", "id": 5308255551, "lat": 40.4170943, "lon": -3.703389}, {"type": "node", "id": 5308255552, "lat": 40.4170824, "lon": -3.7036261}, {"type": "node", "id": 5308255553, "lat": 40.417033, "lon": -3.7038604}, {"type": "node", "id": 5308255554, "lat": 40.4169401, "lon": -3.7041032}, {"type": "node", "id": 5308255556, "lat": 40.4168549, "lon": -3.704493}, {"type": "node", "id": 5308255557, "lat": 40.4167911, "lon": -3.7045625}, {"type": "node", "id": 5308349731, "lat": 40.4183052, "lon": -3.7072628}, {"type": "node", "id": 5308349732, "lat": 40.4182659, "lon": -3.7072635}, {"type": "node", "id": 5308349758, "lat": 40.4184635, "lon": -3.7069362}, {"type": "node", "id": 5308349759, "lat": 40.4185013, "lon": -3.7069275}, {"type": "node", "id": 5308349760, "lat": 40.4185054, "lon": -3.7069839}, {"type": "node", "id": 5308349761, "lat": 40.4185421, "lon": -3.7069497}, {"type": "node", "id": 5308349762, "lat": 40.4183589, "lon": -3.7068523}, {"type": "node", "id": 5308349763, "lat": 40.4183828, "lon": -3.7067773}, {"type": "node", "id": 5308349764, "lat": 40.4183808, "lon": -3.7067371}, {"type": "node", "id": 5308349765, "lat": 40.4184999, "lon": -3.706585}, {"type": "node", "id": 5308349766, "lat": 40.4185636, "lon": -3.7067559}, {"type": "node", "id": 5308349767, "lat": 40.4186059, "lon": -3.7068779}, {"type": "node", "id": 5308349768, "lat": 40.4186251, "lon": -3.7069621}, {"type": "node", "id": 5308349769, "lat": 40.4186378, "lon": -3.7070227}, {"type": "node", "id": 5308349770, "lat": 40.4186914, "lon": -3.7073838}, {"type": "node", "id": 5308349771, "lat": 40.4186968, "lon": -3.7073902}, {"type": "node", "id": 5308349772, "lat": 40.4182631, "lon": -3.7067143}, {"type": "node", "id": 5308349773, "lat": 40.4182871, "lon": -3.7066603}, {"type": "node", "id": 5308349774, "lat": 40.4182976, "lon": -3.706604}, {"type": "node", "id": 5308349775, "lat": 40.4182935, "lon": -3.706544}, {"type": "node", "id": 5308349776, "lat": 40.4183364, "lon": -3.7066007}, {"type": "node", "id": 5308349793, "lat": 40.4182638, "lon": -3.7069195}, {"type": "node", "id": 5308349822, "lat": 40.4190973, "lon": -3.7073533}, {"type": "node", "id": 5308352303, "lat": 40.4179954, "lon": -3.7056127}, {"type": "node", "id": 5308353498, "lat": 40.4181965, "lon": -3.7069785}, {"type": "node", "id": 5308353499, "lat": 40.4182144, "lon": -3.7069628}, {"type": "node", "id": 5308353500, "lat": 40.4183441, "lon": -3.7066243}, {"type": "node", "id": 5308353501, "lat": 40.4183231, "lon": -3.7066272, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353502, "lat": 40.418224, "lon": -3.7066558, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353503, "lat": 40.4181541, "lon": -3.7066832, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353504, "lat": 40.4181064, "lon": -3.7067019}, {"type": "node", "id": 5308353505, "lat": 40.4181751, "lon": -3.7065041, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353506, "lat": 40.4182916, "lon": -3.7064816, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353507, "lat": 40.4182057, "lon": -3.7064192}, {"type": "node", "id": 5308353508, "lat": 40.4181654, "lon": -3.7065021}, {"type": "node", "id": 5308353509, "lat": 40.4182599, "lon": -3.7065018, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353510, "lat": 40.4182978, "lon": -3.7064777}, {"type": "node", "id": 5308353512, "lat": 40.4182739, "lon": -3.7066342, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353626, "lat": 40.4182116, "lon": -3.7065128, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308353635, "lat": 40.4181929, "lon": -3.7063247}, {"type": "node", "id": 5308353636, "lat": 40.4182062, "lon": -3.7063334}, {"type": "node", "id": 5308374093, "lat": 40.4191818, "lon": -3.7067834}, {"type": "node", "id": 5308374094, "lat": 40.4191823, "lon": -3.7066519}, {"type": "node", "id": 5308374095, "lat": 40.4191741, "lon": -3.7068591}, {"type": "node", "id": 5308384165, "lat": 40.4150747, "lon": -3.707686}, {"type": "node", "id": 5308384166, "lat": 40.415133, "lon": -3.706775}, {"type": "node", "id": 5308384167, "lat": 40.4154015, "lon": -3.7067954}, {"type": "node", "id": 5308384168, "lat": 40.4157016, "lon": -3.7068182}, {"type": "node", "id": 5308384169, "lat": 40.4156894, "lon": -3.7076175}, {"type": "node", "id": 5308384170, "lat": 40.4156754, "lon": -3.7079359}, {"type": "node", "id": 5308384171, "lat": 40.4156477, "lon": -3.707976}, {"type": "node", "id": 5308384172, "lat": 40.4157246, "lon": -3.70682}, {"type": "node", "id": 5308384173, "lat": 40.4151149, "lon": -3.7067736}, {"type": "node", "id": 5308384174, "lat": 40.4150639, "lon": -3.7079316}, {"type": "node", "id": 5308384175, "lat": 40.4156736, "lon": -3.7079779}, {"type": "node", "id": 5308393588, "lat": 40.416755, "lon": -3.7026522}, {"type": "node", "id": 5308393589, "lat": 40.4164765, "lon": -3.7051836}, {"type": "node", "id": 5308393592, "lat": 40.4164803, "lon": -3.7050766}, {"type": "node", "id": 5308393593, "lat": 40.4164052, "lon": -3.7057666}, {"type": "node", "id": 5308393604, "lat": 40.416346, "lon": -3.7051058}, {"type": "node", "id": 5308393606, "lat": 40.4158793, "lon": -3.705172}, {"type": "node", "id": 5308393615, "lat": 40.4158139, "lon": -3.7051908}, {"type": "node", "id": 5308396722, "lat": 40.4165989, "lon": -3.7042745}, {"type": "node", "id": 5308396725, "lat": 40.4166657, "lon": -3.7037056, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308396726, "lat": 40.416717, "lon": -3.7037131}, {"type": "node", "id": 5308396727, "lat": 40.4165911, "lon": -3.7045815}, {"type": "node", "id": 5308396735, "lat": 40.4170438, "lon": -3.7024228}, {"type": "node", "id": 5308396736, "lat": 40.4169927, "lon": -3.7024637}, {"type": "node", "id": 5308396737, "lat": 40.4169437, "lon": -3.7024751}, {"type": "node", "id": 5308396738, "lat": 40.4168344, "lon": -3.7024234}, {"type": "node", "id": 5308396788, "lat": 40.4167633, "lon": -3.7026541}, {"type": "node", "id": 5308396791, "lat": 40.4167666, "lon": -3.7033047}, {"type": "node", "id": 5308396792, "lat": 40.4167252, "lon": -3.7037142, "tags": {"barrier": "kerb", "kerb": "lowered", "tactile_paving": "yes"}}, {"type": "node", "id": 5308396798, "lat": 40.4166006, "lon": -3.7045818}, {"type": "node", "id": 5321927322, "lat": 40.4202098, "lon": -3.7070537, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5342725022, "lat": 40.4137956, "lon": -3.7068596, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5359543047, "lat": 40.4206173, "lon": -3.7082807}, {"type": "node", "id": 5359543048, "lat": 40.4205989, "lon": -3.7082814}, {"type": "node", "id": 5359543049, "lat": 40.4205841, "lon": -3.7082767}, {"type": "node", "id": 5359543050, "lat": 40.420576, "lon": -3.7082653}, {"type": "node", "id": 5359543051, "lat": 40.4205734, "lon": -3.7082458}, {"type": "node", "id": 5385241327, "lat": 40.4189152, "lon": -3.6965082, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241352, "lat": 40.4196334, "lon": -3.6992608, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5385241353, "lat": 40.4201334, "lon": -3.703246, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 5426990620, "lat": 40.4183938, "lon": -3.7029829, "tags": {"crossing": "uncontrolled", "crossing:markings": "no", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 5467674834, "lat": 40.4160975, "lon": -3.7081394}, {"type": "node", "id": 5483598292, "lat": 40.4193272, "lon": -3.6938954}, {"type": "node", "id": 5483598293, "lat": 40.4194319, "lon": -3.6939294}, {"type": "node", "id": 5483598525, "lat": 40.419174, "lon": -3.6947303}, {"type": "node", "id": 5483598527, "lat": 40.4192974, "lon": -3.6947654}, {"type": "node", "id": 5648436680, "lat": 40.4182989, "lon": -3.7071146}, {"type": "node", "id": 5648436681, "lat": 40.4180821, "lon": -3.7062202}, {"type": "node", "id": 5648469507, "lat": 40.4172138, "lon": -3.7046456}, {"type": "node", "id": 5648469508, "lat": 40.4172175, "lon": -3.7046007}, {"type": "node", "id": 5648469509, "lat": 40.4172148, "lon": -3.7046225}, {"type": "node", "id": 5704327641, "lat": 40.4191833, "lon": -3.7046401}, {"type": "node", "id": 5739156346, "lat": 40.420043, "lon": -3.6962717}, {"type": "node", "id": 5960796494, "lat": 40.4187663, "lon": -3.6961482, "tags": {"bus": "yes", "name": "Alcal\u00e1 - C\u00edrculo de Bellas Artes", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "90"}}, {"type": "node", "id": 5960796495, "lat": 40.4183525, "lon": -3.6976939, "tags": {"bus": "yes", "name": "Metro Sevilla", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2002"}}, {"type": "node", "id": 5960796496, "lat": 40.4167706, "lon": -3.7003272, "tags": {"bus": "yes", "name": "Sevilla - Pza. Canalejas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "3692"}}, {"type": "node", "id": 5960802785, "lat": 40.4183682, "lon": -3.6979506, "tags": {"bus": "yes", "name": "Alcal\u00e1 - Gran V\u00eda", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "3689"}}, {"type": "node", "id": 5970506953, "lat": 40.4235518, "lon": -3.6987302, "tags": {"bus": "yes", "name": "Hortaleza - Gravina", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "278", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506954, "lat": 40.4213829, "lon": -3.7003181, "tags": {"bus": "yes", "name": "Hortaleza - Infantas", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "5376", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506955, "lat": 40.4197919, "lon": -3.6998303, "tags": {"bus": "yes", "name": "Gran V\u00eda - Hortaleza", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "4108", "shelter": "yes", "source": "https://navegapormadrid.emtmadrid.es/app/", "tactile_paving": "yes"}}, {"type": "node", "id": 5970506956, "lat": 40.4170454, "lon": -3.6984161, "tags": {"bus": "yes", "name": "Cedaceros - Zorrilla", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "2004", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 5970506958, "lat": 40.4162411, "lon": -3.7071462, "tags": {"bus": "yes", "name": "Mayor N\u00ba 21", "operator": "EMT Madrid", "public_transport": "stop_position", "ref": "1887", "source": "https://navegapormadrid.emtmadrid.es/app/"}}, {"type": "node", "id": 6109407744, "lat": 40.4202962, "lon": -3.7057639}, {"type": "node", "id": 6109407745, "lat": 40.4203048, "lon": -3.7059203}, {"type": "node", "id": 6109409085, "lat": 40.4203185, "lon": -3.7060195}, {"type": "node", "id": 6109409086, "lat": 40.420309, "lon": -3.7056966}, {"type": "node", "id": 6109422962, "lat": 40.4201594, "lon": -3.7051418}, {"type": "node", "id": 6109422963, "lat": 40.4201145, "lon": -3.7034362}, {"type": "node", "id": 6109422970, "lat": 40.4202476, "lon": -3.7056282}, {"type": "node", "id": 6109422980, "lat": 40.4199724, "lon": -3.7023435}, {"type": "node", "id": 6109456223, "lat": 40.4201532, "lon": -3.7016166}, {"type": "node", "id": 6109456225, "lat": 40.4200381, "lon": -3.7011484}, {"type": "node", "id": 6109456226, "lat": 40.4200147, "lon": -3.7012093}, {"type": "node", "id": 6109456231, "lat": 40.4200255, "lon": -3.7006423}, {"type": "node", "id": 6109456233, "lat": 40.4201413, "lon": -3.7011387}, {"type": "node", "id": 6109456234, "lat": 40.4199319, "lon": -3.7014728}, {"type": "node", "id": 6109456236, "lat": 40.4199339, "lon": -3.7013152}, {"type": "node", "id": 6109456238, "lat": 40.419933, "lon": -3.7014034}, {"type": "node", "id": 6109456240, "lat": 40.4199303, "lon": -3.7015774}, {"type": "node", "id": 6109456242, "lat": 40.4199635, "lon": -3.701994}, {"type": "node", "id": 6109456243, "lat": 40.4199015, "lon": -3.7016358}, {"type": "node", "id": 6109456244, "lat": 40.4201641, "lon": -3.7019369}, {"type": "node", "id": 6109456245, "lat": 40.4201529, "lon": -3.7020103}, {"type": "node", "id": 6109456246, "lat": 40.4198562, "lon": -3.7000801}, {"type": "node", "id": 6109456255, "lat": 40.4199258, "lon": -3.7010742}, {"type": "node", "id": 6109456256, "lat": 40.419916, "lon": -3.7004084}, {"type": "node", "id": 6109512279, "lat": 40.4195826, "lon": -3.6988166}, {"type": "node", "id": 6109512285, "lat": 40.4191601, "lon": -3.6979125}, {"type": "node", "id": 6109512286, "lat": 40.4190651, "lon": -3.6974343}, {"type": "node", "id": 6109512287, "lat": 40.4190768, "lon": -3.6974098}, {"type": "node", "id": 6109512288, "lat": 40.4189785, "lon": -3.6975599}, {"type": "node", "id": 6109512292, "lat": 40.4189056, "lon": -3.6969614, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 6109512293, "lat": 40.4187131, "lon": -3.6968482}, {"type": "node", "id": 6109512294, "lat": 40.4187452, "lon": -3.6968204}, {"type": "node", "id": 6109512295, "lat": 40.4187209, "lon": -3.6965928}, {"type": "node", "id": 6109512296, "lat": 40.4189107, "lon": -3.6977172}, {"type": "node", "id": 6109512297, "lat": 40.4190351, "lon": -3.6975067}, {"type": "node", "id": 6109512298, "lat": 40.4190137, "lon": -3.6974471}, {"type": "node", "id": 6109512299, "lat": 40.4187118, "lon": -3.6970527}, {"type": "node", "id": 6109512300, "lat": 40.418749, "lon": -3.6970513}, {"type": "node", "id": 6112799329, "lat": 40.4200755, "lon": -3.7016267}, {"type": "node", "id": 6112799330, "lat": 40.4199685, "lon": -3.7016337}, {"type": "node", "id": 6115513392, "lat": 40.4152356, "lon": -3.7077135}, {"type": "node", "id": 6115513393, "lat": 40.4153144, "lon": -3.7077706}, {"type": "node", "id": 6115513394, "lat": 40.4151298, "lon": -3.7077097, "tags": {"source": "yahoo_maps"}}, {"type": "node", "id": 6115513395, "lat": 40.4151182, "lon": -3.7072127}, {"type": "node", "id": 6115513396, "lat": 40.4151171, "lon": -3.7072668}, {"type": "node", "id": 6115513397, "lat": 40.4156099, "lon": -3.7078906}, {"type": "node", "id": 6115513398, "lat": 40.4151634, "lon": -3.7077697}, {"type": "node", "id": 6115513399, "lat": 40.4142678, "lon": -3.7075056}, {"type": "node", "id": 6115513410, "lat": 40.414159, "lon": -3.7075102}, {"type": "node", "id": 6115513411, "lat": 40.4142337, "lon": -3.7075155}, {"type": "node", "id": 6115513412, "lat": 40.41428, "lon": -3.7075166}, {"type": "node", "id": 6115513413, "lat": 40.4143294, "lon": -3.7075216}, {"type": "node", "id": 6115513414, "lat": 40.4159103, "lon": -3.7068865}, {"type": "node", "id": 6115513415, "lat": 40.4158863, "lon": -3.7068838}, {"type": "node", "id": 6115513416, "lat": 40.4151872, "lon": -3.7068385}, {"type": "node", "id": 6115513417, "lat": 40.4151444, "lon": -3.707722}, {"type": "node", "id": 6115513418, "lat": 40.4144124, "lon": -3.7075315}, {"type": "node", "id": 6115513419, "lat": 40.4145538, "lon": -3.707548}, {"type": "node", "id": 6115513420, "lat": 40.4146353, "lon": -3.7075636}, {"type": "node", "id": 6115513421, "lat": 40.4151326, "lon": -3.7078033}, {"type": "node", "id": 6115513422, "lat": 40.4151272, "lon": -3.7077634}, {"type": "node", "id": 6115513423, "lat": 40.4151074, "lon": -3.7077294}, {"type": "node", "id": 6115513424, "lat": 40.4150896, "lon": -3.7077156}, {"type": "node", "id": 6115513425, "lat": 40.4151182, "lon": -3.7077441}, {"type": "node", "id": 6115513426, "lat": 40.4151299, "lon": -3.7077816}, {"type": "node", "id": 6115513431, "lat": 40.4147154, "lon": -3.7075843}, {"type": "node", "id": 6115513432, "lat": 40.414703, "lon": -3.707565}, {"type": "node", "id": 6115513433, "lat": 40.4152007, "lon": -3.707722}, {"type": "node", "id": 6115513434, "lat": 40.4152697, "lon": -3.7077459}, {"type": "node", "id": 6115513435, "lat": 40.4151492, "lon": -3.7077203}, {"type": "node", "id": 6115513436, "lat": 40.4151586, "lon": -3.7077301}, {"type": "node", "id": 6115513437, "lat": 40.4151633, "lon": -3.7077512}, {"type": "node", "id": 6115513438, "lat": 40.4151588, "lon": -3.7077786}, {"type": "node", "id": 6115513439, "lat": 40.4151509, "lon": -3.7077847}, {"type": "node", "id": 6115513440, "lat": 40.415141, "lon": -3.7077846}, {"type": "node", "id": 6115514928, "lat": 40.4151211, "lon": -3.7065452}, {"type": "node", "id": 6115514929, "lat": 40.4151389, "lon": -3.7066557}, {"type": "node", "id": 6115514930, "lat": 40.415135, "lon": -3.7065999}, {"type": "node", "id": 6115514931, "lat": 40.4151055, "lon": -3.7073769}, {"type": "node", "id": 6115514932, "lat": 40.4151396, "lon": -3.7067592}, {"type": "node", "id": 6220907493, "lat": 40.4144044, "lon": -3.7013553}, {"type": "node", "id": 6220907494, "lat": 40.4146836, "lon": -3.7033636}, {"type": "node", "id": 6220907495, "lat": 40.4158326, "lon": -3.7031624}, {"type": "node", "id": 6220907496, "lat": 40.4144966, "lon": -3.7030026}, {"type": "node", "id": 6220907497, "lat": 40.4140945, "lon": -3.7014413}, {"type": "node", "id": 6220907498, "lat": 40.4141154, "lon": -3.701364}, {"type": "node", "id": 6220907499, "lat": 40.4144112, "lon": -3.7023087}, {"type": "node", "id": 6220944379, "lat": 40.416126, "lon": -3.7033377}, {"type": "node", "id": 6220944380, "lat": 40.4145698, "lon": -3.7030455}, {"type": "node", "id": 6343112682, "lat": 40.4146917, "lon": -3.7064362, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 6343116058, "lat": 40.4166856, "lon": -3.69831, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 6343116059, "lat": 40.4166871, "lon": -3.6982862, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6343116060, "lat": 40.4167636, "lon": -3.6983723, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6343116061, "lat": 40.417545, "lon": -3.6984835, "tags": {"crossing": "traffic_signals", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6343116062, "lat": 40.4174822, "lon": -3.6984043, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 6357173372, "lat": 40.4151462, "lon": -3.7032371}, {"type": "node", "id": 6357173373, "lat": 40.4152663, "lon": -3.7041964}, {"type": "node", "id": 6357173374, "lat": 40.4151651, "lon": -3.7033238, "tags": {"entrance": "yes"}}, {"type": "node", "id": 6357173375, "lat": 40.4152385, "lon": -3.7037357}, {"type": "node", "id": 6357173376, "lat": 40.4151655, "lon": -3.7037632}, {"type": "node", "id": 6357173377, "lat": 40.4151844, "lon": -3.7038564}, {"type": "node", "id": 6357173378, "lat": 40.4152605, "lon": -3.7041755, "tags": {"entrance": "yes"}}, {"type": "node", "id": 6357851744, "lat": 40.4138243, "lon": -3.7046197, "tags": {"crossing": "uncontrolled", "highway": "crossing", "traffic_calming": "table"}}, {"type": "node", "id": 6372738896, "lat": 40.4146851, "lon": -3.7052257, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 6373247237, "lat": 40.4130698, "lon": -3.7005657, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 6373247274, "lat": 40.4134036, "lon": -3.7015462, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 6373247669, "lat": 40.4138727, "lon": -3.7028766, "tags": {"crossing": "uncontrolled", "highway": "crossing", "tactile_paving": "no"}}, {"type": "node", "id": 6431838800, "lat": 40.412349, "lon": -3.7017738, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6432436966, "lat": 40.4125331, "lon": -3.703445, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 6432436979, "lat": 40.4124236, "lon": -3.7031986}, {"type": "node", "id": 6455528048, "lat": 40.4196725, "lon": -3.7016773}, {"type": "node", "id": 6535509901, "lat": 40.4199518, "lon": -3.7017502}, {"type": "node", "id": 6535509902, "lat": 40.4199986, "lon": -3.7019554}, {"type": "node", "id": 6535509903, "lat": 40.4199384, "lon": -3.701775}, {"type": "node", "id": 6535509904, "lat": 40.4199777, "lon": -3.7019446}, {"type": "node", "id": 6535509909, "lat": 40.4200108, "lon": -3.7019309}, {"type": "node", "id": 6535509910, "lat": 40.4199718, "lon": -3.7017629}, {"type": "node", "id": 6535509911, "lat": 40.4199603, "lon": -3.7017878}, {"type": "node", "id": 6535509912, "lat": 40.4199749, "lon": -3.7018515}, {"type": "node", "id": 6535509913, "lat": 40.4199907, "lon": -3.7019204}, {"type": "node", "id": 6535509917, "lat": 40.4198822, "lon": -3.7015603}, {"type": "node", "id": 6535509918, "lat": 40.4197995, "lon": -3.7014003}, {"type": "node", "id": 6535509919, "lat": 40.4199327, "lon": -3.701667}, {"type": "node", "id": 6535509920, "lat": 40.4200042, "lon": -3.7019799}, {"type": "node", "id": 6535509921, "lat": 40.4195645, "lon": -3.7016046}, {"type": "node", "id": 6535509922, "lat": 40.4195412, "lon": -3.7016243}, {"type": "node", "id": 6535509923, "lat": 40.4195353, "lon": -3.7016292}, {"type": "node", "id": 6535509924, "lat": 40.4195016, "lon": -3.7017597}, {"type": "node", "id": 6535509929, "lat": 40.419865, "lon": -3.7013422}, {"type": "node", "id": 6535509930, "lat": 40.4198554, "lon": -3.701351}, {"type": "node", "id": 6535509935, "lat": 40.4199338, "lon": -3.7019896}, {"type": "node", "id": 6535509936, "lat": 40.42014, "lon": -3.7019641}, {"type": "node", "id": 6535509937, "lat": 40.4199251, "lon": -3.7018461}, {"type": "node", "id": 6535511619, "lat": 40.4197578, "lon": -3.701439}, {"type": "node", "id": 6535511620, "lat": 40.4196398, "lon": -3.7015391}, {"type": "node", "id": 6535511621, "lat": 40.4197382, "lon": -3.7014344}, {"type": "node", "id": 6535511622, "lat": 40.4196443, "lon": -3.7015101}, {"type": "node", "id": 6535511623, "lat": 40.4196612, "lon": -3.701541}, {"type": "node", "id": 6535511624, "lat": 40.4197551, "lon": -3.7014652}, {"type": "node", "id": 6535511625, "lat": 40.4196998, "lon": -3.7014881}, {"type": "node", "id": 6535511626, "lat": 40.4196953, "lon": -3.7014919}, {"type": "node", "id": 6535511627, "lat": 40.4196581, "lon": -3.7015235}, {"type": "node", "id": 6535511628, "lat": 40.4197359, "lon": -3.7014575}, {"type": "node", "id": 6535530192, "lat": 40.4195754, "lon": -3.7017684}, {"type": "node", "id": 6535530193, "lat": 40.419582, "lon": -3.7017971}, {"type": "node", "id": 6535530194, "lat": 40.4196082, "lon": -3.7019125}, {"type": "node", "id": 6535530195, "lat": 40.4196143, "lon": -3.7019396}, {"type": "node", "id": 6535530196, "lat": 40.4196992, "lon": -3.7019291}, {"type": "node", "id": 6535530197, "lat": 40.4196471, "lon": -3.7019502}, {"type": "node", "id": 6535530198, "lat": 40.4195968, "lon": -3.70197}, {"type": "node", "id": 6535530199, "lat": 40.4195465, "lon": -3.7019892}, {"type": "node", "id": 6535530200, "lat": 40.4195168, "lon": -3.7019451}, {"type": "node", "id": 6535530201, "lat": 40.4195279, "lon": -3.7019963}, {"type": "node", "id": 6535530202, "lat": 40.4197005, "lon": -3.7018723}, {"type": "node", "id": 6535530203, "lat": 40.4197122, "lon": -3.7019239}, {"type": "node", "id": 6535530204, "lat": 40.4196193, "lon": -3.7019614}, {"type": "node", "id": 6535530205, "lat": 40.4195423, "lon": -3.7016227}, {"type": "node", "id": 6535530206, "lat": 40.4195148, "lon": -3.7016933}, {"type": "node", "id": 6535530207, "lat": 40.4195289, "lon": -3.7017604}, {"type": "node", "id": 6535530208, "lat": 40.4195356, "lon": -3.7017921}, {"type": "node", "id": 6535530209, "lat": 40.4195065, "lon": -3.7016536}, {"type": "node", "id": 6535530210, "lat": 40.4196315, "lon": -3.7017589}, {"type": "node", "id": 6535530211, "lat": 40.4196632, "lon": -3.7017462}, {"type": "node", "id": 6535530212, "lat": 40.4196523, "lon": -3.701772}, {"type": "node", "id": 6535530213, "lat": 40.4196428, "lon": -3.701653}, {"type": "node", "id": 6535530214, "lat": 40.4196237, "lon": -3.7016379}, {"type": "node", "id": 6535530215, "lat": 40.4196101, "lon": -3.7016657}, {"type": "node", "id": 6535530216, "lat": 40.4200855, "lon": -3.7014136}, {"type": "node", "id": 6535530217, "lat": 40.4197835, "lon": -3.7014171}, {"type": "node", "id": 6535530218, "lat": 40.4196307, "lon": -3.7016724}, {"type": "node", "id": 6535530219, "lat": 40.4196461, "lon": -3.7017432}, {"type": "node", "id": 6535530220, "lat": 40.4196067, "lon": -3.7015671}, {"type": "node", "id": 6535530221, "lat": 40.4196601, "lon": -3.7018119}, {"type": "node", "id": 6535530222, "lat": 40.4199417, "lon": -3.7017063}, {"type": "node", "id": 6535531860, "lat": 40.4201217, "lon": -3.7015177}, {"type": "node", "id": 6535531861, "lat": 40.4201208, "lon": -3.7014719, "tags": {"highway": "elevator"}}, {"type": "node", "id": 6535531862, "lat": 40.4201225, "lon": -3.7015593}, {"type": "node", "id": 6535531863, "lat": 40.4199031, "lon": -3.701895}, {"type": "node", "id": 6535531864, "lat": 40.419933, "lon": -3.7018924}, {"type": "node", "id": 6535537947, "lat": 40.4199468, "lon": -3.7018079}, {"type": "node", "id": 6535537948, "lat": 40.4199914, "lon": -3.7017902}, {"type": "node", "id": 6535537949, "lat": 40.4199277, "lon": -3.7017822}, {"type": "node", "id": 6535537950, "lat": 40.4199358, "lon": -3.7018122}, {"type": "node", "id": 6535537951, "lat": 40.4200326, "lon": -3.7017733}, {"type": "node", "id": 6535537952, "lat": 40.4200768, "lon": -3.7017546}, {"type": "node", "id": 6535537953, "lat": 40.4200124, "lon": -3.7015227}, {"type": "node", "id": 6535537954, "lat": 40.4199675, "lon": -3.7015426}, {"type": "node", "id": 6535537955, "lat": 40.4200839, "lon": -3.7017203}, {"type": "node", "id": 6535537956, "lat": 40.4200897, "lon": -3.7017492}, {"type": "node", "id": 6535537957, "lat": 40.4200093, "lon": -3.701783}, {"type": "node", "id": 6535537958, "lat": 40.4199521, "lon": -3.7015494}, {"type": "node", "id": 6535537959, "lat": 40.4200369, "lon": -3.7015119}, {"type": "node", "id": 6535537960, "lat": 40.4200259, "lon": -3.7014697}, {"type": "node", "id": 6535537961, "lat": 40.4200224, "lon": -3.7014562}, {"type": "node", "id": 6535537962, "lat": 40.4200167, "lon": -3.7014144}, {"type": "node", "id": 6535537963, "lat": 40.4200175, "lon": -3.701437}, {"type": "node", "id": 6535537964, "lat": 40.420056, "lon": -3.7015858}, {"type": "node", "id": 6535537965, "lat": 40.4200837, "lon": -3.7013157}, {"type": "node", "id": 6535537966, "lat": 40.4200847, "lon": -3.7013721}, {"type": "node", "id": 6535537967, "lat": 40.420086, "lon": -3.7014417}, {"type": "node", "id": 6535537968, "lat": 40.420087, "lon": -3.7014967}, {"type": "node", "id": 6535537969, "lat": 40.4200542, "lon": -3.7012957}, {"type": "node", "id": 6535537970, "lat": 40.4200833, "lon": -3.7012948}, {"type": "node", "id": 6535537971, "lat": 40.4200874, "lon": -3.7015188}, {"type": "node", "id": 6535537972, "lat": 40.4200583, "lon": -3.7015193}, {"type": "node", "id": 6535537973, "lat": 40.4198942, "lon": -3.701323}, {"type": "node", "id": 6535537974, "lat": 40.4198949, "lon": -3.7013821}, {"type": "node", "id": 6535537975, "lat": 40.4198956, "lon": -3.7014471}, {"type": "node", "id": 6535537976, "lat": 40.4198962, "lon": -3.7015027}, {"type": "node", "id": 6535537977, "lat": 40.4198953, "lon": -3.7014158}, {"type": "node", "id": 6535537978, "lat": 40.4199236, "lon": -3.7012989}, {"type": "node", "id": 6535537979, "lat": 40.4198939, "lon": -3.7012989}, {"type": "node", "id": 6535537980, "lat": 40.4198965, "lon": -3.7015256}, {"type": "node", "id": 6535537981, "lat": 40.4199272, "lon": -3.7015242}, {"type": "node", "id": 6535537982, "lat": 40.420044, "lon": -3.701414}, {"type": "node", "id": 6535537983, "lat": 40.420068, "lon": -3.7014138}, {"type": "node", "id": 6535537984, "lat": 40.4199371, "lon": -3.7014153}, {"type": "node", "id": 6535540185, "lat": 40.4199133, "lon": -3.7014156}, {"type": "node", "id": 6535565174, "lat": 40.4196663, "lon": -3.7015564}, {"type": "node", "id": 6535565175, "lat": 40.4197617, "lon": -3.7014806}, {"type": "node", "id": 6535572268, "lat": 40.4198466, "lon": -3.7016688}, {"type": "node", "id": 6535572269, "lat": 40.4198612, "lon": -3.7017365}, {"type": "node", "id": 6535572270, "lat": 40.4198373, "lon": -3.7016258, "tags": {"highway": "elevator"}}, {"type": "node", "id": 6535572271, "lat": 40.4198816, "lon": -3.7018005}, {"type": "node", "id": 6535572272, "lat": 40.4198924, "lon": -3.7018467, "tags": {"highway": "elevator"}}, {"type": "node", "id": 6535572273, "lat": 40.4198663, "lon": -3.7017346}, {"type": "node", "id": 6535606606, "lat": 40.4198355, "lon": -3.7014693}, {"type": "node", "id": 6535606607, "lat": 40.4198449, "lon": -3.7014873}, {"type": "node", "id": 6535606608, "lat": 40.4198545, "lon": -3.7015057}, {"type": "node", "id": 6535606609, "lat": 40.419719, "lon": -3.7015948}, {"type": "node", "id": 6535606610, "lat": 40.4197243, "lon": -3.7016174}, {"type": "node", "id": 6535606611, "lat": 40.4197148, "lon": -3.7015765}, {"type": "node", "id": 6535606612, "lat": 40.4197887, "lon": -3.7015113}, {"type": "node", "id": 6535606613, "lat": 40.4197199, "lon": -3.7015692}, {"type": "node", "id": 6535606614, "lat": 40.4197289, "lon": -3.7015863}, {"type": "node", "id": 6535606615, "lat": 40.4197982, "lon": -3.7015294}, {"type": "node", "id": 6535606616, "lat": 40.4198047, "lon": -3.7015505}, {"type": "node", "id": 6535606617, "lat": 40.4197393, "lon": -3.7016034}, {"type": "node", "id": 6535606618, "lat": 40.4198156, "lon": -3.7015406}, {"type": "node", "id": 6535606619, "lat": 40.419807, "lon": -3.701523}, {"type": "node", "id": 6535606620, "lat": 40.4197985, "lon": -3.7015059}, {"type": "node", "id": 6535606621, "lat": 40.4198346, "lon": -3.701579}, {"type": "node", "id": 6535606622, "lat": 40.419728, "lon": -3.7016354}, {"type": "node", "id": 6535606623, "lat": 40.4198045, "lon": -3.7015501}, {"type": "node", "id": 6535606624, "lat": 40.4197393, "lon": -3.7016033}, {"type": "node", "id": 6535606625, "lat": 40.4197076, "lon": -3.701594}, {"type": "node", "id": 6535606626, "lat": 40.4197985, "lon": -3.7015302}, {"type": "node", "id": 6535606627, "lat": 40.4197288, "lon": -3.7015862}, {"type": "node", "id": 6535606628, "lat": 40.4197898, "lon": -3.7015134}, {"type": "node", "id": 6535606629, "lat": 40.4197199, "lon": -3.7015691}, {"type": "node", "id": 6535606630, "lat": 40.4186667, "lon": -3.7018186}, {"type": "node", "id": 6535606631, "lat": 40.4195611, "lon": -3.7013961}, {"type": "node", "id": 6535606632, "lat": 40.4196257, "lon": -3.7016382}, {"type": "node", "id": 6535606633, "lat": 40.4196834, "lon": -3.7016161}, {"type": "node", "id": 6535606634, "lat": 40.4198382, "lon": -3.7015396, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 6535606635, "lat": 40.4198368, "lon": -3.7014165}, {"type": "node", "id": 6535606636, "lat": 40.4198388, "lon": -3.7015886}, {"type": "node", "id": 6535606637, "lat": 40.4197482, "lon": -3.7017206, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 6535606638, "lat": 40.4197942, "lon": -3.7017031, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 6535606639, "lat": 40.4197786, "lon": -3.7016308}, {"type": "node", "id": 6535606640, "lat": 40.4198059, "lon": -3.7017572}, {"type": "node", "id": 6535606641, "lat": 40.4197321, "lon": -3.7016509}, {"type": "node", "id": 6535606642, "lat": 40.4197605, "lon": -3.7017743}, {"type": "node", "id": 6535606643, "lat": 40.4196913, "lon": -3.7016509}, {"type": "node", "id": 6535606644, "lat": 40.4196969, "lon": -3.7016784, "tags": {"highway": "elevator"}}, {"type": "node", "id": 6535606645, "lat": 40.4198953, "lon": -3.7017237, "tags": {"barrier": "turnstile"}}, {"type": "node", "id": 6553800036, "lat": 40.4163517, "lon": -3.7085262}, {"type": "node", "id": 6553800037, "lat": 40.4164749, "lon": -3.7086924}, {"type": "node", "id": 6553800049, "lat": 40.4167185, "lon": -3.7087211}, {"type": "node", "id": 6679949263, "lat": 40.4185738, "lon": -3.7034225}, {"type": "node", "id": 6679949264, "lat": 40.4189097, "lon": -3.7034507}, {"type": "node", "id": 6679949265, "lat": 40.418752, "lon": -3.703306}, {"type": "node", "id": 6679949266, "lat": 40.4186418, "lon": -3.703378}, {"type": "node", "id": 6679949267, "lat": 40.4188994, "lon": -3.7036483}, {"type": "node", "id": 6679949268, "lat": 40.4188597, "lon": -3.7035687}, {"type": "node", "id": 6679949269, "lat": 40.4188474, "lon": -3.7032804}, {"type": "node", "id": 6679949270, "lat": 40.4188091, "lon": -3.7032744}, {"type": "node", "id": 6832907161, "lat": 40.4158666, "lon": -3.7068825}, {"type": "node", "id": 6869591586, "lat": 40.4180378, "lon": -3.6994483}, {"type": "node", "id": 7537651749, "lat": 40.4180621, "lon": -3.6993968}, {"type": "node", "id": 7537651750, "lat": 40.4180607, "lon": -3.6993369}, {"type": "node", "id": 7537651751, "lat": 40.4180695, "lon": -3.6993022}, {"type": "node", "id": 7537651752, "lat": 40.4181069, "lon": -3.6985564}, {"type": "node", "id": 7537651753, "lat": 40.4178881, "lon": -3.6993582}, {"type": "node", "id": 7537651754, "lat": 40.4180984, "lon": -3.6987918, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 7537651758, "lat": 40.4179772, "lon": -3.6988979}, {"type": "node", "id": 7537651759, "lat": 40.418055, "lon": -3.6987149}, {"type": "node", "id": 7537651760, "lat": 40.4180917, "lon": -3.6986016}, {"type": "node", "id": 7537651761, "lat": 40.4178023, "lon": -3.6994153}, {"type": "node", "id": 7537651767, "lat": 40.4177979, "lon": -3.6994969}, {"type": "node", "id": 7537651768, "lat": 40.4181116, "lon": -3.6986775}, {"type": "node", "id": 7537651769, "lat": 40.4180943, "lon": -3.6985688}, {"type": "node", "id": 7537651770, "lat": 40.4170067, "lon": -3.7000938}, {"type": "node", "id": 7537651771, "lat": 40.4170929, "lon": -3.6984546}, {"type": "node", "id": 7537651772, "lat": 40.418077, "lon": -3.6990915}, {"type": "node", "id": 7537651773, "lat": 40.4180493, "lon": -3.6991734}, {"type": "node", "id": 7537704685, "lat": 40.4157171, "lon": -3.6960486}, {"type": "node", "id": 7618346989, "lat": 40.4199824, "lon": -3.7058143}, {"type": "node", "id": 7682718592, "lat": 40.4191203, "lon": -3.7031644}, {"type": "node", "id": 7682718593, "lat": 40.4191453, "lon": -3.7030598}, {"type": "node", "id": 7682718594, "lat": 40.4191255, "lon": -3.7031095}, {"type": "node", "id": 7682718595, "lat": 40.4191572, "lon": -3.7030425}, {"type": "node", "id": 7682718596, "lat": 40.4191317, "lon": -3.7033984}, {"type": "node", "id": 7829029474, "lat": 40.418367, "lon": -3.6979545}, {"type": "node", "id": 7829029475, "lat": 40.4183337, "lon": -3.6979305}, {"type": "node", "id": 7829029476, "lat": 40.4183301, "lon": -3.6979273}, {"type": "node", "id": 7829029477, "lat": 40.418297, "lon": -3.6979093}, {"type": "node", "id": 7829029478, "lat": 40.4182401, "lon": -3.6978796}, {"type": "node", "id": 7829029479, "lat": 40.4184616, "lon": -3.6980354}, {"type": "node", "id": 7829029480, "lat": 40.4184177, "lon": -3.6980078, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 7829029481, "lat": 40.4183601, "lon": -3.6979775}, {"type": "node", "id": 7829029482, "lat": 40.4183253, "lon": -3.6979594, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 7829029483, "lat": 40.4183219, "lon": -3.6979575, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 7829029484, "lat": 40.4182886, "lon": -3.6979394}, {"type": "node", "id": 7829048085, "lat": 40.418233, "lon": -3.697907}, {"type": "node", "id": 7829048086, "lat": 40.4181783, "lon": -3.6978793}, {"type": "node", "id": 7868569093, "lat": 40.4199506, "lon": -3.7018239}, {"type": "node", "id": 7879758049, "lat": 40.4210566, "lon": -3.7057711, "tags": {"amenity": "parking_entrance", "fee": "yes", "name": "Callao Smart Parking", "parking": "underground", "phone": "+34919891370"}}, {"type": "node", "id": 7879758050, "lat": 40.4210171, "lon": -3.7057289}, {"type": "node", "id": 8007102031, "lat": 40.420631, "lon": -3.706373}, {"type": "node", "id": 8007158423, "lat": 40.4208537, "lon": -3.7069971}, {"type": "node", "id": 8071133804, "lat": 40.4170555, "lon": -3.7030539}, {"type": "node", "id": 8071133805, "lat": 40.4170629, "lon": -3.7030503, "tags": {"name": "Alcal\u00e1", "railway": "subway_entrance", "wheelchair": "yes", "wheelchair:description": "Lift to RENFE & Metro ticket halls."}}, {"type": "node", "id": 8071133806, "lat": 40.4199278, "lon": -3.701635}, {"type": "node", "id": 8075992347, "lat": 40.4167977, "lon": -3.7086978}, {"type": "node", "id": 8075992348, "lat": 40.4164197, "lon": -3.7083974}, {"type": "node", "id": 8075992349, "lat": 40.4164252, "lon": -3.708406}, {"type": "node", "id": 8075992350, "lat": 40.4166068, "lon": -3.7085536}, {"type": "node", "id": 8075992351, "lat": 40.4165075, "lon": -3.7085378}, {"type": "node", "id": 8075992352, "lat": 40.4165523, "lon": -3.708547}, {"type": "node", "id": 8075992353, "lat": 40.4163989, "lon": -3.7086128}, {"type": "node", "id": 8075992354, "lat": 40.416448, "lon": -3.7084845}, {"type": "node", "id": 8075992355, "lat": 40.4164799, "lon": -3.7085174, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8075992356, "lat": 40.4166526, "lon": -3.7085411}, {"type": "node", "id": 8075992357, "lat": 40.4167375, "lon": -3.7084936}, {"type": "node", "id": 8075992358, "lat": 40.4167488, "lon": -3.7085392}, {"type": "node", "id": 8075992359, "lat": 40.4167397, "lon": -3.7085807}, {"type": "node", "id": 8075992360, "lat": 40.4164621, "lon": -3.7085948, "tags": {"crossing": "uncontrolled", "crossing_ref": "zebra", "highway": "crossing"}}, {"type": "node", "id": 8075992361, "lat": 40.4164269, "lon": -3.7085941}, {"type": "node", "id": 8075992362, "lat": 40.4167026, "lon": -3.7086366}, {"type": "node", "id": 8075992363, "lat": 40.4167536, "lon": -3.7086721}, {"type": "node", "id": 8185628165, "lat": 40.4147155, "lon": -3.69922}, {"type": "node", "id": 8235796757, "lat": 40.4201259, "lon": -3.7031374, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8281570507, "lat": 40.4230437, "lon": -3.7006323}, {"type": "node", "id": 8281587698, "lat": 40.4201659, "lon": -3.7016116}, {"type": "node", "id": 8281587699, "lat": 40.4236003, "lon": -3.700664}, {"type": "node", "id": 8281587700, "lat": 40.4213462, "lon": -3.7012193}, {"type": "node", "id": 8281587701, "lat": 40.4211489, "lon": -3.7011638}, {"type": "node", "id": 8281643664, "lat": 40.4215619, "lon": -3.701848}, {"type": "node", "id": 8309647908, "lat": 40.4156937, "lon": -3.6961247}, {"type": "node", "id": 8309647909, "lat": 40.4158608, "lon": -3.6962637, "tags": {"crossing": "marked", "crossing:markings": "yes", "highway": "crossing"}}, {"type": "node", "id": 8322325507, "lat": 40.41627, "lon": -3.7069432}, {"type": "node", "id": 8322325508, "lat": 40.415757, "lon": -3.7061231}, {"type": "node", "id": 8422641935, "lat": 40.4151901, "lon": -3.7055396, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423356486, "lat": 40.4142492, "lon": -3.703761, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423356511, "lat": 40.4127556, "lon": -3.6998584, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406948, "lat": 40.416252, "lon": -3.7007854, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406955, "lat": 40.4140691, "lon": -3.7032363, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406957, "lat": 40.4143465, "lon": -3.7001695, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406958, "lat": 40.4129297, "lon": -3.7000801}, {"type": "node", "id": 8423406959, "lat": 40.4129866, "lon": -3.7000499, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406961, "lat": 40.4162225, "lon": -3.7003793, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8423406988, "lat": 40.4147814, "lon": -3.7055421, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8426942035, "lat": 40.4189921, "lon": -3.6970396}, {"type": "node", "id": 8427149777, "lat": 40.4136906, "lon": -3.7071916, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132476, "lat": 40.4219759, "lon": -3.7026475, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132477, "lat": 40.422696, "lon": -3.703916, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132478, "lat": 40.4243024, "lon": -3.7070763, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132480, "lat": 40.4238379, "lon": -3.7055699, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132485, "lat": 40.4219909, "lon": -3.7017743, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132486, "lat": 40.4200513, "lon": -3.7020538, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8429132487, "lat": 40.4237133, "lon": -3.7024116, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8436098481, "lat": 40.4182988, "lon": -3.6981831, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8440634409, "lat": 40.4202049, "lon": -3.7068014, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 8569733877, "lat": 40.4180559, "lon": -3.6993494, "tags": {"barrier": "kerb", "kerb": "flush", "tactile_paving": "yes"}}, {"type": "node", "id": 8588809551, "lat": 40.4180985, "lon": -3.7022015}, {"type": "node", "id": 8588809552, "lat": 40.4183165, "lon": -3.7012131}, {"type": "node", "id": 8588809553, "lat": 40.4186458, "lon": -3.6970246, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing_ref": "zebra", "highway": "traffic_signals", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 8677859071, "lat": 40.4138433, "lon": -3.704698}, {"type": "node", "id": 8714821993, "lat": 40.4182374, "lon": -3.6987711}, {"type": "node", "id": 8778583479, "lat": 40.4225492, "lon": -3.7007469}, {"type": "node", "id": 8778593778, "lat": 40.4205517, "lon": -3.6993683}, {"type": "node", "id": 8778593779, "lat": 40.4205165, "lon": -3.6992456}, {"type": "node", "id": 8778593780, "lat": 40.4205833, "lon": -3.6992841, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 8778593781, "lat": 40.4206109, "lon": -3.6994213}, {"type": "node", "id": 8778593782, "lat": 40.42037, "lon": -3.6994562}, {"type": "node", "id": 8778593783, "lat": 40.4205895, "lon": -3.6993482}, {"type": "node", "id": 8778593784, "lat": 40.420666, "lon": -3.6996104}, {"type": "node", "id": 8935902135, "lat": 40.4156989, "lon": -3.6961078}, {"type": "node", "id": 9023885359, "lat": 40.4148585, "lon": -3.6947563, "tags": {"crossing": "uncontrolled", "highway": "crossing"}}, {"type": "node", "id": 9029849697, "lat": 40.4168318, "lon": -3.7033456}, {"type": "node", "id": 9029849698, "lat": 40.4178804, "lon": -3.704563}, {"type": "node", "id": 9029849699, "lat": 40.4181937, "lon": -3.704142}, {"type": "node", "id": 9047955418, "lat": 40.4211823, "lon": -3.6992983}, {"type": "node", "id": 9047955439, "lat": 40.4211941, "lon": -3.6993386}, {"type": "node", "id": 9047955447, "lat": 40.4211882, "lon": -3.6992717}, {"type": "node", "id": 9047955451, "lat": 40.4210929, "lon": -3.6993894}, {"type": "node", "id": 9047955463, "lat": 40.4210998, "lon": -3.6994131}, {"type": "node", "id": 9047955469, "lat": 40.4212022, "lon": -3.6992642}, {"type": "node", "id": 9066413409, "lat": 40.4213288, "lon": -3.7052865}, {"type": "node", "id": 9066447921, "lat": 40.4213233, "lon": -3.7052949}, {"type": "node", "id": 9067769837, "lat": 40.4179181, "lon": -3.7022064}, {"type": "node", "id": 9071663150, "lat": 40.4171563, "lon": -3.7069005, "tags": {"noexit": "yes"}}, {"type": "node", "id": 9071663157, "lat": 40.4172512, "lon": -3.706859, "tags": {"barrier": "gate"}}, {"type": "node", "id": 9077087073, "lat": 40.416642, "lon": -3.7007687, "tags": {"highway": "traffic_signals"}}, {"type": "node", "id": 9104252079, "lat": 40.4184075, "lon": -3.6995223, "tags": {"bus": "yes", "public_transport": "stop_position"}}, {"type": "node", "id": 9104583311, "lat": 40.416806, "lon": -3.7037201}, {"type": "node", "id": 9183971137, "lat": 40.4138325, "lon": -3.7048203}, {"type": "node", "id": 9183971138, "lat": 40.4138194, "lon": -3.7045997}, {"type": "node", "id": 9183971139, "lat": 40.4138298, "lon": -3.7046425}, {"type": "node", "id": 9213638868, "lat": 40.4174639, "lon": -3.6943065, "tags": {"crossing": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9230894212, "lat": 40.4167721, "lon": -3.7032324}, {"type": "node", "id": 9230894213, "lat": 40.4168918, "lon": -3.7030922}, {"type": "node", "id": 9230894214, "lat": 40.4166686, "lon": -3.7043005}, {"type": "node", "id": 9230894215, "lat": 40.4167244, "lon": -3.7043213}, {"type": "node", "id": 9230894216, "lat": 40.4167962, "lon": -3.7043084}, {"type": "node", "id": 9230895277, "lat": 40.4169525, "lon": -3.704349}, {"type": "node", "id": 9230911917, "lat": 40.4168977, "lon": -3.7037377}, {"type": "node", "id": 9230911918, "lat": 40.4169512, "lon": -3.7037626}, {"type": "node", "id": 9230911919, "lat": 40.416981, "lon": -3.7038498}, {"type": "node", "id": 9230911920, "lat": 40.4180599, "lon": -3.6985731}, {"type": "node", "id": 9262327414, "lat": 40.4196258, "lon": -3.7060919}, {"type": "node", "id": 9262340242, "lat": 40.4201487, "lon": -3.7061567}, {"type": "node", "id": 9379815311, "lat": 40.4193674, "lon": -3.694338}, {"type": "node", "id": 9410124345, "lat": 40.4172359, "lon": -3.7016328}, {"type": "node", "id": 9410124346, "lat": 40.4178402, "lon": -3.6995518}, {"type": "node", "id": 9410124347, "lat": 40.4166383, "lon": -3.7042063}, {"type": "node", "id": 9425862201, "lat": 40.4166595, "lon": -3.7033696}, {"type": "node", "id": 9425862202, "lat": 40.4166181, "lon": -3.7036707}, {"type": "node", "id": 9425862203, "lat": 40.4166074, "lon": -3.7036328}, {"type": "node", "id": 9425862204, "lat": 40.4166094, "lon": -3.7035433}, {"type": "node", "id": 9425862205, "lat": 40.4166221, "lon": -3.7034574}, {"type": "node", "id": 9425862206, "lat": 40.4166379, "lon": -3.7034085}, {"type": "node", "id": 9425862207, "lat": 40.4166653, "lon": -3.7033491}, {"type": "node", "id": 9425862208, "lat": 40.417067, "lon": -3.7029351}, {"type": "node", "id": 9425862209, "lat": 40.4171294, "lon": -3.703299}, {"type": "node", "id": 9425862210, "lat": 40.4171251, "lon": -3.7033023}, {"type": "node", "id": 9425862211, "lat": 40.4170609, "lon": -3.7029329}, {"type": "node", "id": 9425862212, "lat": 40.4166727, "lon": -3.7032771}, {"type": "node", "id": 9712059179, "lat": 40.4243235, "lon": -3.7073818, "tags": {"crossing": "marked", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 9723723853, "lat": 40.4140691, "lon": -3.7001312}, {"type": "node", "id": 9723723854, "lat": 40.4140691, "lon": -3.7000865, "tags": {"access": "private", "entrance": "yes"}}, {"type": "node", "id": 9723723855, "lat": 40.4140681, "lon": -3.6998848}, {"type": "node", "id": 9723723856, "lat": 40.4140671, "lon": -3.6997081}, {"type": "node", "id": 9723723857, "lat": 40.4142387, "lon": -3.6997189}, {"type": "node", "id": 9723723858, "lat": 40.4142392, "lon": -3.6997054, "tags": {"access": "private", "entrance": "yes"}}, {"type": "node", "id": 9723733539, "lat": 40.4145753, "lon": -3.7001692}, {"type": "node", "id": 9723733540, "lat": 40.4150037, "lon": -3.7002393}, {"type": "node", "id": 9723733541, "lat": 40.4145942, "lon": -3.7001964}, {"type": "node", "id": 9955755552, "lat": 40.4164105, "lon": -3.7058269}, {"type": "node", "id": 10000729227, "lat": 40.418895, "lon": -3.6955436}, {"type": "node", "id": 10001575901, "lat": 40.4243185, "lon": -3.707309, "tags": {"button_operated": "no", "crossing": "traffic_signals", "crossing:island": "no", "tactile_paving": "yes", "traffic_signals:sound": "yes", "traffic_signals:vibration": "no"}}, {"type": "node", "id": 10121654234, "lat": 40.4141296, "lon": -3.7032917}, {"type": "node", "id": 10282030188, "lat": 40.4167496, "lon": -3.6968464, "tags": {"access": "no", "barrier": "bollard", "bicycle": "yes", "bollard": "removable", "foot": "yes"}}, {"type": "node", "id": 10572482521, "lat": 40.4201171, "lon": -3.6994087, "tags": {"crossing": "marked", "crossing:island": "no", "crossing:markings": "yes", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 10596302958, "lat": 40.4214286, "lon": -3.7053958}, {"type": "node", "id": 10596302959, "lat": 40.4214192, "lon": -3.7054103}, {"type": "node", "id": 10743202495, "lat": 40.4208358, "lon": -3.703018, "tags": {"direction": "forward", "highway": "give_way", "traffic_sign:id": "ES:R1"}}, {"type": "node", "id": 10873168671, "lat": 40.4168227, "lon": -3.703386, "tags": {"barrier": "turnstile", "layer": "-1"}}, {"type": "node", "id": 10873168672, "lat": 40.4167209, "lon": -3.7044231, "tags": {"barrier": "turnstile", "layer": "-1"}}, {"type": "node", "id": 10873168673, "lat": 40.4170919, "lon": -3.7030998}, {"type": "node", "id": 10873168674, "lat": 40.416833, "lon": -3.7032801}, {"type": "node", "id": 10918305799, "lat": 40.4188182, "lon": -3.6955182}, {"type": "node", "id": 10918305801, "lat": 40.4187415, "lon": -3.6954936}, {"type": "node", "id": 10992547973, "lat": 40.416454, "lon": -3.7050648}, {"type": "node", "id": 10992547974, "lat": 40.4164656, "lon": -3.7050669}, {"type": "node", "id": 10992547975, "lat": 40.4164979, "lon": -3.7051328}, {"type": "node", "id": 10992547976, "lat": 40.4164905, "lon": -3.7050873}, {"type": "node", "id": 10992547977, "lat": 40.416426, "lon": -3.7050683}, {"type": "node", "id": 10992547980, "lat": 40.4165035, "lon": -3.705076}, {"type": "node", "id": 10992547985, "lat": 40.4165191, "lon": -3.7051939}, {"type": "node", "id": 10992547998, "lat": 40.4161773, "lon": -3.708053}, {"type": "node", "id": 10992547999, "lat": 40.4162021, "lon": -3.7080645}, {"type": "node", "id": 10992548000, "lat": 40.4161431, "lon": -3.7080091}, {"type": "node", "id": 10992548001, "lat": 40.4161412, "lon": -3.7078894}, {"type": "node", "id": 10992548002, "lat": 40.4162347, "lon": -3.7069728}, {"type": "node", "id": 10992548003, "lat": 40.4162515, "lon": -3.7069811}, {"type": "node", "id": 10992548004, "lat": 40.4158182, "lon": -3.7061366}, {"type": "node", "id": 11127190661, "lat": 40.4182504, "lon": -3.707157}, {"type": "node", "id": 11127284562, "lat": 40.4183421, "lon": -3.7083814}, {"type": "node", "id": 11127284563, "lat": 40.4183335, "lon": -3.7083254}, {"type": "node", "id": 11127284564, "lat": 40.4183246, "lon": -3.7082671}, {"type": "node", "id": 11127284565, "lat": 40.4183178, "lon": -3.7082223}, {"type": "node", "id": 11127284566, "lat": 40.4183045, "lon": -3.7081269}, {"type": "node", "id": 11127284567, "lat": 40.418294, "lon": -3.7080453}, {"type": "node", "id": 11127284568, "lat": 40.4182828, "lon": -3.707959}, {"type": "node", "id": 11127284569, "lat": 40.4182722, "lon": -3.7078767}, {"type": "node", "id": 11127284570, "lat": 40.4182623, "lon": -3.7077998}, {"type": "node", "id": 11127284571, "lat": 40.4182511, "lon": -3.7077132}, {"type": "node", "id": 11127284572, "lat": 40.4182429, "lon": -3.7076498}, {"type": "node", "id": 11127299097, "lat": 40.4182509, "lon": -3.7075985}, {"type": "node", "id": 11127299098, "lat": 40.4182584, "lon": -3.7076509}, {"type": "node", "id": 11127299099, "lat": 40.4182682, "lon": -3.7077063}, {"type": "node", "id": 11127299100, "lat": 40.4182828, "lon": -3.707776}, {"type": "node", "id": 11127299101, "lat": 40.4183021, "lon": -3.7078931}, {"type": "node", "id": 11127299102, "lat": 40.4183093, "lon": -3.7079492}, {"type": "node", "id": 11127299103, "lat": 40.4183273, "lon": -3.7080738}, {"type": "node", "id": 11127299104, "lat": 40.4183352, "lon": -3.7081385}, {"type": "node", "id": 11127312305, "lat": 40.4183449, "lon": -3.7082015}, {"type": "node", "id": 11127312306, "lat": 40.4183602, "lon": -3.7083212}, {"type": "node", "id": 11127312307, "lat": 40.4183661, "lon": -3.7083728}, {"type": "node", "id": 11127312308, "lat": 40.418374, "lon": -3.7084108}, {"type": "node", "id": 11127312309, "lat": 40.4183809, "lon": -3.7084286}, {"type": "node", "id": 11127345768, "lat": 40.418099, "lon": -3.7067131}, {"type": "node", "id": 11127345769, "lat": 40.4181073, "lon": -3.7067521}, {"type": "node", "id": 11127345770, "lat": 40.4181207, "lon": -3.7067899}, {"type": "node", "id": 11127345771, "lat": 40.4181356, "lon": -3.7068251}, {"type": "node", "id": 11127345772, "lat": 40.418155, "lon": -3.7068753}, {"type": "node", "id": 11127345773, "lat": 40.4181738, "lon": -3.7069248}, {"type": "node", "id": 11127345774, "lat": 40.4181848, "lon": -3.7069556}, {"type": "node", "id": 11127345775, "lat": 40.4182058, "lon": -3.707014}, {"type": "node", "id": 11127345776, "lat": 40.4182183, "lon": -3.7070521}, {"type": "node", "id": 11127345777, "lat": 40.418233, "lon": -3.7070941}, {"type": "node", "id": 11127345778, "lat": 40.4182441, "lon": -3.7071312}, {"type": "node", "id": 11127345779, "lat": 40.4182453, "lon": -3.7071429}, {"type": "node", "id": 11127345780, "lat": 40.4182283, "lon": -3.707159}, {"type": "node", "id": 11127345781, "lat": 40.4182121, "lon": -3.7071729}, {"type": "node", "id": 11127345782, "lat": 40.4181975, "lon": -3.7071864}, {"type": "node", "id": 11127345783, "lat": 40.4181808, "lon": -3.7071998}, {"type": "node", "id": 11127345784, "lat": 40.4181621, "lon": -3.7072169}, {"type": "node", "id": 11127345785, "lat": 40.4181451, "lon": -3.7072327}, {"type": "node", "id": 11127345786, "lat": 40.4181279, "lon": -3.7072467}, {"type": "node", "id": 11127345787, "lat": 40.4181157, "lon": -3.707258}, {"type": "node", "id": 11127345788, "lat": 40.4181448, "lon": -3.7073304}, {"type": "node", "id": 11127345789, "lat": 40.4182229, "lon": -3.7075733}, {"type": "node", "id": 11127345790, "lat": 40.4182338, "lon": -3.7075793}, {"type": "node", "id": 11127345791, "lat": 40.4182184, "lon": -3.7075312}, {"type": "node", "id": 11127345792, "lat": 40.4182142, "lon": -3.7074683}, {"type": "node", "id": 11127345793, "lat": 40.418212, "lon": -3.7074234}, {"type": "node", "id": 11127345794, "lat": 40.4182076, "lon": -3.7073904}, {"type": "node", "id": 11127345795, "lat": 40.4181995, "lon": -3.7073712}, {"type": "node", "id": 11127345796, "lat": 40.4181861, "lon": -3.7073537}, {"type": "node", "id": 11127345797, "lat": 40.4181753, "lon": -3.7073442}, {"type": "node", "id": 11127345798, "lat": 40.4181607, "lon": -3.7073366}, {"type": "node", "id": 11127401956, "lat": 40.4182925, "lon": -3.7074953}, {"type": "node", "id": 11127401957, "lat": 40.418278, "lon": -3.7073917}, {"type": "node", "id": 11127401958, "lat": 40.4182907, "lon": -3.7073676}, {"type": "node", "id": 11127401959, "lat": 40.4183323, "lon": -3.7073077}, {"type": "node", "id": 11127401960, "lat": 40.4183993, "lon": -3.7072081}, {"type": "node", "id": 11127401961, "lat": 40.4184478, "lon": -3.7071407}, {"type": "node", "id": 11127401962, "lat": 40.4184878, "lon": -3.7070811}, {"type": "node", "id": 11127401963, "lat": 40.4185041, "lon": -3.7070546}, {"type": "node", "id": 11127401964, "lat": 40.4185643, "lon": -3.7070383}, {"type": "node", "id": 11127401965, "lat": 40.4185861, "lon": -3.7070634}, {"type": "node", "id": 11127401966, "lat": 40.4185969, "lon": -3.707101}, {"type": "node", "id": 11127401967, "lat": 40.4186053, "lon": -3.7071572}, {"type": "node", "id": 11127401968, "lat": 40.4186154, "lon": -3.7072208}, {"type": "node", "id": 11127401969, "lat": 40.4186299, "lon": -3.7073086}, {"type": "node", "id": 11127401970, "lat": 40.4186398, "lon": -3.7073703}, {"type": "node", "id": 11127401971, "lat": 40.4186465, "lon": -3.7074153}, {"type": "node", "id": 11127401972, "lat": 40.4185932, "lon": -3.707427}, {"type": "node", "id": 11127401973, "lat": 40.4185452, "lon": -3.7074373}, {"type": "node", "id": 11127401974, "lat": 40.4185076, "lon": -3.7074455}, {"type": "node", "id": 11127401975, "lat": 40.4184511, "lon": -3.7074574}, {"type": "node", "id": 11127401976, "lat": 40.4183936, "lon": -3.7074711}, {"type": "node", "id": 11127401977, "lat": 40.4183458, "lon": -3.7074815}, {"type": "node", "id": 11127519961, "lat": 40.4183773, "lon": -3.7069228}, {"type": "node", "id": 11127519962, "lat": 40.4183964, "lon": -3.7069722}, {"type": "node", "id": 11127519963, "lat": 40.4184176, "lon": -3.7069248}, {"type": "node", "id": 11127519964, "lat": 40.4184336, "lon": -3.7069012}, {"type": "node", "id": 11127519965, "lat": 40.4184548, "lon": -3.7068836}, {"type": "node", "id": 11127519966, "lat": 40.4184782, "lon": -3.7068731}, {"type": "node", "id": 11127519967, "lat": 40.4185076, "lon": -3.7068675}, {"type": "node", "id": 11127519968, "lat": 40.4185321, "lon": -3.7068706}, {"type": "node", "id": 11127519969, "lat": 40.4185612, "lon": -3.7068841}, {"type": "node", "id": 11127519970, "lat": 40.4185818, "lon": -3.7069027}, {"type": "node", "id": 11127519971, "lat": 40.4186035, "lon": -3.7069364}, {"type": "node", "id": 11127526486, "lat": 40.4185804, "lon": -3.7068205}, {"type": "node", "id": 11127526487, "lat": 40.4186009, "lon": -3.7068788}, {"type": "node", "id": 11127533205, "lat": 40.4181727, "lon": -3.7072444}, {"type": "node", "id": 11127533206, "lat": 40.4182235, "lon": -3.707198}, {"type": "node", "id": 11127533207, "lat": 40.4182645, "lon": -3.7071549}, {"type": "node", "id": 11127533208, "lat": 40.4182459, "lon": -3.7070968}, {"type": "node", "id": 11127533209, "lat": 40.4182221, "lon": -3.707037}, {"type": "node", "id": 11127533210, "lat": 40.4182551, "lon": -3.7071647}, {"type": "node", "id": 11127533236, "lat": 40.419484, "lon": -3.7059742}, {"type": "node", "id": 11252459022, "lat": 40.4191991, "lon": -3.6997277, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11252459023, "lat": 40.419271, "lon": -3.6996504, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11252459024, "lat": 40.4193206, "lon": -3.6998411, "tags": {"crossing": "uncontrolled", "crossing:markings": "zebra", "highway": "crossing", "tactile_paving": "yes"}}, {"type": "node", "id": 11277360513, "lat": 40.417248, "lon": -3.7020503}, {"type": "node", "id": 11375748161, "lat": 40.4219683, "lon": -3.6963258}, {"type": "node", "id": 11380094711, "lat": 40.4195199, "lon": -3.7047452, "tags": {"addr:housenumber": "1", "addr:street": "Calle de la Abada", "amenity": "parking_entrance", "capacity": "67", "name": "Parking El Corte Ingl\u00e9s", "parking": "underground"}}, {"type": "node", "id": 11380094712, "lat": 40.4195685, "lon": -3.7046656}, {"type": "node", "id": 11380094713, "lat": 40.4196094, "lon": -3.7047446}, {"type": "node", "id": 11380094714, "lat": 40.4196005, "lon": -3.7047481}, {"type": "node", "id": 11380094715, "lat": 40.4195867, "lon": -3.7047475}, {"type": "node", "id": 11548033813, "lat": 40.4129355, "lon": -3.7039287, "tags": {"access": "yes", "addr:housenumber": "10", "addr:street": "Calle de Doctor Cortezo", "amenity": "parking_entrance", "description": "Parking autorizado para el acceso dentro de la Zona de Bajas Emisiones de Especial Protecci\u00f3n, \u201cMadrid Central\u201d", "name": "Hotel Eurostars", "parking": "underground"}}, {"type": "node", "id": 11548033814, "lat": 40.4129266, "lon": -3.7038593}, {"type": "node", "id": 11571132754, "lat": 40.4210226, "lon": -3.6995517}, {"type": "node", "id": 11571132755, "lat": 40.4209848, "lon": -3.6995728}, {"type": "node", "id": 11687665737, "lat": 40.4146405, "lon": -3.6951418}, {"type": "way", "id": 4291377, "nodes": [344923509, 5292423517, 5292423518, 5292423519, 5292423520, 25906779], "tags": {"highway": "service", "layer": "-1", "oneway": "yes", "service": "parking_aisle", "tunnel": "yes"}}, {"type": "way", "id": 4308074, "nodes": [26066581, 8429132477, 26066577, 26066580, 26066576, 26066574, 26066567, 8429132480, 26066566, 26066564, 26066573, 3579004075, 325172862, 8429132478, 10001575901, 9712059179, 26066572], "tags": {"bicycle": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle del Pez", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 4328769, "nodes": [21951420, 6431838800, 21951427], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lit": "yes", "maxspeed": "30", "name": "Calle de la Magdalena", "name:etymology:wikidata": "Q17181780", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4328777, "nodes": [26310463, 26310573, 21968365, 21968370, 21968375], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle del Le\u00f3n", "name:etymology:wikidata": "Q15839300", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 4328778, "nodes": [26487775, 4461049903, 26310569, 26310550, 26310554, 26310518, 26310467], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Santa Mar\u00eda", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 4328781, "nodes": [21968359, 21968365], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle del Infante", "oneway": "yes", "postal_code": "28014"}}, {"type": "way", "id": 4328782, "nodes": [26487767, 7537704685, 8935902135, 8309647908, 1209330764, 21968406], "tags": {"access": "destination", "emergency": "yes", "highway": "living_street", "lanes": "1", "lit": "yes", "name": "Plaza de las Cortes", "name:etymology:wikidata": "Q5482884", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 4328784, "nodes": [21968352, 21968359, 26310460], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle de Echegaray", "name:etymology:wikidata": "Q15788209", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 4328788, "nodes": [21734295, 21734304], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de \u00c1lvarez Gato", "name:etymology:wikidata": "Q20908815", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 4328789, "nodes": [21734296, 6220907499, 21734295, 21734300, 21734303, 21734217], "tags": {"bicycle": "yes", "highway": "pedestrian", "lit": "yes", "name": "Calle de Espoz y Mina", "name:etymology:wikidata": "Q5740830", "oneway": "yes", "postal_code": "28012", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 4328790, "nodes": [351959175, 6220944380, 3656060239, 21734298, 21734295, 21734301, 21968336, 21968192, 8423406948, 2090546864, 21968197, 21968140], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de la Cruz", "name:etymology:wikidata": "Q16659214", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28012", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 4328791, "nodes": [21734299, 1682266051, 21734298], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle de Barcelona", "name:etymology:wikidata": "Q27048338", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 4328792, "nodes": [21734285, 6220907495, 1187929710, 21734299, 21734300], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de C\u00e1diz", "name:etymology:wikidata": "Q15682", "postal_code": "28012", "surface": "paved"}}, {"type": "way", "id": 4328793, "nodes": [21734303, 21734302], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Pasaje de Matheu", "name:etymology:wikidata": "Q6065308", "oneway": "yes", "postal_code": "28012", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 4328796, "nodes": [351959288, 960747239], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 4328798, "nodes": [21969828, 25906643, 25906642, 3429401831, 21960432], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de la Aduana", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 4328799, "nodes": [3429367514, 3429417264, 21969824], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de los Jardines", "name:etymology:wikidata": "Q28052611", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 4328801, "nodes": [21960445, 3429401833, 5426990620, 21960421], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de San Alberto", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 4328802, "nodes": [26066613, 942080479, 26066612, 26066616, 25906425, 25906426, 8429132485, 1474148373, 26066610], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Valverde", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 4328803, "nodes": [4062425597, 4062425599, 26066609, 8429132476, 26066603, 26066604], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle del Barco", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 4328804, "nodes": [21960491, 3506679269, 3412532924, 3412466778, 5302261811], "tags": {"access": "delivery", "highway": "living_street", "lit": "yes", "name": "Calle de la Salud", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 4328837, "nodes": [3436803700, 3512977915, 9410124345, 25906743, 2674601893], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "vehicle": "destination"}}, {"type": "way", "id": 4328840, "nodes": [21968125, 21968124, 5385241327, 1522690047, 21968056], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 4328843, "nodes": [26341678, 4309854559, 6109512294, 6109512293, 1522690043], "tags": {"highway": "tertiary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4346299, "nodes": [21968130, 5960796494, 20953234, 10000729227, 3436809574, 3436809585, 4309854561, 20953235, 4309854562, 4309854560, 435728976], "tags": {"highway": "tertiary", "lanes": "4", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4362027, "nodes": [21734267, 3835537683, 2005647993, 1235055767], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Toledo", "name:etymology:wikidata": "Q5740883", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 4487158, "nodes": [26067812, 345198464, 3838019503, 8007158423, 26066630], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Silva", "oneway": "yes", "postal_code": "28013", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4487676, "nodes": [27717686, 8075992348, 8075992349], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "20", "name": "Calle de San Felipe Neri", "name:etymology:wikidata": "Q217791", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 4487679, "nodes": [26341673, 6109456225, 3429367546, 3429367549, 6109456233, 25906420, 25906421, 5970506954, 25906429, 59633359, 25906288, 25906289, 25906276, 5970506953, 25906277, 25906300, 25906301, 3927597018, 25906221, 25906112], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle de Hortaleza", "oneway": "yes", "postal_code": "28004", "surface": "asphalt", "wikidata": "Q5740911"}}, {"type": "way", "id": 4487801, "nodes": [25906420, 25906409, 10572482521, 25906392, 25906410], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de la Reina", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4487807, "nodes": [21969744, 3429376984, 25906409, 3927640946, 8778593780, 25906408], "tags": {"highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Calle del Clavel", "oneway": "no", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 4518849, "nodes": [21734250, 3507528479, 1235055793], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle del Siete de Julio", "name:etymology:wikidata": "Q26777545", "postal_code": "28012", "smoothness": "good", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4518851, "nodes": [21734249, 2622900858, 3507528492, 1789051704, 3507557298, 21734246, 3502487950, 3414972218], "tags": {"access": "destination", "cycleway": "shared_lane", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "20", "motor_vehicle": "destination", "name": "Calle de Bordadores", "name:etymology:wikidata": "Q24656602", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "paving_stones:20"}}, {"type": "way", "id": 4518852, "nodes": [5302261816, 3414972214, 3507529720, 2506478082, 21734224], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Traves\u00eda del Arenal", "postal_code": "28013", "source": "survey", "surface": "sett"}}, {"type": "way", "id": 4518853, "nodes": [21734224, 5308393593, 3507529705, 21734225, 21734229, 21734241], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de San Crist\u00f3bal", "postal_code": "28012", "smoothness": "good", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 4518854, "nodes": [21734242, 8422641935, 21734263, 21734264], "tags": {"access": "permissive", "cycleway": "shared_lane", "highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Plaza de Santa Cruz", "name:etymology:wikidata": "Q6080086", "oneway": "yes", "postal_code": "28012", "source": "local knowledge", "surface": "paving_stones"}}, {"type": "way", "id": 4518855, "nodes": [3507529708, 5308393604, 3507529702, 21734225, 1258876336, 10992548004, 21734228, 21734243], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de las Postas", "name:etymology:wikidata": "Q28051324", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 4519445, "nodes": [21734278, 21734277, 48753331, 5308396722, 21734214], "tags": {"highway": "pedestrian", "lit": "yes", "motor_vehicle": "destination", "name": "Calle del Correo", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 4519448, "nodes": [21734277, 21734283, 6220944379, 21734284], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de San Ricardo", "postal_code": "28012", "source": "survey", "surface": "paving_stones", "wikidata": "Q52828167"}}, {"type": "way", "id": 4519449, "nodes": [21734283, 21734279, 3208415469, 21734280], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Paz", "postal_code": "28012", "source": "survey"}}, {"type": "way", "id": 4519451, "nodes": [21734263, 2090546862, 21734282, 21734281, 21734288], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de la Bolsa", "oneway": "yes", "postal_code": "28012", "source": "survey", "surface": "paving_stones", "wikidata": "Q28051520"}}, {"type": "way", "id": 4519453, "nodes": [21734289, 510827540], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 4519454, "nodes": [21734271, 21734272], "tags": {"highway": "service", "lit": "yes", "source": "survey"}}, {"type": "way", "id": 4616510, "nodes": [8426942035, 1522690058, 25906410, 25906404], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Valdeiglesias", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 5930429, "nodes": [21734272, 2446976641, 1235055787], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle Botoneras", "name:etymology:wikidata": "Q28050982", "postal_code": "28012", "wikidata": "Q28050982", "wikipedia": "es:Calle de Botoneras"}}, {"type": "way", "id": 5930433, "nodes": [48752941, 1783889517, 48752943], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Fresa", "postal_code": "28012"}}, {"type": "way", "id": 5930437, "nodes": [21734227, 21734229, 8322325508, 21734228], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle del Marqu\u00e9s Viudo de Pontejos", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 5930441, "nodes": [21734227, 21734275, 21734278], "tags": {"access": "designated", "highway": "pedestrian", "lit": "yes", "name": "Calle del Marqu\u00e9s Viudo de Pontejos", "postal_code": "28012"}}, {"type": "way", "id": 5930450, "nodes": [390826846, 48752951, 21734266, 6343112682, 48752939], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de El Salvador", "name:etymology:wikidata": "Q38366642", "oneway": "yes", "postal_code": "28012", "turn:lanes": "left;right"}}, {"type": "way", "id": 5930458, "nodes": [21734234, 48752963], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "loc_name": "Arco de Cuchilleros", "name": "Calle de la Escalerilla de Piedra", "name:de": "Bogen der Messerschleifer", "name:es": "Calle de la Escalerilla de Piedra", "ramp": "no", "source:alt_name": "@secretosdemadri", "tunnel": "building_passage"}}, {"type": "way", "id": 5930467, "nodes": [25906395, 25906392, 3429376975, 26341676], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de V\u00edctor Hugo", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 5930468, "nodes": [21970134, 3436814274, 2506478058], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle del Marqu\u00e9s de Casa Riera", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 5930469, "nodes": [26486524, 9213638868, 21968151, 21970134], "tags": {"access": "destination", "highway": "residential", "lit": "yes", "name": "Calle de Los Madrazo", "name:etymology:wikidata": "Q29345542", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 5930472, "nodes": [21734218, 814676851, 5308396735, 3257183417, 2505404903, 5308396736, 3257183416, 5308396737, 3257183415, 3257183408, 5308396738, 2505404899, 2505404898, 21734217], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "vehicle": "destination"}}, {"type": "way", "id": 5935903, "nodes": [48827314, 48827310, 3411959156], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Callej\u00f3n de Preciados", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 5935905, "nodes": [5302264628, 3411959157, 21961236, 48827314, 3414972251, 5308352303, 21961265], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle del Maestro Victoria", "name:etymology:wikidata": "Q5741016", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 5935906, "nodes": [5302261817, 3414972215], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de Celenque", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes", "wikidata": "Q6079939", "wikipedia": "es:Plaza de Celenque"}}, {"type": "way", "id": 5935908, "nodes": [48827295, 48827287, 48827271], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Tahona de las Descalzas", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 5935913, "nodes": [48827280, 48827271], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Tetu\u00e1n", "name:etymology:wikidata": "Q5740881", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 5935914, "nodes": [5302264639, 3412512765, 5302261812, 21960415, 3414873427, 21960421], "tags": {"access": "delivery", "highway": "living_street", "lit": "yes", "name": "Calle de Tetu\u00e1n", "name:etymology:wikidata": "Q5740881", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 7642906, "nodes": [26066586, 26066577], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de San Roque", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7642926, "nodes": [9104252079, 21969828, 21969824, 11252459022, 21969758, 3429376980, 26341675], "tags": {"cycleway:lanes": "none|shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de la Virgen de los Peligros", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 7642947, "nodes": [21734246, 21734245], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de San Gin\u00e9s", "postal_code": "28013", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7642954, "nodes": [59633358, 8778583479, 59633356, 25906498, 59633359], "tags": {"highway": "pedestrian", "name": "Calle de P\u00e9rez Gald\u00f3s", "name:etymology:wikidata": "Q189869", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7642957, "nodes": [21734278, 21734280], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Paz", "oneway": "yes", "postal_code": "28012"}}, {"type": "way", "id": 7642961, "nodes": [25906779, 25906778, 25906777, 534950139], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 7642965, "nodes": [21734305, 3656050013, 21734304, 21968336], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de N\u00fa\u00f1ez de Arce", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 7642974, "nodes": [21734309, 1645108320, 21951420], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Luis V\u00e9lez de Guevara", "name:etymology:wikidata": "Q1305828", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 7642977, "nodes": [21951413, 6432436966, 1777473030, 6373247669, 21734297], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Relatores", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 7642979, "nodes": [21951400, 1777473028, 11548033814, 551479454], "tags": {"alt_name": "Calle del Doctor Cortezo", "highway": "residential", "lit": "yes", "name": "Calle de Doctor Cortezo", "name:etymology:wikidata": "Q28031508", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7643016, "nodes": [929294354, 390826839], "tags": {"highway": "residential", "lit": "yes", "motor_vehicle": "private", "name": "Pasaje de la Caja de Ahorros", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 7643032, "nodes": [21951427, 1367876340, 6373247274, 26341187], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de los Ca\u00f1izares", "oneway": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 7643038, "nodes": [26310457, 321520746], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Plaza de Matute", "name:etymology:wikidata": "Q6080024", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7643042, "nodes": [26066603, 26066616], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Mu\u00f1oz Torrero", "postal_code": "28004", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7643043, "nodes": [25906424, 8281587700, 8281643664, 25906425], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de San Onofre", "name:etymology:wikidata": "Q464959", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7643050, "nodes": [26066630, 4110068960, 26066588, 834140096, 26066587, 3160932223, 3160932224], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de Silva", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 7712488, "nodes": [21968192, 3656060241, 21968185, 21968172], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle del Pozo", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 7712489, "nodes": [21734301, 3656060240, 21734302, 21968172, 21968163], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Victoria", "postal_code": "28012", "smoothness": "good", "surface": "sett", "wikidata": "Q29001836", "wikipedia": "es:Calle de la Victoria (Madrid)"}}, {"type": "way", "id": 7712524, "nodes": [25906422, 2711609529, 27508534], "tags": {"alt_name": "Plaza de V\u00e1zquez de Mella", "highway": "residential", "lit": "yes", "name": "Plaza de Pedro Zerolo", "name:etymology:wikidata": "Q6080146", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 7712530, "nodes": [25906429, 25906430, 25906431, 3927640948, 25906432, 25906406], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Marcos", "name:etymology:wikidata": "Q31966", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 7726294, "nodes": [21968139, 7537651770, 3949475117, 21968141, 7537651771, 21968142], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Arlab\u00e1n", "name:etymology:wikidata": "Q44910881", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 7732065, "nodes": [26066587, 26066644, 26066648, 3103665947, 26066665], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de la Estrella", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7732071, "nodes": [48842577, 3429367548, 25907096, 25907094, 11380094712, 3430170250], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de la Abada", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 7732072, "nodes": [25907103, 6109422963, 3429367540, 3430170248, 3430170247, 25907102], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Chinchilla", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "surface": "sett"}}, {"type": "way", "id": 7732073, "nodes": [21953728, 2090546860, 1797905478, 21734264], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Santo Tom\u00e1s", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 7732075, "nodes": [21951386, 3428636172, 1437056478], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Duque de Rivas", "name:etymology:wikidata": "Q155463", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7732078, "nodes": [21734292, 845674258, 1493715148], "tags": {"access": "no", "highway": "service", "maxspeed": "50", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 7971489, "nodes": [21968380, 21968226, 21968232], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle de Ventura de la Vega", "oneway": "yes", "postal_code": "28014", "surface": "sett"}}, {"type": "way", "id": 7971492, "nodes": [21968391, 21968384], "tags": {"access": "destination", "emergency": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de Santa Catalina", "oneway": "yes", "postal_code": "28014", "surface": "sett"}}, {"type": "way", "id": 7971493, "nodes": [20953234, 2506478057, 2005647254, 21968151, 21968152], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Cubas", "name:etymology:wikidata": "Q19304646", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971494, "nodes": [21968147, 21968148, 21968149], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de Jovellanos", "name:etymology:wikidata": "Q50227806", "oneway": "yes", "postal_code": "28014"}}, {"type": "way", "id": 7971496, "nodes": [26486526, 21968152, 3208415531, 339239255, 21968147, 6343116059, 6343116058, 4197261937], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Zorrilla", "name:etymology:wikidata": "Q29352014", "oneway": "yes", "postal_code": "28014"}}, {"type": "way", "id": 7971499, "nodes": [21968139, 1682266080, 5960796496], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Sevilla", "name:etymology:wikidata": "Q20908843", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 7971500, "nodes": [21968134, 3387688920, 3280495557, 3949472801, 435728984, 21967746], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Sevilla", "name:etymology:wikidata": "Q20908843", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 7971559, "nodes": [26066593, 26066594, 26066595, 10743202495, 26066604, 1474148372, 26066612], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Desenga\u00f1o", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 7971560, "nodes": [26066628, 26066627], "tags": {"highway": "residential", "lit": "yes", "name": "Traves\u00eda del Horno de la Mata", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971562, "nodes": [26066593, 26066592, 26066627, 3429367557, 48842577], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Concepci\u00f3n Arenal", "name:etymology:wikidata": "Q671852", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971563, "nodes": [25907101, 3429367556, 26066628], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Mesonero Romanos", "name:etymology:wikidata": "Q1545524", "oneway": "yes", "postal_code": "28004", "sidewalk": "right", "surface": "paving_stones"}}, {"type": "way", "id": 7971564, "nodes": [26066595, 26066596, 26066601], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de la Ballesta", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971566, "nodes": [26066600, 26066597], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Nao", "oneway": "yes", "postal_code": "28004", "psv": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 7971567, "nodes": [26066596, 1530664324, 26066597, 26066598], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Loreto Prado y Enrique Chicote", "name:etymology:wikidata": "Q5979168", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 7971922, "nodes": [8075992363, 8075992362, 8075992360, 8075992361, 8075992353, 21734254], "tags": {"access": "destination", "cycleway": "shared_lane", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de Herradores", "name:etymology:wikidata": "Q28534650", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971923, "nodes": [21734252, 3414972228], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de las Hileras", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971924, "nodes": [345198647, 11127345768, 551573440], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 7971925, "nodes": [3414972225, 26213330, 1636940728, 333218855], "tags": {"access": "destination", "bicycle": "yes", "cycleway:both": "no", "emergency": "yes", "foot": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "yes", "name": "Calle de San Mart\u00edn", "oneway": "yes", "postal_code": "28013", "psv": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 7971928, "nodes": [21961265, 3414972250, 344926731], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de la Misericordia", "oneway": "no", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 7971930, "nodes": [26213325, 26213317], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Traves\u00eda de los Trujillos", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey"}}, {"type": "way", "id": 7971932, "nodes": [26213306, 26213323], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de las Conchas", "postal_code": "28013", "source": "survey"}}, {"type": "way", "id": 7971933, "nodes": [3275558361, 26213324, 3416565683, 3416565680, 48842574, 26213323], "tags": {"access": "destination", "bicycle": "yes", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de las Veneras", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey"}}, {"type": "way", "id": 7971935, "nodes": [26213290, 345198507, 3414972243], "tags": {"access": "destination", "bicycle": "yes", "cycleway": "shared_lane", "foot": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "yes", "name": "Calle de los Donados", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "wikidata": "Q28007290", "wikipedia": "es:Calle de los Donados"}}, {"type": "way", "id": 7972546, "nodes": [21968406, 1682266037, 1682266055, 21968400], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Plaza de las Cortes", "name:etymology:wikidata": "Q5482884", "oneway": "yes", "postal_code": "28014", "surface": "paving_stones"}}, {"type": "way", "id": 7972547, "nodes": [21968209, 21968213, 21968226], "tags": {"highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de Manuel Fern\u00e1ndez y Gonz\u00e1lez", "oneway": "yes", "postal_code": "28014", "surface": "sett"}}, {"type": "way", "id": 7972548, "nodes": [21968221, 21968213, 21968352], "tags": {"access": "destination", "highway": "pedestrian", "lit": "yes", "name": "Calle de Echegaray", "name:etymology:wikidata": "Q15788209", "oneway": "yes", "postal_code": "28014", "surface": "sett"}}, {"type": "way", "id": 15104434, "nodes": [25906284, 25906406, 25906407], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Barbieri", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 16322052, "nodes": [21968147, 10282030188, 1132727515, 1132727600, 167302840], "tags": {"access": "private", "highway": "service", "lit": "yes", "name": "Calle de Floridablanca", "name:etymology:wikidata": "Q2287910"}}, {"type": "way", "id": 17252048, "nodes": [1258876347, 2506478084, 3507529700, 1258876333, 21734245], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Coloreros", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 17760808, "nodes": [26213290, 11127284565, 11127284564, 11127284563, 11127284562, 26213289], "tags": {"access": "destination", "bicycle": "yes", "cycleway": "shared_lane", "emergency": "yes", "foot": "yes", "goods": "yes", "highway": "residential", "horse": "destination", "lit": "yes", "motor_vehicle": "yes", "name": "Plaza de Santa Catalina de los Donados", "oneway": "yes", "postal_code": "28013", "psv": "yes"}}, {"type": "way", "id": 17760812, "nodes": [26213327, 26213326, 11127345790, 11127284572, 11127284571, 11127284570, 11127284569, 11127284568, 11127284567, 11127284566, 26213290], "tags": {"access": "destination", "bicycle": "yes", "cycleway:both": "shared_lane", "cycleway:left:lane": "pictogram", "cycleway:left:oneway": "-1", "emergency": "yes", "foot": "yes", "goods": "yes", "highway": "residential", "horse": "destination", "lanes": "1", "lit": "yes", "motor_vehicle": "yes", "name": "Calle de la Flora", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "psv": "yes", "source": "survey"}}, {"type": "way", "id": 17760813, "nodes": [26213323, 5308349822, 5308158335, 184049174, 5308374095, 5308374093, 26213322, 5308374094, 3837996383, 5302261807], "tags": {"access": "delivery", "highway": "pedestrian", "lit": "yes", "name": "Calle de las Navas de Tolosa", "postal_code": "28013", "source": "survey"}}, {"type": "way", "id": 17760816, "nodes": [5302261814, 3837996384, 184049173, 184049174], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Ternera", "postal_code": "28013", "source": "survey"}}, {"type": "way", "id": 17760817, "nodes": [26213323, 26213325], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de los Trujillos", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey"}}, {"type": "way", "id": 23407031, "nodes": [25906270, 4309826953, 11375748161, 2239998764, 1718376823, 4951747250, 25906285, 25906284, 4951747252, 25906500, 4951747254, 25906287, 25906288], "tags": {"cycleway": "shared_lane", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle de Augusto Figueroa", "name:etymology:wikidata": "Q16489206", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 29230555, "nodes": [21968344, 1682265950, 8423406957, 9723723853, 26310454], "tags": {"access": "destination", "bicycle": "yes", "highway": "living_street", "lit": "yes", "name": "Calle del Pr\u00edncipe", "name:etymology:wikidata": "Q15788175", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 29231454, "nodes": [321520746, 8423406959, 8423406958, 26310476], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Plaza de Matute", "name:etymology:wikidata": "Q6080024", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "paving_stones", "width": "2.5"}}, {"type": "way", "id": 29485945, "nodes": [21968344, 623922410, 1682265938, 3656050006, 21734306], "tags": {"highway": "residential", "name": "Calle del Prado", "name:etymology:wikidata": "Q16389845", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 29486859, "nodes": [21734307, 6220907497, 3323271327, 21734308], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de San Sebasti\u00e1n", "name:etymology:wikidata": "Q24940406", "oneway": "yes", "postal_code": "28012", "surface": "sett", "width": "2.5"}}, {"type": "way", "id": 29486910, "nodes": [21734307, 6220907498, 26310454], "tags": {"bicycle": "yes", "highway": "pedestrian", "lit": "yes", "minibus": "yes", "name": "Calle de las Huertas", "name:etymology:wikidata": "Q2364997", "oneway": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 29487062, "nodes": [351959175, 6220907496, 3425030904, 21734296], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza del \u00c1ngel", "name:etymology:wikidata": "Q5800864", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 29487193, "nodes": [21734306, 6220907493, 1682265928, 1682265920, 21734307], "tags": {"highway": "residential", "maxspeed": "30", "name": "Plaza del \u00c1ngel", "name:etymology:wikidata": "Q5800864", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 29487231, "nodes": [21734306, 623922413, 21734305], "tags": {"highway": "residential", "maxspeed": "30", "name": "Plaza de Santa Ana", "name:etymology:wikidata": "Q740210", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 29499420, "nodes": [26066569, 325172867, 26066565, 26066568, 26066585, 3160932224, 26066586, 26066590, 26066593], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de la Luna", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 30246953, "nodes": [26066623, 26066624, 2121950928, 26066619], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Miguel Moya", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 30247268, "nodes": [26213326, 26213325], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "motor_vehicle": "destination", "name": "Calle de los Trujillos", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 30650268, "nodes": [351959168, 1682265913, 351959288, 21734292], "tags": {"highway": "tertiary", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 30676403, "nodes": [21968140, 1682266063, 2090546863, 8423406961, 21968209, 3656054828, 26341190, 1682266029, 26341191, 1682265991, 1682265986, 21968344], "tags": {"access": "destination", "bicycle": "yes", "highway": "residential", "lit": "yes", "name": "Calle del Pr\u00edncipe", "name:etymology:wikidata": "Q15788175", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 30676408, "nodes": [339242703, 21968140], "tags": {"highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Plaza de Canalejas", "name:etymology:wikidata": "Q3392158", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 30676545, "nodes": [21734217, 21968163, 9077087073, 339243196, 339243713, 21968140], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Carrera de San Jer\u00f3nimo", "name:etymology:wikidata": "Q5836422", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "wikidata": "Q5836422", "wikipedia": "es:Carrera de San Jer\u00f3nimo"}}, {"type": "way", "id": 31021401, "nodes": [21960737, 344923509], "tags": {"highway": "service", "oneway": "yes", "service": "parking_aisle"}}, {"type": "way", "id": 31021534, "nodes": [21960421, 534950139, 6679949263, 3506679268, 21960491], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Plaza del Carmen", "name:etymology:wikidata": "Q6080406", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 31021535, "nodes": [21960491, 3412532926, 21960737], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de la Salud", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 31021778, "nodes": [26213317, 2835449216, 1200524897, 333219510, 5308349761, 1522690037, 5308349759, 1522690036, 5308349758, 333219513, 333219515, 333219518, 3323223809, 333219460], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de San Mart\u00edn", "name:etymology:wikidata": "Q30578759", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31021779, "nodes": [333218855, 1522690018, 1636940730, 333218857, 1522690027, 26213314, 1522690029, 1522690031, 3838014631, 5648436680, 3838014632, 333219460, 26213315, 344926746, 26213327], "tags": {"access": "destination", "bicycle": "yes", "cycleway": "shared_lane", "emergency": "yes", "foot": "yes", "footway": "sidewalk", "goods": "yes", "highway": "residential", "horse": "destination", "lanes": "1", "lit": "yes", "motor_vehicle": "yes", "name": "Plaza de San Mart\u00edn", "name:etymology:wikidata": "Q30578759", "oneway": "yes", "postal_code": "28013", "psv": "yes"}}, {"type": "way", "id": 31021780, "nodes": [344926731, 345198587], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "2", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de las Descalzas", "name:etymology:wikidata": "Q6080247", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31053347, "nodes": [333219510, 345198588, 5308349760, 345198597, 345198606], "tags": {"highway": "service", "lanes": "1", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31053349, "nodes": [26213330, 345198636, 345198640, 26213329], "tags": {"highway": "footway", "lit": "yes", "name": "Calle Francisco Piquer"}}, {"type": "way", "id": 31053350, "nodes": [345198673, 345198655], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Pasadizo de San Gin\u00e9s", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 31053351, "nodes": [345198655, 178821153, 3414972216, 5302261818], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Pasadizo de San Gin\u00e9s", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 31053352, "nodes": [21734245, 345198673], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Pasadizo de San Gin\u00e9s", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 31053354, "nodes": [8075992363, 1235055815, 8075992359, 8075992358, 21734252], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de Herradores", "name:etymology:wikidata": "Q28534650", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31053356, "nodes": [8075992349, 21734254], "tags": {"highway": "tertiary", "lit": "yes", "name": "Plaza de Herradores", "name:etymology:wikidata": "Q28534650", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 31053358, "nodes": [8075992349, 8075992354, 8075992355, 8075992351, 8075992352, 8075992350, 8075992356, 8075992357, 21734252], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "motor_vehicle": "destination", "name": "Plaza de Herradores", "name:etymology:wikidata": "Q28534650", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 31261348, "nodes": [21968140, 2090546866, 21968221, 942080475, 21968232], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Carrera de San Jer\u00f3nimo", "name:etymology:wikidata": "Q5836422", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "wikidata": "Q5836422", "wikipedia": "es:Carrera de San Jer\u00f3nimo"}}, {"type": "way", "id": 31261528, "nodes": [21734249, 10992548001, 1258876345, 1258876334, 5970506958, 1258876347, 21734244, 8322325507, 3507529697, 3507529704, 9955755552, 21734224, 1258876329, 10992547975, 21734223], "tags": {"access": "permissive", "cycleway:left": "lane", "cycleway:right": "shared_lane", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "30", "name": "Calle Mayor", "name:etymology:wikidata": "Q1149052", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "psv": "yes", "surface": "asphalt", "wikidata": "Q1149052", "wikipedia": "es:Calle Mayor (Madrid)"}}, {"type": "way", "id": 31261632, "nodes": [21734244, 10992548003, 10992548002, 347602936], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Felipe III", "name:etymology:wikidata": "Q34464", "oneway": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 31262321, "nodes": [21734290, 3656019308, 3428610312, 3656019307, 347617905, 1777869683, 21953728, 390826851, 2734140708, 390826846], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lit": "yes", "maxspeed": "30", "name": "Calle de la Concepci\u00f3n Jer\u00f3nima", "name:etymology:wikidata": "Q21072221", "oneway": "yes", "postal_code": "28012"}}, {"type": "way", "id": 31262334, "nodes": [21734290, 6357851744, 347617892, 1777473033, 21951394], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "maxspeed": "30", "name": "Calle del Conde de Romanones", "name:etymology:wikidata": "Q250975", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 31262496, "nodes": [347617892, 9183971137, 347617905], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 31739739, "nodes": [25906403, 25906405, 4951747251, 25906285], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de la Libertad", "name:en": "Liberty Street", "name:es": "Calle de la Libertad", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 31739870, "nodes": [27508534, 4263222976, 4263222974, 25906430], "tags": {"highway": "residential", "lit": "yes", "name": "Costanilla de los Capuchinos", "oneway": "yes", "postal_code": "28004"}}, {"type": "way", "id": 32597088, "nodes": [26341673, 1522690072, 26341674, 6109456256, 6109456246, 25906418, 5970506955, 26341675], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 32860484, "nodes": [26066589, 26066623], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de los Tudescos", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 32860489, "nodes": [1255433813, 370152501, 26066624], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 32860492, "nodes": [26066618, 8007102031, 2121950931, 7879758050, 26066623], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de los Tudescos", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 32865074, "nodes": [26066604, 3429293416, 26066614], "tags": {"highway": "residential", "lit": "yes", "name": "Calle Gonzalo Jim\u00e9nez de Quesada", "name:etymology:wikidata": "Q347688", "oneway": "yes", "postal_code": "28004", "surface": "sett"}}, {"type": "way", "id": 32865959, "nodes": [26058800, 8429132487, 26058805, 26066583, 26066582, 26066581], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Corredera Baja de San Pablo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 34095405, "nodes": [21734280, 6357173373, 21734281], "tags": {"highway": "living_street", "lit": "yes", "name": "Calle de la Paz", "note": "Signed one-way, although seems pedestrianized.", "oneway": "yes", "postal_code": "28012", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 34095410, "nodes": [390826851, 390826852], "tags": {"highway": "living_street", "lit": "yes", "name": "Callej\u00f3n de la Concepci\u00f3n Jer\u00f3nima", "postal_code": "28012", "service": "alley"}}, {"type": "way", "id": 34095411, "nodes": [21734264, 1783889513, 942080453, 48752945, 21734261], "tags": {"cycleway:lanes": "shared_lane|none", "highway": "living_street", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "20", "name": "Plaza de la Provincia", "name:etymology:wikidata": "Q12344133", "postal_code": "28012", "source": "survey", "surface": "paving_stones:20"}}, {"type": "way", "id": 34095412, "nodes": [390826854, 1187929781, 3656019311, 390826853], "tags": {"highway": "residential", "lit": "yes", "noname": "yes", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 34095421, "nodes": [6115513394, 6115513435, 6115513436, 6115513437, 6115513398, 6115513438, 6115513439, 6115513440], "tags": {"highway": "service", "layer": "-2", "location": "underground", "maxheight": "default", "oneway": "yes", "surface": "sett", "tunnel": "yes"}}, {"type": "way", "id": 41559062, "nodes": [21960432, 21960445], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de la Montera", "name:etymology:wikidata": "Q5740928", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 41602114, "nodes": [510827492, 510827494, 510827495, 6115514928, 6115514930, 6115514929, 6115514932, 510827497, 510827499, 510827501, 6115514931, 510827503, 510827506, 6115513392, 6115513434, 6115513393, 510827508], "tags": {"foot": "no", "highway": "tertiary", "lanes": "1", "layer": "-2", "lit": "yes", "location": "underground", "maxheight": "2.7 m", "maxspeed": "20", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "shoulder": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 41602115, "nodes": [510827499, 6115513395, 510827512], "tags": {"highway": "service", "layer": "-1", "location": "underground", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 41602116, "nodes": [347602936, 6115513414, 6115513415, 6832907161, 510827515], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "location": "underground", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 41602117, "nodes": [510827512, 6115513396, 510827501], "tags": {"highway": "service", "layer": "-1", "location": "underground", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 41602118, "nodes": [510827512, 347603099], "tags": {"highway": "service", "layer": "-1", "location": "underground", "tunnel": "yes"}}, {"type": "way", "id": 41602120, "nodes": [510827540, 3656041440, 510827492], "tags": {"cycleway:right": "no", "highway": "tertiary", "lane_markings": "no", "lit": "no", "maxheight": "2.7", "maxspeed": "30", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 43410308, "nodes": [21734214, 9410124347, 48753676, 48753682], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 43410309, "nodes": [21968146, 1209331114, 3295637735, 4249089770, 1209330745, 4197261937], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Carrera de San Jer\u00f3nimo", "name:etymology:wikidata": "Q5836422", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "vehicle": "no"}}, {"type": "way", "id": 43410310, "nodes": [3949498572, 21968136], "tags": {"highway": "tertiary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43410311, "nodes": [21968136, 7537651753], "tags": {"highway": "tertiary", "lanes": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 43410312, "nodes": [26341673, 6109456226, 3429367538, 3429417269], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 43626132, "nodes": [551479454, 551479494, 551479496], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "driveway"}}, {"type": "way", "id": 43631107, "nodes": [345198554, 3275673385, 3323223804, 345198573, 3323223803, 3323223801, 1522690015, 3323223799, 1522690016, 3323223800, 3323223802, 5648436681], "tags": {"highway": "service", "lanes": "1", "lit": "24/7", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 43631108, "nodes": [26213330, 1522690014, 345198647], "tags": {"highway": "service", "lit": "yes", "oneway": "yes"}}, {"type": "way", "id": 43631110, "nodes": [345198606, 551573493, 5308349731, 551573502, 5308349732, 3838014629, 3838014630, 11127190661, 11127533208, 551573440, 3838014628, 5308353636, 5308353635, 345198616, 345198554], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "tunnel": "yes"}}, {"type": "way", "id": 43759721, "nodes": [21968232, 3656091300, 4249089769, 1209330584, 4249089771, 4197261937], "tags": {"access": "no", "bicycle": "yes", "bus": "yes", "cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed:lanes": "50|50|30", "name": "Calle de Zorrilla", "name:etymology:wikidata": "Q29352014", "oneway": "yes", "psv": "taxi", "surface": "asphalt", "taxi": "yes", "vehicle": "no"}}, {"type": "way", "id": 43759728, "nodes": [4197261937, 6343116060, 5970506956, 21968142, 21968143], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Cedaceros", "name:etymology:wikidata": "Q27051021", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 43759788, "nodes": [21968131, 7537651760, 3387688924, 7537651768, 21968132], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 43759793, "nodes": [21968131, 7537651769, 7537651752, 4309854555, 7829029484, 7829029477, 4309854556, 5960796495, 4309854557, 4309854558], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 45757391, "nodes": [26066619, 1522690085, 1522690086, 3519104384], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 45757394, "nodes": [26066619, 6109409086, 6109407744, 6109407745, 6109409085, 20953226], "tags": {"foot": "yes", "highway": "service", "lit": "yes", "maxspeed": "50", "motorcar": "designated", "motorcycle": "permissive", "oneway": "yes", "psv": "yes", "smoothness": "good", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 46098085, "nodes": [26341678, 435728967, 6109512295, 3949503527, 21968130], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 46098088, "nodes": [21968127, 8588809553, 1522690038, 2673249151], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 48557945, "nodes": [5302264623, 3411968694, 5704327641, 21960681, 3430170253, 3429367543], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de Mesonero Romanos", "name:etymology:wikidata": "Q1545524", "oneway": "yes", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 49016406, "nodes": [21734223, 10992547976, 5308393592, 10992547974, 10992547973, 10992547977, 3507529708, 5308393606, 5308393615, 21734227, 21734242], "tags": {"access": "permissive", "cycleway": "shared_lane", "highway": "living_street", "lit": "yes", "name": "Calle de Esparteros", "name:etymology:wikidata": "Q29525561", "oneway": "yes", "postal_code": "28012", "source": "local knowledge"}}, {"type": "way", "id": 49016415, "nodes": [21734261, 48752939], "tags": {"cycleway:both": "no", "cycleway:lanes": "shared_lane|none", "highway": "residential", "lanes": "2", "lanes:backward": "1", "lanes:forward": "1", "lit": "yes", "maxspeed": "50", "name": "Calle Imperial", "name:etymology:wikidata": "Q26913879", "postal_code": "28012", "sidewalk": "both", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 49016416, "nodes": [21734241, 48752941, 21734243], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Zaragoza", "postal_code": "28012", "source": "survey"}}, {"type": "way", "id": 49031985, "nodes": [21968352, 1682265969, 21968344], "tags": {"access": "destination", "highway": "residential", "lit": "yes", "name": "Calle del Prado", "name:etymology:wikidata": "Q16389845", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 49184672, "nodes": [623922410, 623922429, 623922431], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 49184673, "nodes": [623922438, 623922413], "tags": {"highway": "service", "oneway": "yes"}}, {"type": "way", "id": 66833793, "nodes": [48752939, 21734272, 3323271328, 21734270, 3835537693, 3835537688, 21734269, 1796759112, 21734267], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "50", "name": "Calle Imperial", "name:etymology:wikidata": "Q26913879", "oneway": "yes", "postal_code": "28012", "source": "survey"}}, {"type": "way", "id": 66835169, "nodes": [48753682, 3275673380, 48753688], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 66835311, "nodes": [21734292, 8423356486, 3656019318], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 66835421, "nodes": [21734223, 10992547980, 2827847194, 2090546865], "tags": {"bicycle": "yes", "cycleway:left": "lane", "cycleway:right": "shared_lane", "highway": "pedestrian", "lit": "yes", "name": "Calle Mayor", "name:etymology:wikidata": "Q1149052", "oneway": "no", "postal_code": "28013", "surface": "sett", "wikidata": "Q1149052", "wikipedia": "es:Calle Mayor (Madrid)"}}, {"type": "way", "id": 69737675, "nodes": [1255433819, 10596302959, 370152059, 1255433821, 1255433813], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 70955486, "nodes": [3656019318, 3519104382, 3656019316, 390826853, 1777869684, 21734290], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lit": "yes", "maxspeed": "30", "name": "Calle de la Concepci\u00f3n Jer\u00f3nima", "name:etymology:wikidata": "Q21072221", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 70955584, "nodes": [21951400, 21951413, 1645108319, 1777473024, 1777473023, 21951420], "tags": {"cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "tertiary", "lane_markings": "no", "maxspeed": "30", "name": "Plaza de Tirso de Molina", "name:etymology:wikidata": "Q6080114", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 71634922, "nodes": [345198698, 21734256, 1258876338, 5467674834, 21734250, 21734249], "tags": {"cycleway:left": "lane", "cycleway:right": "shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle Mayor", "name:etymology:wikidata": "Q1149052", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt", "wikidata": "Q1149052", "wikipedia": "es:Calle Mayor (Madrid)"}}, {"type": "way", "id": 77339395, "nodes": [48753682, 9425862212, 3507529722, 21734284, 21734285, 21734286, 6357173372, 960747242, 1682266025, 1682266010, 3656023026, 6220907494, 1682265980, 21734287], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Carretas", "name:etymology:wikidata": "Q5740952", "postal_code": "28012", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 77339400, "nodes": [25906288, 3160949633, 3160949634, 3160949635, 3160949636, 8281570507, 25906291], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Augusto Figueroa", "name:etymology:wikidata": "Q16489206", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 77339401, "nodes": [25906421, 8281587701, 25906423], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de las Infantas", "oneway": "yes", "postal_code": "28004", "smoothness": "intermediate", "surface": "paving_stones"}}, {"type": "way", "id": 79483254, "nodes": [510827508, 510827526, 510827529, 10992548000, 510827531, 10992547999, 27717686], "tags": {"foot": "no", "highway": "tertiary", "lanes": "2", "layer": "-1", "lit": "24/7", "maxspeed": "20", "name": "Calle de Toledo", "name:etymology:wikidata": "Q5740883", "oneway": "yes", "postal_code": "28012", "tunnel": "yes"}}, {"type": "way", "id": 79638493, "nodes": [929294347, 929294332, 910343139], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 79638499, "nodes": [21734287, 351959175], "tags": {"access": "no", "emergency": "yes", "highway": "residential", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28012"}}, {"type": "way", "id": 79638503, "nodes": [21734296, 3425030903, 21734307], "tags": {"bicycle": "dismount", "highway": "pedestrian", "name": "Plaza del \u00c1ngel", "name:etymology:wikidata": "Q5800864", "oneway": "yes", "oneway:bicycle": "no", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 80240818, "nodes": [26066576, 3842236788, 26066585], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de la Madera", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 80321901, "nodes": [390826839, 9067769837], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "yes", "name": "Pasaje de la Caja de Ahorros", "ramp": "no", "step_count": "12", "surface": "paving_stones"}}, {"type": "way", "id": 82202750, "nodes": [1235055752, 21734260, 48752943, 21734262], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Gerona", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones", "wikidata": "Q28534583", "wikipedia": "es:Calle de Gerona (Madrid)"}}, {"type": "way", "id": 82552700, "nodes": [351959289, 1682265955, 351959175], "tags": {"highway": "residential", "lit": "no", "noname": "yes", "oneway": "yes", "postal_code": "28012", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 82552702, "nodes": [26341193, 1187929637], "tags": {"highway": "service", "layer": "-1", "maxheight": "1.8", "oneway": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 82552703, "nodes": [960747239, 1187929707, 1187929728, 26341193], "tags": {"highway": "service", "layer": "-1", "maxheight": "1.8", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 82552704, "nodes": [26066628, 26066594], "tags": {"access": "no", "highway": "residential", "lit": "yes", "motor_vehicle": "no", "name": "Calle de Mesonero Romanos", "name:etymology:wikidata": "Q1545524", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 90210746, "nodes": [21968143, 6343116062, 21968150, 21968149, 21970134], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de Los Madrazo", "name:etymology:wikidata": "Q29345542", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 102865404, "nodes": [551479496, 1187929678, 1187929701, 351959289], "tags": {"highway": "residential", "layer": "-1", "lit": "24/7", "maxheight": "1.8", "noname": "yes", "oneway": "yes", "postal_code": "28012", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 107467870, "nodes": [1235055787, 21734274], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle Botoneras", "name:etymology:wikidata": "Q28050982", "postal_code": "28012", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 107467874, "nodes": [1235055793, 21734238], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "layer": "-1", "lit": "yes", "name": "Calle del Siete de Julio", "name:etymology:wikidata": "Q26777545", "postal_code": "28012", "ramp": "no", "tunnel": "building_passage"}}, {"type": "way", "id": 107467877, "nodes": [1235055783, 21734236], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle de Zaragoza", "postal_code": "28012", "source": "survey", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 107467879, "nodes": [1235055752, 21734237], "tags": {"bicycle": "dismount", "highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle de Gerona", "postal_code": "28012", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 107467880, "nodes": [1235055767, 21734240], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle de Toledo", "name:etymology:wikidata": "Q5740883", "postal_code": "28012", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 107467884, "nodes": [26213539, 3507528474], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle Ciudad Rodrigo", "postal_code": "28012", "smoothness": "good", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 107467885, "nodes": [21734228, 3507528475], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de la Sal", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 109739137, "nodes": [834140096, 1255433819], "tags": {"highway": "service", "oneway": "yes", "source": "PNOA", "source:date": "2010", "surface": "paving_stones"}}, {"type": "way", "id": 112538828, "nodes": [435729027, 25891942, 5483598292, 21970158, 5483598525, 25906378, 21968125], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 116821890, "nodes": [1316127619, 1316127385], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "loc_name": "Callej\u00f3n del Infierno", "name": "Calle del Arco del Triunfo", "postal_code": "28012", "source:local_name": "https://www.secretosdemadrid.es/el-callejon-del-infierno", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 116821908, "nodes": [1316127214, 1316127468], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "loc_name": "Callej\u00f3n del Infierno", "name": "Calle del Arco del Triunfo", "postal_code": "28012", "source:local_name": "https://www.secretosdemadrid.es/el-callejon-del-infierno", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 116821925, "nodes": [1316127468, 1316127619], "tags": {"highway": "pedestrian", "lit": "yes", "loc_name": "Callej\u00f3n del Infierno", "name": "Calle del Arco del Triunfo", "postal_code": "28012", "source:local_name": "https://www.secretosdemadrid.es/el-callejon-del-infierno", "surface": "paving_stones"}}, {"type": "way", "id": 116821934, "nodes": [1258876345, 3507528481, 1316127214], "tags": {"highway": "pedestrian", "lit": "yes", "loc_name": "Callej\u00f3n del Infierno", "name": "Calle del Arco del Triunfo", "postal_code": "28012", "source:local_name": "https://www.secretosdemadrid.es/el-callejon-del-infierno", "surface": "paving_stones"}}, {"type": "way", "id": 122269845, "nodes": [321520747, 26310457], "tags": {"access": "destination", "bicycle": "yes", "highway": "living_street", "lit": "yes", "minibus": "yes", "name": "Calle de las Huertas", "name:etymology:wikidata": "Q2364997", "oneway": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 122269846, "nodes": [26310457, 26310460, 26310463], "tags": {"bicycle": "yes", "highway": "pedestrian", "lit": "yes", "minibus": "yes", "name": "Calle de las Huertas", "name:etymology:wikidata": "Q2364997", "oneway": "yes", "postal_code": "28014", "surface": "paving_stones"}}, {"type": "way", "id": 130468269, "nodes": [1437056478, 5225041505, 390826846], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Duque de Rivas", "name:etymology:wikidata": "Q155463", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 136126733, "nodes": [1493715148, 3656022721, 845674260, 3656019318], "tags": {"access": "no", "highway": "service", "maxspeed": "50", "oneway": "yes", "psv": "yes"}}, {"type": "way", "id": 138884771, "nodes": [1522690018, 1522690019, 1522690022, 1522690025, 3323223806, 5308353507, 3323223807, 1522690026, 345198587], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de las Descalzas", "name:etymology:wikidata": "Q6080247", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 138884772, "nodes": [345198587, 26213313, 5308349775, 333219053, 5308349774, 1200524877, 5308349773, 1522690032, 5308349772, 3323223808, 26213314], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lanes": "1", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de las Descalzas", "name:etymology:wikidata": "Q6080247", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 150822159, "nodes": [21960681, 4173565966, 25907102, 3412532928, 3412532927, 21960737], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle Abada", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 155551743, "nodes": [25907103, 942080443, 25907101, 48842577], "tags": {"cycleway": "shared_lane", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "postal_code": "28013", "sidewalk:both": "separate", "smoothness": "good", "surface": "asphalt", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 155872373, "nodes": [21968232, 21968146, 3205417098, 21968391, 167302840, 21968400], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Carrera de San Jer\u00f3nimo", "name:etymology:wikidata": "Q5836422", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "wikidata": "Q5836422", "wikipedia": "es:Carrera de San Jer\u00f3nimo"}}, {"type": "way", "id": 155872376, "nodes": [21734288, 21734287], "tags": {"highway": "living_street", "lit": "yes", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "paving_stones", "width": "3"}}, {"type": "way", "id": 155872378, "nodes": [26341193, 1187929655, 1187929701], "tags": {"highway": "service", "layer": "-1", "maxheight": "1.8", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 166226099, "nodes": [21943059, 1777473019, 21943148, 622204636, 21947451, 21947464, 21951406, 6432436979, 1777473022, 1777473024], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "living_street", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de Lavapi\u00e9s", "name:etymology:wikidata": "Q19969082", "oneway": "yes", "postal_code": "28012", "psv": "yes", "source:width": "ARCore", "surface": "asphalt", "width": "3.3"}}, {"type": "way", "id": 168404659, "nodes": [435728967, 1522690043], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 168540931, "nodes": [1783889515, 21734262], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de Santa Cruz", "name:etymology:wikidata": "Q6080086", "postal_code": "28012", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 174841898, "nodes": [401890729, 4309836318, 25906368], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de Colmenares", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 174841899, "nodes": [1900998783, 4309755492, 5739156346, 401890729, 25906404, 25906403], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle Plaza del Rey", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "sidewalk:both:surface": "paving_stones", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 174851222, "nodes": [25906426, 26066609, 26066601], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "20", "name": "Calle de la Puebla", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 174851225, "nodes": [26066599, 26066598, 26066590], "tags": {"highway": "residential", "lit": "yes", "name": "Corredera Baja de San Pablo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 174851639, "nodes": [1855027664, 25906216, 25906212, 25906274, 326196041, 25906275, 4951747255, 25906287, 25906431], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "maxspeed": "20", "name": "Calle de Pelayo", "name:etymology:wikidata": "Q14655", "oneway": "yes", "postal_code": "28004", "surface": "asphalt"}}, {"type": "way", "id": 174855529, "nodes": [1855054523, 26310573], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle de Lope de Vega", "name:etymology:wikidata": "Q19800989", "oneway": "yes", "postal_code": "28014", "sidewalk": "both"}}, {"type": "way", "id": 178084829, "nodes": [25906500, 4951747253, 3927640949, 25906432], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Bartolom\u00e9", "postal_code": "28004", "sidewalk": "both", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 189960687, "nodes": [3436809584, 4309740734, 4309740714], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 202214510, "nodes": [4110068965, 4110068963, 4110080042, 4110068961, 4110068960, 2121950931, 4396614775, 3275558370, 2121950927, 2121950928, 3429367558, 3429367557, 3429367556, 4483800056, 3429367555, 4483800047, 3429293416, 4483800045, 4483800037, 942080479, 3429367553, 6109456245, 6109456244, 3429367552, 3429367551], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 239499976, "nodes": [3519104384, 26066621], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 239499977, "nodes": [20953226, 2472773299, 3519104384], "tags": {"highway": "residential", "lit": "yes", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "oneway": "yes", "postal_code": "28013", "sidewalk": "no", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 243229668, "nodes": [2506473225, 10918305799, 3927640945, 2506478057, 4309740705, 4309740696, 2506478058], "tags": {"est_width": "3", "foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 243990688, "nodes": [21968125, 2513452429, 435728967], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 261728552, "nodes": [3436803710, 3387688925, 21968132], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 263793367, "nodes": [21961284, 48827295, 3414972244, 3412532922, 3412532923, 21961265], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Calle del Maestro Victoria", "name:etymology:wikidata": "Q5741016", "oneway": "no", "postal_code": "28013", "psv": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 265509096, "nodes": [27508535, 25906432], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Bartolom\u00e9", "oneway": "yes", "postal_code": "28004", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 265509099, "nodes": [1884620167, 3160962491, 3927640947, 2711609496, 3160962493, 3160962494, 3160962495, 3160962496, 27508535], "tags": {"alt_name": "Plaza de V\u00e1zquez de Mella", "highway": "residential", "lit": "yes", "name": "Plaza de Pedro Zerolo", "name:etymology:wikidata": "Q6080146", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 265509165, "nodes": [2711609464, 2711609456, 8778593781], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2009", "surface": "paving_stones"}}, {"type": "way", "id": 265509167, "nodes": [266220430, 3160962492, 2711609450], "tags": {"highway": "service", "lit": "yes", "oneway": "no", "service": "driveway", "source": "PNOA", "source:date": "2009"}}, {"type": "way", "id": 265509168, "nodes": [2711609520, 2711609529], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "good", "source": "PNOA", "source:date": "2009", "surface": "sett"}}, {"type": "way", "id": 269291945, "nodes": [26067814, 345198428, 3838019474, 3428239936], "tags": {"access": "permissive", "foot": "yes", "highway": "residential", "lit": "yes", "motorcar": "delivery", "motorcycle": "permissive", "name": "Calle de Jacometrezo", "oneway": "no", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "sett"}}, {"type": "way", "id": 285185129, "nodes": [26066601, 26066600, 26066599], "tags": {"highway": "living_street", "lit": "yes", "maxspeed": "30", "name": "Calle de la Puebla", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 314492751, "nodes": [3949498572, 3205417105, 3949498571, 2005647245], "tags": {"cycleway:lanes": "none|shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de la Virgen de los Peligros", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "source": "PNOA", "source:date": "2009", "surface": "asphalt"}}, {"type": "way", "id": 319304177, "nodes": [21734243, 1235055783], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Zaragoza", "postal_code": "28012", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 319338102, "nodes": [910343141, 3257510605], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "32", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338104, "nodes": [9425862212, 9425862207, 9425862201, 9425862206, 9425862205, 9425862204, 9425862203, 9425862202, 3280548361], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 319338106, "nodes": [3257510611, 6535509929], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338108, "nodes": [3257510612, 929294358], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338109, "nodes": [3257510608, 910343140], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338110, "nodes": [3411959154, 510812872], "tags": {"highway": "steps", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 319338111, "nodes": [3257510607, 2505405832], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338113, "nodes": [3257510613, 929294340], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338114, "nodes": [3257510610, 6535509923], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 319338116, "nodes": [510812874, 3257510606], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "lit": "24/7", "surface": "paving_stones"}}, {"type": "way", "id": 320097307, "nodes": [7537651773, 3265952297], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "step_count": "25", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 320895850, "nodes": [265983582, 3275558365], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 320895852, "nodes": [3275558369, 3275558370], "tags": {"highway": "footway", "lit": "yes", "source": "PNOA", "source:date": "2010", "surface": "paving_stones"}}, {"type": "way", "id": 320895853, "nodes": [265983581, 3275558363], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones"}}, {"type": "way", "id": 320895857, "nodes": [265983583, 3275558367], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 320895859, "nodes": [910344724, 3275558369], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 320895865, "nodes": [3275558365, 3838019470, 9262340242], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 320895867, "nodes": [3275558367, 3275558366], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 321312599, "nodes": [3280548361, 5308396725], "tags": {"highway": "footway", "lit": "yes", "surface": "sett"}}, {"type": "way", "id": 332069618, "nodes": [5302458917, 1522690080, 5308227121], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 334102281, "nodes": [3275558366, 3411942229], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 334102282, "nodes": [3411942231, 3411942229, 6109422962, 3411942228, 3429367548, 3429367543, 3429367540, 3429367539, 3429367536, 6109422980, 3429367535, 6109456242, 3429367776, 7868569093, 3429367528, 3429367532, 8071133806], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 334102283, "nodes": [3275558366, 5302458911, 938516026], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 334205293, "nodes": [390826838, 3412546848], "tags": {"highway": "footway", "lit": "yes", "name": "Pasaje del Comercio", "surface": "paving_stones"}}, {"type": "way", "id": 334205294, "nodes": [3412546848, 3413063130], "tags": {"highway": "footway", "lit": "24/7", "name": "Pasaje del Comercio", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 334382541, "nodes": [3414972228, 21734253, 3414972232], "tags": {"foot": "yes", "highway": "living_street", "lit": "yes", "name": "Calle de las Hileras", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 334382542, "nodes": [3414972232, 26213329, 26213328, 1522690024, 26213327], "tags": {"access": "destination", "bicycle": "yes", "foot": "yes", "highway": "residential", "horse": "destination", "lanes": "1", "lit": "yes", "motor_vehicle": "yes", "name": "Calle de las Hileras", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 334382543, "nodes": [3414972243, 5302264622, 3414972238], "tags": {"cycleway": "shared_lane", "highway": "living_street", "lit": "yes", "name": "Calle de los Donados", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 334382549, "nodes": [3414972217, 3414972220, 3414972221, 3414972222, 3414972223, 3414972229, 3414972230, 3414972231, 3414972234, 3414972236, 3414972240, 3414972241, 3414972248, 3414972249, 3414972251, 3414972252, 5308353510, 5308349776, 5308353500, 5308349764], "tags": {"footway": "sidewalk", "highway": "pedestrian", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 335713716, "nodes": [8440634409, 2650143188, 5308227110, 1522690080, 20953226], "tags": {"access": "permissive", "foot": "yes", "highway": "residential", "lit": "yes", "motorcar": "delivery", "motorcycle": "permissive", "name": "Calle de Jacometrezo", "oneway": "no", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "sett"}}, {"type": "way", "id": 335819319, "nodes": [3429367552, 3257510613], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 335819320, "nodes": [3429367555, 4483800046, 942080443], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 335819321, "nodes": [3429367553, 938516023, 4309740766, 3429367535], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 335819322, "nodes": [3429367550, 3429367538, 4309740762, 6109456234], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 335819717, "nodes": [6109456236, 3257510611], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 335819718, "nodes": [3429367776, 6535509937, 3257510612], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 335825753, "nodes": [6455528048, 25906640, 11252459024, 21969758, 11252459023, 3436803740, 3436803733, 21969773, 21969807, 3436803729, 6109512288, 3436803731, 1522690051, 6109512286, 6109512287, 1522690055], "tags": {"cycleway": "shared_lane", "highway": "residential", "lit": "yes", "name": "Calle del Caballero de Gracia", "name:etymology:wikidata": "Q5740985", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 335825755, "nodes": [6109456234, 6109456238, 6109456236, 3429367534, 6109456255, 3429367530, 3429367525, 3429367522, 3429367521, 3429367519, 3429376980, 3436803746, 3429376979, 3429376974, 6109512285, 3429376972, 6109512297, 3436803731, 6109512298, 3436803723], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 335911670, "nodes": [3429367543, 25907101], "tags": {"highway": "residential", "lanes": "1", "lit": "yes", "name": "Calle de Mesonero Romanos", "name:etymology:wikidata": "Q1545524", "oneway": "yes", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 335911672, "nodes": [3430170250, 21960681], "tags": {"highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle de la Abada", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 336633763, "nodes": [3436803746, 3436803745, 3436803744, 3436803743, 3436803742, 3436803741, 3436803736, 3436803734, 3436803732, 3436803730, 4309740716, 3429376972], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 336633764, "nodes": [3436803724, 6109512296, 3436803725, 3436803727, 3436803728, 3436803735, 3436803739, 3436803738, 3436803737, 3436803715, 3436803714, 7537651751, 3436803703], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 336633765, "nodes": [3436803703, 3436803704, 3436803707, 8714821993, 3436803709, 7829029479, 3436803716, 3436803717, 6109512300, 3436803718, 3436803720, 3436803721, 3436803722, 3436803726, 3436803723, 3436803724], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 336633767, "nodes": [3436803707, 7537651772, 3265952297], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 336633769, "nodes": [3436803710, 3436803711, 3436803713, 3436803712, 3436803708], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "service": "parking_aisle", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 336635020, "nodes": [2005647302, 2005647299, 2005647308, 2005647306, 2005647289, 2005647290, 2005647297, 3436824695, 5483598293, 3436824694, 3436824693, 9379815311, 5483598527, 4309826932, 1522690059, 4309747781, 4471142288, 3436814277, 3436809580, 3436809576, 3436809575, 3436809578, 3436809584], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 336635023, "nodes": [960871283, 3436809583], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "25", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 336635032, "nodes": [3436809589, 4309740750, 1522690058, 4309740746, 3436809584], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 336635034, "nodes": [3949475119, 3949475120, 3949475121, 3949475123, 3949475151, 3949478659, 3949478670, 3949472797, 3597242738, 3949472798, 3949478686, 3436803701, 7829048086, 2005647314, 3436814273, 4309747755, 3436814274, 4309747756, 4309740699, 2005647254, 4309747761, 3436814275, 3436809571, 10918305801, 3436814276, 3436809581, 2005647285, 3436809579, 2005647292, 2005647304, 2005647312], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 336635193, "nodes": [3436814277, 3436809583], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 343971958, "nodes": [3507528474, 26213540], "tags": {"highway": "pedestrian", "layer": "-1", "name": "Calle Ciudad Rodrigo", "smoothness": "good", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 343971959, "nodes": [3507528477, 21734239], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle de Felipe III", "name:etymology:wikidata": "Q34464", "postal_code": "28012", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 343971960, "nodes": [3507528475, 21734231], "tags": {"highway": "pedestrian", "layer": "-1", "lit": "yes", "name": "Calle de la Sal", "postal_code": "28012", "smoothness": "intermediate", "surface": "paving_stones", "tunnel": "building_passage"}}, {"type": "way", "id": 353932523, "nodes": [3597242741, 3597242742, 3597242743, 3597242744, 3597242745], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "smoothness": "excellent", "source": "PNOA", "source:date": "2005", "surface": "asphalt"}}, {"type": "way", "id": 363611231, "nodes": [48827271, 21961284], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Calle de Tetu\u00e1n", "name:etymology:wikidata": "Q5740881", "oneway": "yes", "postal_code": "28013", "psv": "yes", "surface": "asphalt"}}, {"type": "way", "id": 373779287, "nodes": [21968370, 3771938839, 21968411, 26487769, 11687665737, 9023885359, 1416249446], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "maxspeed": "50", "name": "Calle Cervantes", "name:etymology:wikidata": "Q20014008", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 373780111, "nodes": [26310541, 3771938839], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle de Quevedo", "name:etymology:wikidata": "Q19798936", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "paving_stones"}}, {"type": "way", "id": 380211169, "nodes": [3835537693, 3835537691, 3835537686, 48752949, 3835537690, 21734266], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Lechuga", "name:etymology:wikidata": "Q24647167", "oneway": "yes", "postal_code": "28012"}}, {"type": "way", "id": 380211174, "nodes": [3835537687, 1796759112, 3835537680], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 380211181, "nodes": [3835537684, 3835537690, 3835537692], "tags": {"highway": "footway", "lit": "yes"}}, {"type": "way", "id": 380472817, "nodes": [3838019457, 3838019458, 3838019460, 3838019462, 3838019463, 3838019468, 3838019469, 3838019471, 3838019472, 3838019467, 3838019464, 3838019465], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 380472818, "nodes": [3838019464, 3838019470], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 380472819, "nodes": [3838019496, 3838019495, 3838019492, 3838019484, 3838019479, 3838019475, 3838019476, 3838019483, 3838019487, 3838019493, 3838019491, 3838019488, 3838019490, 3838019494, 3838019497, 3838019498, 3838019499, 3838019500, 3838019502, 3838019501, 4396614774, 3838019496], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 380472820, "nodes": [3838019502, 5308227129, 3838019503, 3838019504], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 380472822, "nodes": [3838019474, 3838019477, 3838019481, 3838019482, 3838019485], "tags": {"highway": "service", "lit": "yes", "service": "parking_aisle", "surface": "asphalt"}}, {"type": "way", "id": 391707139, "nodes": [3949475119, 3949475118, 3949475122, 3949475124, 3949475125, 3949475126, 3949475127, 3949478684, 3949478685, 3949478686], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones"}}, {"type": "way", "id": 391707790, "nodes": [3949472792, 3949472793, 3949472794, 3949472805, 3949472813, 3949472816, 3949472817], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 391707793, "nodes": [3949472797, 3949472799, 3949472801, 3949472803, 3949472806, 3949472813], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 391708366, "nodes": [3949472817, 3949503505, 2005647291, 8569733877, 7537651750, 3436803703], "tags": {"highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 398165185, "nodes": [11548033814, 11548033813], "tags": {"highway": "service", "service": "driveway"}}, {"type": "way", "id": 406007906, "nodes": [510827540, 6372738896, 2090546861, 8423406988], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "smoothness": "good", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 409114851, "nodes": [4110080036, 5308195619, 5359543047, 5359543048, 5359543049, 5359543050, 5359543051, 4110080032, 3838019504, 4110080033, 4110080034, 4110080035, 4110080038, 4110080037, 4110080036], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 417019353, "nodes": [21968132, 7537651754, 3949498572], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 419119406, "nodes": [26341675, 4590471792, 5385241352, 26341676, 26341677, 1522690055], "tags": {"cycleway:both": "shared_lane", "cycleway:both:lane": "pictogram", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 419119411, "nodes": [26341675, 21969744], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Virgen de los Peligros", "oneway": "yes", "postal_code": "28013", "sidewalk": "none", "surface": "asphalt"}}, {"type": "way", "id": 422267254, "nodes": [2506478058, 21968130], "tags": {"highway": "residential", "lit": "yes", "name": "Calle del Marqu\u00e9s de Casa Riera", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 422999932, "nodes": [26066581, 26066599], "tags": {"highway": "residential", "lit": "yes", "name": "Corredera Baja de San Pablo", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 423000381, "nodes": [26066613, 26066614], "tags": {"cycleway": "shared_lane", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk:both": "separate", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 423231390, "nodes": [26310454, 321520747], "tags": {"access": "destination", "bicycle": "yes", "highway": "living_street", "lit": "yes", "minibus": "yes", "name": "Calle de las Huertas", "name:etymology:wikidata": "Q2364997", "oneway": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 423231391, "nodes": [26310476, 614123393, 6373247237, 26341187, 4277492753, 21734308, 21734309, 21734297, 8423406955, 21734293], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 424852628, "nodes": [25906774, 7682718596, 3506679271, 3506679273, 3506679274, 25906775, 7682718592, 3506679270, 7682718594, 3506679272, 7682718593, 7682718595, 3506679275, 390826838, 3429367536, 26066613], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de las Tres Cruces", "oneway": "yes", "postal_code": "28013", "psv": "designated", "sidewalk": "both", "surface": "asphalt", "wikidata": "Q24537177", "wikipedia": "es:Calle de las Tres Cruces"}}, {"type": "way", "id": 428661376, "nodes": [4277492754, 3323271327, 4277492755], "tags": {"crossing": "traffic_signals", "footway": "crossing", "highway": "footway", "surface": "paving_stones"}}, {"type": "way", "id": 428661377, "nodes": [4277492754, 4277492756, 10121654234, 1682265918], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 429442228, "nodes": [21964093, 3690187725, 1522690084], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 429530691, "nodes": [3656019318, 3428624760, 21734289], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 431767099, "nodes": [2673249151, 5960802785, 7829029474, 7829029481, 8436098481], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 431767100, "nodes": [4309854558, 3597242745, 21968128, 21968130], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 435012914, "nodes": [3414972218, 5302264621, 3414972225], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "living_street", "lit": "yes", "maxspeed": "20", "motor_vehicle": "destination", "name": "Calle de Bordadores", "name:etymology:wikidata": "Q24656602", "oneway": "yes", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "paving_stones:20"}}, {"type": "way", "id": 441974951, "nodes": [5308227109, 3387932502, 5308227108], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 490391709, "nodes": [20953226, 2472773305, 3690186524, 2472773301, 1522690082, 6109422970, 21964093], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 490391710, "nodes": [26066618, 3387932502, 26066621], "tags": {"cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "tertiary", "lanes": "4", "lanes:backward": "2", "lanes:forward": "2", "lanes:psv": "2", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "turn:lanes:backward": "through;right|through", "turn:lanes:forward": "through;right|through", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 511241905, "nodes": [7537651753, 21968134], "tags": {"highway": "tertiary", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 511895814, "nodes": [5006352930, 3436803701, 2506478062], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Cedaceros", "name:etymology:wikidata": "Q27051021", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "turn:lanes": "left|left;right|"}}, {"type": "way", "id": 519453589, "nodes": [26066630, 26066618], "tags": {"cycleway:left": "shared_lane", "cycleway:right": "lane", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 548874626, "nodes": [3411942222, 11127533236, 5302261810, 5302261807, 5302261809, 5302261808, 3414972258], "tags": {"foot": "yes", "highway": "pedestrian", "lit": "yes", "name": "Calle del Postigo de San Mart\u00edn", "name:etymology:wikidata": "Q6083473", "postal_code": "28013", "smoothness": "excellent", "source": "survey", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548874627, "nodes": [3412546847, 5302261813], "tags": {"highway": "footway", "lit": "yes", "name": "Pasaje del Comercio", "surface": "paving_stones"}}, {"type": "way", "id": 548874628, "nodes": [5302264643, 3429367514], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de los Jardines", "name:etymology:wikidata": "Q28052611", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 548874629, "nodes": [9262327414, 3950943294, 5302261814, 5302261815], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle Preciados", "name:etymology:wikidata": "Q5552155", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548874630, "nodes": [3414972215, 21961284], "tags": {"access": "destination", "emergency": "yes", "goods": "yes", "highway": "residential", "lit": "yes", "motor_vehicle": "destination", "name": "Plaza de Celenque", "oneway": "yes", "postal_code": "28013", "psv": "yes", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 548874631, "nodes": [26213303, 5302264622, 21734253, 5302264621, 5302261818, 5302261817, 5302261816, 5302261820, 5302261819], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle del Arenal", "name:etymology:wikidata": "Q5740980", "oneway": "no", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "wheelchair": "yes", "wikidata": "Q5740980", "wikipedia": "es:Calle del Arenal"}}, {"type": "way", "id": 548874632, "nodes": [5302264627, 5302264624, 5302264625, 5302264626], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle Rompelanzas", "oneway": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548874633, "nodes": [48827280, 5302264629, 5648469507, 5648469509, 5648469508, 5302264630, 3411959152, 5302261806, 3411959153, 3412512764, 5302264639], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Tetu\u00e1n", "name:etymology:wikidata": "Q5740881", "oneway": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548874634, "nodes": [3411942221, 5302264633, 5302264627, 5302264628, 5302264632, 9029849698, 5302264631, 5302261806, 21734221], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle Preciados", "name:etymology:wikidata": "Q5552155", "oneway": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548874635, "nodes": [21734220, 5302264639, 5302264638, 5302264637, 9029849699, 5302261811, 5302264636, 5302264635, 5302264626, 5302264623, 5302264634, 3411942226], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle del Carmen", "name:etymology:wikidata": "Q5740988", "oneway": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes", "wikidata": "Q5740988", "wikipedia": "es:Calle del Carmen (Madrid)"}}, {"type": "way", "id": 548874636, "nodes": [21960432, 5302264640], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de la Montera", "name:etymology:wikidata": "Q5740928", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 548899580, "nodes": [5302457521, 5302457119], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548899581, "nodes": [5302457522, 3411942226], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548899582, "nodes": [5302457523, 3411942221], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paved", "wheelchair": "yes"}}, {"type": "way", "id": 548899583, "nodes": [5302457119, 3411942222], "tags": {"bicycle": "yes", "highway": "pedestrian", "horse": "yes", "lit": "yes", "motor_vehicle": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548899584, "nodes": [5302457525, 7618346989, 5302457521], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 548899585, "nodes": [3275558364, 5302457525, 9262327414, 5302457119, 5302457523, 5302457522, 5302457521, 5302457120], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549521331, "nodes": [3838019457, 5302261815, 5308158343], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "wheelchair": "yes"}}, {"type": "way", "id": 549521332, "nodes": [5308158343, 5308158342, 5308158341, 5308158340, 5308158339, 5308158338, 5308158337, 5308158336, 5308158335, 5308158334, 5308158333, 5308349771, 5308349770, 5308349769, 5308349768, 5308349767, 5308349766, 5308349765], "tags": {"bicycle": "yes", "highway": "pedestrian", "horse": "yes", "lit": "yes", "motor_vehicle": "yes", "surface": "paved"}}, {"type": "way", "id": 549530944, "nodes": [5308227108, 4396614775], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549530945, "nodes": [4396614774, 5308227109], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549530946, "nodes": [5308227121, 3838019492], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549530947, "nodes": [3275558364, 5302458917], "tags": {"highway": "pedestrian", "lit": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549535246, "nodes": [5308255557, 9230894216, 9104583311, 9029849697, 9230894213, 5308255547, 3949472792], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 549535247, "nodes": [5308255539, 9425862211, 9425862208, 2505405832], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549535248, "nodes": [5308255540, 9425862210, 9425862209, 910343140], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549535249, "nodes": [5308255541, 5302264640], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 549535250, "nodes": [5308255543, 21734220], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549535251, "nodes": [9104583311, 9230911917, 9230911918, 9230911919, 5308255544, 21734221], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 549535252, "nodes": [5308255557, 5302261819], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle del Arenal", "name:etymology:wikidata": "Q5740980", "oneway": "no", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes", "wikidata": "Q5740980", "wikipedia": "es:Calle del Arenal"}}, {"type": "way", "id": 549535253, "nodes": [5308255557, 5308255556, 5308255554, 5308255544, 5308255553, 5308255542, 5308255552, 5308255543, 5308255551, 5308255540, 5308255550, 5308255541], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 549548247, "nodes": [5308349765, 3414972258], "tags": {"bicycle": "yes", "highway": "pedestrian", "horse": "yes", "lit": "yes", "motor_vehicle": "yes", "name": "Calle del Postigo de San Mart\u00edn", "surface": "paved"}}, {"type": "way", "id": 549548249, "nodes": [5308349764, 5308349763, 5308349762, 5308349793], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de San Mart\u00edn", "surface": "paving_stones"}}, {"type": "way", "id": 549548251, "nodes": [5308349764, 5308349765], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de San Mart\u00edn", "surface": "paving_stones"}}, {"type": "way", "id": 549548771, "nodes": [5308353499, 5308353498], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 549548773, "nodes": [5308353501, 5308353500], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 549548774, "nodes": [5308353512, 1200524877, 5308353501], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 549548775, "nodes": [5308353502, 5308353512], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 549548776, "nodes": [5308353504, 5308353503], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 549548777, "nodes": [5308353503, 333218857, 5308353502], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 549548778, "nodes": [5308353505, 5308353508], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 549548779, "nodes": [5308353626, 1522690025, 5308353505], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 549548780, "nodes": [5308353509, 5308353626], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 549548781, "nodes": [5308353510, 5308353506], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 549548782, "nodes": [5308353506, 26213313, 5308353509], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 549551719, "nodes": [5308384165, 21734240], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 549551720, "nodes": [5308384173, 21734274], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 549551721, "nodes": [5308384166, 21734237], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 549551722, "nodes": [5308384167, 21734236], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "paving_stones"}}, {"type": "way", "id": 549551723, "nodes": [5308384168, 21734231], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 549551724, "nodes": [5308384172, 21734239], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 549551725, "nodes": [5308384169, 1316127385], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 549551726, "nodes": [5308384170, 21734238], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 549551727, "nodes": [5308384171, 26213540], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 549551728, "nodes": [5308384172, 5308384169, 5308384170, 5308384175], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "smoothness": "intermediate", "surface": "sett"}}, {"type": "way", "id": 549551729, "nodes": [5308384175, 5308384171, 5308384174, 5308384165, 5308384173, 5308384166, 5308384167, 5308384168, 5308384172], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 549553017, "nodes": [5308396726, 5308396792, 9104583311], "tags": {"highway": "footway", "lit": "yes", "surface": "sett"}}, {"type": "way", "id": 549553018, "nodes": [5308396725, 48753676, 5308396726], "tags": {"footway": "crossing", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 551051371, "nodes": [3428239936, 5321927322], "tags": {"access": "permissive", "foot": "yes", "highway": "residential", "lit": "yes", "motorcar": "delivery", "motorcycle": "permissive", "name": "Calle de Jacometrezo", "oneway": "no", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "sett"}}, {"type": "way", "id": 553501872, "nodes": [390826846, 5342725022], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lit": "yes", "maxspeed": "30", "name": "Calle de la Concepci\u00f3n Jer\u00f3nima", "name:etymology:wikidata": "Q21072221", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 554359459, "nodes": [2674601893, 21734218], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "vehicle": "destination"}}, {"type": "way", "id": 556954608, "nodes": [351959168, 1682265918, 351959174, 351959175], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de la Cruz", "name:etymology:wikidata": "Q16659214", "oneway": "yes", "postal_code": "28012", "sidewalk": "right", "surface": "sett"}}, {"type": "way", "id": 556954611, "nodes": [551479454, 1645108329, 21734292], "tags": {"alt_name": "Calle del Doctor Cortezo", "highway": "residential", "lit": "yes", "name": "Calle de Doctor Cortezo", "name:etymology:wikidata": "Q28031508", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 591673891, "nodes": [5648436681, 345198582, 3323223805, 345198587], "tags": {"highway": "service", "lanes": "2", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 596974337, "nodes": [26066601, 26066582], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de la Ballesta", "oneway": "yes", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 604998641, "nodes": [25906403, 25906395, 25906407, 1884620167, 25906408, 2711609450, 2711609456, 25906422, 25906421], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "20", "name": "Calle de las Infantas", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 626418867, "nodes": [2506478062, 9230911920, 21968131], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Cedaceros", "name:etymology:wikidata": "Q27051021", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 626430932, "nodes": [21968134, 9410124346, 3949472806, 929294347, 3436803700], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt", "vehicle": "destination"}}, {"type": "way", "id": 633727949, "nodes": [21734287, 1187929774, 21734292], "tags": {"cycleway:left": "no", "cycleway:right": "shared_lane", "cycleway:right:lane": "pictogram", "highway": "residential", "lit": "yes", "name": "Calle de Carretas", "name:etymology:wikidata": "Q5740952", "oneway": "no", "postal_code": "28012", "sidewalk": "right", "source": "survey", "surface": "asphalt"}}, {"type": "way", "id": 633727950, "nodes": [1187929637, 390826854], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "maxheight": "1.8", "oneway": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 651531200, "nodes": [26066621, 20953226], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "turn:lanes": "through|through|through;right"}}, {"type": "way", "id": 651531217, "nodes": [1522690084, 938516026], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 651531225, "nodes": [938516026, 3429367558], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 651533184, "nodes": [1522690084, 3690187726, 26066619], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 651543114, "nodes": [4309740714, 8426942035, 25906411, 1522690055], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 651543116, "nodes": [6109512300, 6109512299, 2005647247, 8588809553, 4309740695, 21968128, 2650143148, 4309747752, 2005647314], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 651543117, "nodes": [21968056, 4309740714], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lanes:psv": "1", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 651543118, "nodes": [4309740714, 6109512292, 3436803718], "tags": {"highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 651613048, "nodes": [3429417269, 8429132486, 938516023, 26066613], "tags": {"cycleway": "shared_lane", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk:both": "separate", "surface": "asphalt"}}, {"type": "way", "id": 651935508, "nodes": [6112799329, 3429417269], "tags": {"admin_level": "10", "boundary": "administrative", "highway": "pedestrian", "lit": "yes", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "postal_code": "28004", "smoothness": "good", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 651935510, "nodes": [8071133806, 6109456243, 3753576443, 6455528048, 6535509924, 5302264645, 5302264644, 5302264643, 5302261813, 5302264642, 5302264641, 21960445], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de la Montera", "name:etymology:wikidata": "Q5740928", "postal_code": "28013", "smoothness": "good", "surface": "asphalt"}}, {"type": "way", "id": 652285628, "nodes": [510827515, 6115513416, 347603099, 6115513417], "tags": {"highway": "service", "layer": "-1", "location": "underground", "oneway": "no", "tunnel": "yes"}}, {"type": "way", "id": 652285630, "nodes": [6115513399, 1796743677, 6115513432, 851942131, 21734240, 6115513394, 6115513433, 6115513392], "tags": {"foot": "no", "highway": "tertiary", "lanes": "1", "layer": "-2", "lit": "24/7", "location": "underground", "maxheight": "2.8 m", "maxspeed": "20", "name": "Calle de Toledo", "name:etymology:wikidata": "Q5740883", "oneway": "yes", "postal_code": "28005", "shoulder": "no", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 652285631, "nodes": [1796743678, 6115513421, 6115513426, 6115513422, 6115513425, 6115513423, 6115513424, 6115513431, 6115513420, 6115513419, 6115513418, 6115513413, 6115513412, 6115513411, 6115513410], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "maxheight": "default", "oneway": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 652285633, "nodes": [6115513417, 6115513440, 1796743678, 6115513397, 510827515], "tags": {"highway": "service", "layer": "-2", "location": "underground", "oneway": "no", "smoothness": "intermediate", "surface": "sett", "tunnel": "yes"}}, {"type": "way", "id": 663316135, "nodes": [1522690043, 21968127], "tags": {"highway": "tertiary", "lanes": "3", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 678938657, "nodes": [6357173374, 6357173372], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 678938659, "nodes": [6357173373, 6357173378], "tags": {"highway": "footway"}}, {"type": "way", "id": 678938660, "nodes": [6357173378, 6357173377, 6357173376, 6357173375, 6357173374], "tags": {"highway": "footway", "indoor": "yes", "layer": "-1", "tunnel": "building_passage"}}, {"type": "way", "id": 685983423, "nodes": [21734293, 351959168], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Plaza de Jacinto Benavente", "name:etymology:wikidata": "Q6080004", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 685983424, "nodes": [1522689973, 21734214], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 686213113, "nodes": [48753688, 21734217], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "oneway": "no", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 686213114, "nodes": [26310463, 26310515, 1855054520], "tags": {"bicycle": "yes", "highway": "pedestrian", "lit": "yes", "minibus": "yes", "name": "Calle de las Huertas", "name:etymology:wikidata": "Q2364997", "oneway": "yes", "postal_code": "28014", "surface": "paving_stones"}}, {"type": "way", "id": 686213115, "nodes": [619886896, 26310467, 26310463], "tags": {"access": "destination", "highway": "living_street", "lit": "yes", "name": "Calle del Le\u00f3n", "name:etymology:wikidata": "Q15839300", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 686213116, "nodes": [619886891, 8423356511, 26310476], "tags": {"cycleway:right": "no", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 686215411, "nodes": [21734262, 942080453], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Gerona", "postal_code": "28012", "surface": "paving_stones", "wikidata": "Q28534583", "wikipedia": "es:Calle de Gerona (Madrid)"}}, {"type": "way", "id": 687458372, "nodes": [5308255545, 510812874], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 688424906, "nodes": [21960737, 6679949267, 25906774, 534586126, 25907052, 3429275120, 3429275121, 3429367539, 26066614], "tags": {"highway": "residential", "lit": "yes", "maxspeed": "30", "name": "Calle de la Salud", "oneway": "yes", "postal_code": "28013", "sidewalk": "both", "surface": "asphalt"}}, {"type": "way", "id": 689163623, "nodes": [21734254, 2600764328, 2600764330, 6553800036, 2600764336, 21734251, 8075992348, 3257430275, 1235055758, 3507562279, 3257430309, 3257430311, 21734252, 3257183401, 3507563005, 3257183404, 8075992347, 21734255, 3507563000, 6553800049, 3257430303, 3507562998, 3257430289, 3507562994, 3257430281, 3507562288, 3257183384, 6553800037, 3507562283, 3257183375, 21734254], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de Herradores", "name:etymology:wikidata": "Q28534650", "place": "square", "postal_code": "28013", "wikidata": "Q28534650", "wikipedia": "es:Plaza de Herradores"}}, {"type": "way", "id": 695993032, "nodes": [6535509910, 6535509901, 6535509903], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695993033, "nodes": [6535509909, 6535509902, 6535509904], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695993034, "nodes": [6535509904, 6535509903], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "surface": "metal", "tunnel": "yes"}}, {"type": "way", "id": 695993037, "nodes": [6535509910, 6535509909], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "surface": "metal", "tunnel": "yes"}}, {"type": "way", "id": 695993038, "nodes": [6535509912, 6535509911], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695993039, "nodes": [6535509913, 6535509912], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695993040, "nodes": [6535509920, 6535509902, 6535509913], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695993045, "nodes": [6535509911, 6535509901, 6535530222, 6535509919, 6535509917, 6535606621, 6535606639, 6535606641, 6535606637, 6535606642], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695993046, "nodes": [6535509921, 6535509918, 3257510594], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695993047, "nodes": [6535509922, 3257510593], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 695993048, "nodes": [6535509923, 6535509922], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 695993049, "nodes": [6535509924, 3257510610], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 695993051, "nodes": [3257510593, 6535509921], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695993052, "nodes": [6535509929, 6535509930], "tags": {"highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 695993053, "nodes": [6535509930, 3257510594], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 695993055, "nodes": [929294340, 6535509936, 6535509920, 6535509935, 929294358], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994106, "nodes": [6535530192, 6535530193], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994107, "nodes": [6535530193, 6535530194], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994108, "nodes": [6535530195, 6535530194], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "metal", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994109, "nodes": [6535530205, 6535530192], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994110, "nodes": [6535530196, 6535530197], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "metal", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994111, "nodes": [6535530196, 6535530203, 6535530202], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994112, "nodes": [6535530199, 6535530198], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "metal", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994113, "nodes": [6535530204, 6535530198], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994114, "nodes": [6535530199, 6535530201, 6535530200], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994115, "nodes": [6535530195, 6535530204, 6535530197], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994116, "nodes": [6535530206, 6535530207], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994117, "nodes": [6535530207, 6535530208], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994118, "nodes": [6535530220, 6535530205, 6535530209, 6535530206], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994119, "nodes": [6535530213, 6535530211], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695994120, "nodes": [6535530210, 6535530215], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695994121, "nodes": [6535530210, 6535530212, 6535530211], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994122, "nodes": [6535530215, 6535530214, 6535530213], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994123, "nodes": [6535530218, 6535530214, 6535530220, 6535511620, 6535511627], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994124, "nodes": [6535530219, 6535530218], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994125, "nodes": [6535530222, 6535606645, 6535572273, 6535572269, 6535606640, 6535606642, 6535530221, 6535530212, 6535530219], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994342, "nodes": [6535511624, 6535511619, 6535511621], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 695994343, "nodes": [6535511622, 6535511620, 6535511623], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994344, "nodes": [6535511622, 6535511621], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695994345, "nodes": [6535511624, 6535511623], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695994346, "nodes": [6535511625, 6535511628], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994347, "nodes": [6535511626, 6535511625], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994348, "nodes": [6535511627, 6535511626], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994349, "nodes": [6535511628, 6535511619, 6535530217, 6535606635, 6535537977, 6535540185], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695994632, "nodes": [6535537948, 6535537947], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994633, "nodes": [6535537957, 6535537948], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 695994634, "nodes": [6535537947, 6535537950, 6535537949], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994635, "nodes": [6535537951, 6535537952], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994636, "nodes": [6535537952, 6535537956, 6535537955], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994637, "nodes": [6535537953, 6535537954], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994638, "nodes": [6535537959, 6535537953], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994639, "nodes": [6535537954, 6535537958, 6535537957, 6535537951], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994640, "nodes": [6535537961, 6535537960], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994641, "nodes": [6535537964, 6535537959, 6535537960], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994642, "nodes": [6535537961, 6535537963, 6535537962], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994643, "nodes": [6535537965, 6535537966], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994644, "nodes": [6535537965, 6535537970, 6535537969], "tags": {"highway": "footway", "layer": "-3", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994645, "nodes": [6535537968, 6535537967], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994646, "nodes": [6535537972, 6535537971, 6535537968], "tags": {"highway": "footway", "layer": "-3", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994647, "nodes": [6535537967, 6535530216, 6535537966], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994648, "nodes": [6535537973, 6535537974], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994649, "nodes": [6535537973, 6535537979, 6535537978], "tags": {"highway": "footway", "layer": "-3", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994650, "nodes": [6535537976, 6535537975], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994651, "nodes": [6535537981, 6535537980, 6535537976], "tags": {"highway": "footway", "layer": "-3", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994652, "nodes": [6535537975, 6535537977, 6535537974], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994653, "nodes": [6535537983, 6535530216], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994654, "nodes": [6535537984, 6535537962, 6535537982], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695994655, "nodes": [6535537983, 6535537982], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695994656, "nodes": [6535540185, 6535537984], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695996994, "nodes": [6535511620, 6535565174], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695996995, "nodes": [6535511619, 6535565175], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 695996996, "nodes": [6535565175, 6535565174], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-2", "lit": "yes", "tunnel": "yes"}}, {"type": "way", "id": 695997899, "nodes": [6535572270, 6535572269], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695997900, "nodes": [6535572268, 6535572270], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695997901, "nodes": [6535572272, 6535572271], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 695997902, "nodes": [6535572273, 6535572272], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695998213, "nodes": [6535537971, 6535531860, 6535531861], "tags": {"highway": "footway", "layer": "-3", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695998214, "nodes": [6535531862, 6535531861], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 695998215, "nodes": [6535531864, 6535531863, 6535572272], "tags": {"highway": "footway", "layer": "-3", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002591, "nodes": [6535606606, 6535606612], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002592, "nodes": [6535606607, 6535606615], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002593, "nodes": [6535509918, 6535606606, 6535606607, 6535606608, 6535606616], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002594, "nodes": [6535606621, 6535606618, 6535606619, 6535606620, 6535606628], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002595, "nodes": [6535606609, 6535606614], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002596, "nodes": [6535606610, 6535606617], "tags": {"highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002597, "nodes": [6535606641, 6535606610, 6535606609, 6535606611, 6535606613], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002598, "nodes": [6535606613, 6535606612], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 696002599, "nodes": [6535606615, 6535606614], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "layer": "-1", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 696002600, "nodes": [6535606617, 6535606616], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-1", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 696002601, "nodes": [6535606618, 6535606623], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002602, "nodes": [6535606619, 6535606626], "tags": {"highway": "footway", "layer": "-2", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002603, "nodes": [6535606622, 6535606624], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002604, "nodes": [6535606624, 6535606623], "tags": {"handrail": "yes", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes", "tunnel": "yes"}}, {"type": "way", "id": 696002605, "nodes": [6535606625, 6535606629], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002606, "nodes": [6535606633, 6535606625, 6535606627], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002607, "nodes": [6535606626, 6535606627], "tags": {"conveying": "forward", "highway": "steps", "incline": "down", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 696002608, "nodes": [6535606629, 6535606628], "tags": {"conveying": "forward", "highway": "steps", "incline": "up", "layer": "-2", "lit": "24/7", "tunnel": "yes"}}, {"type": "way", "id": 696002609, "nodes": [6535606643, 6535606633, 6535606632, 6535530220, 6535606631, 6535606630], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002610, "nodes": [6535606640, 6535606638, 6535606639], "tags": {"highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 696002611, "nodes": [6535606644, 6535606643, 6535606622, 6535606636, 6535606634, 6535606635], "tags": {"highway": "footway", "layer": "-2", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 699385225, "nodes": [26066631, 26066630], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed": "30", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "sidewalk": "no", "smoothness": "good", "surface": "asphalt", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 710480610, "nodes": [6679949266, 6679949265], "tags": {"bridge": "yes", "highway": "footway", "layer": "1", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 710480611, "nodes": [6679949263, 6679949266], "tags": {"highway": "path", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 710480612, "nodes": [6679949265, 6679949270, 6679949269, 6679949264, 6679949268, 6679949267], "tags": {"highway": "path", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 804457302, "nodes": [21968056, 26341678], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 806032532, "nodes": [7537651754, 7537651758, 7537651759, 7537651760, 7537651752], "tags": {"highway": "service", "lit": "yes", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 806032533, "nodes": [7537651758, 7537651761], "tags": {"highway": "service", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 806032535, "nodes": [7537651761, 7537651767], "tags": {"highway": "service", "layer": "-1", "lit": "24/7", "service": "parking_aisle", "surface": "asphalt", "tunnel": "yes"}}, {"type": "way", "id": 810300254, "nodes": [3413063116, 3412546847], "tags": {"highway": "footway", "lit": "24/7", "name": "Pasaje del Comercio", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 810300255, "nodes": [3413063130, 3413063116], "tags": {"highway": "footway", "lit": "yes", "name": "Pasaje del Comercio", "surface": "paving_stones"}}, {"type": "way", "id": 813598084, "nodes": [21967746, 21968139], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Sevilla", "name:etymology:wikidata": "Q20908843", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 815725138, "nodes": [7618346989, 3275558363], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 838953376, "nodes": [2506478058, 2650143148, 3597242744, 7829029478, 7829029477, 7829029476, 7829029475, 7829029474], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "oneway": "no", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 838953377, "nodes": [7829048086, 7829048085, 7829029484, 7829029483, 7829029482, 7829029481, 7829029480, 7829029479], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 844638825, "nodes": [7879758050, 7879758049], "tags": {"highway": "service", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 865912089, "nodes": [8071133805, 8071133804], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 865912090, "nodes": [5308255541, 5308255549, 8071133804, 5308255539, 5308255548, 5308255547, 5308255546, 5308255545, 5308396788, 5308393588, 48753688], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 865912091, "nodes": [3429367551, 3429367550], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 865912093, "nodes": [6112799330, 8071133806], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle de la Montera", "name:etymology:wikidata": "Q5740928", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 865912094, "nodes": [8071133806, 6109456240, 6109456234], "tags": {"bicycle": "dismount", "footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 865912095, "nodes": [3429367550, 3429376990, 3429367549, 4483800030, 3429367547, 3429367545, 6109456231, 3429367542, 3429367537, 3506720022, 3429367526, 3429376984, 3429376983, 6109512279, 3429376976, 3429376975, 3429376973, 3436809589], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 865923365, "nodes": [3429367551, 6112799329], "tags": {"admin_level": "10", "boundary": "administrative", "highway": "pedestrian", "lit": "yes", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "postal_code": "28004", "smoothness": "good", "source:name": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 865923366, "nodes": [25906290, 8281587699, 25906291, 3163832977, 59633358, 323767923, 25906427, 323767933, 59633357, 25906424, 25906423, 8281587698, 6109456223, 3429367551], "tags": {"admin_level": "10", "bicycle": "dismount", "boundary": "administrative", "highway": "pedestrian", "lit": "yes", "name": "Calle de Fuencarral", "name:etymology:wikidata": "Q5740840", "postal_code": "28004", "surface": "paving_stones"}}, {"type": "way", "id": 868474885, "nodes": [2090546865, 1522689973], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Calle Mayor", "name:etymology:wikidata": "Q1149052", "oneway": "no", "postal_code": "28013", "surface": "asphalt", "wikidata": "Q1149052", "wikipedia": "es:Calle Mayor (Madrid)"}}, {"type": "way", "id": 868475440, "nodes": [1522689973, 5308396727, 5308396798, 3257510605, 5308255557], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 895321694, "nodes": [3507528477, 8322325507], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "noname": "yes"}}, {"type": "way", "id": 895321695, "nodes": [5308384174, 21734234], "tags": {"highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28012", "surface": "sett"}}, {"type": "way", "id": 907102751, "nodes": [5960796496, 339242703], "tags": {"highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed": "50", "name": "Calle de Sevilla", "name:etymology:wikidata": "Q20908843", "oneway": "yes", "postal_code": "28014", "surface": "asphalt"}}, {"type": "way", "id": 907120177, "nodes": [8423406988, 21734264], "tags": {"cycleway:both": "no", "highway": "residential", "lane_markings": "no", "lit": "yes", "maxspeed": "50", "name": "Calle de Atocha", "name:etymology:wikidata": "Q5492657", "oneway": "yes", "postal_code": "28012", "sidewalk": "both", "smoothness": "good", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 907553665, "nodes": [5342725022, 8427149777], "tags": {"cycleway": "shared_lane", "highway": "tertiary", "lit": "yes", "maxspeed": "30", "name": "Calle de la Concepci\u00f3n Jer\u00f3nima", "name:etymology:wikidata": "Q21072221", "oneway": "yes", "postal_code": "28012", "surface": "asphalt"}}, {"type": "way", "id": 908546756, "nodes": [8436098481, 3436803710], "tags": {"highway": "tertiary", "lanes": "4", "lit": "yes", "maxspeed": "50", "name": "Calle de Alcal\u00e1", "name:etymology:wikidata": "Q2424746", "oneway": "yes", "postal_code": "28014", "smoothness": "excellent", "surface": "asphalt"}}, {"type": "way", "id": 909056211, "nodes": [5321927322, 8440634409], "tags": {"access": "permissive", "foot": "yes", "highway": "residential", "lit": "yes", "motorcar": "delivery", "motorcycle": "permissive", "name": "Calle de Jacometrezo", "oneway": "no", "postal_code": "28013", "psv": "yes", "source": "survey", "surface": "sett"}}, {"type": "way", "id": 925454152, "nodes": [3949472817, 6869591586, 3949472820, 3949472821, 3949472822, 8588809552, 8588809551, 25906642], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 936533226, "nodes": [9183971138, 6357851744, 9183971139], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "traffic_calming": "table"}}, {"type": "way", "id": 936883629, "nodes": [26066614, 8235796757, 5385241353, 25907103], "tags": {"cycleway": "shared_lane", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "oneway": "no", "postal_code": "28013", "smoothness": "good", "surface": "asphalt", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 948384123, "nodes": [8778593778, 3927640946, 8778593779], "tags": {"crossing": "zebra", "footway": "crossing", "highway": "footway", "lit": "yes", "surface": "asphalt"}}, {"type": "way", "id": 948384124, "nodes": [8778593782, 8778593778, 8778593783, 8778593781, 8778593784], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 975813002, "nodes": [48753682, 5308396791, 9029849697, 5308255543], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "name": "Plaza de la Puerta del Sol", "name:etymology:wikidata": "Q427163", "postal_code": "28013", "smoothness": "excellent", "surface": "asphalt", "wheelchair": "yes"}}, {"type": "way", "id": 975813003, "nodes": [9029849698, 3411959155, 3412477711, 9029849699], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de Galdo", "oneway": "no", "postal_code": "28013", "smoothness": "excellent", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 977836490, "nodes": [9047955447, 9047955469], "tags": {"handrail": "no", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "7", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 977836491, "nodes": [9047955418, 9047955439, 9047955451, 9047955463], "tags": {"highway": "footway", "incline": "up", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 980087507, "nodes": [9066447921, 9066413409], "tags": {"handrail": "yes", "handrail:left": "yes", "handrail:right": "no", "highway": "steps", "incline": "up", "lit": "yes", "step_count": "4", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 980231616, "nodes": [9067769837, 25906642], "tags": {"highway": "footway", "incline": "up", "lit": "yes", "name": "Pasaje de la Caja de Ahorros", "surface": "paving_stones"}}, {"type": "way", "id": 980704023, "nodes": [9071663157, 9071663150], "tags": {"covered": "no", "handrail": "yes", "handrail:left": "yes", "handrail:right": "yes", "highway": "steps", "incline": "up", "lit": "yes", "ramp": "no", "step_count": "12", "surface": "paving_stones", "tactile_paving": "no"}}, {"type": "way", "id": 984759713, "nodes": [2005647245, 3949498573, 2005647291, 7537651749, 9104252079], "tags": {"cycleway:lanes": "none|shared_lane", "highway": "residential", "lanes": "2", "lit": "yes", "name": "Calle de la Virgen de los Peligros", "oneway": "yes", "postal_code": "28013", "surface": "asphalt"}}, {"type": "way", "id": 994069366, "nodes": [9183971139, 8677859071, 9183971137], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1000016480, "nodes": [5308255556, 9230895277, 21734221], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1000016481, "nodes": [48753682, 9230894212, 9230894213, 5308255541], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 1000016482, "nodes": [9230894216, 9230894215, 9230894214, 21734214], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 1000016483, "nodes": [9230911920, 7829048085, 7829029478], "tags": {"foot": "no", "highway": "cycleway", "horse": "no", "lit": "yes", "motor_vehicle": "no", "oneway": "yes", "sidewalk": "no", "surface": "asphalt"}}, {"type": "way", "id": 1000017580, "nodes": [9230911918, 9029849697], "tags": {"bicycle": "dismount", "highway": "pedestrian", "lit": "yes", "noname": "yes", "postal_code": "28013", "surface": "sett", "wheelchair": "yes"}}, {"type": "way", "id": 1003795546, "nodes": [3838019465, 3838019466, 5302457525, 5302457527, 5302457526, 5302457120, 3411942231], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Plaza de Callao", "name:etymology:wikidata": "Q2099125", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones", "wheelchair": "yes"}}, {"type": "way", "id": 1003795547, "nodes": [9262340242, 3275558364], "tags": {"highway": "pedestrian", "lit": "yes", "postal_code": "28013", "surface": "paving_stones"}}, {"type": "way", "id": 1020269585, "nodes": [25906743, 3949472793, 11277360513, 929294354], "tags": {"highway": "residential", "lit": "yes", "name": "Pasaje de la Caja de Ahorros", "postal_code": "28013", "smoothness": "good", "surface": "paving_stones"}}, {"type": "way", "id": 1021990002, "nodes": [3280548361, 910343138], "tags": {"highway": "footway", "lit": "yes", "surface": "sett"}}, {"type": "way", "id": 1021990003, "nodes": [910343138, 3257510604], "tags": {"handrail": "yes", "highway": "steps", "incline": "down", "lit": "yes", "ramp": "no", "surface": "paving_stones", "tactile_paving": "yes"}}, {"type": "way", "id": 1057894241, "nodes": [21968143, 6343116061, 5006352930], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "3", "lanes:psv": "1", "lit": "yes", "maxspeed": "50", "name": "Calle de Cedaceros", "name:etymology:wikidata": "Q27051021", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "turn:lanes": "left|left;right|"}}, {"type": "way", "id": 1058208518, "nodes": [9723723854, 9723723853], "tags": {"footway": "access_aisle", "highway": "footway"}}, {"type": "way", "id": 1058208519, "nodes": [9723723855, 9723723854], "tags": {"footway": "access_aisle", "highway": "footway", "tunnel": "building_passage"}}, {"type": "way", "id": 1058208520, "nodes": [9723723858, 9723723857, 9723723856, 9723723855], "tags": {"footway": "access_aisle", "highway": "footway"}}, {"type": "way", "id": 1058209099, "nodes": [1682265969, 9723733539, 9723733541, 9723733540, 3656054828], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1082989165, "nodes": [21968400, 339238838, 8309647909, 3208415483], "tags": {"cycleway:right": "shared_lane", "highway": "tertiary", "lanes": "2", "lit": "yes", "maxspeed:lanes": "50|30", "name": "Plaza de las Cortes", "name:etymology:wikidata": "Q5482884", "oneway": "yes", "postal_code": "28014", "surface": "asphalt", "wikidata": "Q5836422", "wikipedia": "es:Carrera de San Jer\u00f3nimo"}}, {"type": "way", "id": 1124860507, "nodes": [21968406, 21968384, 21968375, 21968380, 8185628165, 21968352], "tags": {"access": "destination", "emergency": "yes", "highway": "living_street", "lanes": "1", "lit": "yes", "name": "Calle del Prado", "name:etymology:wikidata": "Q16389845", "oneway": "yes", "postal_code": "28014", "sidewalk": "both", "surface": "sett"}}, {"type": "way", "id": 1136710093, "nodes": [10596302958, 10596302959], "tags": {"access": "yes", "highway": "steps", "lit": "yes", "step_count": "3", "surface": "paving_stones"}}, {"type": "way", "id": 1169291962, "nodes": [10873168673, 3257510608], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "yes", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1169291963, "nodes": [910343141, 10873168672, 10873168671, 10873168674, 10873168673, 3257510607], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1169291964, "nodes": [3257510604, 10873168674, 3257510606], "tags": {"footway": "sidewalk", "highway": "footway", "layer": "-1", "lit": "24/7", "surface": "paving_stones", "tunnel": "yes"}}, {"type": "way", "id": 1183738411, "nodes": [10992547985, 1258876329, 5308393589], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1183738413, "nodes": [21734250, 2506478087, 10992547998, 3507557297], "tags": {"highway": "pedestrian", "lit": "yes", "name": "Calle de San Felipe Neri", "name:etymology:wikidata": "Q217791", "postal_code": "28013", "smoothness": "good", "source": "survey", "surface": "paving_stones"}}, {"type": "way", "id": 1199752885, "nodes": [11127299097, 11127299098, 11127299099, 11127299100, 3512893996, 11127299101, 11127299102, 3512893999, 11127299103, 11127299104, 11127312305, 3512894003, 11127312306, 11127312307, 11127312308, 11127312309], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 1199760269, "nodes": [5308353504, 11127345768, 11127345769, 11127345770, 11127345771, 11127345772, 11127345773, 11127345774, 5308353498, 11127345775, 11127345776, 11127345777, 11127345778, 11127345779, 11127345780, 11127345781, 11127345782, 11127345783, 11127345784, 11127345785, 11127345786, 11127345787], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paving_stones"}}, {"type": "way", "id": 1199760270, "nodes": [11127345788, 26213328, 11127345787], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1199760271, "nodes": [11127345789, 11127345790, 11127299097], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1199760272, "nodes": [11127345789, 11127345791, 11127345792, 11127345793, 11127345794, 11127345795, 11127345796, 11127345797, 11127345798, 11127345788], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1199770535, "nodes": [11127401956, 11127401957, 11127401958, 11127401959, 11127401960, 11127401961, 11127401962, 11127401963, 11127401964, 11127401965, 11127401966, 11127401967, 11127401968, 11127401969, 11127401970, 11127401971, 11127401972, 11127401973, 11127401974, 11127401975, 11127401976, 11127401977, 11127401956], "tags": {"footway": "sidewalk", "highway": "footway", "lit": "yes", "surface": "paved"}}, {"type": "way", "id": 1199770536, "nodes": [11127345779, 11127533210, 26213315, 11127401959], "tags": {"crossing": "uncontrolled", "crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1199782511, "nodes": [5308349762, 11127519961, 11127519962, 11127519963, 11127519964, 11127519965, 11127519966, 11127519967, 11127519968, 11127519969, 11127519970, 11127519971, 5308349768], "tags": {"bicycle": "yes", "highway": "pedestrian", "horse": "yes", "lit": "yes", "motor_vehicle": "yes", "name": "Plaza de San Mart\u00edn", "surface": "paving_stones"}}, {"type": "way", "id": 1199782798, "nodes": [5308349765, 11127526486, 11127526487, 5308349768], "tags": {"highway": "footway", "lit": "yes", "name": "Plaza de San Mart\u00edn", "surface": "paved"}}, {"type": "way", "id": 1199783609, "nodes": [26213328, 11127533205, 11127533206, 11127533210, 11127533207, 11127533208, 11127533209, 5308353499], "tags": {"bicycle": "yes", "highway": "pedestrian", "horse": "yes", "lit": "yes", "motor_vehicle": "yes", "surface": "paved"}}, {"type": "way", "id": 1199889502, "nodes": [5308353499, 1522690031, 5308349793], "tags": {"crossing:markings": "yes", "footway": "crossing", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1201732626, "nodes": [25906406, 25906405, 25906368], "tags": {"highway": "residential", "lit": "yes", "name": "Calle de San Marcos", "name:etymology:wikidata": "Q31966", "oneway": "yes", "postal_code": "28004", "smoothness": "good", "surface": "sett"}}, {"type": "way", "id": 1202035038, "nodes": [2689497182, 27508534], "tags": {"footway": "link", "highway": "footway", "lit": "yes"}}, {"type": "way", "id": 1227204676, "nodes": [25907094, 11380094713, 11380094714, 11380094715, 11380094711], "tags": {"highway": "service", "oneway": "yes", "surface": "asphalt"}}, {"type": "way", "id": 1238944954, "nodes": [48842577, 938516026], "tags": {"cycleway": "shared_lane", "cycleway:lanes": "none|shared_lane|shared_lane|none", "highway": "tertiary", "lanes": "4", "lanes:psv": "2", "lit": "yes", "maxspeed:lanes": "50|30|30|50", "name": "Gran V\u00eda", "name:etymology:wikidata": "Q1324163", "old_name": "Avenida de la C.N.T.;Avenida de Rusia;Avenida de Jos\u00e9 Antonio", "postal_code": "28013", "sidewalk:both": "separate", "smoothness": "good", "surface": "asphalt", "wikidata": "Q1324163", "wikipedia": "es:Gran V\u00eda"}}, {"type": "way", "id": 1244764551, "nodes": [11571132755, 11571132754], "tags": {"highway": "steps"}}]} \ No newline at end of file diff --git a/examples/markov_chains/markov_sim.py b/examples/markov_chains/markov_sim.py new file mode 100644 index 0000000..273f1b0 --- /dev/null +++ b/examples/markov_chains/markov_sim.py @@ -0,0 +1,159 @@ +''' +This scenario has drivers driving around a city. +In this model, drivers can only be at intersections, which are treated as nodes in the City Graph (grid). + +At the start of the simulation, drivers are randomly positioned in the city grid. + +The following models for agent behavior are included: + +* DummyDriver: In each simulation step, this type of driver can instantly move to any of the neighboring nodes in the grid, or stay in its place. + +''' + +import networkx as nx +from soil import Environment, BaseAgent, state, time +from mesa.space import NetworkGrid +import mesa +import statistics + + +class CityGrid(NetworkGrid): + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + + for (u, v, d) in self.G.edges(data=True): + d["occupation"] = 0 + # self.dijkstras = dict(nx.all_pairs_dijkstra(self.G, weight="length")) + + # def eta(self, pos1, pos2): + # return self.dijkstras[pos1][0][pos2] + + def travel_time(self, pos1, pos2): + return float(min(d["travel_time"] for d in self.G.adj[pos1][pos2].values())) + + + def node_occupation(self): + return {k: len(v.get("agent", [])) for (k, v) in self.G.nodes(data=True)} + + def edge_occupation(self): + return {(u,v): d.get('occupation', 1) for (u, v, d) in self.G.edges(data=True)} + + +class Roamer(BaseAgent): + waiting = False + + def step(self): + ''' + A simple driver that just moves to a neighboring cell in the city + ''' + yield from self.move_to(None) + return self.delay(0) + + def choose_next(self): + opts = self.model.grid.get_neighborhood(self.pos, include_center=False) + pos = self.random.choice(opts) + delay = self.model.grid.travel_time(self.pos, pos) + return pos, delay + + def move_to(self, pos=None): + self.waiting = True + if pos is None: + pos, delay = self.choose_next() + if self.model.gradual_move: + # Calculate how long it will take, and wait for that long + if pos != self.pos: + self.model.grid.G.edges[self.pos,pos,0]["occupation"] += 1 + yield delay + if self.model.gradual_move and pos != self.pos: + w1 = self.model.grid.G.edges[self.pos,pos,0]["occupation"] + oldpos = self.pos + self.model.grid.G.edges[self.pos,pos,0]["occupation"] = w1 - 1 + assert self.model.grid.G.edges[self.pos,pos,0]["occupation"] == w1-1 + self.model.grid.move_agent(self, pos) + self.waiting = False + + +class LazyRoamer(Roamer): + waiting = False + def choose_next(self): + opts = self.model.grid.get_neighborhood(self.pos, include_center=False) + times = [self.model.grid.travel_time(self.pos, other) for other in opts] + idx = self.random.choices(range(len(times)), k=1, weights=[1/time for time in times])[0] + return opts[idx], times[idx] + + + +def gini(values): + s = sum(values) + + N = len(values) + if s == 0: + return 0 + x = sorted(values) + + B = sum(xi * (N - i) for i, xi in enumerate(x)) / (N * s) + return 1 + (1 / N) - 2 * B + + +class CityEnv(Environment): + def __init__(self, *, G, side=20, n_assets=100, ratio_lazy=1, lockstep=True, gradual_move=True, max_weight=1, **kwargs): + super().__init__(**kwargs) + if lockstep: + self.schedule = time.Lockstepper(self.schedule) + self.n_assets = n_assets + self.side = side + self.max_weight = max_weight + self.gradual_move = gradual_move + self.grid = CityGrid(g=G) + + n_lazy = round(self.n_assets * ratio_lazy) + n_other = self.n_assets - n_lazy + self.add_agents(Roamer, k=n_other) + self.add_agents(LazyRoamer, k=n_lazy) + + positions = list(self.grid.G.nodes) + for agent in self.get_agents(): + pos = self.random.choice(positions) + self.grid.place_agent(agent, pos) + + self.datacollector = mesa.DataCollector( + model_reporters={ + "NodeGini": lambda model: gini(model.grid.node_occupation().values()), + "EdgeGini": lambda model: gini(model.grid.edge_occupation().values()), + "EdgeOccupation": lambda model: statistics.mean(model.grid.edge_occupation().values()), + }#, agent_reporters={"Wealth": "wealth"} + ) + +class SquareCityEnv(CityEnv): + def __init__(self, *, side=20, **kwargs): + self.side = side + G = nx.grid_graph(dim=[side, side]) + for (_, _, d) in G.edges(data=True): + d["travel_time"] = self.random.randint(1, self.max_weight) + + for (k, d) in G.nodes(data=True): + d["pos"] = k + super().__init__(**kwargs, G=G) + +import osmnx as ox + + +class NamedCityEnv(CityEnv): + def __init__(self, *, location="Chamberi, Madrid", **kwargs): + self.location = location + super().__init__(**kwargs, G=load_city_graph(location)) + + +def load_city_graph(location='Chamberi, Madrid', **kwargs): + G = ox.graph.graph_from_place(location, **kwargs) + G = ox.add_edge_speeds(G) + G = ox.add_edge_travel_times(G) + largest = sorted(nx.strongly_connected_components(G), key=lambda x: len(x))[-1] + G = G.subgraph(largest) + return G + + +if __name__ == "__main__": + env = CityEnv() + for i in range(100): + env.step() diff --git a/examples/markov_chains/sol.py b/examples/markov_chains/sol.py new file mode 100644 index 0000000..281b9cc --- /dev/null +++ b/examples/markov_chains/sol.py @@ -0,0 +1,26 @@ +import solara + +@solara.component +def MainPage(clicks): + color = "green" + if clicks.value >= 5: + color = "red" + + def increment(): + clicks.value += 1 + print("clicks", clicks) # noqa + + solara.Button(label=f"Clicked: {clicks}", on_click=increment, color=color) + +@solara.component +def Page(): + v = Visualization() + v.viz() + +class Visualization: + def __init__(self): + self.clicks = solara.reactive(0) + + def viz(self): + from sol_lib import MainPage + return MainPage(self.clicks) diff --git a/examples/markov_chains/sol_lib.py b/examples/markov_chains/sol_lib.py new file mode 100644 index 0000000..09f47d6 --- /dev/null +++ b/examples/markov_chains/sol_lib.py @@ -0,0 +1,13 @@ +import solara + +@solara.component +def MainPage(clicks): + color = "green" + if clicks.value >= 5: + color = "red" + + def increment(): + clicks.value += 1 + print("clicks", clicks) # noqa + + solara.Button(label=f"Clicked: {clicks}", on_click=increment, color=color) diff --git a/examples/mesa/social_wealth.py b/examples/mesa/social_wealth.py index d5b8dbb..757c7db 100644 --- a/examples/mesa/social_wealth.py +++ b/examples/mesa/social_wealth.py @@ -7,7 +7,7 @@ from mesa.space import MultiGrid # from mesa.time import RandomActivation from mesa.datacollection import DataCollector -from mesa.batchrunner import BatchRunner +from mesa.batchrunner import batch_run import networkx as nx @@ -101,7 +101,7 @@ class MoneyEnv(Environment): self.populate_network(agent_class=agent_class) # Create agents - for agent in self.agents: + for agent in self.get_agents(): x = self.random.randrange(self.grid.width) y = self.random.randrange(self.grid.height) self.grid.place_agent(agent, (x, y)) @@ -122,16 +122,14 @@ if __name__ == "__main__": variable_params = {"N": range(10, 100, 10)} - batch_run = BatchRunner( + results = batch_run( MoneyEnv, variable_parameters=variable_params, fixed_parameters=fixed_params, iterations=5, - max_steps=100, - model_reporters={"Gini": compute_gini}, - ) - batch_run.run_all() + max_steps=100 + ) - run_data = batch_run.get_model_vars_dataframe() - run_data.head() + run_data = pd.DataFrame(results) + print(run_data.head()) print(run_data.Gini) diff --git a/examples/rabbits/rabbit_improved_sim.py b/examples/rabbits/rabbit_improved_sim.py index f4bc8df..5d8158c 100644 --- a/examples/rabbits/rabbit_improved_sim.py +++ b/examples/rabbits/rabbit_improved_sim.py @@ -61,7 +61,7 @@ class Male(Rabbit): return self.dead # Males try to mate - for f in self.model.agents( + for f in self.model.get_agents( agent_class=Female, state_id=Female.fertile.id, limit=self.max_females ): self.debug("FOUND A FEMALE: ", repr(f), self.mating_prob) diff --git a/examples/rabbits/rabbits_basic_sim.py b/examples/rabbits/rabbits_basic_sim.py index 553eb43..80a6d5d 100644 --- a/examples/rabbits/rabbits_basic_sim.py +++ b/examples/rabbits/rabbits_basic_sim.py @@ -70,7 +70,7 @@ class Male(Rabbit): return self.dead # Males try to mate - for f in self.model.agents( + for f in self.model.get_agents( agent_class=Female, state_id=Female.fertile.id, limit=self.max_females ): self.debug("FOUND A FEMALE: ", repr(f), self.mating_prob) diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..5bc5f21 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,4061 @@ +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. + +[[package]] +name = "annotated-types" +version = "0.6.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.8" +files = [ + {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, + {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, +] + +[[package]] +name = "anyio" +version = "4.3.0" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.8" +files = [ + {file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"}, + {file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"}, +] + +[package.dependencies] +exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""} +idna = ">=2.8" +sniffio = ">=1.1" +typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""} + +[package.extras] +doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (>=0.23)"] + +[[package]] +name = "appnope" +version = "0.1.4" +description = "Disable App Nap on macOS >= 10.9" +optional = false +python-versions = ">=3.6" +files = [ + {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, + {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, +] + +[[package]] +name = "argon2-cffi" +version = "23.1.0" +description = "Argon2 for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, + {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, +] + +[package.dependencies] +argon2-cffi-bindings = "*" + +[package.extras] +dev = ["argon2-cffi[tests,typing]", "tox (>4)"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-copybutton", "sphinx-notfound-page"] +tests = ["hypothesis", "pytest"] +typing = ["mypy"] + +[[package]] +name = "argon2-cffi-bindings" +version = "21.2.0" +description = "Low-level CFFI bindings for Argon2" +optional = false +python-versions = ">=3.6" +files = [ + {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f"}, + {file = "argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3e385d1c39c520c08b53d63300c3ecc28622f076f4c2b0e6d7e796e9f6502194"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3e3cc67fdb7d82c4718f19b4e7a87123caf8a93fde7e23cf66ac0337d3cb3f"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a22ad9800121b71099d0fb0a65323810a15f2e292f2ba450810a7316e128ee5"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9f8b450ed0547e3d473fdc8612083fd08dd2120d6ac8f73828df9b7d45bb351"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:93f9bf70084f97245ba10ee36575f0c3f1e7d7724d67d8e5b08e61787c320ed7"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3b9ef65804859d335dc6b31582cad2c5166f0c3e7975f324d9ffaa34ee7e6583"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4966ef5848d820776f5f562a7d45fdd70c2f330c961d0d745b784034bd9f48d"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ef543a89dee4db46a1a6e206cd015360e5a75822f76df533845c3cbaf72670"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"}, +] + +[package.dependencies] +cffi = ">=1.0.1" + +[package.extras] +dev = ["cogapp", "pre-commit", "pytest", "wheel"] +tests = ["pytest"] + +[[package]] +name = "arrow" +version = "1.3.0" +description = "Better dates & times for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, + {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, +] + +[package.dependencies] +python-dateutil = ">=2.7.0" +types-python-dateutil = ">=2.8.10" + +[package.extras] +doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"] +test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"] + +[[package]] +name = "asttokens" +version = "2.4.1" +description = "Annotate AST trees with source code positions" +optional = false +python-versions = "*" +files = [ + {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, + {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, +] + +[package.dependencies] +six = ">=1.12.0" + +[package.extras] +astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] +test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] + +[[package]] +name = "async-lru" +version = "2.0.4" +description = "Simple LRU cache for asyncio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"}, + {file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"}, +] + +[package.dependencies] +typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""} + +[[package]] +name = "attrs" +version = "23.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] + +[[package]] +name = "babel" +version = "2.14.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "Babel-2.14.0-py3-none-any.whl", hash = "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287"}, + {file = "Babel-2.14.0.tar.gz", hash = "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363"}, +] + +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] +html5lib = ["html5lib"] +lxml = ["lxml"] + +[[package]] +name = "binaryornot" +version = "0.4.4" +description = "Ultra-lightweight pure Python package to check if a file is binary or text." +optional = false +python-versions = "*" +files = [ + {file = "binaryornot-0.4.4-py2.py3-none-any.whl", hash = "sha256:b8b71173c917bddcd2c16070412e369c3ed7f0528926f70cac18a6c97fd563e4"}, + {file = "binaryornot-0.4.4.tar.gz", hash = "sha256:359501dfc9d40632edc9fac890e19542db1a287bbcfa58175b66658392018061"}, +] + +[package.dependencies] +chardet = ">=3.0.2" + +[[package]] +name = "bleach" +version = "6.1.0" +description = "An easy safelist-based HTML-sanitizing tool." +optional = false +python-versions = ">=3.8" +files = [ + {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"}, + {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"}, +] + +[package.dependencies] +six = ">=1.9.0" +webencodings = "*" + +[package.extras] +css = ["tinycss2 (>=1.1.0,<1.3)"] + +[[package]] +name = "cachetools" +version = "5.3.3" +description = "Extensible memoizing collections and decorators" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, + {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, +] + +[[package]] +name = "certifi" +version = "2024.2.2" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, + {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, +] + +[[package]] +name = "cffi" +version = "1.16.0" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "chardet" +version = "5.2.0" +description = "Universal encoding detector for Python 3" +optional = false +python-versions = ">=3.7" +files = [ + {file = "chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970"}, + {file = "chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "click-plugins" +version = "1.1.1" +description = "An extension module for click to enable registering CLI commands via setuptools entry-points." +optional = false +python-versions = "*" +files = [ + {file = "click-plugins-1.1.1.tar.gz", hash = "sha256:46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b"}, + {file = "click_plugins-1.1.1-py2.py3-none-any.whl", hash = "sha256:5d262006d3222f5057fd81e1623d4443e41dcda5dc815c06b442aa3c02889fc8"}, +] + +[package.dependencies] +click = ">=4.0" + +[package.extras] +dev = ["coveralls", "pytest (>=3.6)", "pytest-cov", "wheel"] + +[[package]] +name = "cligj" +version = "0.7.2" +description = "Click params for commmand line interfaces to GeoJSON" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4" +files = [ + {file = "cligj-0.7.2-py3-none-any.whl", hash = "sha256:c1ca117dbce1fe20a5809dc96f01e1c2840f6dcc939b3ddbb1111bf330ba82df"}, + {file = "cligj-0.7.2.tar.gz", hash = "sha256:a4bc13d623356b373c2c27c53dbd9c68cae5d526270bfa71f6c6fa69669c6b27"}, +] + +[package.dependencies] +click = ">=4.0" + +[package.extras] +test = ["pytest-cov"] + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "comm" +version = "0.2.2" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +optional = false +python-versions = ">=3.8" +files = [ + {file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"}, + {file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"}, +] + +[package.dependencies] +traitlets = ">=4" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "contourpy" +version = "1.2.0" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.9" +files = [ + {file = "contourpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0274c1cb63625972c0c007ab14dd9ba9e199c36ae1a231ce45d725cbcbfd10a8"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab459a1cbbf18e8698399c595a01f6dcc5c138220ca3ea9e7e6126232d102bb4"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fdd887f17c2f4572ce548461e4f96396681212d858cae7bd52ba3310bc6f00f"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d16edfc3fc09968e09ddffada434b3bf989bf4911535e04eada58469873e28e"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c203f617abc0dde5792beb586f827021069fb6d403d7f4d5c2b543d87edceb9"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b69303ceb2e4d4f146bf82fda78891ef7bcd80c41bf16bfca3d0d7eb545448aa"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:884c3f9d42d7218304bc74a8a7693d172685c84bd7ab2bab1ee567b769696df9"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1b1208102be6e851f20066bf0e7a96b7d48a07c9b0cfe6d0d4545c2f6cadab"}, + {file = "contourpy-1.2.0-cp310-cp310-win32.whl", hash = "sha256:34b9071c040d6fe45d9826cbbe3727d20d83f1b6110d219b83eb0e2a01d79488"}, + {file = "contourpy-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:bd2f1ae63998da104f16a8b788f685e55d65760cd1929518fd94cd682bf03e41"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dd10c26b4eadae44783c45ad6655220426f971c61d9b239e6f7b16d5cdaaa727"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5c6b28956b7b232ae801406e529ad7b350d3f09a4fde958dfdf3c0520cdde0dd"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebeac59e9e1eb4b84940d076d9f9a6cec0064e241818bcb6e32124cc5c3e377a"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:139d8d2e1c1dd52d78682f505e980f592ba53c9f73bd6be102233e358b401063"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e9dc350fb4c58adc64df3e0703ab076f60aac06e67d48b3848c23647ae4310e"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18fc2b4ed8e4a8fe849d18dce4bd3c7ea637758c6343a1f2bae1e9bd4c9f4686"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:16a7380e943a6d52472096cb7ad5264ecee36ed60888e2a3d3814991a0107286"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8d8faf05be5ec8e02a4d86f616fc2a0322ff4a4ce26c0f09d9f7fb5330a35c95"}, + {file = "contourpy-1.2.0-cp311-cp311-win32.whl", hash = "sha256:67b7f17679fa62ec82b7e3e611c43a016b887bd64fb933b3ae8638583006c6d6"}, + {file = "contourpy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:99ad97258985328b4f207a5e777c1b44a83bfe7cf1f87b99f9c11d4ee477c4de"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:575bcaf957a25d1194903a10bc9f316c136c19f24e0985a2b9b5608bdf5dbfe0"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9e6c93b5b2dbcedad20a2f18ec22cae47da0d705d454308063421a3b290d9ea4"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:464b423bc2a009088f19bdf1f232299e8b6917963e2b7e1d277da5041f33a779"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68ce4788b7d93e47f84edd3f1f95acdcd142ae60bc0e5493bfd120683d2d4316"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d7d1f8871998cdff5d2ff6a087e5e1780139abe2838e85b0b46b7ae6cc25399"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e739530c662a8d6d42c37c2ed52a6f0932c2d4a3e8c1f90692ad0ce1274abe0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:247b9d16535acaa766d03037d8e8fb20866d054d3c7fbf6fd1f993f11fc60ca0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:461e3ae84cd90b30f8d533f07d87c00379644205b1d33a5ea03381edc4b69431"}, + {file = "contourpy-1.2.0-cp312-cp312-win32.whl", hash = "sha256:1c2559d6cffc94890b0529ea7eeecc20d6fadc1539273aa27faf503eb4656d8f"}, + {file = "contourpy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:491b1917afdd8638a05b611a56d46587d5a632cabead889a5440f7c638bc6ed9"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5fd1810973a375ca0e097dee059c407913ba35723b111df75671a1976efa04bc"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:999c71939aad2780f003979b25ac5b8f2df651dac7b38fb8ce6c46ba5abe6ae9"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7caf9b241464c404613512d5594a6e2ff0cc9cb5615c9475cc1d9b514218ae8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:266270c6f6608340f6c9836a0fb9b367be61dde0c9a9a18d5ece97774105ff3e"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbd50d0a0539ae2e96e537553aff6d02c10ed165ef40c65b0e27e744a0f10af8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11f8d2554e52f459918f7b8e6aa20ec2a3bce35ce95c1f0ef4ba36fbda306df5"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ce96dd400486e80ac7d195b2d800b03e3e6a787e2a522bfb83755938465a819e"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6d3364b999c62f539cd403f8123ae426da946e142312a514162adb2addd8d808"}, + {file = "contourpy-1.2.0-cp39-cp39-win32.whl", hash = "sha256:1c88dfb9e0c77612febebb6ac69d44a8d81e3dc60f993215425b62c1161353f4"}, + {file = "contourpy-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:78e6ad33cf2e2e80c5dfaaa0beec3d61face0fb650557100ee36db808bfa6843"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be16975d94c320432657ad2402f6760990cb640c161ae6da1363051805fa8108"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b95a225d4948b26a28c08307a60ac00fb8671b14f2047fc5476613252a129776"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d7e03c0f9a4f90dc18d4e77e9ef4ec7b7bbb437f7f675be8e530d65ae6ef956"}, + {file = "contourpy-1.2.0.tar.gz", hash = "sha256:171f311cb758de7da13fc53af221ae47a5877be5a0843a9fe150818c51ed276a"}, +] + +[package.dependencies] +numpy = ">=1.20,<2.0" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.6.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] + +[[package]] +name = "cookiecutter" +version = "2.6.0" +description = "A command-line utility that creates projects from project templates, e.g. creating a Python package project from a Python package project template." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cookiecutter-2.6.0-py3-none-any.whl", hash = "sha256:a54a8e37995e4ed963b3e82831072d1ad4b005af736bb17b99c2cbd9d41b6e2d"}, + {file = "cookiecutter-2.6.0.tar.gz", hash = "sha256:db21f8169ea4f4fdc2408d48ca44859349de2647fbe494a9d6c3edfc0542c21c"}, +] + +[package.dependencies] +arrow = "*" +binaryornot = ">=0.4.4" +click = ">=7.0,<9.0.0" +Jinja2 = ">=2.7,<4.0.0" +python-slugify = ">=4.0.0" +pyyaml = ">=5.3.1" +requests = ">=2.23.0" +rich = "*" + +[[package]] +name = "cycler" +version = "0.12.1" +description = "Composable style cycles" +optional = false +python-versions = ">=3.8" +files = [ + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, +] + +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + +[[package]] +name = "debugpy" +version = "1.8.1" +description = "An implementation of the Debug Adapter Protocol for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "debugpy-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:3bda0f1e943d386cc7a0e71bfa59f4137909e2ed947fb3946c506e113000f741"}, + {file = "debugpy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda73bf69ea479c8577a0448f8c707691152e6c4de7f0c4dec5a4bc11dee516e"}, + {file = "debugpy-1.8.1-cp310-cp310-win32.whl", hash = "sha256:3a79c6f62adef994b2dbe9fc2cc9cc3864a23575b6e387339ab739873bea53d0"}, + {file = "debugpy-1.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:7eb7bd2b56ea3bedb009616d9e2f64aab8fc7000d481faec3cd26c98a964bcdd"}, + {file = "debugpy-1.8.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:016a9fcfc2c6b57f939673c874310d8581d51a0fe0858e7fac4e240c5eb743cb"}, + {file = "debugpy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd97ed11a4c7f6d042d320ce03d83b20c3fb40da892f994bc041bbc415d7a099"}, + {file = "debugpy-1.8.1-cp311-cp311-win32.whl", hash = "sha256:0de56aba8249c28a300bdb0672a9b94785074eb82eb672db66c8144fff673146"}, + {file = "debugpy-1.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1a9fe0829c2b854757b4fd0a338d93bc17249a3bf69ecf765c61d4c522bb92a8"}, + {file = "debugpy-1.8.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3ebb70ba1a6524d19fa7bb122f44b74170c447d5746a503e36adc244a20ac539"}, + {file = "debugpy-1.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e658a9630f27534e63922ebf655a6ab60c370f4d2fc5c02a5b19baf4410ace"}, + {file = "debugpy-1.8.1-cp312-cp312-win32.whl", hash = "sha256:caad2846e21188797a1f17fc09c31b84c7c3c23baf2516fed5b40b378515bbf0"}, + {file = "debugpy-1.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:edcc9f58ec0fd121a25bc950d4578df47428d72e1a0d66c07403b04eb93bcf98"}, + {file = "debugpy-1.8.1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a3afa222f6fd3d9dfecd52729bc2e12c93e22a7491405a0ecbf9e1d32d45b39"}, + {file = "debugpy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d915a18f0597ef685e88bb35e5d7ab968964b7befefe1aaea1eb5b2640b586c7"}, + {file = "debugpy-1.8.1-cp38-cp38-win32.whl", hash = "sha256:92116039b5500633cc8d44ecc187abe2dfa9b90f7a82bbf81d079fcdd506bae9"}, + {file = "debugpy-1.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e38beb7992b5afd9d5244e96ad5fa9135e94993b0c551ceebf3fe1a5d9beb234"}, + {file = "debugpy-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:bfb20cb57486c8e4793d41996652e5a6a885b4d9175dd369045dad59eaacea42"}, + {file = "debugpy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd3fdd3f67a7e576dd869c184c5dd71d9aaa36ded271939da352880c012e703"}, + {file = "debugpy-1.8.1-cp39-cp39-win32.whl", hash = "sha256:58911e8521ca0c785ac7a0539f1e77e0ce2df753f786188f382229278b4cdf23"}, + {file = "debugpy-1.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:6df9aa9599eb05ca179fb0b810282255202a66835c6efb1d112d21ecb830ddd3"}, + {file = "debugpy-1.8.1-py2.py3-none-any.whl", hash = "sha256:28acbe2241222b87e255260c76741e1fbf04fdc3b6d094fcf57b6c6f75ce1242"}, + {file = "debugpy-1.8.1.zip", hash = "sha256:f696d6be15be87aef621917585f9bb94b1dc9e8aced570db1b8a6fc14e8f9b42"}, +] + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +optional = false +python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] + +[[package]] +name = "dill" +version = "0.3.8" +description = "serialize all of Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "dill-0.3.8-py3-none-any.whl", hash = "sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7"}, + {file = "dill-0.3.8.tar.gz", hash = "sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca"}, +] + +[package.extras] +graph = ["objgraph (>=1.7.2)"] +profile = ["gprof2dot (>=2022.7.29)"] + +[[package]] +name = "exceptiongroup" +version = "1.2.0" +description = "Backport of PEP 654 (exception groups)" +optional = false +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, + {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, +] + +[package.extras] +test = ["pytest (>=6)"] + +[[package]] +name = "executing" +version = "2.0.1" +description = "Get the currently executing AST node of a frame, and other information" +optional = false +python-versions = ">=3.5" +files = [ + {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, + {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, +] + +[package.extras] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] + +[[package]] +name = "fastjsonschema" +version = "2.19.1" +description = "Fastest Python implementation of JSON schema" +optional = false +python-versions = "*" +files = [ + {file = "fastjsonschema-2.19.1-py3-none-any.whl", hash = "sha256:3672b47bc94178c9f23dbb654bf47440155d4db9df5f7bc47643315f9c405cd0"}, + {file = "fastjsonschema-2.19.1.tar.gz", hash = "sha256:e3126a94bdc4623d3de4485f8d468a12f02a67921315ddc87836d6e456dc789d"}, +] + +[package.extras] +devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] + +[[package]] +name = "filelock" +version = "3.13.3" +description = "A platform independent file lock." +optional = false +python-versions = ">=3.8" +files = [ + {file = "filelock-3.13.3-py3-none-any.whl", hash = "sha256:5ffa845303983e7a0b7ae17636509bc97997d58afeafa72fb141a17b152284cb"}, + {file = "filelock-3.13.3.tar.gz", hash = "sha256:a79895a25bbefdf55d1a2a0a80968f7dbb28edcd6d4234a0afb3f37ecde4b546"}, +] + +[package.extras] +docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)"] +typing = ["typing-extensions (>=4.8)"] + +[[package]] +name = "fiona" +version = "1.9.6" +description = "Fiona reads and writes spatial data files" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fiona-1.9.6-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:63e528b5ea3d8b1038d788e7c65117835c787ba7fdc94b1b42f09c2cbc0aaff2"}, + {file = "fiona-1.9.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:918bd27d8625416672e834593970f96dff63215108f81efb876fe5c0bc58a3b4"}, + {file = "fiona-1.9.6-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:e313210b30d09ed8f829bf625599e248dadd78622728030221f6526580ff26c5"}, + {file = "fiona-1.9.6-cp310-cp310-win_amd64.whl", hash = "sha256:89095c2d542325ee45894b8837e8048cdbb2f22274934e1be3b673ca628010d7"}, + {file = "fiona-1.9.6-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:98cea6f435843b2119731c6b0470e5b7386aa16b6aa7edabbf1ed93aefe029c3"}, + {file = "fiona-1.9.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f4230eccbd896a79d1ebfa551d84bf90f512f7bcbe1ca61e3f82231321f1a532"}, + {file = "fiona-1.9.6-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:48b6218224e96de5e36b5eb259f37160092260e5de0dcd82ca200b1887aa9884"}, + {file = "fiona-1.9.6-cp311-cp311-win_amd64.whl", hash = "sha256:c1dd5fbc29b7303bb87eb683455e8451e1a53bb8faf20ef97fdcd843c9e4a7f6"}, + {file = "fiona-1.9.6-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:42d8a0e5570948d3821c493b6141866d9a4d7a64edad2be4ecbb89f81904baac"}, + {file = "fiona-1.9.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:39819fb8f5ec6d9971cb01b912b4431615a3d3f50c83798565d8ce41917930db"}, + {file = "fiona-1.9.6-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:9b53034efdf93ada9295b081e6a8280af7c75496a20df82d4c2ca46d65b85905"}, + {file = "fiona-1.9.6-cp312-cp312-win_amd64.whl", hash = "sha256:1dcd6eca7524535baf2a39d7981b4a46d33ae28c313934a7c3eae62eecf9dfa5"}, + {file = "fiona-1.9.6-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:e5404ed08c711489abcb3a50a184816825b8af06eb73ad2a99e18b8e7b47c96a"}, + {file = "fiona-1.9.6-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:53bedd2989e255df1bf3378ae9c06d6d241ec273c280c544bb44ffffebb97fb0"}, + {file = "fiona-1.9.6-cp37-cp37m-win_amd64.whl", hash = "sha256:77653a08564a44e634c44cd74a068d2f55d1d4029edd16d1c8aadcc4d8cc1d2c"}, + {file = "fiona-1.9.6-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:e7617563b36d2be99f048f0d0054b4d765f4aae454398f88f19de9c2c324b7f8"}, + {file = "fiona-1.9.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:50037c3b7a5f6f434b562b5b1a5b664f1caa7a4383b00af23cdb59bfc6ba852c"}, + {file = "fiona-1.9.6-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:bf51846ad602757bf27876f458c5c9f14b09421fac612f64273cc4e3fcabc441"}, + {file = "fiona-1.9.6-cp38-cp38-win_amd64.whl", hash = "sha256:11af1afc1255642a7787fe112c29d01f968f1053e4d4700fc6f3bb879c1622e0"}, + {file = "fiona-1.9.6-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:52e8fec650b72fc5253d8f86b63859acc687182281c29bfacd3930496cf982d1"}, + {file = "fiona-1.9.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c9b92aa1badb2773e7cac19bef3064d73e9d80c67c42f0928db2520a04be6f2f"}, + {file = "fiona-1.9.6-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:0eaffbf3bfae9960484c0c08ea461b0c40e111497f04e9475ebf15ac7a22d9dc"}, + {file = "fiona-1.9.6-cp39-cp39-win_amd64.whl", hash = "sha256:f1b49d51a744874608b689f029766aa1e078dd72e94b44cf8eeef6d7bd2e9051"}, + {file = "fiona-1.9.6.tar.gz", hash = "sha256:791b3494f8b218c06ea56f892bd6ba893dfa23525347761d066fb7738acda3b1"}, +] + +[package.dependencies] +attrs = ">=19.2.0" +certifi = "*" +click = ">=8.0,<9.0" +click-plugins = ">=1.0" +cligj = ">=0.5" +six = "*" + +[package.extras] +all = ["fiona[calc,s3,test]"] +calc = ["shapely"] +s3 = ["boto3 (>=1.3.1)"] +test = ["fiona[s3]", "pytest (>=7)", "pytest-cov", "pytz"] + +[[package]] +name = "fonttools" +version = "4.50.0" +description = "Tools to manipulate font files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fonttools-4.50.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effd303fb422f8ce06543a36ca69148471144c534cc25f30e5be752bc4f46736"}, + {file = "fonttools-4.50.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7913992ab836f621d06aabac118fc258b9947a775a607e1a737eb3a91c360335"}, + {file = "fonttools-4.50.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e0a1c5bd2f63da4043b63888534b52c5a1fd7ae187c8ffc64cbb7ae475b9dab"}, + {file = "fonttools-4.50.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d40fc98540fa5360e7ecf2c56ddf3c6e7dd04929543618fd7b5cc76e66390562"}, + {file = "fonttools-4.50.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9fff65fbb7afe137bac3113827855e0204482727bddd00a806034ab0d3951d0d"}, + {file = "fonttools-4.50.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b1aeae3dd2ee719074a9372c89ad94f7c581903306d76befdaca2a559f802472"}, + {file = "fonttools-4.50.0-cp310-cp310-win32.whl", hash = "sha256:e9623afa319405da33b43c85cceb0585a6f5d3a1d7c604daf4f7e1dd55c03d1f"}, + {file = "fonttools-4.50.0-cp310-cp310-win_amd64.whl", hash = "sha256:778c5f43e7e654ef7fe0605e80894930bc3a7772e2f496238e57218610140f54"}, + {file = "fonttools-4.50.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3dfb102e7f63b78c832e4539969167ffcc0375b013080e6472350965a5fe8048"}, + {file = "fonttools-4.50.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e58fe34cb379ba3d01d5d319d67dd3ce7ca9a47ad044ea2b22635cd2d1247fc"}, + {file = "fonttools-4.50.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c673ab40d15a442a4e6eb09bf007c1dda47c84ac1e2eecbdf359adacb799c24"}, + {file = "fonttools-4.50.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b3ac35cdcd1a4c90c23a5200212c1bb74fa05833cc7c14291d7043a52ca2aaa"}, + {file = "fonttools-4.50.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8844e7a2c5f7ecf977e82eb6b3014f025c8b454e046d941ece05b768be5847ae"}, + {file = "fonttools-4.50.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:f849bd3c5c2249b49c98eca5aaebb920d2bfd92b3c69e84ca9bddf133e9f83f0"}, + {file = "fonttools-4.50.0-cp311-cp311-win32.whl", hash = "sha256:39293ff231b36b035575e81c14626dfc14407a20de5262f9596c2cbb199c3625"}, + {file = "fonttools-4.50.0-cp311-cp311-win_amd64.whl", hash = "sha256:c33d5023523b44d3481624f840c8646656a1def7630ca562f222eb3ead16c438"}, + {file = "fonttools-4.50.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b4a886a6dbe60100ba1cd24de962f8cd18139bd32808da80de1fa9f9f27bf1dc"}, + {file = "fonttools-4.50.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b2ca1837bfbe5eafa11313dbc7edada79052709a1fffa10cea691210af4aa1fa"}, + {file = "fonttools-4.50.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0493dd97ac8977e48ffc1476b932b37c847cbb87fd68673dee5182004906828"}, + {file = "fonttools-4.50.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77844e2f1b0889120b6c222fc49b2b75c3d88b930615e98893b899b9352a27ea"}, + {file = "fonttools-4.50.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:3566bfb8c55ed9100afe1ba6f0f12265cd63a1387b9661eb6031a1578a28bad1"}, + {file = "fonttools-4.50.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:35e10ddbc129cf61775d58a14f2d44121178d89874d32cae1eac722e687d9019"}, + {file = "fonttools-4.50.0-cp312-cp312-win32.whl", hash = "sha256:cc8140baf9fa8f9b903f2b393a6c413a220fa990264b215bf48484f3d0bf8710"}, + {file = "fonttools-4.50.0-cp312-cp312-win_amd64.whl", hash = "sha256:0ccc85fd96373ab73c59833b824d7a73846670a0cb1f3afbaee2b2c426a8f931"}, + {file = "fonttools-4.50.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e270a406219af37581d96c810172001ec536e29e5593aa40d4c01cca3e145aa6"}, + {file = "fonttools-4.50.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac2463de667233372e9e1c7e9de3d914b708437ef52a3199fdbf5a60184f190c"}, + {file = "fonttools-4.50.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:47abd6669195abe87c22750dbcd366dc3a0648f1b7c93c2baa97429c4dc1506e"}, + {file = "fonttools-4.50.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:074841375e2e3d559aecc86e1224caf78e8b8417bb391e7d2506412538f21adc"}, + {file = "fonttools-4.50.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0743fd2191ad7ab43d78cd747215b12033ddee24fa1e088605a3efe80d6984de"}, + {file = "fonttools-4.50.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3d7080cce7be5ed65bee3496f09f79a82865a514863197ff4d4d177389e981b0"}, + {file = "fonttools-4.50.0-cp38-cp38-win32.whl", hash = "sha256:a467ba4e2eadc1d5cc1a11d355abb945f680473fbe30d15617e104c81f483045"}, + {file = "fonttools-4.50.0-cp38-cp38-win_amd64.whl", hash = "sha256:f77e048f805e00870659d6318fd89ef28ca4ee16a22b4c5e1905b735495fc422"}, + {file = "fonttools-4.50.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b6245eafd553c4e9a0708e93be51392bd2288c773523892fbd616d33fd2fda59"}, + {file = "fonttools-4.50.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a4062cc7e8de26f1603323ef3ae2171c9d29c8a9f5e067d555a2813cd5c7a7e0"}, + {file = "fonttools-4.50.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34692850dfd64ba06af61e5791a441f664cb7d21e7b544e8f385718430e8f8e4"}, + {file = "fonttools-4.50.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:678dd95f26a67e02c50dcb5bf250f95231d455642afbc65a3b0bcdacd4e4dd38"}, + {file = "fonttools-4.50.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4f2ce7b0b295fe64ac0a85aef46a0f2614995774bd7bc643b85679c0283287f9"}, + {file = "fonttools-4.50.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d346f4dc2221bfb7ab652d1e37d327578434ce559baf7113b0f55768437fe6a0"}, + {file = "fonttools-4.50.0-cp39-cp39-win32.whl", hash = "sha256:a51eeaf52ba3afd70bf489be20e52fdfafe6c03d652b02477c6ce23c995222f4"}, + {file = "fonttools-4.50.0-cp39-cp39-win_amd64.whl", hash = "sha256:8639be40d583e5d9da67795aa3eeeda0488fb577a1d42ae11a5036f18fb16d93"}, + {file = "fonttools-4.50.0-py3-none-any.whl", hash = "sha256:48fa36da06247aa8282766cfd63efff1bb24e55f020f29a335939ed3844d20d3"}, + {file = "fonttools-4.50.0.tar.gz", hash = "sha256:fa5cf61058c7dbb104c2ac4e782bf1b2016a8cf2f69de6e4dd6a865d2c969bb5"}, +] + +[package.extras] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] +graphite = ["lz4 (>=1.7.4.2)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] +pathops = ["skia-pathops (>=0.5.0)"] +plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] +symfont = ["sympy"] +type1 = ["xattr"] +ufo = ["fs (>=2.2.0,<3)"] +unicode = ["unicodedata2 (>=15.1.0)"] +woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] + +[[package]] +name = "fqdn" +version = "1.5.1" +description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" +optional = false +python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" +files = [ + {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, + {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, +] + +[[package]] +name = "geopandas" +version = "0.14.3" +description = "Geographic pandas extensions" +optional = false +python-versions = ">=3.9" +files = [ + {file = "geopandas-0.14.3-py3-none-any.whl", hash = "sha256:41b31ad39e21bc9e8c4254f78f8dc4ce3d33d144e22e630a00bb336c83160204"}, + {file = "geopandas-0.14.3.tar.gz", hash = "sha256:748af035d4a068a4ae00cab384acb61d387685c833b0022e0729aa45216b23ac"}, +] + +[package.dependencies] +fiona = ">=1.8.21" +packaging = "*" +pandas = ">=1.4.0" +pyproj = ">=3.3.0" +shapely = ">=1.8.0" + +[[package]] +name = "gprof2dot" +version = "2022.7.29" +description = "Generate a dot graph from the output of several profilers." +optional = false +python-versions = ">=2.7" +files = [ + {file = "gprof2dot-2022.7.29-py2.py3-none-any.whl", hash = "sha256:f165b3851d3c52ee4915eb1bd6cca571e5759823c2cd0f71a79bda93c2dc85d6"}, + {file = "gprof2dot-2022.7.29.tar.gz", hash = "sha256:45b4d298bd36608fccf9511c3fd88a773f7a1abc04d6cd39445b11ba43133ec5"}, +] + +[[package]] +name = "greenlet" +version = "3.0.3" +description = "Lightweight in-process concurrent programming" +optional = false +python-versions = ">=3.7" +files = [ + {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, + {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, + {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b"}, + {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a"}, + {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83"}, + {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405"}, + {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f"}, + {file = "greenlet-3.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb"}, + {file = "greenlet-3.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9"}, + {file = "greenlet-3.0.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61"}, + {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559"}, + {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e"}, + {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33"}, + {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379"}, + {file = "greenlet-3.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22"}, + {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3"}, + {file = "greenlet-3.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d"}, + {file = "greenlet-3.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728"}, + {file = "greenlet-3.0.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be"}, + {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e"}, + {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676"}, + {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc"}, + {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230"}, + {file = "greenlet-3.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf"}, + {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305"}, + {file = "greenlet-3.0.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6"}, + {file = "greenlet-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2"}, + {file = "greenlet-3.0.3-cp37-cp37m-macosx_11_0_universal2.whl", hash = "sha256:5b51e85cb5ceda94e79d019ed36b35386e8c37d22f07d6a751cb659b180d5274"}, + {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:daf3cb43b7cf2ba96d614252ce1684c1bccee6b2183a01328c98d36fcd7d5cb0"}, + {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99bf650dc5d69546e076f413a87481ee1d2d09aaaaaca058c9251b6d8c14783f"}, + {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dd6e660effd852586b6a8478a1d244b8dc90ab5b1321751d2ea15deb49ed414"}, + {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e3391d1e16e2a5a1507d83e4a8b100f4ee626e8eca43cf2cadb543de69827c4c"}, + {file = "greenlet-3.0.3-cp37-cp37m-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e1f145462f1fa6e4a4ae3c0f782e580ce44d57c8f2c7aae1b6fa88c0b2efdb41"}, + {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1a7191e42732df52cb5f39d3527217e7ab73cae2cb3694d241e18f53d84ea9a7"}, + {file = "greenlet-3.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0448abc479fab28b00cb472d278828b3ccca164531daab4e970a0458786055d6"}, + {file = "greenlet-3.0.3-cp37-cp37m-win32.whl", hash = "sha256:b542be2440edc2d48547b5923c408cbe0fc94afb9f18741faa6ae970dbcb9b6d"}, + {file = "greenlet-3.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:01bc7ea167cf943b4c802068e178bbf70ae2e8c080467070d01bfa02f337ee67"}, + {file = "greenlet-3.0.3-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca"}, + {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ddc0f794e6ad661e321caa8d2f0a55ce01213c74722587256fb6566049a8b04"}, + {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9db1c18f0eaad2f804728c67d6c610778456e3e1cc4ab4bbd5eeb8e6053c6fc"}, + {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7170375bcc99f1a2fbd9c306f5be8764eaf3ac6b5cb968862cad4c7057756506"}, + {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b"}, + {file = "greenlet-3.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4"}, + {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:81bb9c6d52e8321f09c3d165b2a78c680506d9af285bfccbad9fb7ad5a5da3e5"}, + {file = "greenlet-3.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fd096eb7ffef17c456cfa587523c5f92321ae02427ff955bebe9e3c63bc9f0da"}, + {file = "greenlet-3.0.3-cp38-cp38-win32.whl", hash = "sha256:d46677c85c5ba00a9cb6f7a00b2bfa6f812192d2c9f7d9c4f6a55b60216712f3"}, + {file = "greenlet-3.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf"}, + {file = "greenlet-3.0.3-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53"}, + {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257"}, + {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac"}, + {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71"}, + {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61"}, + {file = "greenlet-3.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b"}, + {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6"}, + {file = "greenlet-3.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113"}, + {file = "greenlet-3.0.3-cp39-cp39-win32.whl", hash = "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e"}, + {file = "greenlet-3.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067"}, + {file = "greenlet-3.0.3.tar.gz", hash = "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491"}, +] + +[package.extras] +docs = ["Sphinx", "furo"] +test = ["objgraph", "psutil"] + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.5" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"}, + {file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<0.26.0)"] + +[[package]] +name = "httpx" +version = "0.27.0" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5"}, + {file = "httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] + +[[package]] +name = "humanize" +version = "4.9.0" +description = "Python humanize utilities" +optional = false +python-versions = ">=3.8" +files = [ + {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, + {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, +] + +[package.extras] +tests = ["freezegun", "pytest", "pytest-cov"] + +[[package]] +name = "idna" +version = "3.6" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + +[[package]] +name = "ipykernel" +version = "6.29.4" +description = "IPython Kernel for Jupyter" +optional = false +python-versions = ">=3.8" +files = [ + {file = "ipykernel-6.29.4-py3-none-any.whl", hash = "sha256:1181e653d95c6808039c509ef8e67c4126b3b3af7781496c7cbfb5ed938a27da"}, + {file = "ipykernel-6.29.4.tar.gz", hash = "sha256:3d44070060f9475ac2092b760123fadf105d2e2493c24848b6691a7c4f42af5c"}, +] + +[package.dependencies] +appnope = {version = "*", markers = "platform_system == \"Darwin\""} +comm = ">=0.1.1" +debugpy = ">=1.6.5" +ipython = ">=7.23.1" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +matplotlib-inline = ">=0.1" +nest-asyncio = "*" +packaging = "*" +psutil = "*" +pyzmq = ">=24" +tornado = ">=6.1" +traitlets = ">=5.4.0" + +[package.extras] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "ipython" +version = "8.23.0" +description = "IPython: Productive Interactive Computing" +optional = false +python-versions = ">=3.10" +files = [ + {file = "ipython-8.23.0-py3-none-any.whl", hash = "sha256:07232af52a5ba146dc3372c7bf52a0f890a23edf38d77caef8d53f9cdc2584c1"}, + {file = "ipython-8.23.0.tar.gz", hash = "sha256:7468edaf4f6de3e1b912e57f66c241e6fd3c7099f2ec2136e239e142e800274d"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +decorator = "*" +exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} +jedi = ">=0.16" +matplotlib-inline = "*" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} +prompt-toolkit = ">=3.0.41,<3.1.0" +pygments = ">=2.4.0" +stack-data = "*" +traitlets = ">=5.13.0" +typing-extensions = {version = "*", markers = "python_version < \"3.12\""} + +[package.extras] +all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"] +black = ["black"] +doc = ["docrepr", "exceptiongroup", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "stack-data", "typing-extensions"] +kernel = ["ipykernel"] +matplotlib = ["matplotlib"] +nbconvert = ["nbconvert"] +nbformat = ["nbformat"] +notebook = ["ipywidgets", "notebook"] +parallel = ["ipyparallel"] +qtconsole = ["qtconsole"] +test = ["pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "testpath"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] + +[[package]] +name = "ipyvue" +version = "1.10.2" +description = "Jupyter widgets base for Vue libraries" +optional = false +python-versions = "*" +files = [ + {file = "ipyvue-1.10.2-py2.py3-none-any.whl", hash = "sha256:c5926f50a90cd090d58dc5ec10afed57e6726c4ba8a51ab1aa6f9f7fcbe284bc"}, + {file = "ipyvue-1.10.2.tar.gz", hash = "sha256:a9973586fa2e296510d9a24b935a22a2450acca057b5de9f0bab66ecb1c33ab4"}, +] + +[package.dependencies] +ipywidgets = ">=7.0.0" + +[package.extras] +dev = ["pre-commit"] +test = ["solara[pytest]"] + +[[package]] +name = "ipyvuetify" +version = "1.9.3" +description = "Jupyter widgets based on vuetify UI components" +optional = false +python-versions = ">=3.6" +files = [ + {file = "ipyvuetify-1.9.3-py2.py3-none-any.whl", hash = "sha256:30163bf37d0bd98ed7da9f04571e1e9b5462b3149010d7b30e463ff1e1afaa43"}, + {file = "ipyvuetify-1.9.3.tar.gz", hash = "sha256:bf610cfe5890e82f28ef1f94b5b60cd79dcbed49fde7dead5caacda036e840cd"}, +] + +[package.dependencies] +ipyvue = ">=1.7,<2" + +[package.extras] +dev = ["mypy", "nox", "pre-commit"] +doc = ["ipykernel", "jupyter-sphinx", "pydata-sphinx-theme", "sphinx (<7)", "sphinx-design"] +test = ["jupyterlab (<4)", "nbformat (<5.10)", "pytest", "pytest-playwright", "solara[pytest]"] + +[[package]] +name = "ipywidgets" +version = "8.1.2" +description = "Jupyter interactive widgets" +optional = false +python-versions = ">=3.7" +files = [ + {file = "ipywidgets-8.1.2-py3-none-any.whl", hash = "sha256:bbe43850d79fb5e906b14801d6c01402857996864d1e5b6fa62dd2ee35559f60"}, + {file = "ipywidgets-8.1.2.tar.gz", hash = "sha256:d0b9b41e49bae926a866e613a39b0f0097745d2b9f1f3dd406641b4a57ec42c9"}, +] + +[package.dependencies] +comm = ">=0.1.3" +ipython = ">=6.1.0" +jupyterlab-widgets = ">=3.0.10,<3.1.0" +traitlets = ">=4.3.1" +widgetsnbextension = ">=4.0.10,<4.1.0" + +[package.extras] +test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"] + +[[package]] +name = "isoduration" +version = "20.11.0" +description = "Operations with ISO 8601 durations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, + {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, +] + +[package.dependencies] +arrow = ">=0.15.0" + +[[package]] +name = "jedi" +version = "0.19.1" +description = "An autocompletion tool for Python that can be used for text editors." +optional = false +python-versions = ">=3.6" +files = [ + {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, + {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, +] + +[package.dependencies] +parso = ">=0.8.3,<0.9.0" + +[package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] + +[[package]] +name = "jinja2" +version = "3.1.3" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, + {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "json5" +version = "0.9.24" +description = "A Python implementation of the JSON5 data format." +optional = false +python-versions = ">=3.8" +files = [ + {file = "json5-0.9.24-py3-none-any.whl", hash = "sha256:4ca101fd5c7cb47960c055ef8f4d0e31e15a7c6c48c3b6f1473fc83b6c462a13"}, + {file = "json5-0.9.24.tar.gz", hash = "sha256:0c638399421da959a20952782800e5c1a78c14e08e1dc9738fa10d8ec14d58c8"}, +] + +[[package]] +name = "jsonpointer" +version = "2.4" +description = "Identify specific nodes in a JSON document (RFC 6901)" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" +files = [ + {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, + {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, +] + +[[package]] +name = "jsonschema" +version = "4.21.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, + {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} +rpds-py = ">=0.7.1" +uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +webcolors = {version = ">=1.11", optional = true, markers = "extra == \"format-nongpl\""} + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "jupyter" +version = "1.0.0" +description = "Jupyter metapackage. Install all the Jupyter components in one go." +optional = false +python-versions = "*" +files = [ + {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"}, + {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"}, + {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"}, +] + +[package.dependencies] +ipykernel = "*" +ipywidgets = "*" +jupyter-console = "*" +nbconvert = "*" +notebook = "*" +qtconsole = "*" + +[[package]] +name = "jupyter-client" +version = "8.6.1" +description = "Jupyter protocol implementation and client libraries" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_client-8.6.1-py3-none-any.whl", hash = "sha256:3b7bd22f058434e3b9a7ea4b1500ed47de2713872288c0d511d19926f99b459f"}, + {file = "jupyter_client-8.6.1.tar.gz", hash = "sha256:e842515e2bab8e19186d89fdfea7abd15e39dd581f94e399f00e2af5a1652d3f"}, +] + +[package.dependencies] +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +python-dateutil = ">=2.8.2" +pyzmq = ">=23.0" +tornado = ">=6.2" +traitlets = ">=5.3" + +[package.extras] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] + +[[package]] +name = "jupyter-console" +version = "6.6.3" +description = "Jupyter terminal console" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485"}, + {file = "jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539"}, +] + +[package.dependencies] +ipykernel = ">=6.14" +ipython = "*" +jupyter-client = ">=7.0.0" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +prompt-toolkit = ">=3.0.30" +pygments = "*" +pyzmq = ">=17" +traitlets = ">=5.4" + +[package.extras] +test = ["flaky", "pexpect", "pytest"] + +[[package]] +name = "jupyter-core" +version = "5.7.2" +description = "Jupyter core package. A base package on which Jupyter projects rely." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"}, + {file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"}, +] + +[package.dependencies] +platformdirs = ">=2.5" +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = ">=5.3" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] +test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "jupyter-events" +version = "0.10.0" +description = "Jupyter Event System library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"}, + {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"}, +] + +[package.dependencies] +jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} +python-json-logger = ">=2.0.4" +pyyaml = ">=5.3" +referencing = "*" +rfc3339-validator = "*" +rfc3986-validator = ">=0.1.1" +traitlets = ">=5.3" + +[package.extras] +cli = ["click", "rich"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] + +[[package]] +name = "jupyter-lsp" +version = "2.2.4" +description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter-lsp-2.2.4.tar.gz", hash = "sha256:5e50033149344065348e688608f3c6d654ef06d9856b67655bd7b6bac9ee2d59"}, + {file = "jupyter_lsp-2.2.4-py3-none-any.whl", hash = "sha256:da61cb63a16b6dff5eac55c2699cc36eac975645adee02c41bdfc03bf4802e77"}, +] + +[package.dependencies] +jupyter-server = ">=1.1.2" + +[[package]] +name = "jupyter-server" +version = "2.13.0" +description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server-2.13.0-py3-none-any.whl", hash = "sha256:77b2b49c3831fbbfbdb5048cef4350d12946191f833a24e5f83e5f8f4803e97b"}, + {file = "jupyter_server-2.13.0.tar.gz", hash = "sha256:c80bfb049ea20053c3d9641c2add4848b38073bf79f1729cea1faed32fc1c78e"}, +] + +[package.dependencies] +anyio = ">=3.1.0" +argon2-cffi = "*" +jinja2 = "*" +jupyter-client = ">=7.4.4" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-events = ">=0.9.0" +jupyter-server-terminals = "*" +nbconvert = ">=6.4.4" +nbformat = ">=5.3.0" +overrides = "*" +packaging = "*" +prometheus-client = "*" +pywinpty = {version = "*", markers = "os_name == \"nt\""} +pyzmq = ">=24" +send2trash = ">=1.8.2" +terminado = ">=0.8.3" +tornado = ">=6.2.0" +traitlets = ">=5.6.0" +websocket-client = "*" + +[package.extras] +docs = ["ipykernel", "jinja2", "jupyter-client", "jupyter-server", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"] +test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.7)", "pytest-timeout", "requests"] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.3" +description = "A Jupyter Server Extension Providing Terminals." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"}, + {file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"}, +] + +[package.dependencies] +pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} +terminado = ">=0.8.3" + +[package.extras] +docs = ["jinja2", "jupyter-server", "mistune (<4.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"] + +[[package]] +name = "jupyterlab" +version = "4.1.5" +description = "JupyterLab computational environment" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab-4.1.5-py3-none-any.whl", hash = "sha256:3bc843382a25e1ab7bc31d9e39295a9f0463626692b7995597709c0ab236ab2c"}, + {file = "jupyterlab-4.1.5.tar.gz", hash = "sha256:c9ad75290cb10bfaff3624bf3fbb852319b4cce4c456613f8ebbaa98d03524db"}, +] + +[package.dependencies] +async-lru = ">=1.0.0" +httpx = ">=0.25.0" +ipykernel = "*" +jinja2 = ">=3.0.3" +jupyter-core = "*" +jupyter-lsp = ">=2.0.0" +jupyter-server = ">=2.4.0,<3" +jupyterlab-server = ">=2.19.0,<3" +notebook-shim = ">=0.2" +packaging = "*" +tomli = {version = "*", markers = "python_version < \"3.11\""} +tornado = ">=6.2.0" +traitlets = "*" + +[package.extras] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.2.0)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<7.3.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.2.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.1)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.0.post6)", "matplotlib (==3.8.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.0)", "scipy (==1.12.0)", "vega-datasets (==0.9.0)"] +test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +description = "Pygments theme using JupyterLab CSS variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, + {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, +] + +[[package]] +name = "jupyterlab-server" +version = "2.25.4" +description = "A set of server components for JupyterLab and JupyterLab like applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_server-2.25.4-py3-none-any.whl", hash = "sha256:eb645ecc8f9b24bac5decc7803b6d5363250e16ec5af814e516bc2c54dd88081"}, + {file = "jupyterlab_server-2.25.4.tar.gz", hash = "sha256:2098198e1e82e0db982440f9b5136175d73bea2cd42a6480aa6fd502cb23c4f9"}, +] + +[package.dependencies] +babel = ">=2.10" +jinja2 = ">=3.0.3" +json5 = ">=0.9.0" +jsonschema = ">=4.18.0" +jupyter-server = ">=1.21,<3" +packaging = ">=21.3" +requests = ">=2.31" + +[package.extras] +docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"] +openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"] +test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0,<8)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] + +[[package]] +name = "jupyterlab-widgets" +version = "3.0.10" +description = "Jupyter interactive widgets for JupyterLab" +optional = false +python-versions = ">=3.7" +files = [ + {file = "jupyterlab_widgets-3.0.10-py3-none-any.whl", hash = "sha256:dd61f3ae7a5a7f80299e14585ce6cf3d6925a96c9103c978eda293197730cb64"}, + {file = "jupyterlab_widgets-3.0.10.tar.gz", hash = "sha256:04f2ac04976727e4f9d0fa91cdc2f1ab860f965e504c29dbd6a65c882c9d04c0"}, +] + +[[package]] +name = "kiwisolver" +version = "1.4.5" +description = "A fast implementation of the Cassowary constraint solver" +optional = false +python-versions = ">=3.7" +files = [ + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:05703cf211d585109fcd72207a31bb170a0f22144d68298dc5e61b3c946518af"}, + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:146d14bebb7f1dc4d5fbf74f8a6cb15ac42baadee8912eb84ac0b3b2a3dc6ac3"}, + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ef7afcd2d281494c0a9101d5c571970708ad911d028137cd558f02b851c08b4"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9eaa8b117dc8337728e834b9c6e2611f10c79e38f65157c4c38e9400286f5cb1"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec20916e7b4cbfb1f12380e46486ec4bcbaa91a9c448b97023fde0d5bbf9e4ff"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39b42c68602539407884cf70d6a480a469b93b81b7701378ba5e2328660c847a"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa12042de0171fad672b6c59df69106d20d5596e4f87b5e8f76df757a7c399aa"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a40773c71d7ccdd3798f6489aaac9eee213d566850a9533f8d26332d626b82c"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:19df6e621f6d8b4b9c4d45f40a66839294ff2bb235e64d2178f7522d9170ac5b"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:83d78376d0d4fd884e2c114d0621624b73d2aba4e2788182d286309ebdeed770"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e391b1f0a8a5a10ab3b9bb6afcfd74f2175f24f8975fb87ecae700d1503cdee0"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:852542f9481f4a62dbb5dd99e8ab7aedfeb8fb6342349a181d4036877410f525"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59edc41b24031bc25108e210c0def6f6c2191210492a972d585a06ff246bb79b"}, + {file = "kiwisolver-1.4.5-cp310-cp310-win32.whl", hash = "sha256:a6aa6315319a052b4ee378aa171959c898a6183f15c1e541821c5c59beaa0238"}, + {file = "kiwisolver-1.4.5-cp310-cp310-win_amd64.whl", hash = "sha256:d0ef46024e6a3d79c01ff13801cb19d0cad7fd859b15037aec74315540acc276"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:11863aa14a51fd6ec28688d76f1735f8f69ab1fabf388851a595d0721af042f5"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ab3919a9997ab7ef2fbbed0cc99bb28d3c13e6d4b1ad36e97e482558a91be90"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fcc700eadbbccbf6bc1bcb9dbe0786b4b1cb91ca0dcda336eef5c2beed37b797"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dfdd7c0b105af050eb3d64997809dc21da247cf44e63dc73ff0fd20b96be55a9"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c6a5964640638cdeaa0c359382e5703e9293030fe730018ca06bc2010c4437"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbea0db94288e29afcc4c28afbf3a7ccaf2d7e027489c449cf7e8f83c6346eb9"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ceec1a6bc6cab1d6ff5d06592a91a692f90ec7505d6463a88a52cc0eb58545da"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:040c1aebeda72197ef477a906782b5ab0d387642e93bda547336b8957c61022e"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f91de7223d4c7b793867797bacd1ee53bfe7359bd70d27b7b58a04efbb9436c8"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:faae4860798c31530dd184046a900e652c95513796ef51a12bc086710c2eec4d"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0157420efcb803e71d1b28e2c287518b8808b7cf1ab8af36718fd0a2c453eb0"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:06f54715b7737c2fecdbf140d1afb11a33d59508a47bf11bb38ecf21dc9ab79f"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fdb7adb641a0d13bdcd4ef48e062363d8a9ad4a182ac7647ec88f695e719ae9f"}, + {file = "kiwisolver-1.4.5-cp311-cp311-win32.whl", hash = "sha256:bb86433b1cfe686da83ce32a9d3a8dd308e85c76b60896d58f082136f10bffac"}, + {file = "kiwisolver-1.4.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c08e1312a9cf1074d17b17728d3dfce2a5125b2d791527f33ffbe805200a355"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:32d5cf40c4f7c7b3ca500f8985eb3fb3a7dfc023215e876f207956b5ea26632a"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f846c260f483d1fd217fe5ed7c173fb109efa6b1fc8381c8b7552c5781756192"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5ff5cf3571589b6d13bfbfd6bcd7a3f659e42f96b5fd1c4830c4cf21d4f5ef45"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7269d9e5f1084a653d575c7ec012ff57f0c042258bf5db0954bf551c158466e7"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da802a19d6e15dffe4b0c24b38b3af68e6c1a68e6e1d8f30148c83864f3881db"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3aba7311af82e335dd1e36ffff68aaca609ca6290c2cb6d821a39aa075d8e3ff"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:763773d53f07244148ccac5b084da5adb90bfaee39c197554f01b286cf869228"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2270953c0d8cdab5d422bee7d2007f043473f9d2999631c86a223c9db56cbd16"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d099e745a512f7e3bbe7249ca835f4d357c586d78d79ae8f1dcd4d8adeb9bda9"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:74db36e14a7d1ce0986fa104f7d5637aea5c82ca6326ed0ec5694280942d1162"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7e5bab140c309cb3a6ce373a9e71eb7e4873c70c2dda01df6820474f9889d6d4"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0f114aa76dc1b8f636d077979c0ac22e7cd8f3493abbab152f20eb8d3cda71f3"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:88a2df29d4724b9237fc0c6eaf2a1adae0cdc0b3e9f4d8e7dc54b16812d2d81a"}, + {file = "kiwisolver-1.4.5-cp312-cp312-win32.whl", hash = "sha256:72d40b33e834371fd330fb1472ca19d9b8327acb79a5821d4008391db8e29f20"}, + {file = "kiwisolver-1.4.5-cp312-cp312-win_amd64.whl", hash = "sha256:2c5674c4e74d939b9d91dda0fae10597ac7521768fec9e399c70a1f27e2ea2d9"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3a2b053a0ab7a3960c98725cfb0bf5b48ba82f64ec95fe06f1d06c99b552e130"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd32d6c13807e5c66a7cbb79f90b553642f296ae4518a60d8d76243b0ad2898"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59ec7b7c7e1a61061850d53aaf8e93db63dce0c936db1fda2658b70e4a1be709"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da4cfb373035def307905d05041c1d06d8936452fe89d464743ae7fb8371078b"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2400873bccc260b6ae184b2b8a4fec0e4082d30648eadb7c3d9a13405d861e89"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1b04139c4236a0f3aff534479b58f6f849a8b351e1314826c2d230849ed48985"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:4e66e81a5779b65ac21764c295087de82235597a2293d18d943f8e9e32746265"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7931d8f1f67c4be9ba1dd9c451fb0eeca1a25b89e4d3f89e828fe12a519b782a"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b3f7e75f3015df442238cca659f8baa5f42ce2a8582727981cbfa15fee0ee205"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:bbf1d63eef84b2e8c89011b7f2235b1e0bf7dacc11cac9431fc6468e99ac77fb"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4c380469bd3f970ef677bf2bcba2b6b0b4d5c75e7a020fb863ef75084efad66f"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-win32.whl", hash = "sha256:9408acf3270c4b6baad483865191e3e582b638b1654a007c62e3efe96f09a9a3"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-win_amd64.whl", hash = "sha256:5b94529f9b2591b7af5f3e0e730a4e0a41ea174af35a4fd067775f9bdfeee01a"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:11c7de8f692fc99816e8ac50d1d1aef4f75126eefc33ac79aac02c099fd3db71"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:53abb58632235cd154176ced1ae8f0d29a6657aa1aa9decf50b899b755bc2b93"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:88b9f257ca61b838b6f8094a62418421f87ac2a1069f7e896c36a7d86b5d4c29"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3195782b26fc03aa9c6913d5bad5aeb864bdc372924c093b0f1cebad603dd712"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc579bf0f502e54926519451b920e875f433aceb4624a3646b3252b5caa9e0b6"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a580c91d686376f0f7c295357595c5a026e6cbc3d77b7c36e290201e7c11ecb"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cfe6ab8da05c01ba6fbea630377b5da2cd9bcbc6338510116b01c1bc939a2c18"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d2e5a98f0ec99beb3c10e13b387f8db39106d53993f498b295f0c914328b1333"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a51a263952b1429e429ff236d2f5a21c5125437861baeed77f5e1cc2d2c7c6da"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3edd2fa14e68c9be82c5b16689e8d63d89fe927e56debd6e1dbce7a26a17f81b"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:74d1b44c6cfc897df648cc9fdaa09bc3e7679926e6f96df05775d4fb3946571c"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76d9289ed3f7501012e05abb8358bbb129149dbd173f1f57a1bf1c22d19ab7cc"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:92dea1ffe3714fa8eb6a314d2b3c773208d865a0e0d35e713ec54eea08a66250"}, + {file = "kiwisolver-1.4.5-cp38-cp38-win32.whl", hash = "sha256:5c90ae8c8d32e472be041e76f9d2f2dbff4d0b0be8bd4041770eddb18cf49a4e"}, + {file = "kiwisolver-1.4.5-cp38-cp38-win_amd64.whl", hash = "sha256:c7940c1dc63eb37a67721b10d703247552416f719c4188c54e04334321351ced"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9407b6a5f0d675e8a827ad8742e1d6b49d9c1a1da5d952a67d50ef5f4170b18d"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15568384086b6df3c65353820a4473575dbad192e35010f622c6ce3eebd57af9"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0dc9db8e79f0036e8173c466d21ef18e1befc02de8bf8aa8dc0813a6dc8a7046"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cdc8a402aaee9a798b50d8b827d7ecf75edc5fb35ea0f91f213ff927c15f4ff0"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6c3bd3cde54cafb87d74d8db50b909705c62b17c2099b8f2e25b461882e544ff"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:955e8513d07a283056b1396e9a57ceddbd272d9252c14f154d450d227606eb54"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:346f5343b9e3f00b8db8ba359350eb124b98c99efd0b408728ac6ebf38173958"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9098e0049e88c6a24ff64545cdfc50807818ba6c1b739cae221bbbcbc58aad3"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:00bd361b903dc4bbf4eb165f24d1acbee754fce22ded24c3d56eec268658a5cf"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7b8b454bac16428b22560d0a1cf0a09875339cab69df61d7805bf48919415901"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f1d072c2eb0ad60d4c183f3fb44ac6f73fb7a8f16a2694a91f988275cbf352f9"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:31a82d498054cac9f6d0b53d02bb85811185bcb477d4b60144f915f3b3126342"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6512cb89e334e4700febbffaaa52761b65b4f5a3cf33f960213d5656cea36a77"}, + {file = "kiwisolver-1.4.5-cp39-cp39-win32.whl", hash = "sha256:9db8ea4c388fdb0f780fe91346fd438657ea602d58348753d9fb265ce1bca67f"}, + {file = "kiwisolver-1.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:59415f46a37f7f2efeec758353dd2eae1b07640d8ca0f0c42548ec4125492635"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5c7b3b3a728dc6faf3fc372ef24f21d1e3cee2ac3e9596691d746e5a536de920"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:620ced262a86244e2be10a676b646f29c34537d0d9cc8eb26c08f53d98013390"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:378a214a1e3bbf5ac4a8708304318b4f890da88c9e6a07699c4ae7174c09a68d"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf7be1207676ac608a50cd08f102f6742dbfc70e8d60c4db1c6897f62f71523"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ba55dce0a9b8ff59495ddd050a0225d58bd0983d09f87cfe2b6aec4f2c1234e4"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd32ea360bcbb92d28933fc05ed09bffcb1704ba3fc7942e81db0fd4f81a7892"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5e7139af55d1688f8b960ee9ad5adafc4ac17c1c473fe07133ac092310d76544"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dced8146011d2bc2e883f9bd68618b8247387f4bbec46d7392b3c3b032640126"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9bf3325c47b11b2e51bca0824ea217c7cd84491d8ac4eefd1e409705ef092bd"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5794cf59533bc3f1b1c821f7206a3617999db9fbefc345360aafe2e067514929"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e368f200bbc2e4f905b8e71eb38b3c04333bddaa6a2464a6355487b02bb7fb09"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5d706eba36b4c4d5bc6c6377bb6568098765e990cfc21ee16d13963fab7b3e7"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85267bd1aa8880a9c88a8cb71e18d3d64d2751a790e6ca6c27b8ccc724bcd5ad"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210ef2c3a1f03272649aff1ef992df2e724748918c4bc2d5a90352849eb40bea"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11d011a7574eb3b82bcc9c1a1d35c1d7075677fdd15de527d91b46bd35e935ee"}, + {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, +] + +[[package]] +name = "markdown" +version = "3.6" +description = "Python implementation of John Gruber's Markdown." +optional = false +python-versions = ">=3.8" +files = [ + {file = "Markdown-3.6-py3-none-any.whl", hash = "sha256:48f276f4d8cfb8ce6527c8f79e2ee29708508bf4d40aa410fbc3b4ee832c850f"}, + {file = "Markdown-3.6.tar.gz", hash = "sha256:ed4f41f6daecbeeb96e576ce414c41d2d876daa9a16cb35fa8ed8c2ddfad0224"}, +] + +[package.extras] +docs = ["mdx-gh-links (>=0.2)", "mkdocs (>=1.5)", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-nature (>=0.6)", "mkdocs-section-index", "mkdocstrings[python]"] +testing = ["coverage", "pyyaml"] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +optional = false +python-versions = ">=3.8" +files = [ + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, +] + +[package.dependencies] +mdurl = ">=0.1,<1.0" + +[package.extras] +benchmarking = ["psutil", "pytest", "pytest-benchmark"] +code-style = ["pre-commit (>=3.0,<4.0)"] +compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"] +linkify = ["linkify-it-py (>=1,<3)"] +plugins = ["mdit-py-plugins"] +profiling = ["gprof2dot"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "markupsafe" +version = "2.1.5" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, + {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, +] + +[[package]] +name = "matplotlib" +version = "3.8.3" +description = "Python plotting package" +optional = false +python-versions = ">=3.9" +files = [ + {file = "matplotlib-3.8.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:cf60138ccc8004f117ab2a2bad513cc4d122e55864b4fe7adf4db20ca68a078f"}, + {file = "matplotlib-3.8.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f557156f7116be3340cdeef7f128fa99b0d5d287d5f41a16e169819dcf22357"}, + {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f386cf162b059809ecfac3bcc491a9ea17da69fa35c8ded8ad154cd4b933d5ec"}, + {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3c5f96f57b0369c288bf6f9b5274ba45787f7e0589a34d24bdbaf6d3344632f"}, + {file = "matplotlib-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:83e0f72e2c116ca7e571c57aa29b0fe697d4c6425c4e87c6e994159e0c008635"}, + {file = "matplotlib-3.8.3-cp310-cp310-win_amd64.whl", hash = "sha256:1c5c8290074ba31a41db1dc332dc2b62def469ff33766cbe325d32a3ee291aea"}, + {file = "matplotlib-3.8.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5184e07c7e1d6d1481862ee361905b7059f7fe065fc837f7c3dc11eeb3f2f900"}, + {file = "matplotlib-3.8.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d7e7e0993d0758933b1a241a432b42c2db22dfa37d4108342ab4afb9557cbe3e"}, + {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04b36ad07eac9740fc76c2aa16edf94e50b297d6eb4c081e3add863de4bb19a7"}, + {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c42dae72a62f14982f1474f7e5c9959fc4bc70c9de11cc5244c6e766200ba65"}, + {file = "matplotlib-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf5932eee0d428192c40b7eac1399d608f5d995f975cdb9d1e6b48539a5ad8d0"}, + {file = "matplotlib-3.8.3-cp311-cp311-win_amd64.whl", hash = "sha256:40321634e3a05ed02abf7c7b47a50be50b53ef3eaa3a573847431a545585b407"}, + {file = "matplotlib-3.8.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:09074f8057917d17ab52c242fdf4916f30e99959c1908958b1fc6032e2d0f6d4"}, + {file = "matplotlib-3.8.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5745f6d0fb5acfabbb2790318db03809a253096e98c91b9a31969df28ee604aa"}, + {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b97653d869a71721b639714b42d87cda4cfee0ee74b47c569e4874c7590c55c5"}, + {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:242489efdb75b690c9c2e70bb5c6550727058c8a614e4c7716f363c27e10bba1"}, + {file = "matplotlib-3.8.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:83c0653c64b73926730bd9ea14aa0f50f202ba187c307a881673bad4985967b7"}, + {file = "matplotlib-3.8.3-cp312-cp312-win_amd64.whl", hash = "sha256:ef6c1025a570354297d6c15f7d0f296d95f88bd3850066b7f1e7b4f2f4c13a39"}, + {file = "matplotlib-3.8.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c4af3f7317f8a1009bbb2d0bf23dfaba859eb7dd4ccbd604eba146dccaaaf0a4"}, + {file = "matplotlib-3.8.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c6e00a65d017d26009bac6808f637b75ceade3e1ff91a138576f6b3065eeeba"}, + {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7b49ab49a3bea17802df6872f8d44f664ba8f9be0632a60c99b20b6db2165b7"}, + {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6728dde0a3997396b053602dbd907a9bd64ec7d5cf99e728b404083698d3ca01"}, + {file = "matplotlib-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:813925d08fb86aba139f2d31864928d67511f64e5945ca909ad5bc09a96189bb"}, + {file = "matplotlib-3.8.3-cp39-cp39-win_amd64.whl", hash = "sha256:cd3a0c2be76f4e7be03d34a14d49ded6acf22ef61f88da600a18a5cd8b3c5f3c"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fa93695d5c08544f4a0dfd0965f378e7afc410d8672816aff1e81be1f45dbf2e"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9764df0e8778f06414b9d281a75235c1e85071f64bb5d71564b97c1306a2afc"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5e431a09e6fab4012b01fc155db0ce6dccacdbabe8198197f523a4ef4805eb26"}, + {file = "matplotlib-3.8.3.tar.gz", hash = "sha256:7b416239e9ae38be54b028abbf9048aff5054a9aba5416bef0bd17f9162ce161"}, +] + +[package.dependencies] +contourpy = ">=1.0.1" +cycler = ">=0.10" +fonttools = ">=4.22.0" +kiwisolver = ">=1.3.1" +numpy = ">=1.21,<2" +packaging = ">=20.0" +pillow = ">=8" +pyparsing = ">=2.3.1" +python-dateutil = ">=2.7" + +[[package]] +name = "matplotlib-inline" +version = "0.1.6" +description = "Inline Matplotlib backend for Jupyter" +optional = false +python-versions = ">=3.5" +files = [ + {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, + {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, +] + +[package.dependencies] +traitlets = "*" + +[[package]] +name = "mdurl" +version = "0.1.2" +description = "Markdown URL utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, + {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, +] + +[[package]] +name = "mesa" +version = "2.2.4" +description = "Agent-based modeling (ABM) in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "mesa-2.2.4-py3-none-any.whl", hash = "sha256:d74f658c7950197a92c8e9af34f535a2f95525edce71a2ff60f2fcf1f80b189a"}, + {file = "mesa-2.2.4.tar.gz", hash = "sha256:e688370024b6af7e8110659faadc3a586eb2270345e69dccf4adb9b12987a2c3"}, +] + +[package.dependencies] +click = "*" +cookiecutter = "*" +matplotlib = "*" +mesa-viz-tornado = ">=0.1.3,<0.2.0" +networkx = "*" +numpy = "*" +pandas = "*" +solara = "*" +tqdm = "*" + +[package.extras] +dev = ["coverage", "pytest (>=4.6)", "pytest-cov", "ruff (>=0.1.1,<0.2.0)", "sphinx"] +docs = ["ipython", "myst-nb", "myst-parser", "pydata-sphinx-theme", "seaborn", "sphinx"] + +[[package]] +name = "mesa-viz-tornado" +version = "0.1.3" +description = "Tornado-based visualization framework for Mesa" +optional = false +python-versions = ">=3.8" +files = [ + {file = "Mesa-Viz-Tornado-0.1.3.tar.gz", hash = "sha256:adee8361310aefaf23d23d379e94113c6969b69e35054dcd035b6e0d82561788"}, + {file = "Mesa_Viz_Tornado-0.1.3-py3-none-any.whl", hash = "sha256:bfde49f0af55c2149a5b369431be7c14a65bc210eb85a9f97b452cf3cfdf6075"}, +] + +[package.dependencies] +tornado = "*" + +[package.extras] +dev = ["black", "ruff (==0.0.275)"] + +[[package]] +name = "mistune" +version = "2.0.5" +description = "A sane Markdown parser with useful plugins and renderers" +optional = false +python-versions = "*" +files = [ + {file = "mistune-2.0.5-py2.py3-none-any.whl", hash = "sha256:bad7f5d431886fcbaf5f758118ecff70d31f75231b34024a1341120340a65ce8"}, + {file = "mistune-2.0.5.tar.gz", hash = "sha256:0246113cb2492db875c6be56974a7c893333bf26cd92891c85f63151cee09d34"}, +] + +[[package]] +name = "multiprocess" +version = "0.70.16" +description = "better multiprocessing and multithreading in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "multiprocess-0.70.16-pp310-pypy310_pp73-macosx_10_13_x86_64.whl", hash = "sha256:476887be10e2f59ff183c006af746cb6f1fd0eadcfd4ef49e605cbe2659920ee"}, + {file = "multiprocess-0.70.16-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d951bed82c8f73929ac82c61f01a7b5ce8f3e5ef40f5b52553b4f547ce2b08ec"}, + {file = "multiprocess-0.70.16-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:37b55f71c07e2d741374998c043b9520b626a8dddc8b3129222ca4f1a06ef67a"}, + {file = "multiprocess-0.70.16-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ba8c31889abf4511c7308a8c52bb4a30b9d590e7f58523302ba00237702ca054"}, + {file = "multiprocess-0.70.16-pp39-pypy39_pp73-macosx_10_13_x86_64.whl", hash = "sha256:0dfd078c306e08d46d7a8d06fb120313d87aa43af60d66da43ffff40b44d2f41"}, + {file = "multiprocess-0.70.16-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e7b9d0f307cd9bd50851afaac0dba2cb6c44449efff697df7c7645f7d3f2be3a"}, + {file = "multiprocess-0.70.16-py310-none-any.whl", hash = "sha256:c4a9944c67bd49f823687463660a2d6daae94c289adff97e0f9d696ba6371d02"}, + {file = "multiprocess-0.70.16-py311-none-any.whl", hash = "sha256:af4cabb0dac72abfb1e794fa7855c325fd2b55a10a44628a3c1ad3311c04127a"}, + {file = "multiprocess-0.70.16-py312-none-any.whl", hash = "sha256:fc0544c531920dde3b00c29863377f87e1632601092ea2daca74e4beb40faa2e"}, + {file = "multiprocess-0.70.16-py38-none-any.whl", hash = "sha256:a71d82033454891091a226dfc319d0cfa8019a4e888ef9ca910372a446de4435"}, + {file = "multiprocess-0.70.16-py39-none-any.whl", hash = "sha256:a0bafd3ae1b732eac64be2e72038231c1ba97724b60b09400d68f229fcc2fbf3"}, + {file = "multiprocess-0.70.16.tar.gz", hash = "sha256:161af703d4652a0e1410be6abccecde4a7ddffd19341be0a7011b94aeb171ac1"}, +] + +[package.dependencies] +dill = ">=0.3.8" + +[[package]] +name = "nbclient" +version = "0.10.0" +description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "nbclient-0.10.0-py3-none-any.whl", hash = "sha256:f13e3529332a1f1f81d82a53210322476a168bb7090a0289c795fe9cc11c9d3f"}, + {file = "nbclient-0.10.0.tar.gz", hash = "sha256:4b3f1b7dba531e498449c4db4f53da339c91d449dc11e9af3a43b4eb5c5abb09"}, +] + +[package.dependencies] +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +nbformat = ">=5.1" +traitlets = ">=5.4" + +[package.extras] +dev = ["pre-commit"] +docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] +test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] + +[[package]] +name = "nbconvert" +version = "7.3.1" +description = "Converting Jupyter Notebooks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "nbconvert-7.3.1-py3-none-any.whl", hash = "sha256:d2e95904666f1ff77d36105b9de4e0801726f93b862d5b28f69e93d99ad3b19c"}, + {file = "nbconvert-7.3.1.tar.gz", hash = "sha256:78685362b11d2e8058e70196fe83b09abed8df22d3e599cf271f4d39fdc48b9e"}, +] + +[package.dependencies] +beautifulsoup4 = "*" +bleach = "*" +defusedxml = "*" +jinja2 = ">=3.0" +jupyter-core = ">=4.7" +jupyterlab-pygments = "*" +markupsafe = ">=2.0" +mistune = ">=2.0.3,<3" +nbclient = ">=0.5.0" +nbformat = ">=5.1" +packaging = "*" +pandocfilters = ">=1.4.1" +pygments = ">=2.4.1" +tinycss2 = "*" +traitlets = ">=5.0" + +[package.extras] +all = ["nbconvert[docs,qtpdf,serve,test,webpdf]"] +docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] +qtpdf = ["nbconvert[qtpng]"] +qtpng = ["pyqtwebengine (>=5.15)"] +serve = ["tornado (>=6.1)"] +test = ["ipykernel", "ipywidgets (>=7)", "pre-commit", "pytest", "pytest-dependency"] +webpdf = ["pyppeteer (>=1,<1.1)"] + +[[package]] +name = "nbformat" +version = "5.8.0" +description = "The Jupyter Notebook format" +optional = false +python-versions = ">=3.7" +files = [ + {file = "nbformat-5.8.0-py3-none-any.whl", hash = "sha256:d910082bd3e0bffcf07eabf3683ed7dda0727a326c446eeb2922abe102e65162"}, + {file = "nbformat-5.8.0.tar.gz", hash = "sha256:46dac64c781f1c34dfd8acba16547024110348f9fc7eab0f31981c2a3dc48d1f"}, +] + +[package.dependencies] +fastjsonschema = "*" +jsonschema = ">=2.6" +jupyter-core = "*" +traitlets = ">=5.1" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["pep440", "pre-commit", "pytest", "testpath"] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +description = "Patch asyncio to allow nested event loops" +optional = false +python-versions = ">=3.5" +files = [ + {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, + {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, +] + +[[package]] +name = "networkx" +version = "3.2.1" +description = "Python package for creating and manipulating graphs and networks" +optional = false +python-versions = ">=3.9" +files = [ + {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, + {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, +] + +[package.extras] +default = ["matplotlib (>=3.5)", "numpy (>=1.22)", "pandas (>=1.4)", "scipy (>=1.9,!=1.11.0,!=1.11.1)"] +developer = ["changelist (==0.4)", "mypy (>=1.1)", "pre-commit (>=3.2)", "rtoml"] +doc = ["nb2plots (>=0.7)", "nbconvert (<7.9)", "numpydoc (>=1.6)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.14)", "sphinx (>=7)", "sphinx-gallery (>=0.14)", "texext (>=0.6.7)"] +extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.11)", "sympy (>=1.10)"] +test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] + +[[package]] +name = "notebook" +version = "7.1.2" +description = "Jupyter Notebook - A web-based notebook environment for interactive computing" +optional = false +python-versions = ">=3.8" +files = [ + {file = "notebook-7.1.2-py3-none-any.whl", hash = "sha256:fc6c24b9aef18d0cd57157c9c47e95833b9b0bdc599652639acf0bdb61dc7d5f"}, + {file = "notebook-7.1.2.tar.gz", hash = "sha256:efc2c80043909e0faa17fce9e9b37c059c03af0ec99a4d4db84cb21d9d2e936a"}, +] + +[package.dependencies] +jupyter-server = ">=2.4.0,<3" +jupyterlab = ">=4.1.1,<4.2" +jupyterlab-server = ">=2.22.1,<3" +notebook-shim = ">=0.2,<0.3" +tornado = ">=6.2.0" + +[package.extras] +dev = ["hatch", "pre-commit"] +docs = ["myst-parser", "nbsphinx", "pydata-sphinx-theme", "sphinx (>=1.3.6)", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["importlib-resources (>=5.0)", "ipykernel", "jupyter-server[test] (>=2.4.0,<3)", "jupyterlab-server[test] (>=2.22.1,<3)", "nbval", "pytest (>=7.0)", "pytest-console-scripts", "pytest-timeout", "pytest-tornasync", "requests"] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +description = "A shim layer for notebook traits and config" +optional = false +python-versions = ">=3.7" +files = [ + {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, + {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, +] + +[package.dependencies] +jupyter-server = ">=1.8,<3" + +[package.extras] +test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] + +[[package]] +name = "numpy" +version = "1.26.4" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, +] + +[[package]] +name = "osmnx" +version = "1.9.2" +description = "Download, model, analyze, and visualize street networks and other geospatial features from OpenStreetMap" +optional = false +python-versions = ">=3.8" +files = [ + {file = "osmnx-1.9.2-py3-none-any.whl", hash = "sha256:9ea17500b45aa8e4740490d649c7f7747fa4f2e3f9747294837fa2c80aabd05f"}, + {file = "osmnx-1.9.2.tar.gz", hash = "sha256:59d21756ebdb4a4d211fb1373a3dca170832eec5f25ef94f5500bd79d32c169a"}, +] + +[package.dependencies] +geopandas = ">=0.12" +networkx = ">=2.5" +numpy = ">=1.20" +pandas = ">=1.1" +requests = ">=2.27" +shapely = ">=2.0" + +[package.extras] +entropy = ["scipy (>=1.5)"] +neighbors = ["scikit-learn (>=0.23)", "scipy (>=1.5)"] +raster = ["gdal", "rasterio (>=1.3)"] +visualization = ["matplotlib (>=3.5)"] + +[[package]] +name = "overrides" +version = "7.7.0" +description = "A decorator to automatically detect mismatch when overriding a method." +optional = false +python-versions = ">=3.6" +files = [ + {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, + {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, +] + +[[package]] +name = "packaging" +version = "24.0" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-24.0-py3-none-any.whl", hash = "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5"}, + {file = "packaging-24.0.tar.gz", hash = "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9"}, +] + +[[package]] +name = "pandas" +version = "2.2.1" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"}, + {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"}, + {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"}, + {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"}, + {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"}, + {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"}, + {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"}, +] + +[package.dependencies] +numpy = [ + {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, + {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, +] +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +description = "Utilities for writing pandoc filters in python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, + {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, +] + +[[package]] +name = "parso" +version = "0.8.3" +description = "A Python Parser" +optional = false +python-versions = ">=3.6" +files = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["docopt", "pytest (<6.0.0)"] + +[[package]] +name = "pexpect" +version = "4.9.0" +description = "Pexpect allows easy control of interactive console applications." +optional = false +python-versions = "*" +files = [ + {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, + {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, +] + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pillow" +version = "10.2.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, + {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, + {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, + {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, + {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, + {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, + {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, + {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, + {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, + {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, + {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, + {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, + {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, + {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, + {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, + {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, + {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] + +[[package]] +name = "platformdirs" +version = "4.2.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"}, + {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"}, +] + +[package.extras] +docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] + +[[package]] +name = "pluggy" +version = "1.4.0" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, + {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "prometheus-client" +version = "0.20.0" +description = "Python client for the Prometheus monitoring system." +optional = false +python-versions = ">=3.8" +files = [ + {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"}, + {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"}, +] + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "prompt-toolkit" +version = "3.0.43" +description = "Library for building powerful interactive command lines in Python" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "prompt_toolkit-3.0.43-py3-none-any.whl", hash = "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6"}, + {file = "prompt_toolkit-3.0.43.tar.gz", hash = "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"}, +] + +[package.dependencies] +wcwidth = "*" + +[[package]] +name = "psutil" +version = "5.9.8" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"}, + {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"}, + {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"}, + {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"}, + {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"}, + {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"}, + {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"}, + {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"}, + {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"}, + {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"}, +] + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +optional = false +python-versions = "*" +files = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] + +[[package]] +name = "pure-eval" +version = "0.2.2" +description = "Safely evaluate AST nodes without side effects" +optional = false +python-versions = "*" +files = [ + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, +] + +[package.extras] +tests = ["pytest"] + +[[package]] +name = "pycparser" +version = "2.22" +description = "C parser in Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"}, + {file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"}, +] + +[[package]] +name = "pydantic" +version = "2.6.4" +description = "Data validation using Python type hints" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic-2.6.4-py3-none-any.whl", hash = "sha256:cc46fce86607580867bdc3361ad462bab9c222ef042d3da86f2fb333e1d916c5"}, + {file = "pydantic-2.6.4.tar.gz", hash = "sha256:b1704e0847db01817624a6b86766967f552dd9dbf3afba4004409f908dcc84e6"}, +] + +[package.dependencies] +annotated-types = ">=0.4.0" +pydantic-core = "2.16.3" +typing-extensions = ">=4.6.1" + +[package.extras] +email = ["email-validator (>=2.0.0)"] + +[[package]] +name = "pydantic-core" +version = "2.16.3" +description = "" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4"}, + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db"}, + {file = "pydantic_core-2.16.3-cp310-none-win32.whl", hash = "sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132"}, + {file = "pydantic_core-2.16.3-cp310-none-win_amd64.whl", hash = "sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba"}, + {file = "pydantic_core-2.16.3-cp311-none-win32.whl", hash = "sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721"}, + {file = "pydantic_core-2.16.3-cp311-none-win_amd64.whl", hash = "sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df"}, + {file = "pydantic_core-2.16.3-cp311-none-win_arm64.whl", hash = "sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9"}, + {file = "pydantic_core-2.16.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0f56ae86b60ea987ae8bcd6654a887238fd53d1384f9b222ac457070b7ac4cff"}, + {file = "pydantic_core-2.16.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9bd22a2a639e26171068f8ebb5400ce2c1bc7d17959f60a3b753ae13c632975"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4204e773b4b408062960e65468d5346bdfe139247ee5f1ca2a378983e11388a2"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f651dd19363c632f4abe3480a7c87a9773be27cfe1341aef06e8759599454120"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aaf09e615a0bf98d406657e0008e4a8701b11481840be7d31755dc9f97c44053"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8e47755d8152c1ab5b55928ab422a76e2e7b22b5ed8e90a7d584268dd49e9c6b"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:500960cb3a0543a724a81ba859da816e8cf01b0e6aaeedf2c3775d12ee49cade"}, + {file = "pydantic_core-2.16.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cf6204fe865da605285c34cf1172879d0314ff267b1c35ff59de7154f35fdc2e"}, + {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d33dd21f572545649f90c38c227cc8631268ba25c460b5569abebdd0ec5974ca"}, + {file = "pydantic_core-2.16.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49d5d58abd4b83fb8ce763be7794d09b2f50f10aa65c0f0c1696c677edeb7cbf"}, + {file = "pydantic_core-2.16.3-cp312-none-win32.whl", hash = "sha256:f53aace168a2a10582e570b7736cc5bef12cae9cf21775e3eafac597e8551fbe"}, + {file = "pydantic_core-2.16.3-cp312-none-win_amd64.whl", hash = "sha256:0d32576b1de5a30d9a97f300cc6a3f4694c428d956adbc7e6e2f9cad279e45ed"}, + {file = "pydantic_core-2.16.3-cp312-none-win_arm64.whl", hash = "sha256:ec08be75bb268473677edb83ba71e7e74b43c008e4a7b1907c6d57e940bf34b6"}, + {file = "pydantic_core-2.16.3-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:b1f6f5938d63c6139860f044e2538baeee6f0b251a1816e7adb6cbce106a1f01"}, + {file = "pydantic_core-2.16.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2a1ef6a36fdbf71538142ed604ad19b82f67b05749512e47f247a6ddd06afdc7"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:704d35ecc7e9c31d48926150afada60401c55efa3b46cd1ded5a01bdffaf1d48"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d937653a696465677ed583124b94a4b2d79f5e30b2c46115a68e482c6a591c8a"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c9803edf8e29bd825f43481f19c37f50d2b01899448273b3a7758441b512acf8"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:72282ad4892a9fb2da25defeac8c2e84352c108705c972db82ab121d15f14e6d"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f752826b5b8361193df55afcdf8ca6a57d0232653494ba473630a83ba50d8c9"}, + {file = "pydantic_core-2.16.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4384a8f68ddb31a0b0c3deae88765f5868a1b9148939c3f4121233314ad5532c"}, + {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a4b2bf78342c40b3dc830880106f54328928ff03e357935ad26c7128bbd66ce8"}, + {file = "pydantic_core-2.16.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:13dcc4802961b5f843a9385fc821a0b0135e8c07fc3d9949fd49627c1a5e6ae5"}, + {file = "pydantic_core-2.16.3-cp38-none-win32.whl", hash = "sha256:e3e70c94a0c3841e6aa831edab1619ad5c511199be94d0c11ba75fe06efe107a"}, + {file = "pydantic_core-2.16.3-cp38-none-win_amd64.whl", hash = "sha256:ecdf6bf5f578615f2e985a5e1f6572e23aa632c4bd1dc67f8f406d445ac115ed"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972"}, + {file = "pydantic_core-2.16.3-cp39-none-win32.whl", hash = "sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2"}, + {file = "pydantic_core-2.16.3-cp39-none-win_amd64.whl", hash = "sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da"}, + {file = "pydantic_core-2.16.3.tar.gz", hash = "sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + +[[package]] +name = "pygments" +version = "2.17.2" +description = "Pygments is a syntax highlighting package written in Python." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, + {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, +] + +[package.extras] +plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] + +[[package]] +name = "pymdown-extensions" +version = "10.7.1" +description = "Extension pack for Python Markdown." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pymdown_extensions-10.7.1-py3-none-any.whl", hash = "sha256:f5cc7000d7ff0d1ce9395d216017fa4df3dde800afb1fb72d1c7d3fd35e710f4"}, + {file = "pymdown_extensions-10.7.1.tar.gz", hash = "sha256:c70e146bdd83c744ffc766b4671999796aba18842b268510a329f7f64700d584"}, +] + +[package.dependencies] +markdown = ">=3.5" +pyyaml = "*" + +[package.extras] +extra = ["pygments (>=2.12)"] + +[[package]] +name = "pyparsing" +version = "3.1.2" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, + {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "pyproj" +version = "3.6.1" +description = "Python interface to PROJ (cartographic projections and coordinate transformations library)" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pyproj-3.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab7aa4d9ff3c3acf60d4b285ccec134167a948df02347585fdd934ebad8811b4"}, + {file = "pyproj-3.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:4bc0472302919e59114aa140fd7213c2370d848a7249d09704f10f5b062031fe"}, + {file = "pyproj-3.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5279586013b8d6582e22b6f9e30c49796966770389a9d5b85e25a4223286cd3f"}, + {file = "pyproj-3.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80fafd1f3eb421694857f254a9bdbacd1eb22fc6c24ca74b136679f376f97d35"}, + {file = "pyproj-3.6.1-cp310-cp310-win32.whl", hash = "sha256:c41e80ddee130450dcb8829af7118f1ab69eaf8169c4bf0ee8d52b72f098dc2f"}, + {file = "pyproj-3.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:db3aedd458e7f7f21d8176f0a1d924f1ae06d725228302b872885a1c34f3119e"}, + {file = "pyproj-3.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ebfbdbd0936e178091309f6cd4fcb4decd9eab12aa513cdd9add89efa3ec2882"}, + {file = "pyproj-3.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:447db19c7efad70ff161e5e46a54ab9cc2399acebb656b6ccf63e4bc4a04b97a"}, + {file = "pyproj-3.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7e13c40183884ec7f94eb8e0f622f08f1d5716150b8d7a134de48c6110fee85"}, + {file = "pyproj-3.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65ad699e0c830e2b8565afe42bd58cc972b47d829b2e0e48ad9638386d994915"}, + {file = "pyproj-3.6.1-cp311-cp311-win32.whl", hash = "sha256:8b8acc31fb8702c54625f4d5a2a6543557bec3c28a0ef638778b7ab1d1772132"}, + {file = "pyproj-3.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:38a3361941eb72b82bd9a18f60c78b0df8408416f9340521df442cebfc4306e2"}, + {file = "pyproj-3.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1e9fbaf920f0f9b4ee62aab832be3ae3968f33f24e2e3f7fbb8c6728ef1d9746"}, + {file = "pyproj-3.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:6d227a865356f225591b6732430b1d1781e946893789a609bb34f59d09b8b0f8"}, + {file = "pyproj-3.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83039e5ae04e5afc974f7d25ee0870a80a6bd6b7957c3aca5613ccbe0d3e72bf"}, + {file = "pyproj-3.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb059ba3bced6f6725961ba758649261d85ed6ce670d3e3b0a26e81cf1aa8d"}, + {file = "pyproj-3.6.1-cp312-cp312-win32.whl", hash = "sha256:2d6ff73cc6dbbce3766b6c0bce70ce070193105d8de17aa2470009463682a8eb"}, + {file = "pyproj-3.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:7a27151ddad8e1439ba70c9b4b2b617b290c39395fa9ddb7411ebb0eb86d6fb0"}, + {file = "pyproj-3.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4ba1f9b03d04d8cab24d6375609070580a26ce76eaed54631f03bab00a9c737b"}, + {file = "pyproj-3.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18faa54a3ca475bfe6255156f2f2874e9a1c8917b0004eee9f664b86ccc513d3"}, + {file = "pyproj-3.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd43bd9a9b9239805f406fd82ba6b106bf4838d9ef37c167d3ed70383943ade1"}, + {file = "pyproj-3.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50100b2726a3ca946906cbaa789dd0749f213abf0cbb877e6de72ca7aa50e1ae"}, + {file = "pyproj-3.6.1-cp39-cp39-win32.whl", hash = "sha256:9274880263256f6292ff644ca92c46d96aa7e57a75c6df3f11d636ce845a1877"}, + {file = "pyproj-3.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:36b64c2cb6ea1cc091f329c5bd34f9c01bb5da8c8e4492c709bda6a09f96808f"}, + {file = "pyproj-3.6.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd93c1a0c6c4aedc77c0fe275a9f2aba4d59b8acf88cebfc19fe3c430cfabf4f"}, + {file = "pyproj-3.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6420ea8e7d2a88cb148b124429fba8cd2e0fae700a2d96eab7083c0928a85110"}, + {file = "pyproj-3.6.1.tar.gz", hash = "sha256:44aa7c704c2b7d8fb3d483bbf75af6cb2350d30a63b144279a09b75fead501bf"}, +] + +[package.dependencies] +certifi = "*" + +[[package]] +name = "pytest" +version = "8.1.1" +description = "pytest: simple powerful testing with Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pytest-8.1.1-py3-none-any.whl", hash = "sha256:2a8386cfc11fa9d2c50ee7b2a57e7d898ef90470a7a34c4b949ff59662bb78b7"}, + {file = "pytest-8.1.1.tar.gz", hash = "sha256:ac978141a75948948817d360297b7aae0fcb9d6ff6bc9ec6d514b85d5a65c044"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=1.4,<2.0" +tomli = {version = ">=1", markers = "python_version < \"3.11\""} + +[package.extras] +testing = ["argcomplete", "attrs (>=19.2)", "hypothesis (>=3.56)", "mock", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] + +[[package]] +name = "pytest-profiling" +version = "1.7.0" +description = "Profiling plugin for py.test" +optional = false +python-versions = "*" +files = [ + {file = "pytest-profiling-1.7.0.tar.gz", hash = "sha256:93938f147662225d2b8bd5af89587b979652426a8a6ffd7e73ec4a23e24b7f29"}, + {file = "pytest_profiling-1.7.0-py2.py3-none-any.whl", hash = "sha256:999cc9ac94f2e528e3f5d43465da277429984a1c237ae9818f8cfd0b06acb019"}, +] + +[package.dependencies] +gprof2dot = "*" +pytest = "*" +six = "*" + +[package.extras] +tests = ["pytest-virtualenv"] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-json-logger" +version = "2.0.7" +description = "A python library adding a json log formatter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, + {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, +] + +[[package]] +name = "python-slugify" +version = "8.0.4" +description = "A Python slugify application that also handles Unicode" +optional = false +python-versions = ">=3.7" +files = [ + {file = "python-slugify-8.0.4.tar.gz", hash = "sha256:59202371d1d05b54a9e7720c5e038f928f45daaffe41dd10822f3907b937c856"}, + {file = "python_slugify-8.0.4-py2.py3-none-any.whl", hash = "sha256:276540b79961052b66b7d116620b36518847f52d5fd9e3a70164fc8c50faa6b8"}, +] + +[package.dependencies] +text-unidecode = ">=1.3" + +[package.extras] +unidecode = ["Unidecode (>=1.1.1)"] + +[[package]] +name = "pytz" +version = "2024.1" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, + {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, +] + +[[package]] +name = "pywin32" +version = "306" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] + +[[package]] +name = "pywinpty" +version = "2.0.13" +description = "Pseudo terminal support for Windows from Python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pywinpty-2.0.13-cp310-none-win_amd64.whl", hash = "sha256:697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56"}, + {file = "pywinpty-2.0.13-cp311-none-win_amd64.whl", hash = "sha256:b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99"}, + {file = "pywinpty-2.0.13-cp312-none-win_amd64.whl", hash = "sha256:2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4"}, + {file = "pywinpty-2.0.13-cp38-none-win_amd64.whl", hash = "sha256:61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d"}, + {file = "pywinpty-2.0.13-cp39-none-win_amd64.whl", hash = "sha256:71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b"}, + {file = "pywinpty-2.0.13.tar.gz", hash = "sha256:c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "pyzmq" +version = "25.1.2" +description = "Python bindings for 0MQ" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:e624c789359f1a16f83f35e2c705d07663ff2b4d4479bad35621178d8f0f6ea4"}, + {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49151b0efece79f6a79d41a461d78535356136ee70084a1c22532fc6383f4ad0"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9a5f194cf730f2b24d6af1f833c14c10f41023da46a7f736f48b6d35061e76e"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:faf79a302f834d9e8304fafdc11d0d042266667ac45209afa57e5efc998e3872"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f51a7b4ead28d3fca8dda53216314a553b0f7a91ee8fc46a72b402a78c3e43d"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0ddd6d71d4ef17ba5a87becf7ddf01b371eaba553c603477679ae817a8d84d75"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:246747b88917e4867e2367b005fc8eefbb4a54b7db363d6c92f89d69abfff4b6"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:00c48ae2fd81e2a50c3485de1b9d5c7c57cd85dc8ec55683eac16846e57ac979"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a68d491fc20762b630e5db2191dd07ff89834086740f70e978bb2ef2668be08"}, + {file = "pyzmq-25.1.2-cp310-cp310-win32.whl", hash = "sha256:09dfe949e83087da88c4a76767df04b22304a682d6154de2c572625c62ad6886"}, + {file = "pyzmq-25.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:fa99973d2ed20417744fca0073390ad65ce225b546febb0580358e36aa90dba6"}, + {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:82544e0e2d0c1811482d37eef297020a040c32e0687c1f6fc23a75b75db8062c"}, + {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:01171fc48542348cd1a360a4b6c3e7d8f46cdcf53a8d40f84db6707a6768acc1"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc69c96735ab501419c432110016329bf0dea8898ce16fab97c6d9106dc0b348"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e124e6b1dd3dfbeb695435dff0e383256655bb18082e094a8dd1f6293114642"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7598d2ba821caa37a0f9d54c25164a4fa351ce019d64d0b44b45540950458840"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d1299d7e964c13607efd148ca1f07dcbf27c3ab9e125d1d0ae1d580a1682399d"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e6f689880d5ad87918430957297c975203a082d9a036cc426648fcbedae769b"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cc69949484171cc961e6ecd4a8911b9ce7a0d1f738fcae717177c231bf77437b"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9880078f683466b7f567b8624bfc16cad65077be046b6e8abb53bed4eeb82dd3"}, + {file = "pyzmq-25.1.2-cp311-cp311-win32.whl", hash = "sha256:4e5837af3e5aaa99a091302df5ee001149baff06ad22b722d34e30df5f0d9097"}, + {file = "pyzmq-25.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:25c2dbb97d38b5ac9fd15586e048ec5eb1e38f3d47fe7d92167b0c77bb3584e9"}, + {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:11e70516688190e9c2db14fcf93c04192b02d457b582a1f6190b154691b4c93a"}, + {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:313c3794d650d1fccaaab2df942af9f2c01d6217c846177cfcbc693c7410839e"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b3cbba2f47062b85fe0ef9de5b987612140a9ba3a9c6d2543c6dec9f7c2ab27"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc31baa0c32a2ca660784d5af3b9487e13b61b3032cb01a115fce6588e1bed30"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c9087b109070c5ab0b383079fa1b5f797f8d43e9a66c07a4b8b8bdecfd88ee"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f8429b17cbb746c3e043cb986328da023657e79d5ed258b711c06a70c2ea7537"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5074adeacede5f810b7ef39607ee59d94e948b4fd954495bdb072f8c54558181"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:7ae8f354b895cbd85212da245f1a5ad8159e7840e37d78b476bb4f4c3f32a9fe"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b264bf2cc96b5bc43ce0e852be995e400376bd87ceb363822e2cb1964fcdc737"}, + {file = "pyzmq-25.1.2-cp312-cp312-win32.whl", hash = "sha256:02bbc1a87b76e04fd780b45e7f695471ae6de747769e540da909173d50ff8e2d"}, + {file = "pyzmq-25.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:ced111c2e81506abd1dc142e6cd7b68dd53747b3b7ae5edbea4578c5eeff96b7"}, + {file = "pyzmq-25.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:7b6d09a8962a91151f0976008eb7b29b433a560fde056ec7a3db9ec8f1075438"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967668420f36878a3c9ecb5ab33c9d0ff8d054f9c0233d995a6d25b0e95e1b6b"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5edac3f57c7ddaacdb4d40f6ef2f9e299471fc38d112f4bc6d60ab9365445fb0"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0dabfb10ef897f3b7e101cacba1437bd3a5032ee667b7ead32bbcdd1a8422fe7"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:2c6441e0398c2baacfe5ba30c937d274cfc2dc5b55e82e3749e333aabffde561"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:16b726c1f6c2e7625706549f9dbe9b06004dfbec30dbed4bf50cbdfc73e5b32a"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a86c2dd76ef71a773e70551a07318b8e52379f58dafa7ae1e0a4be78efd1ff16"}, + {file = "pyzmq-25.1.2-cp36-cp36m-win32.whl", hash = "sha256:359f7f74b5d3c65dae137f33eb2bcfa7ad9ebefd1cab85c935f063f1dbb245cc"}, + {file = "pyzmq-25.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:55875492f820d0eb3417b51d96fea549cde77893ae3790fd25491c5754ea2f68"}, + {file = "pyzmq-25.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b8c8a419dfb02e91b453615c69568442e897aaf77561ee0064d789705ff37a92"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8807c87fa893527ae8a524c15fc505d9950d5e856f03dae5921b5e9aa3b8783b"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5e319ed7d6b8f5fad9b76daa0a68497bc6f129858ad956331a5835785761e003"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:3c53687dde4d9d473c587ae80cc328e5b102b517447456184b485587ebd18b62"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9add2e5b33d2cd765ad96d5eb734a5e795a0755f7fc49aa04f76d7ddda73fd70"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e690145a8c0c273c28d3b89d6fb32c45e0d9605b2293c10e650265bf5c11cfec"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:00a06faa7165634f0cac1abb27e54d7a0b3b44eb9994530b8ec73cf52e15353b"}, + {file = "pyzmq-25.1.2-cp37-cp37m-win32.whl", hash = "sha256:0f97bc2f1f13cb16905a5f3e1fbdf100e712d841482b2237484360f8bc4cb3d7"}, + {file = "pyzmq-25.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6cc0020b74b2e410287e5942e1e10886ff81ac77789eb20bec13f7ae681f0fdd"}, + {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:bef02cfcbded83473bdd86dd8d3729cd82b2e569b75844fb4ea08fee3c26ae41"}, + {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e10a4b5a4b1192d74853cc71a5e9fd022594573926c2a3a4802020360aa719d8"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8c5f80e578427d4695adac6fdf4370c14a2feafdc8cb35549c219b90652536ae"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5dde6751e857910c1339890f3524de74007958557593b9e7e8c5f01cd919f8a7"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea1608dd169da230a0ad602d5b1ebd39807ac96cae1845c3ceed39af08a5c6df"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0f513130c4c361201da9bc69df25a086487250e16b5571ead521b31ff6b02220"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:019744b99da30330798bb37df33549d59d380c78e516e3bab9c9b84f87a9592f"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2e2713ef44be5d52dd8b8e2023d706bf66cb22072e97fc71b168e01d25192755"}, + {file = "pyzmq-25.1.2-cp38-cp38-win32.whl", hash = "sha256:07cd61a20a535524906595e09344505a9bd46f1da7a07e504b315d41cd42eb07"}, + {file = "pyzmq-25.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb7e49a17fb8c77d3119d41a4523e432eb0c6932187c37deb6fbb00cc3028088"}, + {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:94504ff66f278ab4b7e03e4cba7e7e400cb73bfa9d3d71f58d8972a8dc67e7a6"}, + {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6dd0d50bbf9dca1d0bdea219ae6b40f713a3fb477c06ca3714f208fd69e16fd8"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:004ff469d21e86f0ef0369717351073e0e577428e514c47c8480770d5e24a565"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c0b5ca88a8928147b7b1e2dfa09f3b6c256bc1135a1338536cbc9ea13d3b7add"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c9a79f1d2495b167119d02be7448bfba57fad2a4207c4f68abc0bab4b92925b"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:518efd91c3d8ac9f9b4f7dd0e2b7b8bf1a4fe82a308009016b07eaa48681af82"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1ec23bd7b3a893ae676d0e54ad47d18064e6c5ae1fadc2f195143fb27373f7f6"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db36c27baed588a5a8346b971477b718fdc66cf5b80cbfbd914b4d6d355e44e2"}, + {file = "pyzmq-25.1.2-cp39-cp39-win32.whl", hash = "sha256:39b1067f13aba39d794a24761e385e2eddc26295826530a8c7b6c6c341584289"}, + {file = "pyzmq-25.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:8e9f3fabc445d0ce320ea2c59a75fe3ea591fdbdeebec5db6de530dd4b09412e"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a8c1d566344aee826b74e472e16edae0a02e2a044f14f7c24e123002dcff1c05"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:759cfd391a0996345ba94b6a5110fca9c557ad4166d86a6e81ea526c376a01e8"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c61e346ac34b74028ede1c6b4bcecf649d69b707b3ff9dc0fab453821b04d1e"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cb8fc1f8d69b411b8ec0b5f1ffbcaf14c1db95b6bccea21d83610987435f1a4"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3c00c9b7d1ca8165c610437ca0c92e7b5607b2f9076f4eb4b095c85d6e680a1d"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:df0c7a16ebb94452d2909b9a7b3337940e9a87a824c4fc1c7c36bb4404cb0cde"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:45999e7f7ed5c390f2e87ece7f6c56bf979fb213550229e711e45ecc7d42ccb8"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ac170e9e048b40c605358667aca3d94e98f604a18c44bdb4c102e67070f3ac9b"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1b604734bec94f05f81b360a272fc824334267426ae9905ff32dc2be433ab96"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:a793ac733e3d895d96f865f1806f160696422554e46d30105807fdc9841b9f7d"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0806175f2ae5ad4b835ecd87f5f85583316b69f17e97786f7443baaf54b9bb98"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ef12e259e7bc317c7597d4f6ef59b97b913e162d83b421dd0db3d6410f17a244"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea253b368eb41116011add00f8d5726762320b1bda892f744c91997b65754d73"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b9b1f2ad6498445a941d9a4fee096d387fee436e45cc660e72e768d3d8ee611"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:8b14c75979ce932c53b79976a395cb2a8cd3aaf14aef75e8c2cb55a330b9b49d"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:889370d5174a741a62566c003ee8ddba4b04c3f09a97b8000092b7ca83ec9c49"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18fff090441a40ffda8a7f4f18f03dc56ae73f148f1832e109f9bffa85df15"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99a6b36f95c98839ad98f8c553d8507644c880cf1e0a57fe5e3a3f3969040882"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4345c9a27f4310afbb9c01750e9461ff33d6fb74cd2456b107525bbeebcb5be3"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3516e0b6224cf6e43e341d56da15fd33bdc37fa0c06af4f029f7d7dfceceabbc"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:146b9b1f29ead41255387fb07be56dc29639262c0f7344f570eecdcd8d683314"}, + {file = "pyzmq-25.1.2.tar.gz", hash = "sha256:93f1aa311e8bb912e34f004cf186407a4e90eec4f0ecc0efd26056bf7eda0226"}, +] + +[package.dependencies] +cffi = {version = "*", markers = "implementation_name == \"pypy\""} + +[[package]] +name = "qtconsole" +version = "5.5.1" +description = "Jupyter Qt console" +optional = false +python-versions = ">= 3.8" +files = [ + {file = "qtconsole-5.5.1-py3-none-any.whl", hash = "sha256:8c75fa3e9b4ed884880ff7cea90a1b67451219279ec33deaee1d59e3df1a5d2b"}, + {file = "qtconsole-5.5.1.tar.gz", hash = "sha256:a0e806c6951db9490628e4df80caec9669b65149c7ba40f9bf033c025a5b56bc"}, +] + +[package.dependencies] +ipykernel = ">=4.1" +jupyter-client = ">=4.1" +jupyter-core = "*" +packaging = "*" +pygments = "*" +pyzmq = ">=17.1" +qtpy = ">=2.4.0" +traitlets = "<5.2.1 || >5.2.1,<5.2.2 || >5.2.2" + +[package.extras] +doc = ["Sphinx (>=1.3)"] +test = ["flaky", "pytest", "pytest-qt"] + +[[package]] +name = "qtpy" +version = "2.4.1" +description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6)." +optional = false +python-versions = ">=3.7" +files = [ + {file = "QtPy-2.4.1-py3-none-any.whl", hash = "sha256:1c1d8c4fa2c884ae742b069151b0abe15b3f70491f3972698c683b8e38de839b"}, + {file = "QtPy-2.4.1.tar.gz", hash = "sha256:a5a15ffd519550a1361bdc56ffc07fda56a6af7292f17c7b395d4083af632987"}, +] + +[package.dependencies] +packaging = "*" + +[package.extras] +test = ["pytest (>=6,!=7.0.0,!=7.0.1)", "pytest-cov (>=3.0.0)", "pytest-qt"] + +[[package]] +name = "reacton" +version = "1.8.3" +description = "" +optional = false +python-versions = "*" +files = [ + {file = "reacton-1.8.3-py2.py3-none-any.whl", hash = "sha256:36ea1f347345b14e4a9a58c6f866fefa04ec0e46a91c99355aeb756e066b770a"}, + {file = "reacton-1.8.3.tar.gz", hash = "sha256:db0b42242746c902a31220a52efcb8964ba4e1e0cff2c5145b75569547811bff"}, +] + +[package.dependencies] +ipywidgets = "*" +typing-extensions = ">=4.1.1" + +[package.extras] +dev = ["black", "bqplot", "bump2version", "coverage", "flake8", "ipykernel", "ipyvuetify", "jinja2", "mypy", "numpy", "pandas", "pre-commit", "pytest", "pytest-cov"] +generate = ["black", "bqplot", "jinja2", "mypy"] + +[[package]] +name = "referencing" +version = "0.34.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.34.0-py3-none-any.whl", hash = "sha256:d53ae300ceddd3169f1ffa9caf2cb7b769e92657e4fafb23d34b93679116dfd4"}, + {file = "referencing-0.34.0.tar.gz", hash = "sha256:5773bd84ef41799a5a8ca72dc34590c041eb01bf9aa02632b4a973fb0181a844"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +description = "A pure python RFC3339 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, + {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, +] + +[package.dependencies] +six = "*" + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +description = "Pure python rfc3986 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, + {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, +] + +[[package]] +name = "rich" +version = "13.7.1" +description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "rich-13.7.1-py3-none-any.whl", hash = "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222"}, + {file = "rich-13.7.1.tar.gz", hash = "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432"}, +] + +[package.dependencies] +markdown-it-py = ">=2.2.0" +pygments = ">=2.13.0,<3.0.0" + +[package.extras] +jupyter = ["ipywidgets (>=7.5.1,<9)"] + +[[package]] +name = "rich-click" +version = "1.7.4" +description = "Format click help output nicely with rich" +optional = false +python-versions = ">=3.7" +files = [ + {file = "rich-click-1.7.4.tar.gz", hash = "sha256:7ce5de8e4dc0333aec946113529b3eeb349f2e5d2fafee96b9edf8ee36a01395"}, + {file = "rich_click-1.7.4-py3-none-any.whl", hash = "sha256:e363655475c60fec5a3e16a1eb618118ed79e666c365a36006b107c17c93ac4e"}, +] + +[package.dependencies] +click = ">=7" +rich = ">=10.7.0" +typing-extensions = "*" + +[package.extras] +dev = ["flake8", "flake8-docstrings", "mypy", "packaging", "pre-commit", "pytest", "pytest-cov", "types-setuptools"] + +[[package]] +name = "rpds-py" +version = "0.18.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, + {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01e36a39af54a30f28b73096dd39b6802eddd04c90dbe161c1b8dbe22353189f"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d62dec4976954a23d7f91f2f4530852b0c7608116c257833922a896101336c51"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd18772815d5f008fa03d2b9a681ae38d5ae9f0e599f7dda233c439fcaa00d40"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:923d39efa3cfb7279a0327e337a7958bff00cc447fd07a25cddb0a1cc9a6d2da"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39514da80f971362f9267c600b6d459bfbbc549cffc2cef8e47474fddc9b45b1"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a34d557a42aa28bd5c48a023c570219ba2593bcbbb8dc1b98d8cf5d529ab1434"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:93df1de2f7f7239dc9cc5a4a12408ee1598725036bd2dedadc14d94525192fc3"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:34b18ba135c687f4dac449aa5157d36e2cbb7c03cbea4ddbd88604e076aa836e"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0b5dcf9193625afd8ecc92312d6ed78781c46ecbf39af9ad4681fc9f464af88"}, + {file = "rpds_py-0.18.0-cp310-none-win32.whl", hash = "sha256:c4325ff0442a12113a6379af66978c3fe562f846763287ef66bdc1d57925d337"}, + {file = "rpds_py-0.18.0-cp310-none-win_amd64.whl", hash = "sha256:7223a2a5fe0d217e60a60cdae28d6949140dde9c3bcc714063c5b463065e3d66"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3a96e0c6a41dcdba3a0a581bbf6c44bb863f27c541547fb4b9711fd8cf0ffad4"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30f43887bbae0d49113cbaab729a112251a940e9b274536613097ab8b4899cf6"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcb25daa9219b4cf3a0ab24b0eb9a5cc8949ed4dc72acb8fa16b7e1681aa3c58"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d68c93e381010662ab873fea609bf6c0f428b6d0bb00f2c6939782e0818d37bf"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b34b7aa8b261c1dbf7720b5d6f01f38243e9b9daf7e6b8bc1fd4657000062f2c"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e6d75ab12b0bbab7215e5d40f1e5b738aa539598db27ef83b2ec46747df90e1"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8612cd233543a3781bc659c731b9d607de65890085098986dfd573fc2befe5"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aec493917dd45e3c69d00a8874e7cbed844efd935595ef78a0f25f14312e33c6"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:661d25cbffaf8cc42e971dd570d87cb29a665f49f4abe1f9e76be9a5182c4688"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1df3659d26f539ac74fb3b0c481cdf9d725386e3552c6fa2974f4d33d78e544b"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a1ce3ba137ed54f83e56fb983a5859a27d43a40188ba798993812fed73c70836"}, + {file = "rpds_py-0.18.0-cp311-none-win32.whl", hash = "sha256:69e64831e22a6b377772e7fb337533c365085b31619005802a79242fee620bc1"}, + {file = "rpds_py-0.18.0-cp311-none-win_amd64.whl", hash = "sha256:998e33ad22dc7ec7e030b3df701c43630b5bc0d8fbc2267653577e3fec279afa"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7f2facbd386dd60cbbf1a794181e6aa0bd429bd78bfdf775436020172e2a23f0"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d9a5be316c15ffb2b3c405c4ff14448c36b4435be062a7f578ccd8b01f0c4d8"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd5bf1af8efe569654bbef5a3e0a56eca45f87cfcffab31dd8dde70da5982475"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5417558f6887e9b6b65b4527232553c139b57ec42c64570569b155262ac0754f"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:56a737287efecafc16f6d067c2ea0117abadcd078d58721f967952db329a3e5c"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f03bccbd8586e9dd37219bce4d4e0d3ab492e6b3b533e973fa08a112cb2ffc9"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4457a94da0d5c53dc4b3e4de1158bdab077db23c53232f37a3cb7afdb053a4e3"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ab39c1ba9023914297dd88ec3b3b3c3f33671baeb6acf82ad7ce883f6e8e157"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9d54553c1136b50fd12cc17e5b11ad07374c316df307e4cfd6441bea5fb68496"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0af039631b6de0397ab2ba16eaf2872e9f8fca391b44d3d8cac317860a700a3f"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84ffab12db93b5f6bad84c712c92060a2d321b35c3c9960b43d08d0f639d60d7"}, + {file = "rpds_py-0.18.0-cp312-none-win32.whl", hash = "sha256:685537e07897f173abcf67258bee3c05c374fa6fff89d4c7e42fb391b0605e98"}, + {file = "rpds_py-0.18.0-cp312-none-win_amd64.whl", hash = "sha256:e003b002ec72c8d5a3e3da2989c7d6065b47d9eaa70cd8808b5384fbb970f4ec"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:08f9ad53c3f31dfb4baa00da22f1e862900f45908383c062c27628754af2e88e"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0013fe6b46aa496a6749c77e00a3eb07952832ad6166bd481c74bda0dcb6d58"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e32a92116d4f2a80b629778280103d2a510a5b3f6314ceccd6e38006b5e92dcb"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e541ec6f2ec456934fd279a3120f856cd0aedd209fc3852eca563f81738f6861"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bed88b9a458e354014d662d47e7a5baafd7ff81c780fd91584a10d6ec842cb73"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2644e47de560eb7bd55c20fc59f6daa04682655c58d08185a9b95c1970fa1e07"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e8916ae4c720529e18afa0b879473049e95949bf97042e938530e072fde061d"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:465a3eb5659338cf2a9243e50ad9b2296fa15061736d6e26240e713522b6235c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ea7d4a99f3b38c37eac212dbd6ec42b7a5ec51e2c74b5d3223e43c811609e65f"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:67071a6171e92b6da534b8ae326505f7c18022c6f19072a81dcf40db2638767c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:41ef53e7c58aa4ef281da975f62c258950f54b76ec8e45941e93a3d1d8580594"}, + {file = "rpds_py-0.18.0-cp38-none-win32.whl", hash = "sha256:fdea4952db2793c4ad0bdccd27c1d8fdd1423a92f04598bc39425bcc2b8ee46e"}, + {file = "rpds_py-0.18.0-cp38-none-win_amd64.whl", hash = "sha256:7cd863afe7336c62ec78d7d1349a2f34c007a3cc6c2369d667c65aeec412a5b1"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5307def11a35f5ae4581a0b658b0af8178c65c530e94893345bebf41cc139d33"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77f195baa60a54ef9d2de16fbbfd3ff8b04edc0c0140a761b56c267ac11aa467"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39f5441553f1c2aed4de4377178ad8ff8f9d733723d6c66d983d75341de265ab"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a00312dea9310d4cb7dbd7787e722d2e86a95c2db92fbd7d0155f97127bcb40"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f2fc11e8fe034ee3c34d316d0ad8808f45bc3b9ce5857ff29d513f3ff2923a1"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:586f8204935b9ec884500498ccc91aa869fc652c40c093bd9e1471fbcc25c022"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddc2f4dfd396c7bfa18e6ce371cba60e4cf9d2e5cdb71376aa2da264605b60b9"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ddcba87675b6d509139d1b521e0c8250e967e63b5909a7e8f8944d0f90ff36f"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7bd339195d84439cbe5771546fe8a4e8a7a045417d8f9de9a368c434e42a721e"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:d7c36232a90d4755b720fbd76739d8891732b18cf240a9c645d75f00639a9024"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6b0817e34942b2ca527b0e9298373e7cc75f429e8da2055607f4931fded23e20"}, + {file = "rpds_py-0.18.0-cp39-none-win32.whl", hash = "sha256:99f70b740dc04d09e6b2699b675874367885217a2e9f782bdf5395632ac663b7"}, + {file = "rpds_py-0.18.0-cp39-none-win_amd64.whl", hash = "sha256:6ef687afab047554a2d366e112dd187b62d261d49eb79b77e386f94644363294"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ad36cfb355e24f1bd37cac88c112cd7730873f20fb0bdaf8ba59eedf8216079f"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:36b3ee798c58ace201289024b52788161e1ea133e4ac93fba7d49da5fec0ef9e"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8a2f084546cc59ea99fda8e070be2fd140c3092dc11524a71aa8f0f3d5a55ca"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e4461d0f003a0aa9be2bdd1b798a041f177189c1a0f7619fe8c95ad08d9a45d7"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8db715ebe3bb7d86d77ac1826f7d67ec11a70dbd2376b7cc214199360517b641"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:793968759cd0d96cac1e367afd70c235867831983f876a53389ad869b043c948"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66e6a3af5a75363d2c9a48b07cb27c4ea542938b1a2e93b15a503cdfa8490795"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ef0befbb5d79cf32d0266f5cff01545602344eda89480e1dd88aca964260b18"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d4acf42190d449d5e89654d5c1ed3a4f17925eec71f05e2a41414689cda02d1"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a5f446dd5055667aabaee78487f2b5ab72e244f9bc0b2ffebfeec79051679984"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9dbbeb27f4e70bfd9eec1be5477517365afe05a9b2c441a0b21929ee61048124"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:22806714311a69fd0af9b35b7be97c18a0fc2826e6827dbb3a8c94eac6cf7eeb"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b34ae4636dfc4e76a438ab826a0d1eed2589ca7d9a1b2d5bb546978ac6485461"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c8370641f1a7f0e0669ddccca22f1da893cef7628396431eb445d46d893e5cd"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c8362467a0fdeccd47935f22c256bec5e6abe543bf0d66e3d3d57a8fb5731863"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11a8c85ef4a07a7638180bf04fe189d12757c696eb41f310d2426895356dcf05"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b316144e85316da2723f9d8dc75bada12fa58489a527091fa1d5a612643d1a0e"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf1ea2e34868f6fbf070e1af291c8180480310173de0b0c43fc38a02929fc0e3"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e546e768d08ad55b20b11dbb78a745151acbd938f8f00d0cfbabe8b0199b9880"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4901165d170a5fde6f589acb90a6b33629ad1ec976d4529e769c6f3d885e3e80"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:618a3d6cae6ef8ec88bb76dd80b83cfe415ad4f1d942ca2a903bf6b6ff97a2da"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ed4eb745efbff0a8e9587d22a84be94a5eb7d2d99c02dacf7bd0911713ed14dd"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c81e5f372cd0dc5dc4809553d34f832f60a46034a5f187756d9b90586c2c307"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:43fbac5f22e25bee1d482c97474f930a353542855f05c1161fd804c9dc74a09d"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d7faa6f14017c0b1e69f5e2c357b998731ea75a442ab3841c0dbbbfe902d2c4"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:08231ac30a842bd04daabc4d71fddd7e6d26189406d5a69535638e4dcb88fe76"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:044a3e61a7c2dafacae99d1e722cc2d4c05280790ec5a05031b3876809d89a5c"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f26b5bd1079acdb0c7a5645e350fe54d16b17bfc5e71f371c449383d3342e17"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:482103aed1dfe2f3b71a58eff35ba105289b8d862551ea576bd15479aba01f66"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1374f4129f9bcca53a1bba0bb86bf78325a0374577cf7e9e4cd046b1e6f20e24"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:635dc434ff724b178cb192c70016cc0ad25a275228f749ee0daf0eddbc8183b1"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:bc362ee4e314870a70f4ae88772d72d877246537d9f8cb8f7eacf10884862432"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4832d7d380477521a8c1644bbab6588dfedea5e30a7d967b5fb75977c45fd77f"}, + {file = "rpds_py-0.18.0.tar.gz", hash = "sha256:42821446ee7a76f5d9f71f9e33a4fb2ffd724bb3e7f93386150b61a43115788d"}, +] + +[[package]] +name = "salib" +version = "1.4.8" +description = "Tools for global sensitivity analysis. Contains Sobol', Morris, FAST, DGSM, PAWN, HDMR, Moment Independent and fractional factorial methods" +optional = false +python-versions = ">=3.8" +files = [ + {file = "salib-1.4.8-py3-none-any.whl", hash = "sha256:fef0f0637a97f1adca35a435e41274add6275ea42428f04d3e83deb720cc0234"}, + {file = "salib-1.4.8.tar.gz", hash = "sha256:86e7cca79f73f3c52825101cacfb2d51d95adfb7771e7e0ebcd632bffa2cab82"}, +] + +[package.dependencies] +matplotlib = ">=3.2.2" +multiprocess = "*" +numpy = ">=1.20.3" +pandas = ">=1.2" +scipy = ">=1.7.3" + +[package.extras] +dev = ["hatch", "pre-commit", "salib[distributed]", "salib[doc]", "salib[test]"] +distributed = ["pathos (>=0.2.5)"] +doc = ["myst-parser", "numpydoc", "pydata-sphinx-theme (>=0.10)", "sphinx"] +test = ["pytest", "pytest-cov", "salib[distributed]"] + +[[package]] +name = "scipy" +version = "1.12.0" +description = "Fundamental algorithms for scientific computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "scipy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:78e4402e140879387187f7f25d91cc592b3501a2e51dfb320f48dfb73565f10b"}, + {file = "scipy-1.12.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5f00ebaf8de24d14b8449981a2842d404152774c1a1d880c901bf454cb8e2a1"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e53958531a7c695ff66c2e7bb7b79560ffdc562e2051644c5576c39ff8efb563"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e32847e08da8d895ce09d108a494d9eb78974cf6de23063f93306a3e419960c"}, + {file = "scipy-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4c1020cad92772bf44b8e4cdabc1df5d87376cb219742549ef69fc9fd86282dd"}, + {file = "scipy-1.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:75ea2a144096b5e39402e2ff53a36fecfd3b960d786b7efd3c180e29c39e53f2"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:408c68423f9de16cb9e602528be4ce0d6312b05001f3de61fe9ec8b1263cad08"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5adfad5dbf0163397beb4aca679187d24aec085343755fcdbdeb32b3679f254c"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3003652496f6e7c387b1cf63f4bb720951cfa18907e998ea551e6de51a04467"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8066bce124ee5531d12a74b617d9ac0ea59245246410e19bca549656d9a40a"}, + {file = "scipy-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8bee4993817e204d761dba10dbab0774ba5a8612e57e81319ea04d84945375ba"}, + {file = "scipy-1.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:a24024d45ce9a675c1fb8494e8e5244efea1c7a09c60beb1eeb80373d0fecc70"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e7e76cc48638228212c747ada851ef355c2bb5e7f939e10952bc504c11f4e372"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f7ce148dffcd64ade37b2df9315541f9adad6efcaa86866ee7dd5db0c8f041c3"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c39f92041f490422924dfdb782527a4abddf4707616e07b021de33467f917bc"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7ebda398f86e56178c2fa94cad15bf457a218a54a35c2a7b4490b9f9cb2676c"}, + {file = "scipy-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:95e5c750d55cf518c398a8240571b0e0782c2d5a703250872f36eaf737751338"}, + {file = "scipy-1.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:e646d8571804a304e1da01040d21577685ce8e2db08ac58e543eaca063453e1c"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:913d6e7956c3a671de3b05ccb66b11bc293f56bfdef040583a7221d9e22a2e35"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba1b0c7256ad75401c73e4b3cf09d1f176e9bd4248f0d3112170fb2ec4db067"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:730badef9b827b368f351eacae2e82da414e13cf8bd5051b4bdfd720271a5371"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6546dc2c11a9df6926afcbdd8a3edec28566e4e785b915e849348c6dd9f3f490"}, + {file = "scipy-1.12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:196ebad3a4882081f62a5bf4aeb7326aa34b110e533aab23e4374fcccb0890dc"}, + {file = "scipy-1.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:b360f1b6b2f742781299514e99ff560d1fe9bd1bff2712894b52abe528d1fd1e"}, + {file = "scipy-1.12.0.tar.gz", hash = "sha256:4bf5abab8a36d20193c698b0f1fc282c1d083c94723902c447e5d2f1780936a3"}, +] + +[package.dependencies] +numpy = ">=1.22.4,<1.29.0" + +[package.extras] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +test = ["asv", "gmpy2", "hypothesis", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + +[[package]] +name = "send2trash" +version = "1.8.2" +description = "Send file to trash natively under Mac OS X, Windows and Linux" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "Send2Trash-1.8.2-py3-none-any.whl", hash = "sha256:a384719d99c07ce1eefd6905d2decb6f8b7ed054025bb0e618919f945de4f679"}, + {file = "Send2Trash-1.8.2.tar.gz", hash = "sha256:c132d59fa44b9ca2b1699af5c86f57ce9f4c5eb56629d5d55fbb7a35f84e2312"}, +] + +[package.extras] +nativelib = ["pyobjc-framework-Cocoa", "pywin32"] +objc = ["pyobjc-framework-Cocoa"] +win32 = ["pywin32"] + +[[package]] +name = "shapely" +version = "2.0.3" +description = "Manipulation and analysis of geometric objects" +optional = false +python-versions = ">=3.7" +files = [ + {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:af7e9abe180b189431b0f490638281b43b84a33a960620e6b2e8d3e3458b61a1"}, + {file = "shapely-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:98040462b36ced9671e266b95c326b97f41290d9d17504a1ee4dc313a7667b9c"}, + {file = "shapely-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:71eb736ef2843f23473c6e37f6180f90f0a35d740ab284321548edf4e55d9a52"}, + {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:881eb9dbbb4a6419667e91fcb20313bfc1e67f53dbb392c6840ff04793571ed1"}, + {file = "shapely-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f10d2ccf0554fc0e39fad5886c839e47e207f99fdf09547bc687a2330efda35b"}, + {file = "shapely-2.0.3-cp310-cp310-win32.whl", hash = "sha256:6dfdc077a6fcaf74d3eab23a1ace5abc50c8bce56ac7747d25eab582c5a2990e"}, + {file = "shapely-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:64c5013dacd2d81b3bb12672098a0b2795c1bf8190cfc2980e380f5ef9d9e4d9"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:56cee3e4e8159d6f2ce32e421445b8e23154fd02a0ac271d6a6c0b266a8e3cce"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:619232c8276fded09527d2a9fd91a7885ff95c0ff9ecd5e3cb1e34fbb676e2ae"}, + {file = "shapely-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b2a7d256db6f5b4b407dc0c98dd1b2fcf1c9c5814af9416e5498d0a2e4307a4b"}, + {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e45f0c8cd4583647db3216d965d49363e6548c300c23fd7e57ce17a03f824034"}, + {file = "shapely-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13cb37d3826972a82748a450328fe02a931dcaed10e69a4d83cc20ba021bc85f"}, + {file = "shapely-2.0.3-cp311-cp311-win32.whl", hash = "sha256:9302d7011e3e376d25acd30d2d9e70d315d93f03cc748784af19b00988fc30b1"}, + {file = "shapely-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6b464f2666b13902835f201f50e835f2f153f37741db88f68c7f3b932d3505fa"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:e86e7cb8e331a4850e0c2a8b2d66dc08d7a7b301b8d1d34a13060e3a5b4b3b55"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c91981c99ade980fc49e41a544629751a0ccd769f39794ae913e53b07b2f78b9"}, + {file = "shapely-2.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd45d456983dc60a42c4db437496d3f08a4201fbf662b69779f535eb969660af"}, + {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:882fb1ffc7577e88c1194f4f1757e277dc484ba096a3b94844319873d14b0f2d"}, + {file = "shapely-2.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9f2d93bff2ea52fa93245798cddb479766a18510ea9b93a4fb9755c79474889"}, + {file = "shapely-2.0.3-cp312-cp312-win32.whl", hash = "sha256:99abad1fd1303b35d991703432c9481e3242b7b3a393c186cfb02373bf604004"}, + {file = "shapely-2.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:6f555fe3304a1f40398977789bc4fe3c28a11173196df9ece1e15c5bc75a48db"}, + {file = "shapely-2.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:a983cc418c1fa160b7d797cfef0e0c9f8c6d5871e83eae2c5793fce6a837fad9"}, + {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18bddb8c327f392189a8d5d6b9a858945722d0bb95ccbd6a077b8e8fc4c7890d"}, + {file = "shapely-2.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:442f4dcf1eb58c5a4e3428d88e988ae153f97ab69a9f24e07bf4af8038536325"}, + {file = "shapely-2.0.3-cp37-cp37m-win32.whl", hash = "sha256:31a40b6e3ab00a4fd3a1d44efb2482278642572b8e0451abdc8e0634b787173e"}, + {file = "shapely-2.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:59b16976c2473fec85ce65cc9239bef97d4205ab3acead4e6cdcc72aee535679"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:705efbce1950a31a55b1daa9c6ae1c34f1296de71ca8427974ec2f27d57554e3"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:601c5c0058a6192df704cb889439f64994708563f57f99574798721e9777a44b"}, + {file = "shapely-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f24ecbb90a45c962b3b60d8d9a387272ed50dc010bfe605f1d16dfc94772d8a1"}, + {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8c2a2989222c6062f7a0656e16276c01bb308bc7e5d999e54bf4e294ce62e76"}, + {file = "shapely-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42bceb9bceb3710a774ce04908fda0f28b291323da2688f928b3f213373b5aee"}, + {file = "shapely-2.0.3-cp38-cp38-win32.whl", hash = "sha256:54d925c9a311e4d109ec25f6a54a8bd92cc03481a34ae1a6a92c1fe6729b7e01"}, + {file = "shapely-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:300d203b480a4589adefff4c4af0b13919cd6d760ba3cbb1e56275210f96f654"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:083d026e97b6c1f4a9bd2a9171c7692461092ed5375218170d91705550eecfd5"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:27b6e1910094d93e9627f2664121e0e35613262fc037051680a08270f6058daf"}, + {file = "shapely-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:71b2de56a9e8c0e5920ae5ddb23b923490557ac50cb0b7fa752761bf4851acde"}, + {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d279e56bbb68d218d63f3efc80c819cedcceef0e64efbf058a1df89dc57201b"}, + {file = "shapely-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88566d01a30f0453f7d038db46bc83ce125e38e47c5f6bfd4c9c287010e9bf74"}, + {file = "shapely-2.0.3-cp39-cp39-win32.whl", hash = "sha256:58afbba12c42c6ed44c4270bc0e22f3dadff5656d711b0ad335c315e02d04707"}, + {file = "shapely-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:5026b30433a70911979d390009261b8c4021ff87c7c3cbd825e62bb2ffa181bc"}, + {file = "shapely-2.0.3.tar.gz", hash = "sha256:4d65d0aa7910af71efa72fd6447e02a8e5dd44da81a983de9d736d6e6ccbe674"}, +] + +[package.dependencies] +numpy = ">=1.14,<2" + +[package.extras] +docs = ["matplotlib", "numpydoc (==1.1.*)", "sphinx", "sphinx-book-theme", "sphinx-remove-toctrees"] +test = ["pytest", "pytest-cov"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + +[[package]] +name = "solara" +version = "1.30.0" +description = "" +optional = false +python-versions = "*" +files = [ + {file = "solara-1.30.0-py2.py3-none-any.whl", hash = "sha256:ea7a996cac7def5b05fc2bfa6821e2cae0b7fe0d142c66b77cf2af4a66ad6b29"}, + {file = "solara-1.30.0.tar.gz", hash = "sha256:718731c674628265c09560f2990794b6d308bdcfc0a07829bffae2f50c85f155"}, +] + +[package.dependencies] +cachetools = "*" +click = ">=7.1.0" +filelock = "*" +humanize = "*" +ipykernel = "*" +ipyvue = ">=1.9.0" +ipyvuetify = ">=1.8.10" +ipywidgets = "*" +jinja2 = "*" +jupyter-client = ">=7.0.0" +markdown = "*" +markupsafe = "*" +nbformat = "*" +pymdown-extensions = "*" +reacton = ">=1.7.1" +requests = "*" +rich-click = "*" +starlette = "*" +uvicorn = "*" +watchdog = "*" +watchfiles = {version = "*", markers = "python_version > \"3.6\""} +websockets = "*" + +[package.extras] +assets = ["solara-assets (==1.30.0)"] +dev = ["black", "bqplot", "bqplot-image-gl", "bump2version", "codespell", "dask[dataframe]", "flake8", "ipyreact", "mdit-py-plugins", "mypy", "playwright", "plotly", "polars", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytest-playwright", "pytest-timeout", "python-dotenv", "types-markdown", "types-pyyaml", "types-requests", "vaex-core", "vaex-hdf5", "vaex-jupyter"] +documentation = ["altair", "bqplot", "folium", "ipycanvas", "ipyleaflet", "matplotlib", "numpy", "openai", "plotly", "tiktoken", "vaex-core", "vaex-hdf5", "vega-datasets"] +extra = ["numpy", "pillow", "pygments", "pygments (==2.10)"] +flask = ["flask", "flask-sock"] +pytest = ["jupyterlab", "pillow", "pixelmatch", "playwright", "pytest", "pytest-playwright", "voila"] + +[[package]] +name = "soupsieve" +version = "2.5" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.29" +description = "Database Abstraction Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "SQLAlchemy-2.0.29-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4c142852ae192e9fe5aad5c350ea6befe9db14370b34047e1f0f7cf99e63c63b"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:99a1e69d4e26f71e750e9ad6fdc8614fbddb67cfe2173a3628a2566034e223c7"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ef3fbccb4058355053c51b82fd3501a6e13dd808c8d8cd2561e610c5456013c"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d6753305936eddc8ed190e006b7bb33a8f50b9854823485eed3a886857ab8d1"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0f3ca96af060a5250a8ad5a63699180bc780c2edf8abf96c58af175921df847a"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c4520047006b1d3f0d89e0532978c0688219857eb2fee7c48052560ae76aca1e"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-win32.whl", hash = "sha256:b2a0e3cf0caac2085ff172c3faacd1e00c376e6884b5bc4dd5b6b84623e29e4f"}, + {file = "SQLAlchemy-2.0.29-cp310-cp310-win_amd64.whl", hash = "sha256:01d10638a37460616708062a40c7b55f73e4d35eaa146781c683e0fa7f6c43fb"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:308ef9cb41d099099fffc9d35781638986870b29f744382904bf9c7dadd08513"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:296195df68326a48385e7a96e877bc19aa210e485fa381c5246bc0234c36c78e"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a13b917b4ffe5a0a31b83d051d60477819ddf18276852ea68037a144a506efb9"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f6d971255d9ddbd3189e2e79d743ff4845c07f0633adfd1de3f63d930dbe673"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:61405ea2d563407d316c63a7b5271ae5d274a2a9fbcd01b0aa5503635699fa1e"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:de7202ffe4d4a8c1e3cde1c03e01c1a3772c92858837e8f3879b497158e4cb44"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-win32.whl", hash = "sha256:b5d7ed79df55a731749ce65ec20d666d82b185fa4898430b17cb90c892741520"}, + {file = "SQLAlchemy-2.0.29-cp311-cp311-win_amd64.whl", hash = "sha256:205f5a2b39d7c380cbc3b5dcc8f2762fb5bcb716838e2d26ccbc54330775b003"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d96710d834a6fb31e21381c6d7b76ec729bd08c75a25a5184b1089141356171f"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:52de4736404e53c5c6a91ef2698c01e52333988ebdc218f14c833237a0804f1b"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c7b02525ede2a164c5fa5014915ba3591730f2cc831f5be9ff3b7fd3e30958e"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dfefdb3e54cd15f5d56fd5ae32f1da2d95d78319c1f6dfb9bcd0eb15d603d5d"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a88913000da9205b13f6f195f0813b6ffd8a0c0c2bd58d499e00a30eb508870c"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fecd5089c4be1bcc37c35e9aa678938d2888845a134dd016de457b942cf5a758"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-win32.whl", hash = "sha256:8197d6f7a3d2b468861ebb4c9f998b9df9e358d6e1cf9c2a01061cb9b6cf4e41"}, + {file = "SQLAlchemy-2.0.29-cp312-cp312-win_amd64.whl", hash = "sha256:9b19836ccca0d321e237560e475fd99c3d8655d03da80c845c4da20dda31b6e1"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:87a1d53a5382cdbbf4b7619f107cc862c1b0a4feb29000922db72e5a66a5ffc0"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a0732dffe32333211801b28339d2a0babc1971bc90a983e3035e7b0d6f06b93"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90453597a753322d6aa770c5935887ab1fc49cc4c4fdd436901308383d698b4b"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ea311d4ee9a8fa67f139c088ae9f905fcf0277d6cd75c310a21a88bf85e130f5"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:5f20cb0a63a3e0ec4e169aa8890e32b949c8145983afa13a708bc4b0a1f30e03"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-win32.whl", hash = "sha256:e5bbe55e8552019c6463709b39634a5fc55e080d0827e2a3a11e18eb73f5cdbd"}, + {file = "SQLAlchemy-2.0.29-cp37-cp37m-win_amd64.whl", hash = "sha256:c2f9c762a2735600654c654bf48dad388b888f8ce387b095806480e6e4ff6907"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7e614d7a25a43a9f54fcce4675c12761b248547f3d41b195e8010ca7297c369c"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:471fcb39c6adf37f820350c28aac4a7df9d3940c6548b624a642852e727ea586"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:988569c8732f54ad3234cf9c561364221a9e943b78dc7a4aaf35ccc2265f1930"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dddaae9b81c88083e6437de95c41e86823d150f4ee94bf24e158a4526cbead01"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:334184d1ab8f4c87f9652b048af3f7abea1c809dfe526fb0435348a6fef3d380"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:38b624e5cf02a69b113c8047cf7f66b5dfe4a2ca07ff8b8716da4f1b3ae81567"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-win32.whl", hash = "sha256:bab41acf151cd68bc2b466deae5deeb9e8ae9c50ad113444151ad965d5bf685b"}, + {file = "SQLAlchemy-2.0.29-cp38-cp38-win_amd64.whl", hash = "sha256:52c8011088305476691b8750c60e03b87910a123cfd9ad48576d6414b6ec2a1d"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:3071ad498896907a5ef756206b9dc750f8e57352113c19272bdfdc429c7bd7de"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:dba622396a3170974f81bad49aacebd243455ec3cc70615aeaef9e9613b5bca5"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b184e3de58009cc0bf32e20f137f1ec75a32470f5fede06c58f6c355ed42a72"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c37f1050feb91f3d6c32f864d8e114ff5545a4a7afe56778d76a9aec62638ba"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bda7ce59b06d0f09afe22c56714c65c957b1068dee3d5e74d743edec7daba552"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:25664e18bef6dc45015b08f99c63952a53a0a61f61f2e48a9e70cec27e55f699"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-win32.whl", hash = "sha256:77d29cb6c34b14af8a484e831ab530c0f7188f8efed1c6a833a2c674bf3c26ec"}, + {file = "SQLAlchemy-2.0.29-cp39-cp39-win_amd64.whl", hash = "sha256:04c487305ab035a9548f573763915189fc0fe0824d9ba28433196f8436f1449c"}, + {file = "SQLAlchemy-2.0.29-py3-none-any.whl", hash = "sha256:dc4ee2d4ee43251905f88637d5281a8d52e916a021384ec10758826f5cbae305"}, + {file = "SQLAlchemy-2.0.29.tar.gz", hash = "sha256:bd9566b8e58cabd700bc367b60e90d9349cd16f0984973f98a9a09f9c64e86f0"}, +] + +[package.dependencies] +greenlet = {version = "!=0.4.17", markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\""} +typing-extensions = ">=4.6.0" + +[package.extras] +aiomysql = ["aiomysql (>=0.2.0)", "greenlet (!=0.4.17)"] +aioodbc = ["aioodbc", "greenlet (!=0.4.17)"] +aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] +asyncio = ["greenlet (!=0.4.17)"] +asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mssql = ["pyodbc"] +mssql-pymssql = ["pymssql"] +mssql-pyodbc = ["pyodbc"] +mypy = ["mypy (>=0.910)"] +mysql = ["mysqlclient (>=1.4.0)"] +mysql-connector = ["mysql-connector-python"] +oracle = ["cx_oracle (>=8)"] +oracle-oracledb = ["oracledb (>=1.0.1)"] +postgresql = ["psycopg2 (>=2.7)"] +postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.29.1)"] +postgresql-psycopg = ["psycopg (>=3.0.7)"] +postgresql-psycopg2binary = ["psycopg2-binary"] +postgresql-psycopg2cffi = ["psycopg2cffi"] +postgresql-psycopgbinary = ["psycopg[binary] (>=3.0.7)"] +pymysql = ["pymysql"] +sqlcipher = ["sqlcipher3_binary"] + +[[package]] +name = "stack-data" +version = "0.6.3" +description = "Extract data from python stack frames and tracebacks for informative displays" +optional = false +python-versions = "*" +files = [ + {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, + {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, +] + +[package.dependencies] +asttokens = ">=2.1.0" +executing = ">=1.2.0" +pure-eval = "*" + +[package.extras] +tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] + +[[package]] +name = "starlette" +version = "0.37.2" +description = "The little ASGI library that shines." +optional = false +python-versions = ">=3.8" +files = [ + {file = "starlette-0.37.2-py3-none-any.whl", hash = "sha256:6fe59f29268538e5d0d182f2791a479a0c64638e6935d1c6989e63fb2699c6ee"}, + {file = "starlette-0.37.2.tar.gz", hash = "sha256:9af890290133b79fc3db55474ade20f6220a364a0402e0b556e7cd5e1e093823"}, +] + +[package.dependencies] +anyio = ">=3.4.0,<5" + +[package.extras] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.7)", "pyyaml"] + +[[package]] +name = "terminado" +version = "0.18.1" +description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." +optional = false +python-versions = ">=3.8" +files = [ + {file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"}, + {file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"}, +] + +[package.dependencies] +ptyprocess = {version = "*", markers = "os_name != \"nt\""} +pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} +tornado = ">=6.1.0" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] +typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] + +[[package]] +name = "text-unidecode" +version = "1.3" +description = "The most basic Text::Unidecode port" +optional = false +python-versions = "*" +files = [ + {file = "text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93"}, + {file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"}, +] + +[[package]] +name = "tinycss2" +version = "1.2.1" +description = "A tiny CSS parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tinycss2-1.2.1-py3-none-any.whl", hash = "sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847"}, + {file = "tinycss2-1.2.1.tar.gz", hash = "sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627"}, +] + +[package.dependencies] +webencodings = ">=0.4" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["flake8", "isort", "pytest"] + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "tornado" +version = "6.4" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">= 3.8" +files = [ + {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, + {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f"}, + {file = "tornado-6.4-cp38-abi3-win32.whl", hash = "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052"}, + {file = "tornado-6.4-cp38-abi3-win_amd64.whl", hash = "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63"}, + {file = "tornado-6.4.tar.gz", hash = "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee"}, +] + +[[package]] +name = "tqdm" +version = "4.66.2" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.2-py3-none-any.whl", hash = "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9"}, + {file = "tqdm-4.66.2.tar.gz", hash = "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "traitlets" +version = "5.14.2" +description = "Traitlets Python configuration system" +optional = false +python-versions = ">=3.8" +files = [ + {file = "traitlets-5.14.2-py3-none-any.whl", hash = "sha256:fcdf85684a772ddeba87db2f398ce00b40ff550d1528c03c14dbf6a02003cd80"}, + {file = "traitlets-5.14.2.tar.gz", hash = "sha256:8cdd83c040dab7d1dee822678e5f5d100b514f7b72b01615b26fc5718916fdf9"}, +] + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<8.1)", "pytest-mock", "pytest-mypy-testing"] + +[[package]] +name = "types-python-dateutil" +version = "2.9.0.20240316" +description = "Typing stubs for python-dateutil" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202"}, + {file = "types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b"}, +] + +[[package]] +name = "typing-extensions" +version = "4.10.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, +] + +[[package]] +name = "tzdata" +version = "2024.1" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, + {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +description = "RFC 6570 URI Template Processor" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, + {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, +] + +[package.extras] +dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-modern-annotations", "flake8-noqa", "flake8-pyproject", "flake8-requirements", "flake8-typechecking-import", "flake8-use-fstring", "mypy", "pep8-naming", "types-PyYAML"] + +[[package]] +name = "urllib3" +version = "2.2.1" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, + {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "uvicorn" +version = "0.29.0" +description = "The lightning-fast ASGI server." +optional = false +python-versions = ">=3.8" +files = [ + {file = "uvicorn-0.29.0-py3-none-any.whl", hash = "sha256:2c2aac7ff4f4365c206fd773a39bf4ebd1047c238f8b8268ad996829323473de"}, + {file = "uvicorn-0.29.0.tar.gz", hash = "sha256:6a69214c0b6a087462412670b3ef21224fa48cae0e452b5883e8e8bdfdd11dd0"}, +] + +[package.dependencies] +click = ">=7.0" +h11 = ">=0.8" +typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""} + +[package.extras] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] + +[[package]] +name = "watchdog" +version = "4.0.0" +description = "Filesystem events monitoring" +optional = false +python-versions = ">=3.8" +files = [ + {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:39cb34b1f1afbf23e9562501673e7146777efe95da24fab5707b88f7fb11649b"}, + {file = "watchdog-4.0.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c522392acc5e962bcac3b22b9592493ffd06d1fc5d755954e6be9f4990de932b"}, + {file = "watchdog-4.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6c47bdd680009b11c9ac382163e05ca43baf4127954c5f6d0250e7d772d2b80c"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8350d4055505412a426b6ad8c521bc7d367d1637a762c70fdd93a3a0d595990b"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c17d98799f32e3f55f181f19dd2021d762eb38fdd381b4a748b9f5a36738e935"}, + {file = "watchdog-4.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4986db5e8880b0e6b7cd52ba36255d4793bf5cdc95bd6264806c233173b1ec0b"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:11e12fafb13372e18ca1bbf12d50f593e7280646687463dd47730fd4f4d5d257"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5369136a6474678e02426bd984466343924d1df8e2fd94a9b443cb7e3aa20d19"}, + {file = "watchdog-4.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76ad8484379695f3fe46228962017a7e1337e9acadafed67eb20aabb175df98b"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:45cc09cc4c3b43fb10b59ef4d07318d9a3ecdbff03abd2e36e77b6dd9f9a5c85"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:eed82cdf79cd7f0232e2fdc1ad05b06a5e102a43e331f7d041e5f0e0a34a51c4"}, + {file = "watchdog-4.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ba30a896166f0fee83183cec913298151b73164160d965af2e93a20bbd2ab605"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:d18d7f18a47de6863cd480734613502904611730f8def45fc52a5d97503e5101"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2895bf0518361a9728773083908801a376743bcc37dfa252b801af8fd281b1ca"}, + {file = "watchdog-4.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:87e9df830022488e235dd601478c15ad73a0389628588ba0b028cb74eb72fed8"}, + {file = "watchdog-4.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6e949a8a94186bced05b6508faa61b7adacc911115664ccb1923b9ad1f1ccf7b"}, + {file = "watchdog-4.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:6a4db54edea37d1058b08947c789a2354ee02972ed5d1e0dca9b0b820f4c7f92"}, + {file = "watchdog-4.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d31481ccf4694a8416b681544c23bd271f5a123162ab603c7d7d2dd7dd901a07"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:8fec441f5adcf81dd240a5fe78e3d83767999771630b5ddfc5867827a34fa3d3"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_armv7l.whl", hash = "sha256:6a9c71a0b02985b4b0b6d14b875a6c86ddea2fdbebd0c9a720a806a8bbffc69f"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_i686.whl", hash = "sha256:557ba04c816d23ce98a06e70af6abaa0485f6d94994ec78a42b05d1c03dcbd50"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64.whl", hash = "sha256:d0f9bd1fd919134d459d8abf954f63886745f4660ef66480b9d753a7c9d40927"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:f9b2fdca47dc855516b2d66eef3c39f2672cbf7e7a42e7e67ad2cbfcd6ba107d"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_s390x.whl", hash = "sha256:73c7a935e62033bd5e8f0da33a4dcb763da2361921a69a5a95aaf6c93aa03a87"}, + {file = "watchdog-4.0.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:6a80d5cae8c265842c7419c560b9961561556c4361b297b4c431903f8c33b269"}, + {file = "watchdog-4.0.0-py3-none-win32.whl", hash = "sha256:8f9a542c979df62098ae9c58b19e03ad3df1c9d8c6895d96c0d51da17b243b1c"}, + {file = "watchdog-4.0.0-py3-none-win_amd64.whl", hash = "sha256:f970663fa4f7e80401a7b0cbeec00fa801bf0287d93d48368fc3e6fa32716245"}, + {file = "watchdog-4.0.0-py3-none-win_ia64.whl", hash = "sha256:9a03e16e55465177d416699331b0f3564138f1807ecc5f2de9d55d8f188d08c7"}, + {file = "watchdog-4.0.0.tar.gz", hash = "sha256:e3e7065cbdabe6183ab82199d7a4f6b3ba0a438c5a512a68559846ccb76a78ec"}, +] + +[package.extras] +watchmedo = ["PyYAML (>=3.10)"] + +[[package]] +name = "watchfiles" +version = "0.21.0" +description = "Simple, modern and high performance file watching and code reload in python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "watchfiles-0.21.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:27b4035013f1ea49c6c0b42d983133b136637a527e48c132d368eb19bf1ac6aa"}, + {file = "watchfiles-0.21.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c81818595eff6e92535ff32825f31c116f867f64ff8cdf6562cd1d6b2e1e8f3e"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:6c107ea3cf2bd07199d66f156e3ea756d1b84dfd43b542b2d870b77868c98c03"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d9ac347653ebd95839a7c607608703b20bc07e577e870d824fa4801bc1cb124"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5eb86c6acb498208e7663ca22dbe68ca2cf42ab5bf1c776670a50919a56e64ab"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f564bf68404144ea6b87a78a3f910cc8de216c6b12a4cf0b27718bf4ec38d303"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d0f32ebfaa9c6011f8454994f86108c2eb9c79b8b7de00b36d558cadcedaa3d"}, + {file = "watchfiles-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b6d45d9b699ecbac6c7bd8e0a2609767491540403610962968d258fd6405c17c"}, + {file = "watchfiles-0.21.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:aff06b2cac3ef4616e26ba17a9c250c1fe9dd8a5d907d0193f84c499b1b6e6a9"}, + {file = "watchfiles-0.21.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d9792dff410f266051025ecfaa927078b94cc7478954b06796a9756ccc7e14a9"}, + {file = "watchfiles-0.21.0-cp310-none-win32.whl", hash = "sha256:214cee7f9e09150d4fb42e24919a1e74d8c9b8a9306ed1474ecaddcd5479c293"}, + {file = "watchfiles-0.21.0-cp310-none-win_amd64.whl", hash = "sha256:1ad7247d79f9f55bb25ab1778fd47f32d70cf36053941f07de0b7c4e96b5d235"}, + {file = "watchfiles-0.21.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:668c265d90de8ae914f860d3eeb164534ba2e836811f91fecc7050416ee70aa7"}, + {file = "watchfiles-0.21.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a23092a992e61c3a6a70f350a56db7197242f3490da9c87b500f389b2d01eef"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:e7941bbcfdded9c26b0bf720cb7e6fd803d95a55d2c14b4bd1f6a2772230c586"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11cd0c3100e2233e9c53106265da31d574355c288e15259c0d40a4405cbae317"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d78f30cbe8b2ce770160d3c08cff01b2ae9306fe66ce899b73f0409dc1846c1b"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6674b00b9756b0af620aa2a3346b01f8e2a3dc729d25617e1b89cf6af4a54eb1"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fd7ac678b92b29ba630d8c842d8ad6c555abda1b9ef044d6cc092dacbfc9719d"}, + {file = "watchfiles-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c873345680c1b87f1e09e0eaf8cf6c891b9851d8b4d3645e7efe2ec20a20cc7"}, + {file = "watchfiles-0.21.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:49f56e6ecc2503e7dbe233fa328b2be1a7797d31548e7a193237dcdf1ad0eee0"}, + {file = "watchfiles-0.21.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:02d91cbac553a3ad141db016e3350b03184deaafeba09b9d6439826ee594b365"}, + {file = "watchfiles-0.21.0-cp311-none-win32.whl", hash = "sha256:ebe684d7d26239e23d102a2bad2a358dedf18e462e8808778703427d1f584400"}, + {file = "watchfiles-0.21.0-cp311-none-win_amd64.whl", hash = "sha256:4566006aa44cb0d21b8ab53baf4b9c667a0ed23efe4aaad8c227bfba0bf15cbe"}, + {file = "watchfiles-0.21.0-cp311-none-win_arm64.whl", hash = "sha256:c550a56bf209a3d987d5a975cdf2063b3389a5d16caf29db4bdddeae49f22078"}, + {file = "watchfiles-0.21.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:51ddac60b96a42c15d24fbdc7a4bfcd02b5a29c047b7f8bf63d3f6f5a860949a"}, + {file = "watchfiles-0.21.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:511f0b034120cd1989932bf1e9081aa9fb00f1f949fbd2d9cab6264916ae89b1"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cfb92d49dbb95ec7a07511bc9efb0faff8fe24ef3805662b8d6808ba8409a71a"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f92944efc564867bbf841c823c8b71bb0be75e06b8ce45c084b46411475a915"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:642d66b75eda909fd1112d35c53816d59789a4b38c141a96d62f50a3ef9b3360"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d23bcd6c8eaa6324fe109d8cac01b41fe9a54b8c498af9ce464c1aeeb99903d6"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18d5b4da8cf3e41895b34e8c37d13c9ed294954907929aacd95153508d5d89d7"}, + {file = "watchfiles-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b8d1eae0f65441963d805f766c7e9cd092f91e0c600c820c764a4ff71a0764c"}, + {file = "watchfiles-0.21.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1fd9a5205139f3c6bb60d11f6072e0552f0a20b712c85f43d42342d162be1235"}, + {file = "watchfiles-0.21.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a1e3014a625bcf107fbf38eece0e47fa0190e52e45dc6eee5a8265ddc6dc5ea7"}, + {file = "watchfiles-0.21.0-cp312-none-win32.whl", hash = "sha256:9d09869f2c5a6f2d9df50ce3064b3391d3ecb6dced708ad64467b9e4f2c9bef3"}, + {file = "watchfiles-0.21.0-cp312-none-win_amd64.whl", hash = "sha256:18722b50783b5e30a18a8a5db3006bab146d2b705c92eb9a94f78c72beb94094"}, + {file = "watchfiles-0.21.0-cp312-none-win_arm64.whl", hash = "sha256:a3b9bec9579a15fb3ca2d9878deae789df72f2b0fdaf90ad49ee389cad5edab6"}, + {file = "watchfiles-0.21.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:4ea10a29aa5de67de02256a28d1bf53d21322295cb00bd2d57fcd19b850ebd99"}, + {file = "watchfiles-0.21.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:40bca549fdc929b470dd1dbfcb47b3295cb46a6d2c90e50588b0a1b3bd98f429"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9b37a7ba223b2f26122c148bb8d09a9ff312afca998c48c725ff5a0a632145f7"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec8c8900dc5c83650a63dd48c4d1d245343f904c4b64b48798c67a3767d7e165"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8ad3fe0a3567c2f0f629d800409cd528cb6251da12e81a1f765e5c5345fd0137"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d353c4cfda586db2a176ce42c88f2fc31ec25e50212650c89fdd0f560ee507b"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:83a696da8922314ff2aec02987eefb03784f473281d740bf9170181829133765"}, + {file = "watchfiles-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a03651352fc20975ee2a707cd2d74a386cd303cc688f407296064ad1e6d1562"}, + {file = "watchfiles-0.21.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3ad692bc7792be8c32918c699638b660c0de078a6cbe464c46e1340dadb94c19"}, + {file = "watchfiles-0.21.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06247538e8253975bdb328e7683f8515ff5ff041f43be6c40bff62d989b7d0b0"}, + {file = "watchfiles-0.21.0-cp38-none-win32.whl", hash = "sha256:9a0aa47f94ea9a0b39dd30850b0adf2e1cd32a8b4f9c7aa443d852aacf9ca214"}, + {file = "watchfiles-0.21.0-cp38-none-win_amd64.whl", hash = "sha256:8d5f400326840934e3507701f9f7269247f7c026d1b6cfd49477d2be0933cfca"}, + {file = "watchfiles-0.21.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:7f762a1a85a12cc3484f77eee7be87b10f8c50b0b787bb02f4e357403cad0c0e"}, + {file = "watchfiles-0.21.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6e9be3ef84e2bb9710f3f777accce25556f4a71e15d2b73223788d528fcc2052"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4c48a10d17571d1275701e14a601e36959ffada3add8cdbc9e5061a6e3579a5d"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c889025f59884423428c261f212e04d438de865beda0b1e1babab85ef4c0f01"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:66fac0c238ab9a2e72d026b5fb91cb902c146202bbd29a9a1a44e8db7b710b6f"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a21f71885aa2744719459951819e7bf5a906a6448a6b2bbce8e9cc9f2c8128"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c9198c989f47898b2c22201756f73249de3748e0fc9de44adaf54a8b259cc0c"}, + {file = "watchfiles-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8f57c4461cd24fda22493109c45b3980863c58a25b8bec885ca8bea6b8d4b28"}, + {file = "watchfiles-0.21.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:853853cbf7bf9408b404754b92512ebe3e3a83587503d766d23e6bf83d092ee6"}, + {file = "watchfiles-0.21.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d5b1dc0e708fad9f92c296ab2f948af403bf201db8fb2eb4c8179db143732e49"}, + {file = "watchfiles-0.21.0-cp39-none-win32.whl", hash = "sha256:59137c0c6826bd56c710d1d2bda81553b5e6b7c84d5a676747d80caf0409ad94"}, + {file = "watchfiles-0.21.0-cp39-none-win_amd64.whl", hash = "sha256:6cb8fdc044909e2078c248986f2fc76f911f72b51ea4a4fbbf472e01d14faa58"}, + {file = "watchfiles-0.21.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:ab03a90b305d2588e8352168e8c5a1520b721d2d367f31e9332c4235b30b8994"}, + {file = "watchfiles-0.21.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:927c589500f9f41e370b0125c12ac9e7d3a2fd166b89e9ee2828b3dda20bfe6f"}, + {file = "watchfiles-0.21.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd467213195e76f838caf2c28cd65e58302d0254e636e7c0fca81efa4a2e62c"}, + {file = "watchfiles-0.21.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02b73130687bc3f6bb79d8a170959042eb56eb3a42df3671c79b428cd73f17cc"}, + {file = "watchfiles-0.21.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:08dca260e85ffae975448e344834d765983237ad6dc308231aa16e7933db763e"}, + {file = "watchfiles-0.21.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:3ccceb50c611c433145502735e0370877cced72a6c70fd2410238bcbc7fe51d8"}, + {file = "watchfiles-0.21.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57d430f5fb63fea141ab71ca9c064e80de3a20b427ca2febcbfcef70ff0ce895"}, + {file = "watchfiles-0.21.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dd5fad9b9c0dd89904bbdea978ce89a2b692a7ee8a0ce19b940e538c88a809c"}, + {file = "watchfiles-0.21.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:be6dd5d52b73018b21adc1c5d28ac0c68184a64769052dfeb0c5d9998e7f56a2"}, + {file = "watchfiles-0.21.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:b3cab0e06143768499384a8a5efb9c4dc53e19382952859e4802f294214f36ec"}, + {file = "watchfiles-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c6ed10c2497e5fedadf61e465b3ca12a19f96004c15dcffe4bd442ebadc2d85"}, + {file = "watchfiles-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:43babacef21c519bc6631c5fce2a61eccdfc011b4bcb9047255e9620732c8097"}, + {file = "watchfiles-0.21.0.tar.gz", hash = "sha256:c76c635fabf542bb78524905718c39f736a98e5ab25b23ec6d4abede1a85a6a3"}, +] + +[package.dependencies] +anyio = ">=3.0.0" + +[[package]] +name = "wcwidth" +version = "0.2.13" +description = "Measures the displayed width of unicode strings in a terminal" +optional = false +python-versions = "*" +files = [ + {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, + {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, +] + +[[package]] +name = "webcolors" +version = "1.13" +description = "A library for working with the color formats defined by HTML and CSS." +optional = false +python-versions = ">=3.7" +files = [ + {file = "webcolors-1.13-py3-none-any.whl", hash = "sha256:29bc7e8752c0a1bd4a1f03c14d6e6a72e93d82193738fa860cbff59d0fcc11bf"}, + {file = "webcolors-1.13.tar.gz", hash = "sha256:c225b674c83fa923be93d235330ce0300373d02885cef23238813b0d5668304a"}, +] + +[package.extras] +docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] +tests = ["pytest", "pytest-cov"] + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +optional = false +python-versions = "*" +files = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] + +[[package]] +name = "websocket-client" +version = "1.7.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, + {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + +[[package]] +name = "websockets" +version = "12.0" +description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websockets-12.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d554236b2a2006e0ce16315c16eaa0d628dab009c33b63ea03f41c6107958374"}, + {file = "websockets-12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2d225bb6886591b1746b17c0573e29804619c8f755b5598d875bb4235ea639be"}, + {file = "websockets-12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eb809e816916a3b210bed3c82fb88eaf16e8afcf9c115ebb2bacede1797d2547"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c588f6abc13f78a67044c6b1273a99e1cf31038ad51815b3b016ce699f0d75c2"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5aa9348186d79a5f232115ed3fa9020eab66d6c3437d72f9d2c8ac0c6858c558"}, + {file = "websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6350b14a40c95ddd53e775dbdbbbc59b124a5c8ecd6fbb09c2e52029f7a9f480"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:70ec754cc2a769bcd218ed8d7209055667b30860ffecb8633a834dde27d6307c"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6e96f5ed1b83a8ddb07909b45bd94833b0710f738115751cdaa9da1fb0cb66e8"}, + {file = "websockets-12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4d87be612cbef86f994178d5186add3d94e9f31cc3cb499a0482b866ec477603"}, + {file = "websockets-12.0-cp310-cp310-win32.whl", hash = "sha256:befe90632d66caaf72e8b2ed4d7f02b348913813c8b0a32fae1cc5fe3730902f"}, + {file = "websockets-12.0-cp310-cp310-win_amd64.whl", hash = "sha256:363f57ca8bc8576195d0540c648aa58ac18cf85b76ad5202b9f976918f4219cf"}, + {file = "websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5d873c7de42dea355d73f170be0f23788cf3fa9f7bed718fd2830eefedce01b4"}, + {file = "websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3f61726cae9f65b872502ff3c1496abc93ffbe31b278455c418492016e2afc8f"}, + {file = "websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed2fcf7a07334c77fc8a230755c2209223a7cc44fc27597729b8ef5425aa61a3"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e332c210b14b57904869ca9f9bf4ca32f5427a03eeb625da9b616c85a3a506c"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5693ef74233122f8ebab026817b1b37fe25c411ecfca084b29bc7d6efc548f45"}, + {file = "websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e9e7db18b4539a29cc5ad8c8b252738a30e2b13f033c2d6e9d0549b45841c04"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6e2df67b8014767d0f785baa98393725739287684b9f8d8a1001eb2839031447"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:bea88d71630c5900690fcb03161ab18f8f244805c59e2e0dc4ffadae0a7ee0ca"}, + {file = "websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dff6cdf35e31d1315790149fee351f9e52978130cef6c87c4b6c9b3baf78bc53"}, + {file = "websockets-12.0-cp311-cp311-win32.whl", hash = "sha256:3e3aa8c468af01d70332a382350ee95f6986db479ce7af14d5e81ec52aa2b402"}, + {file = "websockets-12.0-cp311-cp311-win_amd64.whl", hash = "sha256:25eb766c8ad27da0f79420b2af4b85d29914ba0edf69f547cc4f06ca6f1d403b"}, + {file = "websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0e6e2711d5a8e6e482cacb927a49a3d432345dfe7dea8ace7b5790df5932e4df"}, + {file = "websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dbcf72a37f0b3316e993e13ecf32f10c0e1259c28ffd0a85cee26e8549595fbc"}, + {file = "websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:12743ab88ab2af1d17dd4acb4645677cb7063ef4db93abffbf164218a5d54c6b"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b645f491f3c48d3f8a00d1fce07445fab7347fec54a3e65f0725d730d5b99cb"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9893d1aa45a7f8b3bc4510f6ccf8db8c3b62120917af15e3de247f0780294b92"}, + {file = "websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f38a7b376117ef7aff996e737583172bdf535932c9ca021746573bce40165ed"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f764ba54e33daf20e167915edc443b6f88956f37fb606449b4a5b10ba42235a5"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:1e4b3f8ea6a9cfa8be8484c9221ec0257508e3a1ec43c36acdefb2a9c3b00aa2"}, + {file = "websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:9fdf06fd06c32205a07e47328ab49c40fc1407cdec801d698a7c41167ea45113"}, + {file = "websockets-12.0-cp312-cp312-win32.whl", hash = "sha256:baa386875b70cbd81798fa9f71be689c1bf484f65fd6fb08d051a0ee4e79924d"}, + {file = "websockets-12.0-cp312-cp312-win_amd64.whl", hash = "sha256:ae0a5da8f35a5be197f328d4727dbcfafa53d1824fac3d96cdd3a642fe09394f"}, + {file = "websockets-12.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5f6ffe2c6598f7f7207eef9a1228b6f5c818f9f4d53ee920aacd35cec8110438"}, + {file = "websockets-12.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9edf3fc590cc2ec20dc9d7a45108b5bbaf21c0d89f9fd3fd1685e223771dc0b2"}, + {file = "websockets-12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8572132c7be52632201a35f5e08348137f658e5ffd21f51f94572ca6c05ea81d"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:604428d1b87edbf02b233e2c207d7d528460fa978f9e391bd8aaf9c8311de137"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1a9d160fd080c6285e202327aba140fc9a0d910b09e423afff4ae5cbbf1c7205"}, + {file = "websockets-12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87b4aafed34653e465eb77b7c93ef058516cb5acf3eb21e42f33928616172def"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b2ee7288b85959797970114deae81ab41b731f19ebcd3bd499ae9ca0e3f1d2c8"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:7fa3d25e81bfe6a89718e9791128398a50dec6d57faf23770787ff441d851967"}, + {file = "websockets-12.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a571f035a47212288e3b3519944f6bf4ac7bc7553243e41eac50dd48552b6df7"}, + {file = "websockets-12.0-cp38-cp38-win32.whl", hash = "sha256:3c6cc1360c10c17463aadd29dd3af332d4a1adaa8796f6b0e9f9df1fdb0bad62"}, + {file = "websockets-12.0-cp38-cp38-win_amd64.whl", hash = "sha256:1bf386089178ea69d720f8db6199a0504a406209a0fc23e603b27b300fdd6892"}, + {file = "websockets-12.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:ab3d732ad50a4fbd04a4490ef08acd0517b6ae6b77eb967251f4c263011a990d"}, + {file = "websockets-12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a1d9697f3337a89691e3bd8dc56dea45a6f6d975f92e7d5f773bc715c15dde28"}, + {file = "websockets-12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1df2fbd2c8a98d38a66f5238484405b8d1d16f929bb7a33ed73e4801222a6f53"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:23509452b3bc38e3a057382c2e941d5ac2e01e251acce7adc74011d7d8de434c"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2e5fc14ec6ea568200ea4ef46545073da81900a2b67b3e666f04adf53ad452ec"}, + {file = "websockets-12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46e71dbbd12850224243f5d2aeec90f0aaa0f2dde5aeeb8fc8df21e04d99eff9"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b81f90dcc6c85a9b7f29873beb56c94c85d6f0dac2ea8b60d995bd18bf3e2aae"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a02413bc474feda2849c59ed2dfb2cddb4cd3d2f03a2fedec51d6e959d9b608b"}, + {file = "websockets-12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:bbe6013f9f791944ed31ca08b077e26249309639313fff132bfbf3ba105673b9"}, + {file = "websockets-12.0-cp39-cp39-win32.whl", hash = "sha256:cbe83a6bbdf207ff0541de01e11904827540aa069293696dd528a6640bd6a5f6"}, + {file = "websockets-12.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc4e7fa5414512b481a2483775a8e8be7803a35b30ca805afa4998a84f9fd9e8"}, + {file = "websockets-12.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:248d8e2446e13c1d4326e0a6a4e9629cb13a11195051a73acf414812700badbd"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f44069528d45a933997a6fef143030d8ca8042f0dfaad753e2906398290e2870"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c4e37d36f0d19f0a4413d3e18c0d03d0c268ada2061868c1e6f5ab1a6d575077"}, + {file = "websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3d829f975fc2e527a3ef2f9c8f25e553eb7bc779c6665e8e1d52aa22800bb38b"}, + {file = "websockets-12.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:2c71bd45a777433dd9113847af751aae36e448bc6b8c361a566cb043eda6ec30"}, + {file = "websockets-12.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0bee75f400895aef54157b36ed6d3b308fcab62e5260703add87f44cee9c82a6"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:423fc1ed29f7512fceb727e2d2aecb952c46aa34895e9ed96071821309951123"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27a5e9964ef509016759f2ef3f2c1e13f403725a5e6a1775555994966a66e931"}, + {file = "websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3181df4583c4d3994d31fb235dc681d2aaad744fbdbf94c4802485ececdecf2"}, + {file = "websockets-12.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b067cb952ce8bf40115f6c19f478dc71c5e719b7fbaa511359795dfd9d1a6468"}, + {file = "websockets-12.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:00700340c6c7ab788f176d118775202aadea7602c5cc6be6ae127761c16d6b0b"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e469d01137942849cff40517c97a30a93ae79917752b34029f0ec72df6b46399"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffefa1374cd508d633646d51a8e9277763a9b78ae71324183693959cf94635a7"}, + {file = "websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba0cab91b3956dfa9f512147860783a1829a8d905ee218a9837c18f683239611"}, + {file = "websockets-12.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2cb388a5bfb56df4d9a406783b7f9dbefb888c09b71629351cc6b036e9259370"}, + {file = "websockets-12.0-py3-none-any.whl", hash = "sha256:dc284bbc8d7c78a6c69e0c7325ab46ee5e40bb4d50e494d8131a07ef47500e9e"}, + {file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"}, +] + +[[package]] +name = "widgetsnbextension" +version = "4.0.10" +description = "Jupyter interactive widgets for Jupyter Notebook" +optional = false +python-versions = ">=3.7" +files = [ + {file = "widgetsnbextension-4.0.10-py3-none-any.whl", hash = "sha256:d37c3724ec32d8c48400a435ecfa7d3e259995201fbefa37163124a9fcb393cc"}, + {file = "widgetsnbextension-4.0.10.tar.gz", hash = "sha256:64196c5ff3b9a9183a8e699a4227fb0b7002f252c814098e66c4d1cd0644688f"}, +] + +[metadata] +lock-version = "2.0" +python-versions = "^3.10" +content-hash = "c7cf2d01b071067f62acb66b1f3208cae8c08ef86addca01aaf3430c0a55a6bc" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ca6f98e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,38 @@ +[tool.poetry] +name = "soil" +version = "1.0.0rc11" +description = "An Agent-Based Social Simulator for Social Networks" +authors = ["J. Fernando Sánchez"] +license = "Apache 2.0" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" +networkx = ">=2.5" +numpy = "^1.26.4" +matplotlib = "^3.8.3" +pyyaml = ">=5.1" +pandas = ">=1" +salib = ">=1.3" +jinja2 = "^3.1.3" +mesa = ">=1.2" +pydantic = ">=1.9" +sqlalchemy = ">=1.4" +typing-extensions = ">=4.4" +annotated-types = ">=0.4" +tqdm = ">=4.64" + + +[tool.poetry.group.dev.dependencies] +pytest = "^8.1.1" +pytest-profiling = "^1.7.0" +scipy = ">=1.3" +tornado = "^6.4" +nbconvert = "7.3.1" +nbformat = "5.8.0" +jupyter = "1.0.0" +osmnx = "^1.9.2" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/soil/VERSION b/soil/VERSION index 1bb1990..e1c61a4 100644 --- a/soil/VERSION +++ b/soil/VERSION @@ -1 +1 @@ -1.0.0rc3 +1.0.0rc11 diff --git a/soil/agents/__init__.py b/soil/agents/__init__.py index 4de10b7..08f71b5 100644 --- a/soil/agents/__init__.py +++ b/soil/agents/__init__.py @@ -124,9 +124,7 @@ class BaseAgent(MesaAgent, MutableMapping, metaclass=MetaAgent): self.alive = True - logger = utils.logger.getChild(getattr(self.model, "id", self.model)).getChild( - self.name - ) + logger = model.logger.getChild(self.name) self.logger = logging.LoggerAdapter(logger, {"agent_name": self.name}) if hasattr(self, "level"): @@ -233,7 +231,7 @@ class BaseAgent(MesaAgent, MutableMapping, metaclass=MetaAgent): def die(self, msg=None): if msg: - self.info("Agent dying:", msg) + self.debug("Agent dying:", msg) else: self.debug(f"agent dying") self.alive = False @@ -437,7 +435,6 @@ def filter_agents( unique_id=None, state_id=None, agent_class=None, - ignore=None, state=None, limit=None, **kwargs, @@ -445,7 +442,6 @@ def filter_agents( """ Filter agents given as a dict, by the criteria given as arguments (e.g., certain type or state id). """ - assert isinstance(agents, dict) ids = [] @@ -459,9 +455,9 @@ def filter_agents( ids += id_args if ids: - f = (agents[aid] for aid in ids if aid in agents) + f = (agent for agent in agents if agent.unique_id in ids) else: - f = agents.values() + f = agents if state_id is not None and not isinstance(state_id, (tuple, list)): state_id = tuple([state_id]) @@ -473,9 +469,6 @@ def filter_agents( except TypeError: agent_class = tuple([agent_class]) - if ignore: - f = filter(lambda x: x not in ignore, f) - if state_id is not None: f = filter(lambda agent: agent.get("state_id", None) in state_id, f) diff --git a/soil/debugging.py b/soil/debugging.py index 5d80f39..97dc8cc 100644 --- a/soil/debugging.py +++ b/soil/debugging.py @@ -49,7 +49,7 @@ class Debug(pdb.Pdb): @staticmethod def _soil_agents(model, attrs=None, pretty=True, **kwargs): - for agent in model.agents(**kwargs): + for agent in model.get_agents(**kwargs): d = agent print(" - " + indent(agent.to_str(keys=attrs, pretty=pretty), " ")) diff --git a/soil/environment.py b/soil/environment.py index 5188739..743da85 100644 --- a/soil/environment.py +++ b/soil/environment.py @@ -113,14 +113,14 @@ class BaseEnvironment(Model): pass @property - def agents(self): - return agentmod.AgentView(self.schedule._agents) + def get_agents(self): + return agentmod.AgentView(self.schedule.agents) def agent(self, *args, **kwargs): - return agentmod.AgentView(self.schedule._agents).one(*args, **kwargs) + return agentmod.AgentView(self.schedule.agents).one(*args, **kwargs) def count_agents(self, *args, **kwargs): - return sum(1 for i in self.agents(*args, **kwargs)) + return sum(1 for i in self.get_agents(*args, **kwargs)) def agent_df(self, steps=False): df = self.datacollector.get_agent_vars_dataframe() @@ -145,6 +145,7 @@ class BaseEnvironment(Model): raise Exception( "The environment has not been scheduled, so it has no sense of time" ) + def init_agents(self): pass @@ -244,7 +245,7 @@ class BaseEnvironment(Model): return sum(1 for n in self.keys()) def __iter__(self): - return iter(self.agents()) + return iter(self.get_agents()) def get(self, key, default=None): return self[key] if key in self else default @@ -362,11 +363,11 @@ class NetworkEnvironment(BaseEnvironment): """ for (id, data) in self.G.nodes(data=True): if "agent_id" in data: - agent = self.agents(data["agent_id"]) + agent = self.get_agents(data["agent_id"]) self.G.nodes[id]["agent"] = agent assert not getattr(agent, "node_id", None) or agent.node_id == id agent.node_id = id - for agent in self.agents(): + for agent in self.get_agents(): if hasattr(agent, "node_id"): node_id = agent["node_id"] if node_id not in self.G.nodes: @@ -410,7 +411,7 @@ class NetworkEnvironment(BaseEnvironment): class EventedEnvironment(BaseEnvironment): def broadcast(self, msg, sender=None, expiration=None, ttl=None, **kwargs): - for agent in self.agents(**kwargs): + for agent in self.get_agents(**kwargs): if agent == sender: continue self.logger.debug(f"Telling {repr(agent)}: {msg} ttl={ttl}") diff --git a/soil/simulation.py b/soil/simulation.py index 9d1a20e..389207b 100644 --- a/soil/simulation.py +++ b/soil/simulation.py @@ -155,8 +155,9 @@ class Simulation: exporter.sim_start() for params in tqdm(param_combinations, desc=self.name, unit="configuration"): + tqdm.write("- Running for parameters: ") for (k, v) in params.items(): - tqdm.write(f"{k} = {v}") + tqdm.write(f" {k} = {v}") sha = hashlib.sha256() sha.update(repr(sorted(params.items())).encode()) params_id = sha.hexdigest()[:7] diff --git a/soil/time.py b/soil/time.py index de76dcb..9d73781 100644 --- a/soil/time.py +++ b/soil/time.py @@ -32,7 +32,15 @@ class DeadAgent(Exception): pass -class PQueueActivation(BaseScheduler): +class DiscreteActivation(BaseScheduler): + default_interval = 1 + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) + if hasattr(self.model, 'default_interval'): + self.default_interval = self.model.interval + + +class PQueueActivation(DiscreteActivation): """ A scheduler which activates each agent with a delay returned by the agent's step method. If no delay is returned, a default of 1 is used. @@ -88,7 +96,7 @@ class PQueueActivation(BaseScheduler): break try: - when = agent.step() or 1 + when = agent.step() or self.default_interval when += now except DeadAgent: heappop(self._queue) @@ -110,7 +118,8 @@ class PQueueActivation(BaseScheduler): return -class TimedActivation(BaseScheduler): +class TimedActivation(DiscreteActivation): + '''A discrete-time scheduler that has time buckets with agents that should be woken at the same time instant.''' def __init__(self, *args, shuffle=True, **kwargs): super().__init__(*args, **kwargs) self._queue = deque() @@ -159,7 +168,7 @@ class TimedActivation(BaseScheduler): self.model.random.shuffle(bucket) for agent in bucket: try: - when = agent.step() or 1 + when = agent.step() or self.default_interval when += now except DeadAgent: continue @@ -175,12 +184,45 @@ class TimedActivation(BaseScheduler): class ShuffledTimedActivation(TimedActivation): + ''' + A TimedActivation scheduler that processes events in random order. + ''' def __init__(self, *args, **kwargs): super().__init__(*args, shuffle=True, **kwargs) class OrderedTimedActivation(TimedActivation): + ''' + A TimedActivation scheduler that always processes events in + the same order. + ''' def __init__(self, *args, **kwargs): super().__init__(*args, shuffle=False, **kwargs) +Scheduler = TimedActivation + + +class Lockstepper: + ''' + A wrapper class to produce discrete-event schedulers that behave like + fixed-time schedulers. + ''' + + def __init__(self, scheduler: BaseScheduler, interval=1): + self.scheduler = scheduler + self.default_interval = interval + self.time = scheduler.time + self.steps = 0 + + def step(self): + end_time = self.time + self.default_interval + res = None + while self.scheduler.time < end_time: + res = self.scheduler.step() + self.time = end_time + self.steps += 1 + return res + + def __getattr__(self, name): + return getattr(self.scheduler, name) \ No newline at end of file diff --git a/soil/utils.py b/soil/utils.py index 0be4c40..3a00a9b 100644 --- a/soil/utils.py +++ b/soil/utils.py @@ -24,7 +24,7 @@ consoleHandler = logging.StreamHandler() consoleHandler.setFormatter(logFormatter) logging.basicConfig( - level=logging.INFO, + level=logging.WARNING, handlers=[ consoleHandler, ], diff --git a/soil/visualization.py b/soil/visualization.py new file mode 100644 index 0000000..d361fc0 --- /dev/null +++ b/soil/visualization.py @@ -0,0 +1,141 @@ +from typing import Optional + +import sys +import threading + +import matplotlib.pyplot as plt +import reacton.ipywidgets as widgets +import solara +from solara.alias import rv + +import mesa.experimental.components.matplotlib as components_matplotlib +from mesa.experimental.jupyter_viz import * +from matplotlib.figure import Figure +import networkx as nx + + +class Controller: + ''' + A visualization controller that holds a reference to a model so that it can be modified or queried while the simulation is still running. + ''' + def __init__(self): + self.model = None + + +def JupyterViz(*args, **kwargs): + c = Controller() + page = JupyterPage(*args, controller=c, **kwargs) + page.controller = c + return page + + +@solara.component +def JupyterPage( + model_class, + model_params, + controller=None, + measures=None, + name="Mesa Model", + agent_portrayal=None, + space_drawer="default", + play_interval=150, + columns=2, +): + """Initialize a component to visualize a model. + Args: + model_class: class of the model to instantiate + model_params: parameters for initializing the model + measures: list of callables or data attributes to plot + name: name for display + agent_portrayal: options for rendering agents (dictionary) + space_drawer: method to render the agent space for + the model; default implementation is the `SpaceMatplotlib` component; + simulations with no space to visualize should + specify `space_drawer=False` + play_interval: play interval (default: 150) + """ + if controller is None: + controller = Controller() + + current_step = solara.use_reactive(0) + + # 1. Set up model parameters + user_params, fixed_params = split_model_params(model_params) + model_parameters, set_model_parameters = solara.use_state( + {**fixed_params, **{k: v["value"] for k, v in user_params.items()}} + ) + + # 2. Set up Model + def make_model(): + model = model_class(**model_parameters) + current_step.value = 0 + controller.model = model + return model + + reset_counter = solara.use_reactive(0) + model = solara.use_memo( + make_model, dependencies=[*list(model_parameters.values()), reset_counter.value] + ) + + def handle_change_model_params(name: str, value: any): + set_model_parameters({**model_parameters, name: value}) + + # 3. Set up UI + with solara.AppBar(): + solara.AppBarTitle(name) + + with solara.GridFixed(columns=2): + UserInputs(user_params, on_change=handle_change_model_params) + ModelController(model, play_interval, current_step, reset_counter) + solara.Markdown(md_text=f"###Step: {current_step} - Time: {model.schedule.time } ") + + with solara.GridFixed(columns=columns): + # 4. Space + if space_drawer == "default": + # draw with the default implementation + components_matplotlib.SpaceMatplotlib( + model, agent_portrayal, dependencies=[current_step.value] + ) + elif space_drawer: + # if specified, draw agent space with an alternate renderer + space_drawer(model, agent_portrayal, dependencies=[current_step.value]) + # otherwise, do nothing (do not draw space) + + # 5. Plots + for measure in measures: + if callable(measure): + # Is a custom object + measure(model) + else: + components_matplotlib.make_plot(model, measure) + + +@solara.component +def NetworkDrawer(model, network_portrayal, dependencies: Optional[list[any]] = None): + space_fig = Figure() + space_ax = space_fig.subplots() + graph = model.grid.G + nx.draw( + graph, + ax=space_ax, + **network_portrayal(graph), + ) + solara.FigureMatplotlib(space_fig, format="png", dependencies=dependencies) + + +try: + import osmnx as ox + + @solara.component + def GeoNetworkDrawer(model, network_portrayal, dependencies: Optional[list[any]] = None): + space_fig = Figure() + space_ax = space_fig.subplots() + graph = model.grid.G + ox.plot_graph( + graph, + ax=space_ax, + **network_portrayal(graph), + ) + solara.FigureMatplotlib(space_fig, format="png", dependencies=dependencies) +except ImportError: + pass diff --git a/tests/test_agents.py b/tests/test_agents.py index 613e732..c42a6ba 100644 --- a/tests/test_agents.py +++ b/tests/test_agents.py @@ -170,12 +170,12 @@ class TestAgents(TestCase): e = environment.Environment() e.add_agent(agent_class=agents.BaseAgent) e.add_agent(agent_class=agents.Evented) - base = list(e.agents(agent_class=agents.BaseAgent)) + base = list(e.get_agents(agent_class=agents.BaseAgent)) assert len(base) == 2 - ev = list(e.agents(agent_class=agents.Evented)) + ev = list(e.get_agents(agent_class=agents.Evented)) assert len(ev) == 1 assert ev[0].unique_id == 1 - null = list(e.agents(unique_ids=[0, 1], agent_class=agents.NetworkAgent)) + null = list(e.get_agents(unique_ids=[0, 1], agent_class=agents.NetworkAgent)) assert not null def test_agent_return(self):