summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasanoaozora <fifitaneki@hotmail.com>2017-12-21 11:20:30 +0100
committerasanoaozora <fifitaneki@hotmail.com>2017-12-21 11:20:30 +0100
commita3a65e6d544d0af6ee4e1dbbc5414d38fb04be15 (patch)
tree3435abedae54fbf139a03bf4c73231e1c6c0ead8
parente24dfc26410683b59efa7500e325a4ffe724849e (diff)
downloadpoi-service-a3a65e6d544d0af6ee4e1dbbc5414d38fb04be15.tar.gz
start implementation of Franca2Wamp for FTS
-rw-r--r--src/freetextsearch-service-wamp/CMakeLists.txt135
-rw-r--r--src/freetextsearch-service-wamp/FreeTextSearchStubImpl.cpp241
-rw-r--r--src/freetextsearch-service-wamp/FreeTextSearchStubImpl.hpp78
-rw-r--r--src/freetextsearch-service-wamp/main.cpp52
-rw-r--r--src/freetextsearch-service-wamp/workdir/.crossbar/.gitignore3
-rw-r--r--src/freetextsearch-service-wamp/workdir/.crossbar/config.json131
-rw-r--r--src/freetextsearch-service-wamp/workdir/commonapi.ini11
-rwxr-xr-xsrc/freetextsearch-service-wamp/workdir/runRESTClient.sh11
-rwxr-xr-xsrc/freetextsearch-service-wamp/workdir/runServer.sh3
-rw-r--r--src/freetextsearch-service/CMakeLists.txt2
-rw-r--r--src/freetextsearch-service/FreeTextSearchStubImpl.hpp6
-rw-r--r--[-rwxr-xr-x]test/poi-service/script/paris/bicycle.xml1284
-rw-r--r--[-rwxr-xr-x]test/poi-service/script/paris/fuel-station.xml1098
-rw-r--r--[-rwxr-xr-x]test/poi-service/script/paris/museum-and-hotel.xml13968
-rw-r--r--[-rwxr-xr-x]test/poi-service/script/paris/station.xml2922
15 files changed, 13582 insertions, 6363 deletions
diff --git a/src/freetextsearch-service-wamp/CMakeLists.txt b/src/freetextsearch-service-wamp/CMakeLists.txt
new file mode 100644
index 0000000..d4e036c
--- /dev/null
+++ b/src/freetextsearch-service-wamp/CMakeLists.txt
@@ -0,0 +1,135 @@
+###########################################################################
+# @licence app begin@
+# SPDX-License-Identifier: MPL-2.0
+#
+# Component Name: freetextsearch-server
+#
+# Author: Philippe Colliot
+#
+# Copyright (C) 2016, PCA Peugeot Citroën
+#
+# License:
+# This Source Code Form is subject to the terms of the
+# Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with
+# this file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# @licence end@
+###########################################################################
+project(freetextsearch-server-wamp)
+message(STATUS ${PROJECT_NAME})
+
+cmake_minimum_required(VERSION 2.8)
+
+option(DBUS_LIB_PATH
+ "Path to the patched DBus library")
+option(FRANCA_WAMP_GENERATOR
+ "Franca to Wamp generator")
+
+set(CMAKE_VERBOSE_MAKEFILE on)
+set(CMAKE_CXX_FLAGS "-Wall -O0 -std=c++0x -D_GLIBCXX_USE_NANOSLEEP -pthread")
+
+set(API_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../../api")
+set(FRANCA_DIR "${API_DIR}/franca")
+set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin)
+
+set(PARENT_API freetextsearchservice)
+set(ROOT_API navigation)
+set(API_VERSION_MAJOR 1)
+set(API_VERSION "v${API_VERSION_MAJOR}")
+set(COMMONAPI_GEN_DIR "${CMAKE_CURRENT_BINARY_DIR}/src-gen")
+set(PRJ_SRC_GEN_PATH ${COMMONAPI_GEN_DIR}/${API_VERSION}/org/genivi/${ROOT_API}/${PARENT_API})
+set(PRJ_SRC_GEN_NAVIGATION_TYPES_PATH ${COMMONAPI_GEN_DIR}/org/genivi/${ROOT_API})
+
+# DBus Path
+if(DBUS_LIB_PATH)
+ message(STATUS "DBUS_LIB_PATH = " ${DBUS_LIB_PATH})
+ set(DBUS_INCLUDE_DIRS ${DBUS_LIB_PATH}/include/dbus-1.0 ${DBUS_LIB_PATH}/lib/dbus-1.0/include)
+ set(DBUS_LIBDIR ${DBUS_LIB_PATH}/lib)
+ set(DBUS_LIBRARIES ${DBUS_LIB_PATH}/lib/libdbus-1.so)
+else()
+ message(FATAL_ERROR "Please specify the path to your patched DBus library using -DDBUS_LIB_PATH=yourPath")
+endif()
+
+# Franca to wamp generator
+file(GLOB FIDL_FILES
+ ${FRANCA_DIR}/CommonTypes.fidl
+ ${FRANCA_DIR}/navigation/NavigationTypes.fidl
+ ${FRANCA_DIR}/navigation/freetextsearchservice/*.fidl
+ )
+if(FRANCA_WAMP_GENERATOR)
+ foreach(RAW_FILE ${FIDL_FILES})
+ message(STATUS "Generate Wamp stuff for: " ${RAW_FILE})
+ execute_process(
+ COMMAND java -jar ${FRANCA_WAMP_GENERATOR} -f ${RAW_FILE} -o ${COMMONAPI_GEN_DIR}
+ )
+ endforeach()
+else()
+ message(FATAL_ERROR "Please specify the Franca Wamp generator using -DFRANCA_WAMP_GENERATOR=<generator>")
+endif()
+
+# Packages
+find_package(PkgConfig REQUIRED)
+find_package(CommonAPI 3.1.9 REQUIRED)
+find_package(CommonAPI-DBus 3.1.9 REQUIRED)
+find_package(CommonAPI-WAMP REQUIRED)
+
+pkg_check_modules(COMMONAPI "CommonAPI >= 3.1.9")
+pkg_check_modules(COMMONAPI_DBUS "CommonAPI-DBus >= 3.1.9")
+pkg_check_modules(SQLITE3 REQUIRED sqlite3)
+pkg_check_modules(GOBJECT gobject-2.0)
+pkg_check_modules(GLIB REQUIRED glib-2.0)
+
+# Source Files
+FILE(GLOB PRJ_LOCAL_SRCS ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
+
+add_subdirectory(${FRANCA_DIR}/navigation/freetextsearchservice "${CMAKE_CURRENT_BINARY_DIR}/franca")
+
+FILE(GLOB PRJ_STUB_GEN_SRCS ${PRJ_SRC_GEN_PATH}/*Stub*.cpp)
+FILE(GLOB PRJ_STUB_GEN_TYPES ${PRJ_SRC_GEN_NAVIGATION_TYPES_PATH}/*Types*.cpp)
+FILE(GLOB PRJ_WAMP_LIB_SRCS ${PRJ_SRC_GEN_PATH}/*Wamp*.cpp)
+
+set(PRJ_SRCS ${PRJ_LOCAL_SRCS} ${PRJ_STUB_GEN_SRCS} ${PRJ_STUB_GEN_TYPES})
+
+include_directories(
+ ${PRJ_SRC_GEN_PATH}
+ ${DBUS_INCLUDE_DIRS}
+ ${COMMONAPI_GEN_DIR}
+ ${COMMONAPI_INCLUDE_DIRS}
+ ${COMMONAPI_DBUS_INCLUDE_DIRS}
+ ${COMMONAPI_WAMP_INCLUDE_DIRS}
+ ${WAMP_INCLUDE_DIRS}
+ ${GOBJECT_INCLUDE_DIRS}
+ ${GLIB_INCLUDE_DIRS}
+ ${SQLITE3_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${DBUS_LIBDIR}
+ ${COMMONAPI_LIBDIR}
+ ${COMMONAPI_DBUS_LIBDIR}
+ ${COMMONAPI_WAMP_LIBDIR}
+ ${WAMP_LIBDIR}
+ ${GOBJECT_LIBRARY_DIRS}
+ ${GLIB_LIBRARY_DIRS}
+ ${SQLITE3_LIBRARY_DIRS}
+)
+
+set(LIBRARIES
+ ${DBUS_LIBRARIES}
+ ${COMMONAPI_LIBRARIES}
+ ${COMMONAPI_DBUS_LIBRARIES}
+ ${GOBJECT_LIBRARIES}
+ ${GLIB_LIBRARIES}
+ ${SQLITE3_LIBRARIES}
+)
+
+# Build service
+set(LINK_LIBRARIES -Wl,--no-as-needed -Wl,--as-needed CommonAPI)
+add_executable(${PROJECT_NAME} ${PRJ_SRCS})
+target_link_libraries(${PROJECT_NAME} ${LINK_LIBRARIES})
+install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})
+
+# Build gluecode.so
+add_library (${PROJECT_NAME}-wamp SHARED ${PRJ_WAMP_LIB_SRCS})
+target_link_libraries(${PROJECT_NAME}-wamp CommonAPI-WAMP ${WAMP_LIBRARIES})
+
diff --git a/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.cpp b/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.cpp
new file mode 100644
index 0000000..ef5b302
--- /dev/null
+++ b/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.cpp
@@ -0,0 +1,241 @@
+/**
+ * @licence app begin@
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * \copyright Copyright (C) 2015, 2016 TomTom International B.V.
+ * \copyright Copyright (C) 2016, PCA Peugeot Citroen
+ * \author Peter Goedegebure (Peter.Goedegebure@tomtom.com)
+ * \author Philippe Colliot <philippe.colliot@mpsa.com>
+ * \author Morteza Damavandpeyma <Morteza.Damavandpeyma@tomtom.com>
+ * This Source Code Form is subject to the terms of the
+ * Mozilla Public License (MPL), v. 2.0.
+ * If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * For further information see http://www.genivi.org/.
+ *
+ * List of changes:
+ * <date>, <name>, <description of change>
+ *
+ * @licence end@
+ */
+#include "FreeTextSearchStubImpl.hpp"
+
+using namespace v4::org::genivi::navigation;
+using namespace v1::org::genivi::navigation::freetextsearchservice;
+using namespace v4::org::genivi;
+
+NavigationTypes::Handle nextHandle = 1;
+
+void FreeTextSearchStubImpl::getVersion(
+ const std::shared_ptr<CommonAPI::ClientId> _client,
+ getVersionReply_t _reply)
+{
+ std::cout << "getVersion called." << std::endl;
+
+ CommonTypes::Version* version = new CommonTypes::Version(0, 1, 0, "today");
+ _reply(*version);
+}
+
+void FreeTextSearchStubImpl::ftsRequest(
+ const std::shared_ptr<CommonAPI::ClientId> _client,
+ FreeTextSearch::FtsString _inputString,
+ NavigationTypes::Coordinate2D _searchLocation,
+ FreeTextSearch::ShapeList _searchShapes, FreeTextSearch::PageSize _pageSize,
+ FreeTextSearch::SearchOptions _searchOptions,
+ FreeTextSearch::FtsString _searchConditions,
+ FreeTextSearch::FuzzyLevel _fuzzyLevel, ftsRequestReply_t _reply)
+{
+ std::cout << "ftsRequest called." << std::endl;
+ iSearchIsInProgress = true;
+
+ // Create new session handle.
+ iSessionHandle++;
+
+ // Start from first page
+ iPageId = 0;
+
+ _reply(FreeTextSearch::ftsRequestError::OK, iSessionHandle, iPageId);
+
+ // Note: inputString is ignored, use fixed results.
+ // Note: searchLocation is ignored, use fixed results.
+ // TODO: introduce a value for 'not specified' for searchLocation (Coordinate2D).
+ // Note: searchShapes is ignored, use fixed results.
+ // Note: pageSize is ignored, use fixed size of 2. First page: 2 addresses (moreAvailable), 1 POI (no moreAvailable).
+ // Note: searchOptions is ignored, use fixed results.
+ // Note: searchConditions is ignored, use fixed results,
+ // Note: fuzzyLevel is ignored, used fixed results.
+
+ FreeTextSearch::Addresses addresses;
+ FreeTextSearch::Address* addressPtr;
+ FreeTextSearch::FtsStringList* places;
+ FreeTextSearch::FtsStringList* postalCodes;
+ FreeTextSearch::StreetDetails* streetDetailsPtr;
+
+ addressPtr = new FreeTextSearch::Address();
+ NavigationTypes::LocationHandle locationHandle1 = 1234;
+ addressPtr->setLocationHandle(locationHandle1);
+ addressPtr->setCountryCode("NLD");
+ addressPtr->setStateCode("");
+ places = new FreeTextSearch::FtsStringList();
+ places->push_back("Eindhoven");
+ addressPtr->setPlaces(*places);
+ postalCodes = new FreeTextSearch::FtsStringList();
+ postalCodes->push_back("5657 EB");
+ addressPtr->setPostalCodes(*postalCodes);
+ streetDetailsPtr = new FreeTextSearch::StreetDetails();
+ streetDetailsPtr->setStreetName("Luchthavenweg");
+ streetDetailsPtr->setHouseNumber("48");
+ streetDetailsPtr->setHouseNumberFromInput("");
+ FreeTextSearch::AddressDetails addressDetails(*streetDetailsPtr);
+ addressPtr->setAddressDetails(addressDetails);
+ addressPtr->setMapCode("L2D.3Z");
+ NavigationTypes::Coordinate2D* coordinate1 = new NavigationTypes::Coordinate2D(51.455664, 5.396336);
+ addressPtr->setCoordinate(*coordinate1);
+ addressPtr->setDistance(4566);
+ addressPtr->setScore(1000);
+ addressPtr->setFuzzyMatch(false);
+ addresses.push_back(*addressPtr);
+
+ addressPtr = new FreeTextSearch::Address();
+ NavigationTypes::LocationHandle locationHandle2 = 9876;
+ addressPtr->setLocationHandle(locationHandle2);
+ addressPtr->setCountryCode("NLD");
+ addressPtr->setStateCode("");
+ places = new FreeTextSearch::FtsStringList();
+ places->push_back("'s Hertogenbosch");
+ addressPtr->setPlaces(*places);
+ postalCodes = new FreeTextSearch::FtsStringList();
+ postalCodes->push_back("<postal code>");
+ addressPtr->setPostalCodes(*postalCodes);
+ streetDetailsPtr = new FreeTextSearch::StreetDetails();
+ streetDetailsPtr->setStreetName("<street>");
+ streetDetailsPtr->setHouseNumber("<housenumber>");
+ streetDetailsPtr->setHouseNumberFromInput("");
+ FreeTextSearch::AddressDetails addressDetails2(*streetDetailsPtr);
+ addressPtr->setAddressDetails(addressDetails2);
+ addressPtr->setMapCode("<map code>");
+ NavigationTypes::Coordinate2D* coordinate2 = new NavigationTypes::Coordinate2D(52.434356, 17.555336);
+ addressPtr->setCoordinate(*coordinate2);
+ addressPtr->setDistance(196534);
+ addressPtr->setScore(578);
+ addressPtr->setFuzzyMatch(true);
+ addresses.push_back(*addressPtr);
+
+ fireFtsResultAddressesSelective(iSessionHandle, iPageId, addresses, true);
+
+ FreeTextSearch::POIs pois;
+ FreeTextSearch::POI* poiPtr;
+ poiPtr = new FreeTextSearch::POI();
+ NavigationTypes::LocationHandle locationHandle3 = 102934;
+ poiPtr->setLocationHandle(locationHandle3);
+ FreeTextSearch::POICategoryCode poiCategoryCode = 754;
+ poiPtr->setCategoryCode(poiCategoryCode);
+ FreeTextSearch::FtsStringList* brandNames;
+ brandNames = new FreeTextSearch::FtsStringList();
+ brandNames->push_back("TomTom");
+ brandNames->push_back("Bandit");
+ poiPtr->setBrandNames(*brandNames);
+ poiPtr->setPoiName("TomTom Eindhoven");
+ poiPtr->setAddress("Luchthavenweg 48, 5657 EB Eindhoven");
+ places = new FreeTextSearch::FtsStringList();
+ places->push_back("Eindhoven");
+ poiPtr->setPlace(*places);
+ postalCodes = new FreeTextSearch::FtsStringList();
+ postalCodes->push_back("5657 EB");
+ poiPtr->setPostalCode(*postalCodes);
+ poiPtr->setMapCode("L2D.3Z");
+ poiPtr->setCountryCode("NLD");
+ poiPtr->setStateCode("");
+ poiPtr->setTelephone("+31 40 84 44899");
+ poiPtr->setCoordinate(*coordinate1);
+ poiPtr->setDistance(1000);
+ poiPtr->setScore(1);
+ poiPtr->setFuzzyMatch(false);
+ poiPtr->setHasParents(false);
+ poiPtr->setHasChildren(false);
+ poiPtr->setDetourDistance(100);
+ poiPtr->setDetourTime(200);
+
+ pois.push_back(*poiPtr);
+ fireFtsResultPoisSelective(iSessionHandle, iPageId, pois, false);
+
+ FreeTextSearch::POICategories poiCategories;
+ fireFtsResultPoiSuggestionsSelective(iSessionHandle, iPageId, poiCategories);
+
+ fireFtsDoneSelective(iSessionHandle, iPageId, FreeTextSearch::FtsStatus::OK);
+ iSearchIsInProgress = false;
+}
+
+void FreeTextSearchStubImpl::ftsNextPage(
+ const std::shared_ptr<CommonAPI::ClientId> _client,
+ NavigationTypes::Handle _sessionHandle,
+ FreeTextSearch::SearchOptions _searchOptions, ftsNextPageReply_t _reply)
+{
+ std::cout << "ftsNextPage called." << std::endl;
+ if (iSearchIsInProgress)
+ {
+ std::cout << "There is a search in progress" << std::endl;
+ _reply(FreeTextSearch::ftsNextPageError::Literal::AlreadyInProgress, -1);
+ return;
+ }
+
+ iSearchIsInProgress = true;
+ // Note: searchOptions are ignored; always 1 address returned.
+
+ // Get the next page.
+ iPageId++;
+ _reply(FreeTextSearch::ftsNextPageError::Literal::OK, iPageId);
+
+ FreeTextSearch::Addresses addresses;
+ FreeTextSearch::Address* addressPtr;
+ addressPtr = new FreeTextSearch::Address();
+ NavigationTypes::LocationHandle locationHandle = 74658;
+ addressPtr->setLocationHandle(locationHandle);
+ addressPtr->setCountryCode("NLD");
+ addressPtr->setStateCode("");
+ FreeTextSearch::FtsStringList* places;
+ places = new FreeTextSearch::FtsStringList();
+ places->push_back("Amsterdam");
+ addressPtr->setPlaces(*places);
+ FreeTextSearch::FtsStringList* postalCodes;
+ postalCodes = new FreeTextSearch::FtsStringList();
+ postalCodes->push_back("<postal code>");
+ addressPtr->setPostalCodes(*postalCodes);
+ addressPtr->setMapCode("<map code>");
+ FreeTextSearch::StreetDetails* streetDetailsPtr;
+ streetDetailsPtr = new FreeTextSearch::StreetDetails();
+ streetDetailsPtr->setStreetName("<a street in Amsterdam>");
+ streetDetailsPtr->setHouseNumber("<housenumber>");
+ streetDetailsPtr->setHouseNumberFromInput("");
+ FreeTextSearch::AddressDetails addressDetails(*streetDetailsPtr);
+ addressPtr->setAddressDetails(addressDetails);
+ NavigationTypes::Coordinate2D* coordinate = new NavigationTypes::Coordinate2D(50.123456, 9.838374);
+ addressPtr->setCoordinate(*coordinate);
+ addressPtr->setDistance(3009);
+ addressPtr->setScore(33);
+ addressPtr->setFuzzyMatch(false);
+ addresses.push_back(*addressPtr);
+ fireFtsResultAddressesSelective(iSessionHandle, iPageId, addresses, false);
+
+ fireFtsDoneSelective(iSessionHandle, iPageId, FreeTextSearch::FtsStatus::OK);
+ iSearchIsInProgress = false;
+}
+
+void FreeTextSearchStubImpl::ftsCancel(
+ const std::shared_ptr<CommonAPI::ClientId> _client,
+ NavigationTypes::Handle _sessionHandle, ftsCancelReply_t _reply)
+{
+ std::cout << "ftsCancel called." << std::endl;
+ _reply(FreeTextSearch::ftsCancelError::Literal::OK);
+}
+
+void FreeTextSearchStubImpl::deleteLocationHandles(
+ const std::shared_ptr<CommonAPI::ClientId> _client,
+ FreeTextSearch::LocationHandleList _locationHandleList,
+ deleteLocationHandlesReply_t _reply)
+{
+ std::cout << "deleteLocationHandles called." << std::endl;
+ _reply();
+}
+
diff --git a/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.hpp b/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.hpp
new file mode 100644
index 0000000..0562b62
--- /dev/null
+++ b/src/freetextsearch-service-wamp/FreeTextSearchStubImpl.hpp
@@ -0,0 +1,78 @@
+/**
+ * @licence app begin@
+ * SPDX-License-Identifier: MPL-2.0
+ *
+ * \copyright Copyright (C) 2015, 2016 TomTom International B.V.
+ * \copyright Copyright (C) 2016, PCA Peugeot Citroen
+ * \author Peter Goedegebure (Peter.Goedegebure@tomtom.com)
+ * \author Philippe Colliot <philippe.colliot@mpsa.com>
+ * \author Morteza Damavandpeyma <Morteza.Damavandpeyma@tomtom.com>
+ * This Source Code Form is subject to the terms of the
+ * Mozilla Public License (MPL), v. 2.0.
+ * If a copy of the MPL was not distributed with this file,
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * For further information see http://www.genivi.org/.
+ *
+ * List of changes:
+ * <date>, <name>, <description of change>
+ *
+ * @licence end@
+ */
+
+#ifndef FREETEXTSEARCHSTUBIMPL_H_
+#define FREETEXTSEARCHSTUBIMPL_H_
+
+#include <CommonAPI/CommonAPI.hpp>
+#include <v4/org/genivi/CommonTypes.hpp>
+#include <v4/org/genivi/navigation/NavigationTypes.hpp>
+#include <v1/org/genivi/navigation/freetextsearchservice/FreeTextSearch.hpp>
+#include <v1/org/genivi/navigation/freetextsearchservice/FreeTextSearchStubDefault.hpp>
+
+namespace v1 {
+namespace org {
+namespace genivi {
+namespace navigation {
+namespace freetextsearchservice {
+
+class FreeTextSearchStubImpl: public FreeTextSearchStubDefault
+{
+
+public:
+ void getVersion(const std::shared_ptr<CommonAPI::ClientId> _client,
+ getVersionReply_t _reply) override;
+
+ void ftsRequest(const std::shared_ptr<CommonAPI::ClientId> _client,
+ FreeTextSearch::FtsString _inputString,
+ v4::org::genivi::navigation::NavigationTypes::Coordinate2D _searchLocation,
+ FreeTextSearch::ShapeList _searchShapes,
+ FreeTextSearch::PageSize _pageSize,
+ FreeTextSearch::SearchOptions _searchOptions,
+ FreeTextSearch::FtsString _searchConditions,
+ FreeTextSearch::FuzzyLevel _fuzzyLevel, ftsRequestReply_t _reply)
+ override;
+
+ void ftsNextPage(const std::shared_ptr<CommonAPI::ClientId> _client,
+ v4::org::genivi::navigation::NavigationTypes::Handle _sessionHandle,
+ FreeTextSearch::SearchOptions _searchOptions, ftsNextPageReply_t _reply)
+ override;
+
+ void ftsCancel(const std::shared_ptr<CommonAPI::ClientId> _client,
+ v4::org::genivi::navigation::NavigationTypes::Handle _sessionHandle, ftsCancelReply_t _reply) override;
+
+ void deleteLocationHandles(const std::shared_ptr<CommonAPI::ClientId> _client,
+ FreeTextSearch::LocationHandleList _locationHandleList,
+ deleteLocationHandlesReply_t _reply) override;
+private:
+ v4::org::genivi::navigation::NavigationTypes::Handle iSessionHandle = 0;
+ FreeTextSearch::PageId iPageId = 0;
+ bool iSearchIsInProgress = false;
+
+};
+} // namespace freetextsearchservice
+} // namespace navigation
+} // namespace genivi
+} // namespace org
+} // namespace v1
+
+#endif /* FREETEXTSEARCHSTUBIMPL_H_ */
diff --git a/src/freetextsearch-service-wamp/main.cpp b/src/freetextsearch-service-wamp/main.cpp
new file mode 100644
index 0000000..4f3d058
--- /dev/null
+++ b/src/freetextsearch-service-wamp/main.cpp
@@ -0,0 +1,52 @@
+/**
+* @licence app begin@
+* SPDX-License-Identifier: MPL-2.0
+*
+* \copyright Copyright (C) 2015, 2016 TomTom International B.V.
+* \copyright Copyright (C) 2016, PCA Peugeot Citroen
+* \author Peter Goedegebure (Peter.Goedegebure@tomtom.com)
+* \author Philippe Colliot <philippe.colliot@mpsa.com>
+* \author Morteza Damavandpeyma <Morteza.Damavandpeyma@tomtom.com>
+* This Source Code Form is subject to the terms of the
+* Mozilla Public License (MPL), v. 2.0.
+* If a copy of the MPL was not distributed with this file,
+* You can obtain one at http://mozilla.org/MPL/2.0/.
+*
+* For further information see http://www.genivi.org/.
+*
+* List of changes:
+* <date>, <name>, <description of change>
+*
+* @licence end@
+*/
+
+#include <thread>
+#include <iostream>
+
+#include <CommonAPI/CommonAPI.hpp>
+#include "FreeTextSearchStubImpl.hpp"
+
+int main()
+{
+ CommonAPI::Runtime::setProperty("LibraryBase", "FreeTextSearch");
+
+ std::shared_ptr<CommonAPI::Runtime> runtime = CommonAPI::Runtime::get();
+
+ std::string domain = "local";
+ std::string instance = "org.genivi.navigation.freetextsearchservice";
+ std::string connection = "service";
+
+ // create service and register it at runtime
+ std::shared_ptr<v1::org::genivi::navigation::freetextsearchservice::FreeTextSearchStubImpl> myService =
+ std::make_shared<v1::org::genivi::navigation::freetextsearchservice::FreeTextSearchStubImpl>();
+ runtime->registerService(domain, instance, myService);
+ std::cout << "Successfully Registered FTS Service!" << std::endl;
+
+ while (true) {
+ std::cout << "Waiting for calls... (Abort with CTRL+C)" << std::endl;
+ std::this_thread::sleep_for(std::chrono::seconds(60));
+ }
+
+ return 0;
+}
+
diff --git a/src/freetextsearch-service-wamp/workdir/.crossbar/.gitignore b/src/freetextsearch-service-wamp/workdir/.crossbar/.gitignore
new file mode 100644
index 0000000..a6c0313
--- /dev/null
+++ b/src/freetextsearch-service-wamp/workdir/.crossbar/.gitignore
@@ -0,0 +1,3 @@
+key.priv
+key.pub
+node.pid
diff --git a/src/freetextsearch-service-wamp/workdir/.crossbar/config.json b/src/freetextsearch-service-wamp/workdir/.crossbar/config.json
new file mode 100644
index 0000000..0635149
--- /dev/null
+++ b/src/freetextsearch-service-wamp/workdir/.crossbar/config.json
@@ -0,0 +1,131 @@
+{
+ "version": 2,
+ "workers": [
+ {
+ "type": "router",
+ "realms": [
+ {
+ "name": "realm1",
+ "roles": [
+ {
+ "name": "public",
+ "permissions": [
+ {
+ "uri": "",
+ "match": "prefix",
+ "allow": {
+ "call": true,
+ "register": true,
+ "publish": true,
+ "subscribe": true
+ },
+ "disclose": {
+ "caller": false,
+ "publisher": false
+ },
+ "cache": true
+ }
+ ]
+ },
+ {
+ "name": "user",
+ "permissions": [
+ {
+ "uri": "",
+ "match": "prefix",
+ "allow": {
+ "call": true,
+ "register": true,
+ "publish": true,
+ "subscribe": true
+ },
+ "disclose": {
+ "caller": false,
+ "publisher": false
+ },
+ "cache": true
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "transports": [
+ {
+ "type": "web",
+ "endpoint": {
+ "type": "tcp",
+ "port": 8080
+ },
+ "paths": {
+ "/": {
+ "type": "static",
+ "directory": "../web"
+ },
+ "ws": {
+ "type": "websocket",
+ "auth": {
+ "anonymous": {
+ "type": "static",
+ "role": "public"
+ }
+ }
+ },
+ "call": {
+ "type": "caller",
+ "realm": "realm1",
+ "role": "public",
+ "options": {
+ "debug": true
+ }
+ }
+ }
+ },
+ {
+ "type": "rawsocket",
+ "endpoint": {
+ "type": "tcp",
+ "port": 8000
+ },
+ "auth": {
+ "anonymous": {
+ "type": "static",
+ "role": "public"
+ },
+ "wampcra": {
+ "type": "static",
+ "users": {
+ "homer": {
+ "secret": "secret123",
+ "role": "user"
+ }
+ }
+ }
+ }
+ },
+ {
+ "type": "rawsocket",
+ "endpoint": {
+ "type": "unix",
+ "path": "/tmp/crossbar.sock"
+ },
+ "auth": {
+ "anonymous": {
+ "type": "static",
+ "role": "public"
+ },
+ "wampcra": {
+ "type": "static",
+ "users": {
+ "homer": {
+ "secret": "secret123",
+ "role": "user"
+ }
+ }
+ }
+ }
+ }
+ ]
+ }
+ ]
+}
diff --git a/src/freetextsearch-service-wamp/workdir/commonapi.ini b/src/freetextsearch-service-wamp/workdir/commonapi.ini
new file mode 100644
index 0000000..2458c3c
--- /dev/null
+++ b/src/freetextsearch-service-wamp/workdir/commonapi.ini
@@ -0,0 +1,11 @@
+[default]
+binding=wamp
+
+[logging]
+console=true
+level=verbose
+dlt=false
+
+
+[stub]
+local:org.genivi.navigation.freetextsearchservice:v0_7:org.genivi.navigation.freetextsearchservice=../../build/libFreeTextSearch-wamp.so
diff --git a/src/freetextsearch-service-wamp/workdir/runRESTClient.sh b/src/freetextsearch-service-wamp/workdir/runRESTClient.sh
new file mode 100755
index 0000000..487b8c2
--- /dev/null
+++ b/src/freetextsearch-service-wamp/workdir/runRESTClient.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+# NOTE: the first argument (here: 7) is the client id for the communication
+# the second and third argument are the actual arguments for the add2() method
+# the return value will be another struct containing the sum and the difference of the add2 arguments
+
+curl -H "Content-Type: application/json" \
+ -d '{"procedure": "local:org.genivi.navigation.freetextsearchservice:v0_7:org.genivi.navigation.freetextsearchservice.add2", "args": [7, 33, 22]}' \
+ http://127.0.0.1:8080/call
+
+echo
diff --git a/src/freetextsearch-service-wamp/workdir/runServer.sh b/src/freetextsearch-service-wamp/workdir/runServer.sh
new file mode 100755
index 0000000..75be95b
--- /dev/null
+++ b/src/freetextsearch-service-wamp/workdir/runServer.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+../../build/FreeTextSearchService
diff --git a/src/freetextsearch-service/CMakeLists.txt b/src/freetextsearch-service/CMakeLists.txt
index 028365f..9ca9886 100644
--- a/src/freetextsearch-service/CMakeLists.txt
+++ b/src/freetextsearch-service/CMakeLists.txt
@@ -32,7 +32,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/bin)
set(PARENT_API freetextsearchservice)
set(ROOT_API navigation)
-set(API_VERSION_MAJOR 0)
+set(API_VERSION_MAJOR 1)
set(API_VERSION "v${API_VERSION_MAJOR}")
set(COMMONAPI_GEN_DIR "${CMAKE_CURRENT_BINARY_DIR}/src-gen")
set(PRJ_SRC_GEN_PATH ${COMMONAPI_GEN_DIR}/${API_VERSION}/org/genivi/${ROOT_API}/${PARENT_API})
diff --git a/src/freetextsearch-service/FreeTextSearchStubImpl.hpp b/src/freetextsearch-service/FreeTextSearchStubImpl.hpp
index a6fbce3..2badb58 100644
--- a/src/freetextsearch-service/FreeTextSearchStubImpl.hpp
+++ b/src/freetextsearch-service/FreeTextSearchStubImpl.hpp
@@ -26,10 +26,10 @@
#include <CommonAPI/CommonAPI.hpp>
#include <v4/org/genivi/CommonTypes.hpp>
#include <v4/org/genivi/navigation/NavigationTypes.hpp>
-#include <v0/org/genivi/navigation/freetextsearchservice/FreeTextSearch.hpp>
-#include <v0/org/genivi/navigation/freetextsearchservice/FreeTextSearchStubDefault.hpp>
+#include <v1/org/genivi/navigation/freetextsearchservice/FreeTextSearch.hpp>
+#include <v1/org/genivi/navigation/freetextsearchservice/FreeTextSearchStubDefault.hpp>
-using namespace v0::org::genivi::navigation::freetextsearchservice;
+using namespace v1::org::genivi::navigation::freetextsearchservice;
using namespace v4::org::genivi::navigation;
using namespace v4::org::genivi;
diff --git a/test/poi-service/script/paris/bicycle.xml b/test/poi-service/script/paris/bicycle.xml
index 03a6ce5..cced5c1 100755..100644
--- a/test/poi-service/script/paris/bicycle.xml
+++ b/test/poi-service/script/paris/bicycle.xml
@@ -1,31 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
-<osm version="0.6" generator="Overpass API">
+<osm version="0.6" generator="Overpass API 0.7.54.12 054bb0bb">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
-<meta osm_base="2015-03-09T10:26:02Z"/>
+<meta osm_base="2017-12-11T17:05:02Z"/>
<node id="251373376" lat="48.8402323" lon="2.3503076">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="46"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue Daubenton"/>
<tag k="name" v="Gepetto &amp; Vélos"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.gepetto-velos.com/"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="287611762" lat="48.8626879" lon="2.3507834">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="52"/>
- <tag k="addr:street" v="Boulevard de Sébastopol"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:country" v="FR"/>
+ <tag k="contact:housenumber" v="52"/>
+ <tag k="contact:phone" v="+33 1 48 04 51 19"/>
+ <tag k="contact:postcode" v="75003"/>
+ <tag k="contact:street" v="Boulevard de Sébastopol"/>
<tag k="name" v="Au Réparateur de Bicyclettes"/>
+ <tag k="note" v="Hollandais et ville, réparation vélos anciens"/>
<tag k="opening_hours" v="Mo-Sa 10:00-19:15"/>
- <tag k="phone" v="01 48 04 51 19"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.aureparateurdebicyclettes.fr/"/>
</node>
- <node id="287612106" lat="48.8775699" lon="2.3374536">
+ <node id="287612106" lat="48.8773406" lon="2.3373832">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="39et50"/>
+ <tag k="contact:phone" v="+33 1 42 81 54 68"/>
+ <tag k="contact:postcode" v="75009"/>
+ <tag k="contact:street" v="Rue Saint-Georges"/>
<tag k="email" v="contact@velo-electro.com"/>
<tag k="name" v="Vélo Electro"/>
+ <tag k="note" v="Vente, réparation. Vélos de ville + quelques occasions, vélos à assistance électrique"/>
<tag k="opening_hours" v="Tu-Fr 10:00-14:30,15:30-19:30; Sa 10:00-19:30"/>
- <tag k="phone" v="01 42 81 54 68"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="service:bicycle:second_hand" v="yes"/>
@@ -33,33 +46,64 @@
<tag k="website" v="http://www.velo-electro.com/"/>
</node>
<node id="381167598" lat="48.8338563" lon="2.3018511">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="27"/>
+ <tag k="contact:phone" v="+33 1 40 43 93 04"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Rue de Cronstadt"/>
+ <tag k="email" v="contact@neovelo.fr"/>
<tag k="name" v="Neovelo"/>
+ <tag k="note" v="Vente et location de Vélos à Assistance Electrique. Réparations tous cycles"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="406633544" lat="48.8613337" lon="2.3721111">
- <tag k="addr:housenumber" v="81"/>
- <tag k="addr:street" v="Boulevard Richard Lenoir"/>
+ <tag k="brand" v="Orbita;TVT;Renault;EXS"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="81"/>
+ <tag k="contact:phone" v="+33 1 44 93 79 84"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Boulevard Richard Lenoir"/>
<tag k="email" v="lespetitsvelos@wanadoo.fr"/>
<tag k="name" v="Les Petits Vélos de Maurice"/>
<tag k="opening_hours" v="Tu-Fr 09:00-18:30;Sa 11:00-13:30,14:30-18:30"/>
- <tag k="phone" v="01 44 93 79 84"/>
<tag k="service:bicycle:pump" v="yes"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.lespetitsvelosdemaurice.fr"/>
+ <tag k="website" v="http://www.lespetitsvelosdemaurice.fr/"/>
</node>
<node id="406637567" lat="48.8501427" lon="2.3910294">
+ <tag k="addr:housenumber" v="18"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue des Boulets"/>
+ <tag k="brand" v="Brompton;Mini Velo;Diana;Pocket Bike;Silver Fly"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="18"/>
+ <tag k="contact:phone" v="+33 1 43 48 65 46"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue Boulets"/>
<tag k="name" v="Cycles Pliants Expansion"/>
+ <tag k="note" v="Vélos pliants, vélos électriques, tricycles et remorques"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.velo-pliant.com"/>
</node>
<node id="406638261" lat="48.8500086" lon="2.3911871">
<tag k="name" v="Velectris"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="406639776" lat="48.8499064" lon="2.3992524">
+ <tag k="brand" v="MBK;Giant;BH;Thomas"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="24"/>
+ <tag k="contact:phone" v="+33 1 43 73 06 10"/>
+ <tag k="contact:postcode" v="75020"/>
+ <tag k="contact:street" v="Boulevard de Charonne"/>
<tag k="name" v="Cycles Delcayre"/>
- <tag k="phone" v="0143730610"/>
+ <tag k="note" v="Vélos enfants, électriques, sacoches"/>
<tag k="service:bicycle:pump" v="unknown"/>
<tag k="service:bicycle:rental" v="no"/>
<tag k="service:bicycle:repair" v="yes"/>
@@ -69,9 +113,15 @@
<tag k="website" v="http://cyclesdelcayre.fr/"/>
</node>
<node id="406641765" lat="48.8463059" lon="2.4121013">
+ <tag k="brand" v="Hase;Velotechnik"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="1à5"/>
+ <tag k="contact:phone" v="+33 1 43 41 18 10"/>
+ <tag k="contact:postcode" v="75012"/>
+ <tag k="contact:street" v="Rue Fernand-Foureau"/>
<tag k="name" v="Rando Cycles"/>
+ <tag k="note" v="Fabrication vélos de randonnée sur mesures. Vente accessoires, pièces et outillage. Distribution vélos couchés. Vente tricycles et remorques"/>
<tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00; Sa 10:00-13:00, 14:00-18:00"/>
- <tag k="phone" v="+331 43 41 18 10"/>
<tag k="service:bicycle:cleaning" v="no"/>
<tag k="service:bicycle:pump" v="no"/>
<tag k="service:bicycle:repair" v="yes"/>
@@ -81,65 +131,88 @@
<tag k="website" v="http://www.rando-cycles.com/"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="406649851" lat="48.8680273" lon="2.3900290">
- <tag k="name" v="BMG Baillou"/>
+ <node id="406649851" lat="48.8679871" lon="2.3900342">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="10"/>
+ <tag k="contact:phone" v="+33 1 46 36 74 63"/>
+ <tag k="contact:postcode" v="75020"/>
+ <tag k="contact:street" v="Rue Sorbier"/>
+ <tag k="name" v="BMG Cycles"/>
+ <tag k="note" v="de père en fils depuis 1903"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="406651951" lat="48.8661235" lon="2.3664950">
+ <tag k="contact:phone" v="+33 1 47 00 27 47"/>
+ <tag k="contact:website" v="http://www.cycleslaurent.com/"/>
<tag k="name" v="Cycles Laurent"/>
+ <tag k="note" v="Cadres sur mesures, vélos de course"/>
<tag k="opening_hours" v="Mo-Sa 10:00-18:45"/>
- <tag k="phone" v="+331 47 00 27 47"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.cycles-laurent-paris.fr/"/>
</node>
<node id="406653301" lat="48.8610723" lon="2.3703539">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="22"/>
+ <tag k="contact:phone" v="+33 1 48 87 60 01"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue Alphonse Baudin"/>
<tag k="email" v="info@parisvelosympa.com"/>
<tag k="name" v="Paris à Vélo, c’est Sympa"/>
- <tag k="phone" v="+33 1 48 87 60 01"/>
+ <tag k="note" v="Organisation de balades à vélo dans Paris. Location vélos de ville et tandems"/>
<tag k="service:bicycle:cleaning" v="no"/>
<tag k="service:bicycle:diy" v="no"/>
<tag k="service:bicycle:pump" v="no"/>
<tag k="service:bicycle:rental" v="yes"/>
<tag k="service:bicycle:repair" v="no"/>
<tag k="service:bicycle:retail" v="no"/>
- <tag k="service:bicycle:second_hand" v="no"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.parisvelosympa.com"/>
</node>
- <node id="406654663" lat="48.8568808" lon="2.3729654">
- <tag k="addr:housename" v="7"/>
- <tag k="name" v="Bicloune"/>
- <tag k="opening_hours" v="Tu,We,Fr 13:00-18:00; Tu 13:00-20:00; Sa 09:30-12:00,13:00-18:00"/>
- <tag k="service:bicycle:pump" v="fee"/>
- <tag k="service:bicycle:rental" v="fixme"/>
- <tag k="service:bicycle:repair" v="yes"/>
- <tag k="service:bicycle:retail" v="yes"/>
- <tag k="service:bicycle:second_hand" v="no"/>
- <tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.bicloune.fr/"/>
- </node>
<node id="406661388" lat="48.8647160" lon="2.3654795">
- <tag k="name" v="Preya cycle"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="23"/>
+ <tag k="contact:phone" v="+33 1 42 77 01 19"/>
+ <tag k="contact:postcode" v="75003"/>
+ <tag k="contact:street" v="Boulevard du Temple"/>
+ <tag k="name" v="Preya Cycle"/>
+ <tag k="note" v="Hollandais, ville, VTT, VTC"/>
+ <tag k="opening_hours" v="Tu-Sa 11:00-19:00"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://preyacycles.com/"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406664708" lat="48.8456128" lon="2.3401302">
- <tag k="addr:housenumber" v="81"/>
- <tag k="addr:street" v="Boulevard Saint-Michel"/>
+ <tag k="brand" v="Gazelle;Cyrus;Mac Douglas;Giant"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="81"/>
+ <tag k="contact:phone" v="+33 1 43 54 85 36"/>
+ <tag k="contact:postcode" v="75005"/>
+ <tag k="contact:street" v="Boulevard Saint-Michel"/>
<tag k="name" v="Au Point Vélo Hollandais"/>
- <tag k="phone" v="01 43 54 85 36"/>
+ <tag k="note" v="Hollandais et ville"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.velo-ville-hollandais.fr/; http://www.pointvelo.com/"/>
+ <tag k="website" v="http://www.pointvelo.com/"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406669671" lat="48.8351552" lon="2.3241552">
- <tag k="contact:fax" v="01 43 20 95 88"/>
- <tag k="contact:phone" v="01 43 22 78 55"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:fax" v="+33 1 43 20 95 88"/>
+ <tag k="contact:housenumber" v="129"/>
+ <tag k="contact:phone" v="+33 1 43 22 78 55"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Avenue du Maine"/>
<tag k="name" v="Vélo &amp; Oxygen"/>
<tag k="service:bicycle:parts" v="yes"/>
<tag k="service:bicycle:repair" v="yes"/>
@@ -149,119 +222,201 @@
<tag k="wheelchair" v="no"/>
</node>
<node id="406670408" lat="48.8451785" lon="2.3193421">
+ <tag k="brand" v="Giant;Lapierre;Orbéa"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="36"/>
+ <tag k="contact:phone" v="+33 1 45 44 10 09"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Boulevard Montparnasse"/>
<tag k="name" v="Bike in Paris"/>
+ <tag k="note" v="Montage à la carte"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406674136" lat="48.8496463" lon="2.3235990">
+ <tag k="alt_name" v="Brompton Junction"/>
+ <tag k="brand" v="Cannondale;Utopia;Brompton;Gazelle;Azor;Michel Thomas"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="3"/>
+ <tag k="contact:phone" v="+33 1 45 44 72 97"/>
+ <tag k="contact:postcode" v="75006"/>
+ <tag k="contact:street" v="Rue de l’Abbé-Grégoire"/>
<tag k="name" v="Les Vélos Parisiens"/>
+ <tag k="note" v="Vente ville et VTC, vélos enfants, pliants"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.lesvelosparisiens.com"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406676109" lat="48.8524944" lon="2.3375559">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="30"/>
+ <tag k="contact:phone" v="+33 1 43 29 09 04"/>
+ <tag k="contact:postcode" v="75006"/>
+ <tag k="contact:street" v="Rue Grégoire de Tours"/>
<tag k="name" v="Cycle Centre"/>
+ <tag k="note" v="Spécialiste du vélo Hollandais Anglais. VTT – VTC"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406678204" lat="48.8393787" lon="2.3607356">
+ <tag k="brand" v="Puch;Gitane"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="11"/>
+ <tag k="contact:phone" v="+33 1 42 17 01 79"/>
+ <tag k="contact:postcode" v="75013"/>
+ <tag k="contact:street" v="Boulevard St Marcel"/>
+ <tag k="email" v="espritvelo@free.fr"/>
<tag k="name" v="Esprit Vélo"/>
+ <tag k="note" v="Réparation sans RDV, vente d’équipement pour vélo de ville. Vélo enfant, vélo ville, vélo hollandais, vélo électrique. Travaille avec le groupe CycleEurope. Propose le gravage sans rendez-vous."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.espritvelo.fr"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406680366" lat="48.8231589" lon="2.3553031">
+ <tag k="brand" v="Gitane;Lapierre;Bianchi;Peugeot"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="34"/>
+ <tag k="contact:phone" v="+33 1 45 88 50 04"/>
+ <tag k="contact:postcode" v="75013"/>
+ <tag k="contact:street" v="Rue Damesme"/>
<tag k="name" v="Cyclo Sport 34"/>
<tag k="opening_hours" v="Tu-Fr 09:30-12:30,14:00-19:00; Sa 09:30-12:30,14:00-18:00"/>
- <tag k="phone" v="01 45 88 50 04"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="406683542" lat="48.8224146" lon="2.3462367">
- <tag k="addr:housenumber" v="14"/>
- <tag k="addr:street" v="Place de Rungis"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="14"/>
+ <tag k="contact:phone" v="+33 1 45 65 49 89"/>
+ <tag k="contact:postcode" v="75013"/>
+ <tag k="contact:street" v="Place de Rungis"/>
<tag k="name" v="Mountain Biker"/>
+ <tag k="note" v="Spécialiste VTT"/>
<tag k="opening_hours" v="Tu-Fr 10:00-19:00; Sa 10:00-18:30"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.mountainbikerparis.fr/"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="406687039" lat="48.8276355" lon="2.3329933">
- <tag k="name" v="Sri Kanaga Ambika Velo"/>
- <tag k="shop" v="bicycle"/>
- </node>
<node id="406692819" lat="48.8904588" lon="2.3845951">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="38 bis"/>
- <tag k="addr:postcode" v="75019"/>
- <tag k="addr:street" v="Quai de la Marne"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="38 bis"/>
+ <tag k="contact:phone" v="+33 1 43 43 40 74"/>
+ <tag k="contact:postcode" v="75019"/>
+ <tag k="contact:street" v="Quai de la Marne"/>
+ <tag k="description" v="Association fondée sur un projet d'animation et une démarche sociale."/>
<tag k="name" v="AICV"/>
- <tag k="opening_hours" v="9h30 - 18h"/>
- <tag k="phone" v="+33 1 43 43 40 74"/>
+ <tag k="opening_hours" v="Tu-Sa 09:45-12:30,13:30-17:15"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.aicv.net/"/>
</node>
- <node id="406696580" lat="48.8802190" lon="2.3670520">
- <tag k="name" v="Valmy Cycle"/>
+ <node id="406696580" lat="48.8799209" lon="2.3669233">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="177"/>
+ <tag k="contact:phone" v="+33 1 42 09 68 16"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Quai de Valmy"/>
+ <tag k="name" v="Cyclo Store"/>
+ <tag k="note" v="Réparation sans rendez-vous. Station de gonflage et de réglages"/>
+ <tag k="opening_hours" v="Mo-Su 9:00-19:00"/>
<tag k="service:bicycle:pump" v="yes"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://cyclostore.canalblog.com/"/>
</node>
<node id="406698923" lat="48.8821782" lon="2.3636917">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="36"/>
+ <tag k="contact:phone" v="+33 1 40 34 81 18"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue de l’aqueduc"/>
<tag k="name" v="Le Petit Boyauteur"/>
+ <tag k="note" v="Montage de vélos personnalisés"/>
+ <tag k="opening_hours" v="Tu-Su 09:29-13:03,15:37-19:08"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="408498997" lat="48.8620618" lon="2.3399933">
<tag k="addr:housenumber" v="156"/>
<tag k="addr:street" v="Rue Saint-Honoré"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:postcode" v="75001"/>
<tag k="name" v="Cycles Saint-Honoré"/>
<tag k="opening_hours" v="Mo-Fr 10:00-13:00, 14:00-19:00; Sa 14:00-19:00"/>
- <tag k="phone" v="01 42 60 06 19"/>
+ <tag k="phone" v="+33 1 42 60 06 19"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://cyclesainthonore.fr/"/>
</node>
- <node id="408500826" lat="48.8838731" lon="2.3182772">
- <tag k="name" v="ADV Atelier des Vélos"/>
- <tag k="shop" v="bicycle"/>
- </node>
<node id="408501350" lat="48.8979512" lon="2.3360083">
<tag k="name" v="Lardais Patrick"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="408503857" lat="48.8488852" lon="2.4290130">
+ <tag k="addr:city" v="Montreuil"/>
+ <tag k="addr:postcode" v="93100"/>
<tag k="name" v="Bouticycle du Château"/>
+ <tag k="opening_hours" v="Tu-Fr 10:00-12:45,15:00-19:00; Sa 10:00-13:00,15:00-18:30"/>
<tag k="shop" v="bicycle"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="408561503" lat="48.8158200" lon="2.3049898">
- <tag k="addr:city" v="Malakoff"/>
- <tag k="addr:housenumber" v="142"/>
- <tag k="addr:postcode" v="92240"/>
- <tag k="addr:street" v="Avenue Pierre Brossolette"/>
+ <tag k="brand" v="Giant;Scott"/>
+ <tag k="contact:city" v="Malakoff"/>
+ <tag k="contact:housenumber" v="142"/>
+ <tag k="contact:phone" v="+33 1 46 57 37 23"/>
+ <tag k="contact:postcode" v="92240"/>
+ <tag k="contact:street" v="Avenue Pierre Brossolette"/>
+ <tag k="contact:website" v="www.velo-dans-la-ville.fr"/>
<tag k="name" v="Un vélo dans la ville"/>
- <tag k="opening_hours" v="Mon-Sat 10-12 13-18h30"/>
- <tag k="phone" v="+33 1 46 57 37 23"/>
+ <tag k="opening_hours" v="Tu-Th,Sa 10:00-12:00,13:00-19:00;Fr 10:00-12:00,13:00-18:00"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="www.velo-dans-la-ville.fr"/>
</node>
<node id="408561867" lat="48.8336693" lon="2.3187014">
- <tag k="addr:housenumber" v="36"/>
<tag k="addr:street" v="Rue Pernety"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="36"/>
+ <tag k="contact:phone" v="+33 1 45 42 74 56"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue Pernety"/>
<tag k="name" v="Ok Ça Roule"/>
- <tag k="phone" v="01 45 42 74 56"/>
+ <tag k="note" v="Réparation, vente de vélos. Neufs et occasions de toutes marques."/>
+ <tag k="service:bicycle:rental" v="yes"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.okcaroule.fr"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="408561950" lat="48.8397690" lon="2.2932915">
- <tag k="name" v="URBAN CYCLES 15"/>
+ <tag k="name" v="Urban Cycles 15"/>
<tag k="shop" v="bicycle"/>
<tag k="wheelchair" v="no"/>
</node>
@@ -271,7 +426,15 @@
<tag k="wheelchair" v="no"/>
</node>
<node id="408562162" lat="48.8254765" lon="2.2487000">
+ <tag k="contact:city" v="Boulogne-Billancourt"/>
+ <tag k="contact:housenumber" v="2"/>
+ <tag k="contact:phone" v="+33 1 46 21 23 23"/>
+ <tag k="contact:postcode" v="92100"/>
+ <tag k="contact:street" v="av Pierre Grenier"/>
<tag k="name" v="Giant Bicycles"/>
+ <tag k="note" v="Montage à la carte."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="source" v="survey"/>
</node>
@@ -283,19 +446,31 @@
<tag k="name" v="Respiro"/>
<tag k="shop" v="bicycle"/>
</node>
- <node id="621288102" lat="48.8696198" lon="2.3660804">
- <tag k="shop" v="bicycle"/>
- </node>
<node id="632979744" lat="48.8943204" lon="2.3406884">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="58"/>
+ <tag k="contact:phone" v="+33 6 13 13 42 27"/>
+ <tag k="contact:postcode" v="75018"/>
+ <tag k="contact:street" v="Rue du Ruisseau"/>
<tag k="name" v="Vélo 18 Vintage"/>
+ <tag k="note" v="Spécialiste vélos français années 1960-1980"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.velo-vintage.com/"/>
</node>
<node id="647811682" lat="48.8578908" lon="2.3534575">
<tag k="name" v="BHV Vélo"/>
<tag k="shop" v="bicycle"/>
</node>
- <node id="647817455" lat="48.8948379" lon="2.2975723">
+ <node id="647817455" lat="48.8948264" lon="2.2975816">
+ <tag k="contact:city" v="Levallois-Perret"/>
+ <tag k="contact:housenumber" v="53"/>
+ <tag k="contact:phone" v="+33 1 47 37 42 14"/>
+ <tag k="contact:postcode" v="92300"/>
+ <tag k="contact:street" v="Rue Victor Hugo"/>
<tag k="name" v="Alex Singer"/>
+ <tag k="note" v="Fabrication de cycles et pièces détachées"/>
<tag k="service:bicycle:cleaning" v="no"/>
<tag k="service:bicycle:diy" v="no"/>
<tag k="service:bicycle:pump" v="no"/>
@@ -317,29 +492,68 @@
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.rando-boutique.com"/>
</node>
- <node id="675841308" lat="48.8312605" lon="2.3488990">
+ <node id="675841308" lat="48.8309780" lon="2.3487086">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="67"/>
+ <tag k="addr:postcode" v="75013"/>
+ <tag k="addr:street" v="Rue de Croulebarbe"/>
+ <tag k="branch" v="13ème Corvisart"/>
+ <tag k="brand" v="Buzibi"/>
+ <tag k="description" v="Spécialiste vélo à assitance électrique. Atelier réparation tous vélos"/>
<tag k="name" v="Buzibi"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
+ <tag k="phone" v="+33 1 47 07 16 75"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.buzibi.fr/"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="675848662" lat="48.8641571" lon="2.3658170">
+ <tag k="brand" v="composants Brooks;BLB;Miche;Nitto;Sugino;MKS"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="17"/>
+ <tag k="contact:phone" v="+33 9 51 61 68 29"/>
+ <tag k="contact:postcode" v="75003"/>
+ <tag k="contact:street" v="Boulevard du Temple"/>
<tag k="name" v="BiCyCle Store"/>
+ <tag k="note" v="Beach cruisers, vélos pliants, vélos de ville, pignon fixe..."/>
<tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
- <tag k="phone" v="+339 51 61 68 29"/>
+ <tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.bicyclestore.fr"/>
</node>
<node id="675865742" lat="48.8510262" lon="2.2933495">
+ <tag k="brand" v="Brompton;Strida;Montague"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="5"/>
+ <tag k="contact:phone" v="+33 1 40 58 12 22"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Rue Humblot"/>
+ <tag k="email" v="info@roulezchampions.com"/>
<tag k="name" v="Roulez Champions"/>
+ <tag k="note" v="Spécialiste vélos pliants... Vélos hollandais. Réparation toutes marques."/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.roulezchampions.com"/>
</node>
<node id="675891753" lat="48.8621084" lon="2.3821230">
+ <tag k="brand" v="Specialized;Trek;Look;Time"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="47"/>
+ <tag k="contact:phone" v="+33 1 47 00 68 43"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue Servan"/>
<tag k="name" v="Franscoop"/>
+ <tag k="note" v="VTT, VTC, vélos de course, vélos pliants, vélos électriques."/>
<tag k="service:bicycle:diy" v="no"/>
<tag k="service:bicycle:pump" v="unknown"/>
<tag k="service:bicycle:rental" v="no"/>
- <tag k="service:bicycle:repair" v="customer"/>
+ <tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="service:bicycle:second_hand" v="no"/>
<tag k="shop" v="bicycle"/>
@@ -369,101 +583,111 @@
<tag k="website" v="http://www.velorution.org"/>
<tag k="wheelchair" v="yes"/>
</node>
- <node id="836328472" lat="48.8720812" lon="2.4115488"/>
- <node id="836331256" lat="48.8721138" lon="2.4114902"/>
- <node id="836331365" lat="48.8719777" lon="2.4113693"/>
- <node id="836332448" lat="48.8719349" lon="2.4113432"/>
- <node id="836339426" lat="48.8719469" lon="2.4113587"/>
- <node id="836342842" lat="48.8718001" lon="2.4112153"/>
- <node id="836346356" lat="48.8719632" lon="2.4113564"/>
- <node id="836351447" lat="48.8719811" lon="2.4113620"/>
- <node id="836355049" lat="48.8720893" lon="2.4118130"/>
- <node id="836356532" lat="48.8720407" lon="2.4114347"/>
- <node id="836357374" lat="48.8720205" lon="2.4114741"/>
- <node id="836361778" lat="48.8722043" lon="2.4116012"/>
- <node id="836366562" lat="48.8719196" lon="2.4112872"/>
- <node id="836371275" lat="48.8719677" lon="2.4113582"/>
- <node id="836372624" lat="48.8719537" lon="2.4113563"/>
- <node id="836376927" lat="48.8718444" lon="2.4112719"/>
- <node id="836388785" lat="48.8719076" lon="2.4113088"/>
- <node id="836402636" lat="48.8719473" lon="2.4113211"/>
- <node id="836404857" lat="48.8718578" lon="2.4112483"/>
- <node id="836405357" lat="48.8717258" lon="2.4113626"/>
- <node id="836814910" lat="48.8304519" lon="2.2944314">
+ <node id="836814947" lat="48.8305317" lon="2.2941957">
<tag k="addr:housenumber" v="77"/>
<tag k="addr:street" v="Boulevard Lefebvre"/>
<tag k="name" v="Holland Bikes"/>
<tag k="note" v="Réparation toutes marques"/>
- <tag k="phone" v="01 42 50 42 40"/>
+ <tag k="opening_hours" v="Tu-Fr 10:00-19:00"/>
+ <tag k="phone" v="+33 1 42 50 42 40"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.hollandbikes.com/"/>
- <tag k="wheelchair" v="no"/>
</node>
- <node id="836814947" lat="48.8305317" lon="2.2941957">
- <tag k="addr:housenumber" v="77"/>
- <tag k="addr:street" v="Boulevard Lefebvre"/>
- <tag k="name" v="Holland Bikes"/>
- <tag k="note" v="Réparation toutes marques"/>
- <tag k="phone" v="01 42 50 42 40"/>
+ <node id="904060582" lat="48.8502135" lon="2.3588712">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="1"/>
+ <tag k="contact:phone" v="+33 1 43 29 05 63"/>
+ <tag k="contact:postcode" v="75004"/>
+ <tag k="contact:street" v="Boulevard Henri IV"/>
+ <tag k="name" v="Giant Store Notre-Dame"/>
+ <tag k="note" v="Réparation toutes marques. Montage à la carte. Accessoires. Textiles. Nutrition. Vélos enfants, ville, VTC, VTT, route, Triathlon, Vélos à Assistance Électrique, Fixie."/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.hollandbikes.com/"/>
- </node>
- <node id="867461114" lat="48.9008522" lon="2.3924044"/>
- <node id="867497570" lat="48.9008730" lon="2.3924109"/>
- <node id="867507166" lat="48.9007497" lon="2.3924885"/>
- <node id="867517715" lat="48.9007636" lon="2.3923822"/>
- <node id="867527154" lat="48.9007875" lon="2.3923878"/>
- <node id="867529215" lat="48.9008591" lon="2.3925174"/>
- <node id="904060582" lat="48.8502727" lon="2.3588853">
- <tag k="name" v="Giant"/>
- <tag k="shop" v="bicycle"/>
- <tag k="wheelchair" v="no"/>
- </node>
- <node id="1002548792" lat="48.8652464" lon="2.3695461">
- <tag k="name" v="Go Sport Vélo"/>
- <tag k="opening_hours" v="Mo-Sa 10:00-19:30"/>
- <tag k="shop" v="bicycle"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="website" v="http://www.giant-notredame.fr/"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="1079210602" lat="48.8464625" lon="2.3817701">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="25"/>
+ <tag k="contact:phone" v="+33 1 43 07 39 05"/>
+ <tag k="contact:postcode" v="75012"/>
+ <tag k="contact:street" v="Rue Crozatier"/>
<tag k="name" v="Vélo services"/>
+ <tag k="phone" v="+33 1 43 43 92 52"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.veloservices.fr"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="1300607533" lat="48.8772979" lon="2.2851254">
+ <tag k="brand" v="Gitane;Bianchi;Meteor"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="72"/>
+ <tag k="contact:postcode" v="75017"/>
+ <tag k="contact:street" v="Avenue de la Grande Armée"/>
<tag k="name" v="Velo &amp; Oxygen"/>
+ <tag k="service:bicycle:parts" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="1366642101" lat="48.8393036" lon="2.2837056">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="93"/>
- <tag k="addr:street" v="Avenue Félix Faure"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="93"/>
+ <tag k="contact:phone" v="+33 1 45 57 56 88"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Avenue Félix Faure"/>
<tag k="name" v="Cyclo Paris 15"/>
- <tag k="phone" v="01 45 57 56 88"/>
+ <tag k="note" v="Spécialiste du vélo hollandais"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2011"/>
- <tag k="website" v="http://www.velo-hollandais-paris.fr/"/>
+ <tag k="website" v="http://www.cycloparis15.fr"/>
</node>
<node id="1369678524" lat="48.8560577" lon="2.3569772">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Rue de Rivoli"/>
<tag k="name" v="Ecox"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-paris-rivoli"/>
</node>
- <node id="1378321857" lat="48.8699573" lon="2.3668657">
- <tag k="name" v="Velovia"/>
+ <node id="1378321857" lat="48.8700199" lon="2.3668590">
+ <tag k="brand" v="Brompton"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="50"/>
+ <tag k="contact:phone" v="+33 1 48 04 84 91"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Quai de Jemmapes"/>
+ <tag k="name" v="Cyclable"/>
+ <tag k="note" v="Spécialiste du vélo de ville haut de gamme, vélos pliants, vélos électriques ainsi que les nouveaux vélos couchés."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="www.cyclable.com"/>
+ <tag k="website" v="http://paris10.cyclable.com/"/>
</node>
<node id="1457573267" lat="48.8401416" lon="2.3146953">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue de l'Armorique"/>
- <tag k="name" v="Freemoos"/>
+ <tag k="brand" v="Matra;Gazelle"/>
+ <tag k="description" v="Electriser vos déplacements"/>
+ <tag k="name" v="Altermove"/>
+ <tag k="note" v="VAE"/>
+ <tag k="old_name" v="Freemoos"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-13:45,15:00-19:00"/>
<tag k="shop" v="bicycle"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
@@ -473,31 +697,41 @@
<tag k="wheelchair" v="no"/>
</node>
<node id="1458511693" lat="48.8647906" lon="2.3476242">
- <tag k="addr:housenumber" v="40"/>
- <tag k="addr:street" v="Rue Tiquetonne"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="40"/>
+ <tag k="contact:phone" v="+33 1 44 54 06 46"/>
+ <tag k="contact:postcode" v="75002"/>
+ <tag k="contact:street" v="Rue Tiquetonne"/>
<tag k="name" v="En Selle Marcel"/>
+ <tag k="note" v="Beaux vélos pour tous les jours, vélos rares pour amateurs, vélos vintage des années 50s aux 80s, accessoires inédits style et confort. Atelier pour l'entretien"/>
<tag k="opening_hours" v="tu-sa 11:00-19:00"/>
- <tag k="phone" v="01 44 54 06 46"/>
+ <tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
- <tag k="website" v="http://ensellemarcel.over-blog.com/"/>
+ <tag k="website" v="http://www.ensellemarcel.com"/>
</node>
- <node id="1458511931" lat="48.8630959" lon="2.3587203">
- <tag k="name" v="freemos"/>
+ <node id="1672310011" lat="48.8685084" lon="2.3857567">
+ <tag k="name" v="Velotority"/>
+ <tag k="opening_hours" v="Tu-Fr 10:00-13:00,14:00-19:00; Sa 13:00-19:00"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.velotority.com"/>
</node>
<node id="1747138935" lat="48.8392743" lon="2.4024830">
<tag k="contact:housenumber" v="23"/>
<tag k="contact:street" v="Rue de Toul"/>
<tag k="name" v="Belleville Lowrider"/>
<tag k="note" v="Vélo californien"/>
- <tag k="phone" v="01 44 87 09 66"/>
+ <tag k="phone" v="+33 1 44 87 09 66"/>
<tag k="service:bicycle:rental" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.belleville-lowrider.fr/"/>
</node>
<node id="1747138937" lat="48.8520816" lon="2.2952447">
+ <tag k="addr:housenumber" v="24"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue Edgar Faure"/>
<tag k="name" v="Fat Tire Bike Tours"/>
<tag k="service:bicycle:cleaning" v="no"/>
<tag k="service:bicycle:diy" v="no"/>
@@ -510,30 +744,38 @@
<tag k="wheelchair" v="no"/>
</node>
<node id="1827357919" lat="48.8484768" lon="2.2750574">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="47"/>
- <tag k="addr:postcode" v="75016;75116"/>
- <tag k="addr:street" v="Avenue de Versailles"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="47"/>
+ <tag k="contact:phone" v="+33 9 80 85 62 04"/>
+ <tag k="contact:postcode" v="75016"/>
+ <tag k="contact:street" v="avenue de Versailles"/>
<tag k="name" v="Les Cyclistes Branchés"/>
- <tag k="opening_hours" v="Tue-Fri 10.30 - 19.30, Sat 10.00 - 19.00"/>
- <tag k="phone" v="+33 9 80 85 62 04"/>
+ <tag k="note" v="Spécialiste du vélo électrique"/>
+ <tag k="opening_hours" v="Tu-Fr 10:30-19:30; Sa 10:00-19:00"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.les-cyclistes-branches.com/"/>
</node>
<node id="1883161740" lat="48.8784909" lon="2.3722436">
- <tag k="addr:housenumber" v="10"/>
- <tag k="addr:street" v="Rue des Chaufourniers"/>
- <tag k="name" v="JPCycles"/>
- <tag k="note" v="à vérifier sur place"/>
- <tag k="phone" v="09 53 76 97 70"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="10"/>
+ <tag k="contact:postcode" v="75019"/>
+ <tag k="contact:street" v="Rue des Chaufourniers"/>
+ <tag k="name" v="JP Cycles"/>
+ <tag k="note" v="Débarras de vos bicyclettes"/>
+ <tag k="opening_hours" v="Mo-Sa 9:00-13:00, 15:00-19:00"/>
+ <tag k="phone" v="+33 9 53 76 97 70"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://jpcycles.sitego.fr"/>
</node>
<node id="1896147373" lat="48.8891012" lon="2.3335587">
+ <tag k="contact:street" v="Rue Damrémont"/>
<tag k="name" v="Paris Vert"/>
<tag k="opening_hours" v="Tu-Sa 09:30-18:30"/>
- <tag k="phone" v="01 53 09 99 09"/>
+ <tag k="phone" v="+33 1 53 09 99 09"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
@@ -555,46 +797,50 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
<tag k="website" v="https://www.cyclocoop.org"/>
</node>
- <node id="1989949313" lat="48.8717596" lon="2.4114045">
- <tag k="addr:housenumber" v="5"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
- </node>
- <node id="1989949317" lat="48.8720680" lon="2.4117866">
- <tag k="addr:housenumber" v="7"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
- </node>
<node id="2050246285" lat="48.8772478" lon="2.2860197">
<tag k="shop" v="bicycle"/>
</node>
- <node id="2184305426" lat="48.8462365" lon="2.3513428">
- <tag k="name" v="Gepetto &amp; Vélos"/>
- <tag k="phone" v="+33 1 43 54 19 95"/>
- <tag k="service:bicycle:rental" v="yes"/>
+ <node id="2121960202" lat="48.8841392" lon="2.3039160">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="76"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Avenue de Villiers"/>
+ <tag k="name" v="Cyclable"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
- <tag k="service:bicycle:second_hand" v="yes"/>
- <tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.gepetto-velos.com/"/>
- </node>
- <node id="2267747897" lat="48.8458046" lon="2.3826922">
- <tag k="name" v="La Bicyclette"/>
- <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
- <tag k="phone" v="09 54 71 92 19"/>
<tag k="shop" v="bicycle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
+ <tag k="website" v="http://paris17.cyclable.com/"/>
</node>
<node id="2304319861" lat="48.8714764" lon="2.3601029">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="29b"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Boulevard de Magenta"/>
<tag k="name" v="Cycles Minutes"/>
+ <tag k="opening_hours" v="Mo-Su 09:00-19:00"/>
<tag k="service:bicycle:rental" v="yes"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.cyclesminutes.fr/"/>
</node>
<node id="2304319863" lat="48.8569202" lon="2.3801348">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="50"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue Godefroy Cavaignac"/>
<tag k="name" v="Rapid Vélos"/>
+ <tag k="note" v="Le spécialiste du Hollandais. Réparateur toutes marques."/>
+ <tag k="opening_hours" v="Tu-Su 9:00-20:00"/>
<tag k="phone" v="+33 1 43 73 18 12"/>
<tag k="service:bicycle:pump" v="yes"/>
+ <tag k="service:bicycle:rental" v="yes"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="2328496615" lat="48.8677236" lon="2.3688989">
@@ -604,35 +850,32 @@
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.cyclopebikes.fr/"/>
</node>
- <node id="2346487915" lat="48.8302973" lon="2.3765630">
- <tag k="name" v="Decathlon"/>
- <tag k="service:bicycle:repair" v="yes"/>
- <tag k="service:bicycle:retail" v="yes"/>
- <tag k="shop" v="bicycle"/>
- <tag k="wheelchair" v="no"/>
- </node>
<node id="2445444744" lat="48.8403910" lon="2.3454092">
+ <tag k="brand" v="Strida;Brompton"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="51"/>
+ <tag k="contact:phone" v="+33 1 45 35 30 75"/>
+ <tag k="contact:postcode" v="75005"/>
+ <tag k="contact:street" v="Rue Claude Bernard"/>
+ <tag k="email" v="contact@labicycletteelectrique.fr"/>
<tag k="name" v="La Bicyclette Électrique"/>
+ <tag k="note" v="Spécialiste vélos électriques et vélos pliables"/>
+ <tag k="opening_hours" v="Mo-Sa 10:00-19:30"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="source" v="survey"/>
</node>
- <node id="2458633044" lat="48.8219353" lon="2.2873558">
- <tag k="addr:city" v="Vanves"/>
- <tag k="addr:housenumber" v="11"/>
- <tag k="addr:postcode" v="92170"/>
- <tag k="addr:street" v="Rue Sadi Carnot"/>
- <tag k="name" v="CRC Cycles"/>
- <tag k="opening_hours" v="Tu-Sa 10:30-13:00,15:30-19:00; Mo,Su off"/>
- <tag k="shop" v="bicycle"/>
- <tag k="website" v="http://www.crc-cycles.com"/>
- </node>
- <node id="2460362212" lat="48.8160667" lon="2.2762302">
- <tag k="addr:city" v="Vanves"/>
- <tag k="addr:housenumber" v="40"/>
- <tag k="addr:postcode" v="92170"/>
- <tag k="addr:street" v="Avenue de la Paix"/>
+ <node id="2460362212" lat="48.8164252" lon="2.2756012">
+ <tag k="brand" v="MBK;LaPierre"/>
+ <tag k="contact:city" v="Vanves"/>
+ <tag k="contact:housenumber" v="40"/>
+ <tag k="contact:phone" v="+33 1 46 42 32 98"/>
+ <tag k="contact:postcode" v="92170"/>
+ <tag k="contact:street" v="Avenue de la Paix"/>
<tag k="name" v="Chardonnet"/>
- <tag k="note" v="Sells bikes from MBK and LaPierre."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
</node>
<node id="2464044815" lat="48.8170382" lon="2.2479946">
@@ -645,9 +888,43 @@
<tag k="shop" v="bicycle"/>
<tag k="website" v="www.vtt-cube.fr"/>
</node>
+ <node id="2503108174" lat="48.8261936" lon="2.3733792">
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:street" v="Rue Trolley de Prévaux"/>
+ <tag k="name" v="Les petits vélos de Tolbiac"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
+ </node>
+ <node id="2639430689" lat="48.8146444" lon="2.4012557">
+ <tag k="addr:city" v="Ivry-sur-Seine"/>
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:postcode" v="94200"/>
+ <tag k="addr:street" v="Boulevard de Brandebourg"/>
+ <tag k="name" v="Cyclofficine d'Ivry"/>
+ <tag k="note" v="Atelier vélo coopératif. Ouvertures : mardi 19h-22h, jeudi et samedi 14h-19h (sauf 1er sam du mois)"/>
+ <tag k="opening_hours" v="Tu 19:00-22:00; Th,Sa 14:00-19:00; Sa[1] off"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Generale des Impots - Cadastre. Mise a jour : 2014"/>
+ <tag k="website" v="https://www.cyclocoop.org"/>
+ </node>
+ <node id="2670790926" lat="48.8530768" lon="2.4216908">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="name" v="Le Comptoir Bike Shop"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2014"/>
+ <tag k="url" v="http://lecomptoirbikeshop.com/"/>
+ </node>
<node id="2682494131" lat="48.8350876" lon="2.3236228">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="136"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue du Maine"/>
<tag k="name" v="Ecox"/>
- <tag k="phone" v="01 43 21 81 78"/>
+ <tag k="phone" v="+33 1 43 21 81 78"/>
<tag k="service:bicycle:rental" v="no"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
@@ -655,17 +932,14 @@
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-montparnasse/"/>
</node>
- <node id="2739184613" lat="48.8342154" lon="2.4038005">
- <tag k="service:bicycle:retail" v="yes"/>
- <tag k="shop" v="bicycle"/>
- </node>
<node id="2810060724" lat="48.8472580" lon="2.3874271">
<tag k="email" v="paris12@cyclable.com"/>
<tag k="name" v="Cyclable 12e"/>
- <tag k="phone" v="09 72 45 78 01"/>
+ <tag k="phone" v="+33 9 72 45 78 01"/>
<tag k="service:bicycle:repair" v="yes"/>
<tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://paris12.cyclable.com/"/>
</node>
<node id="2827746701" lat="48.8249912" lon="2.3579762">
<tag k="name" v="Cycles Sport Urbain"/>
@@ -674,7 +948,7 @@
<tag k="source:opening_hours" v="survey"/>
<tag k="website" v="http://cyclesurbain.fr"/>
</node>
- <node id="2845063415" lat="48.8710692" lon="2.3601169">
+ <node id="2845063415" lat="48.8710703" lon="2.3600993">
<tag k="name" v="Alternative Bike"/>
<tag k="shop" v="bicycle"/>
</node>
@@ -696,35 +970,50 @@
<tag k="wheelchair" v="no"/>
</node>
<node id="3213130438" lat="48.8424383" lon="2.2646195">
+ <tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="59"/>
<tag k="addr:postcode" v="75016"/>
<tag k="addr:street" v="Rue Chardon-Lagache"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="59"/>
+ <tag k="contact:postcode" v="75016"/>
+ <tag k="contact:street" v="Rue Chardon-Lagache"/>
<tag k="name" v="Paris Vert"/>
+ <tag k="note" v="&quot;As of 1st April 2017, temporarily closed due to illness&quot;, so call before going."/>
+ <tag k="phone" v="+33.1 40 50 20 01"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://parisvert.fr/"/>
</node>
<node id="3222082587" lat="48.8448042" lon="2.2707467">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="98"/>
- <tag k="addr:postcode" v="75016"/>
- <tag k="addr:street" v="Avenue de Versailles"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="98"/>
+ <tag k="contact:phone" v="+33 1 45 20 03 95"/>
+ <tag k="contact:postcode" v="75016"/>
+ <tag k="contact:street" v="Avenue de Versailles"/>
<tag k="name" v="Bicycland"/>
- <tag k="phone" v="+33 1 45 20 03 95"/>
+ <tag k="note" v="Spécialiste du vélo hollandais. Dépositaire vélos pliant Dahon. Réparation vélos toutes marques, vente vélos d'occasion."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://www.bicycland.com/"/>
</node>
<node id="3236199132" lat="48.8649312" lon="2.3653471">
- <tag k="name" v="triathlon"/>
+ <tag k="name" v="Triathlon Store"/>
<tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="triathlonstore.fr"/>
</node>
<node id="3247620975" lat="48.8510185" lon="2.3975274">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="110"/>
- <tag k="addr:postcode" v="75011"/>
- <tag k="addr:street" v="Rue de Montreuil"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="110"/>
+ <tag k="contact:phone" v="+33 9 84 58 35 94"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue de Montreuil"/>
<tag k="name" v="Cycles Bogoss"/>
+ <tag k="note" v="Spécialiste vélos anciens restaurés ou transformés : pignon fixe, single speed, randonneuse..."/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
<tag k="shop" v="bicycle"/>
<tag k="website" v="http://cyclesbogoss.com/"/>
</node>
@@ -739,67 +1028,540 @@
<tag k="website" v="http://www.beastybike.com/"/>
</node>
<node id="3335961964" lat="48.8843245" lon="2.3768303">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="68"/>
+ <tag k="contact:phone" v="+33 9 84 09 93 42"/>
+ <tag k="contact:postcode" v="75019"/>
+ <tag k="contact:street" v="Avenue Jean Jaurès"/>
<tag k="name" v="Cyclable"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-13:00, 14:00-19:00"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://paris19.cyclable.com/"/>
+ </node>
+ <node id="3407822104" lat="48.8471493" lon="2.4052908">
+ <tag k="email" v="contact@giant-paris12.com"/>
+ <tag k="name" v="Giant Paris 12"/>
+ <tag k="opening_hours" v="Tu-Fr 09:00-13:00,14:30-19:00; Th 09:00-13:00,14:30-17:30; Sa 10:00-13:00,14:30-18:30"/>
+ <tag k="phone" v="+33143435105"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
<tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.giant-paris12.com"/>
+ <tag k="wheelchair" v="limited"/>
</node>
- <way id="70003214">
- <nd ref="836355049"/>
- <nd ref="836361778"/>
- <nd ref="836331256"/>
- <nd ref="836328472"/>
- <nd ref="836357374"/>
- <nd ref="836356532"/>
- <nd ref="836351447"/>
- <nd ref="836331365"/>
- <nd ref="836371275"/>
- <nd ref="836346356"/>
- <nd ref="836372624"/>
- <nd ref="836339426"/>
- <nd ref="836332448"/>
- <nd ref="836402636"/>
- <nd ref="836366562"/>
- <nd ref="836388785"/>
- <nd ref="836404857"/>
- <nd ref="836376927"/>
- <nd ref="836342842"/>
- <nd ref="836405357"/>
- <nd ref="1989949313"/>
- <nd ref="1989949317"/>
- <nd ref="836355049"/>
+ <node id="3455588002" lat="48.8270223" lon="2.2769257">
+ <tag k="name" v="CRC Cycles"/>
+ <tag k="opening_hours" v="Tu-Sa 10:30-13:00,15:30-19:00"/>
+ <tag k="phone" v="+33145291045"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="3486922690" lat="48.8434401" lon="2.3829185">
+ <tag k="email" v="75paris12@culturevelo.com"/>
+ <tag k="name" v="Culture Vélo Paris 12ème"/>
+ <tag k="opening_hours" v="Tu-Fr 10:00-19:00; Sa 09:00-19:00"/>
+ <tag k="phone" v="+33 1 43 14 47 17"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="survey"/>
+ <tag k="website" v="http://www.culturevelo.com/-Paris-12eme-"/>
+ </node>
+ <node id="3501719712" lat="48.8725964" lon="2.3500793">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="15"/>
+ <tag k="contact:phone" v="+33 1 83 94 92 62"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue d'Hauteville"/>
+ <tag k="name" v="Cyclo de ville"/>
+ <tag k="note" v="Ventes de vélos, pièces détachées, réparation toutes marques"/>
+ <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
+ <tag k="operator" v="Achraf Marhag"/>
+ <tag k="service:bicycle:pump" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="local_knowledge"/>
+ <tag k="wheelchair" v="no"/>
+ </node>
+ <node id="3591966558" lat="48.8477354" lon="2.3513141">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="17"/>
+ <tag k="contact:postcode" v="75005"/>
+ <tag k="contact:street" v="Rue des Écoles"/>
+ <tag k="name" v="Holland Bikes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.hollandbikes.com/"/>
+ </node>
+ <node id="3638681300" lat="48.8555280" lon="2.4282892">
+ <tag k="addr:city" v="Montreuil"/>
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:postcode" v="93100"/>
+ <tag k="addr:street" v="Rue Garibaldi"/>
+ <tag k="name" v="Ohcyclo, atelier vélo solidaire et coopératif"/>
+ <tag k="operator" v="Ohcyclo"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://http://www.ohcyclo.org"/>
+ </node>
+ <node id="3651262894" lat="48.8821622" lon="2.3683439">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="226"/>
+ <tag k="contact:phone" v="+33 1 40 34 92 94"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue La Fayette"/>
+ <tag k="name" v="Bicycl'Art"/>
+ <tag k="note" v="Par amour du vélo"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://bicyclart.fr/"/>
+ </node>
+ <node id="3659115001" lat="48.8703250" lon="2.3619582">
<tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="3"/>
- <tag k="addr:postcode" v="75020"/>
- <tag k="addr:street" v="Rue de Noisy le Sec"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="La Cyclofficine de Paris"/>
- <tag k="opening_hours" v="We 14:00-18:00, Sa 14:00-19:00"/>
+ <tag k="addr:housenumber" v="49"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue Albert Thomas"/>
+ <tag k="name" v="La Crèmerie"/>
+ <tag k="note" v="Spécialisé dans le BMX"/>
<tag k="shop" v="bicycle"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="website" v="http://www.cyclocoop.org/"/>
- </way>
- <way id="73111997">
- <nd ref="867517715"/>
- <nd ref="867507166"/>
- <nd ref="867529215"/>
- <nd ref="867497570"/>
- <nd ref="867461114"/>
- <nd ref="867527154"/>
- <nd ref="867517715"/>
+ <tag k="website" v="http://lacremeriebmx.com/f"/>
+ </node>
+ <node id="3672042540" lat="48.8680988" lon="2.3543734">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="82"/>
+ <tag k="contact:postcode" v="75003"/>
+ <tag k="contact:street" v="Rue Notre-Dame de Nazareth"/>
+ <tag k="name" v="E-Bicycle"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.e-bicycle.fr/"/>
+ </node>
+ <node id="3730863782" lat="48.8311771" lon="2.3237740">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="2bis"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue Bénard"/>
+ <tag k="name" v="Fixie Warehouse"/>
+ <tag k="phone" v="+33 6 52 43 49 03"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.fixie-warehouse.com/fr/"/>
+ </node>
+ <node id="3761829300" lat="48.8849060" lon="2.3289524">
+ <tag k="name" v="Cycles Tosi"/>
+ <tag k="phone" v="+33 7 89 03 41 08"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/cyclestosi"/>
+ </node>
+ <node id="3764314581" lat="48.8365634" lon="2.2893945">
+ <tag k="email" v="75paris15@culturevelo.com"/>
+ <tag k="name" v="Culture Vélo Paris 15ème"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
+ <tag k="phone" v="+33 1 47 07 74 42"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.culturevelo.com/-Paris-15eme-"/>
+ </node>
+ <node id="3792503782" lat="48.8691529" lon="2.3479837">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="2"/>
+ <tag k="contact:phone" v="+33 1 40 35 36 36"/>
+ <tag k="contact:postcode" v="75002"/>
+ <tag k="contact:street" v="Rue Beauregard"/>
+ <tag k="email" v="allovelo@gmail.com"/>
+ <tag k="name" v="Allo Vélo"/>
+ <tag k="opening_hours" v="Mo-Su 10:00-19:00"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.allovelo.com/"/>
+ </node>
+ <node id="3801134121" lat="48.8552220" lon="2.3821106">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue Richard Lenoir"/>
+ <tag k="name" v="Boutique de vélos hollandais"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="3834162505" lat="48.8453063" lon="2.3827078">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="5"/>
+ <tag k="contact:phone" v="+33 9 54 71 92 19"/>
+ <tag k="contact:postcode" v="75012"/>
+ <tag k="contact:street" v="Rue Crozatier"/>
+ <tag k="name" v="La Bicyclette"/>
+ <tag k="note" v="Vélos d'hier et d'aujourd'hui"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://la-bicyclette.over-blog.com/"/>
+ </node>
+ <node id="3889495162" lat="48.8171270" lon="2.3382242">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Boulevard Jourdan"/>
+ <tag k="name" v="Le vélo volant"/>
+ <tag k="opening_hours" v="Sa 14:00-19:00"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/levelovolant/"/>
+ </node>
+ <node id="3955505317" lat="48.8936804" lon="2.2947953">
+ <tag k="brand" v="Lapierre;Torpado"/>
+ <tag k="contact:city" v="Levallois-Perret"/>
+ <tag k="contact:housenumber" v="85"/>
+ <tag k="contact:phone" v="+33 1 47 37 28 82"/>
+ <tag k="contact:postcode" v="92300"/>
+ <tag k="contact:street" v="Rue Jean Jaurès"/>
+ <tag k="name" v="Cycles Cossia"/>
+ <tag k="note" v="Montage à la carte"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="3955518653" lat="48.8942623" lon="2.2915937">
+ <tag k="addr:city" v="Levallois-Perret"/>
+ <tag k="addr:housenumber" v="63"/>
+ <tag k="addr:postcode" v="92300"/>
+ <tag k="addr:street" v="Rue Jules Guesde"/>
+ <tag k="name" v="Cityzen Vélo"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="3959744506" lat="48.8722459" lon="2.3921752">
+ <tag k="email" v="docvelos@hotmail.fr"/>
+ <tag k="name" v="Doc'velos"/>
+ <tag k="opening_hours" v="Tu-Sa 09:30-19:00; We 14:00-19:00"/>
+ <tag k="phone" v="+33 6 70 20 88 01"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.doc-velos.fr/"/>
+ </node>
+ <node id="4003949511" lat="48.9006358" lon="2.3923740">
<tag k="addr:city" v="Pantin"/>
<tag k="addr:housenumber" v="20"/>
<tag k="addr:postcode" v="93500"/>
<tag k="addr:street" v="Rue Magenta"/>
- <tag k="building" v="yes"/>
- <tag k="contact:email" v="info.pantin@cyclocoop.org"/>
- <tag k="contact:website" v="http://www.cyclocoop.org/index.php/les-ateliers/pantin"/>
<tag k="name" v="La Cyclofficine de Pantin"/>
- <tag k="opening_hours" v="Th 19:00-22:00; Sa 14:00-19:00; Sa[1] off"/>
+ <tag k="opening_hours" v="Tu,Th 19:00-22:00; Sa 14:00-19:00; Sa[1] off"/>
<tag k="service:bicycle:diy" v="yes"/>
- <tag k="service:bicycle:pump" v="yes"/>
- <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="service:bicycle:retail" v="no"/>
<tag k="shop" v="bicycle"/>
- <tag k="source" v="bicycle_coop_atelier_velo_participatif"/>
<tag k="website" v="https://www.cyclocoop.org"/>
- </way>
+ </node>
+ <node id="4054513400" lat="48.8497440" lon="2.3810939">
+ <tag k="addr:housenumber" v="41"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Rue de Cîteaux"/>
+ <tag k="amenity" v="cafe"/>
+ <tag k="name" v="Café-vélo Jour de vélo"/>
+ <tag k="phone" v="+33 9 54 31 29 44"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.jourdevelo.fr/"/>
+ <tag k="website_1" v="https://www.facebook.com/Jour-de-V%C3%A9lo-1746704848882644/"/>
+ </node>
+ <node id="4054553560" lat="48.8701689" lon="2.3603582">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="20"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue du Château d'Eau"/>
+ <tag k="description" v="Aussi : café, thé, bagels et gateaux"/>
+ <tag k="email" v="contact@lachouetteparis.com"/>
+ <tag k="name" v="Café-vélo La Chouette"/>
+ <tag k="opening_hours" v="Tu-Sa 09:00-19:00"/>
+ <tag k="phone" v="+33 9 82 29 57 01"/>
+ <tag k="service:bicycle:dealer" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/lachouetteparis/"/>
+ </node>
+ <node id="4086305749" lat="48.8841280" lon="2.3039334">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="76"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Avenue de Villiers"/>
+ <tag k="name" v="Cyclable"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="4170171701" lat="48.8766627" lon="2.3912665">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="44"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Rue des Solitaires"/>
+ <tag k="name" v="Stock Vélos"/>
+ <tag k="phone" v="+33.6 09 40 32 15"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="source" v="survey"/>
+ <tag k="website" v="https://www.facebook.com/StockV%C3%A9los-987103844657943/"/>
+ </node>
+ <node id="4268470281" lat="48.8715966" lon="2.4110712">
+ <tag k="contact:housenumber" v="3"/>
+ <tag k="contact:street" v="Rue de Noisy le Sec"/>
+ <tag k="name" v="La Cyclofficine de Paris"/>
+ <tag k="opening_hours" v="We 14:00-18:00; Sa 14:00-19:00"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.cyclocoop.org/"/>
+ </node>
+ <node id="4370198351" lat="48.8865854" lon="2.3128616">
+ <tag k="name" v="Urban Wheel"/>
+ <tag k="opening_hours" v="Tu-Fr 09:00-13:30,14:30-19:00; Sa 10:00-13:00,14:00-19:00"/>
+ <tag k="phone" v="+33 9 84 11 54 75"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="url" v="http://www.urban-wheel.fr/"/>
+ </node>
+ <node id="4430480696" lat="48.8458094" lon="2.3826824">
+ <tag k="name" v="La bicyclette"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="4432561734" lat="48.8260898" lon="2.3085435">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue Prévost-Paradol"/>
+ <tag k="email" v="paris14@solicycle.org"/>
+ <tag k="name" v="SoliCycle"/>
+ <tag k="phone" v="+33 6 21 88 16 67"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://solicycle.org/"/>
+ </node>
+ <node id="4501300361" lat="48.8607407" lon="2.3881015">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="41"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Boulevard de Ménilmontant"/>
+ <tag k="description" v="Magasin de réparation de vélos Paris 11ème, bicyclettes. Vente de vélos neufs et occasions et location de vélos. Accessoires et pièces vélos, casques, sacoches..."/>
+ <tag k="name" v="Velo Time"/>
+ <tag k="opening_hours" v="Mo-Su 09:30-19:30"/>
+ <tag k="phone" v="+33 1 45671230"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.velo-time.com/"/>
+ </node>
+ <node id="4509531403" lat="48.8681196" lon="2.3738797">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="58"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue de la Fontaine au Roi"/>
+ <tag k="amenity" v="cafe"/>
+ <tag k="name" v="Steel Cyclewear &amp; Coffeeshop"/>
+ <tag k="note" v="06 47 58 32 46"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/steelcyclecoffeeshop"/>
+ </node>
+ <node id="4510912183" lat="48.8781214" lon="2.3656300">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="155"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Quai de Valmy"/>
+ <tag k="email" v="laventureavelo@gmail.com"/>
+ <tag k="name" v="L'Aventure A Vélo"/>
+ <tag k="opening_hours" v="Tu-Su 09:00-20:00; Mo 13:00-20:00"/>
+ <tag k="phone" v="+33 1 40 34 17 99"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://laventureavelo.com/"/>
+ </node>
+ <node id="4582362405" lat="48.8522640" lon="2.3676063">
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="addr:street" v="Boulevard Bourdon"/>
+ <tag k="contact:email" v="courrier@mdb-idf.org"/>
+ <tag k="contact:facebook" v="https://m.facebook.com/MieuxseDeplaceraBicyclette/"/>
+ <tag k="contact:framasphere" v="https://framasphere.org/u/mdb"/>
+ <tag k="contact:phone" v="+33 1 43 20 26 02"/>
+ <tag k="contact:twitter" v="https://mobile.twitter.com/mdbidf"/>
+ <tag k="contact:website" v="http://www.mdb-idf.org"/>
+ <tag k="name" v="Mieux se Déplacer à Bicyclette"/>
+ <tag k="opening_hours" v="Tu-Sa 09:30-12:30,13:30-17:30"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="short_name" v="MDB"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="4589307792" lat="48.8652202" lon="2.3695325">
+ <tag k="addr:housenumber" v="117"/>
+ <tag k="contact:facebook" v="https://www.facebook.com/GOSportParisRepubliqueCycle"/>
+ <tag k="contact:phone" v="+33155283550"/>
+ <tag k="name" v="Boutique Cycle Go Sport Republique"/>
+ <tag k="opening_hours" v="Mo-Sa 10:00-19:30"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.go-sport.com/edito/atelier-cycle"/>
+ </node>
+ <node id="4642561381" lat="48.8764397" lon="2.3466471">
+ <tag k="name" v="Ecox"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-14:00,15:00-19:00"/>
+ <tag k="service:bicycle:ebike" v="yes"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.ecox.fr/nos-magasins/ecox-lafayette"/>
+ </node>
+ <node id="4704552073" lat="48.8764281" lon="2.2909037">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue des Acacias"/>
+ <tag k="name" v="Kilomètre 0"/>
+ <tag k="phone" v="+33 1 40 54 67 40"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.km0.paris"/>
+ </node>
+ <node id="4705447996" lat="48.8468906" lon="2.3765935">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="65"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Avenue Daumesnil"/>
+ <tag k="name" v="Bicloune"/>
+ <tag k="phone" v="+33 1 48 05 47 75"/>
+ <tag k="service:bicycle:parts" v="yes"/>
+ <tag k="service:bicycle:rental" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="service:bicycle:second_hand" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.cycles-bicloune.com/"/>
+ </node>
+ <node id="4732816621" lat="48.8454486" lon="2.3238646">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Littré"/>
+ <tag k="name" v="Les nouveaux cyclistes"/>
+ <tag k="phone" v="+33158901547"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.lesnouveauxcyclistes.com/"/>
+ </node>
+ <node id="4760691715" lat="48.8560138" lon="2.3503854">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Voie Georges Pompidou"/>
+ <tag k="email" v="berges@solicycle.org"/>
+ <tag k="name" v="SoliCycle"/>
+ <tag k="phone" v="+33 6 66 52 76 55"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://solicycle.org/"/>
+ </node>
+ <node id="4810300842" lat="48.8793770" lon="2.4217727">
+ <tag k="addr:city" v="Les Lilas"/>
+ <tag k="addr:housenumber" v="112"/>
+ <tag k="addr:postcode" v="93260"/>
+ <tag k="addr:street" v="Rue Romain Rolland"/>
+ <tag k="email" v="arianri@hotmail.de"/>
+ <tag k="name" v="Tous pour un vélo"/>
+ <tag k="phone" v="+33.6.88.04.48.63"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/pg/touspourunvelo/"/>
+ </node>
+ <node id="4813723480" lat="48.8470589" lon="2.2938694">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="135"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Avenue Émile Zola"/>
+ <tag k="name" v="Cyclable"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://paris15.cyclable.com/"/>
+ </node>
+ <node id="4888402227" lat="48.8221668" lon="2.3058603">
+ <tag k="name" v="Paris Bike Company"/>
+ <tag k="phone" v="+33 9 51 54 59 32"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://parisbikeco.com"/>
+ </node>
+ <node id="4951102667" lat="48.8466724" lon="2.2727252">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="68"/>
+ <tag k="addr:postcode" v="75016"/>
+ <tag k="addr:street" v="Avenue de Versailles"/>
+ <tag k="name" v="Cyclable"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:sales" v="yes"/>
+ <tag k="service:bicycle:tools" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://paris16.cyclable.com/"/>
+ </node>
+ <node id="4966247880" lat="48.8693179" lon="2.3724247">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue des Goncourt"/>
+ <tag k="email" v="cycklette@lapetiterockette.org"/>
+ <tag k="name" v="La Cycklette"/>
+ <tag k="service:bicycle:diy" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/La-Cycklette-1508391019226339/"/>
+ </node>
+ <node id="4970267736" lat="48.8889291" lon="2.3222301">
+ <tag k="contact:facebook" v="https://www.facebook.com/Byke-the-Way-1416101925301171/"/>
+ <tag k="name" v="Byke the Way"/>
+ <tag k="opening_hours" v="Mo-Sa 09:00-19:00"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="5059095705" lat="48.8682753" lon="2.3725152">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="128"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Avenue Parmentier"/>
+ <tag k="name" v="Paradis des vélos"/>
+ <tag k="phone" v="+33.6 21 98 87 96"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="https://www.facebook.com/Paradis-Des-V%C3%A9los-827633057411747/"/>
+ </node>
+ <node id="5136400460" lat="48.8482366" lon="2.3542108">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="28"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue des Fossés Saint-Bernard"/>
+ <tag k="name" v="Gepetto &amp; Vélos"/>
+ <tag k="phone" v="+33.1 43 54 19 95"/>
+ <tag k="shop" v="bicycle"/>
+ <tag k="website" v="http://www.gepetto-velos.com/"/>
+ </node>
+ <node id="5211024238" lat="48.8242813" lon="2.2822635">
+ <tag k="contact:city" v="Vanves"/>
+ <tag k="contact:email" v="info@crc-cycles.com"/>
+ <tag k="contact:housenumber" v="45"/>
+ <tag k="contact:phone" v="+33 1 45 29 10 42"/>
+ <tag k="contact:postcode" v="92170"/>
+ <tag k="contact:street" v="Boulevard du Lycée"/>
+ <tag k="contact:website" v="http://www.crc-cycles.com/"/>
+ <tag k="name" v="CRC Cycles"/>
+ <tag k="note" v="Course, VTT, VAE"/>
+ <tag k="opening_hours" v="Tu-Sa 10:30-13:00,15:00-19:00"/>
+ <tag k="service:bicycle:repair" v="yes"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="5273955199" lat="48.8561083" lon="2.3728517">
+ <tag k="fixme" v="Magasin en cours de création, pas encore d'enseigne"/>
+ <tag k="service:bicycle:cleaning" v="no"/>
+ <tag k="service:bicycle:diy" v="no"/>
+ <tag k="service:bicycle:pump" v="no"/>
+ <tag k="service:bicycle:retail" v="yes"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
+ <node id="5275610306" lat="48.8663850" lon="2.3596443">
+ <tag k="name" v="Vintage cycles"/>
+ <tag k="shop" v="bicycle"/>
+ </node>
</osm>
diff --git a/test/poi-service/script/paris/fuel-station.xml b/test/poi-service/script/paris/fuel-station.xml
index 737022a..c02b24a 100755..100644
--- a/test/poi-service/script/paris/fuel-station.xml
+++ b/test/poi-service/script/paris/fuel-station.xml
@@ -1,107 +1,190 @@
<?xml version="1.0" encoding="UTF-8"?>
-<osm version="0.6" generator="Overpass API">
+<osm version="0.6" generator="Overpass API 0.7.54.12 054bb0bb">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
-<meta osm_base="2015-03-09T10:27:02Z"/>
+<meta osm_base="2017-12-11T17:06:02Z"/>
<node id="25209547" lat="48.8316281" lon="2.3594731">
<tag k="amenity" v="fuel"/>
+ <tag k="brand" v="Total Access"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Station Total Access"/>
- <tag k="operator" v="Total Access"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75013025"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
<node id="25210286" lat="48.8535333" lon="2.4151180">
<tag k="addr:postcode" v="75020"/>
<tag k="address" v="Porte de Montreuil"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="Paris"/>
<tag k="name" v="Relais Total de la Porte de Montreuil"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75020011"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
<tag k="wheelchair" v="limited"/>
</node>
<node id="25213384" lat="48.8346251" lon="2.2657680">
<tag k="addr:postcode" v="75015"/>
<tag k="address" v="Quai d'Issy-les-Moulineaux - Porte d'Issy"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="PARIS"/>
<tag k="name" v="Relais Total Du Pont Aval"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75015026"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
<node id="25213823" lat="48.8256612" lon="2.4077565">
<tag k="addr:postcode" v="94220"/>
<tag k="address" v="N 6 , 114, rue de Paris - Porte de Charenton"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="CHARENTON-LE-PONT"/>
<tag k="name" v="Station Avia"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Avia"/>
+ <tag k="ref:FR:prix-carburants" v="94220003"/>
<tag k="source" v="stations.gpl.online.fr"/>
- </node>
- <node id="25213980" lat="48.9012005" lon="2.3862959">
- <tag k="addr:postcode" v="75019"/>
- <tag k="address" v="13, boulevard de la Commanderie - Porte de La Villette"/>
- <tag k="amenity" v="fuel"/>
- <tag k="fuel:lpg" v="yes"/>
- <tag k="is_in" v="PARIS"/>
- <tag k="name" v="Station Total"/>
- <tag k="operator" v="Total"/>
- <tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="25214653" lat="48.8801709" lon="2.3706981">
<tag k="addr:postcode" v="75019"/>
<tag k="address" v="152/162, boulevard de la Villette"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="PARIS"/>
<tag k="name" v="Relais Total De Chaufourniers"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75019017"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
</node>
+ <node id="27117237" lat="48.8830806" lon="2.2489553"/>
<node id="66492656" lat="48.8315802" lon="2.3158225">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75014005"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="255003455" lat="48.8841896" lon="2.2703742">
<tag k="amenity" v="fuel"/>
- <tag k="created_by" v="Potlatch 0.8a"/>
- </node>
- <node id="258317404" lat="48.8455659" lon="2.3086884">
- <tag k="amenity" v="fuel"/>
- <tag k="operator" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="ref:FR:prix-carburants" v="92200005"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="259284911" lat="48.8391995" lon="2.2925362">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="BP"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015003"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
- <node id="259285107" lat="48.8367458" lon="2.2828065">
+ <node id="259285107" lat="48.8368385" lon="2.2828441">
<tag k="amenity" v="fuel"/>
- <tag k="created_by" v="Potlatch 0.8a"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015016"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="261582387" lat="48.8501676" lon="2.3621707">
<tag k="amenity" v="fuel"/>
</node>
- <node id="262276013" lat="48.8593908" lon="2.3144172">
+ <node id="262276013" lat="48.8593280" lon="2.3146561">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
- </node>
- <node id="267156943" lat="48.8299268" lon="2.3465439">
- <tag k="amenity" v="fuel"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75007004"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="267652178" lat="48.8609726" lon="2.2828299">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75016015"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
- <node id="272631884" lat="48.8826632" lon="2.2476348">
+ <node id="272631884" lat="48.8826553" lon="2.2475364">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="BP"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92800008"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
<tag k="wheelchair" v="yes"/>
</node>
<node id="298915407" lat="48.8563247" lon="2.3152562">
@@ -110,74 +193,128 @@
</node>
<node id="307372951" lat="48.8611046" lon="2.3413657">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Oil France"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75001003"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="309654919" lat="48.8475898" lon="2.3031985">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
<tag k="name" v="Shell"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Shell"/>
+ <tag k="ref:FR:prix-carburants" v="75015024"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
<tag k="wheelchair" v="yes"/>
</node>
- <node id="315123765" lat="48.8463297" lon="2.2794951">
+ <node id="315123765" lat="48.8464653" lon="2.2801018">
<tag k="amenity" v="fuel"/>
- <tag k="created_by" v="Potlatch 0.10f"/>
+ <tag k="brand" v="Avia"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:lpg" v="no"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="maxheight" v="3.25"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015023"/>
+ <tag k="shop" v="gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="320203219" lat="48.9003252" lon="2.3734463">
<tag k="amenity" v="fuel"/>
<tag k="operator" v="Total"/>
</node>
- <node id="330413037" lat="48.8402491" lon="2.3214518">
- <tag k="amenity" v="fuel"/>
- <tag k="name" v="Total"/>
- <tag k="operator" v="Total"/>
- </node>
<node id="423836418" lat="48.8804901" lon="2.2865619">
<tag k="amenity" v="fuel"/>
</node>
<node id="471629646" lat="48.8636820" lon="2.4079099">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75020008"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
<node id="476757242" lat="48.8844643" lon="2.4302306">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Relais des Fontaines"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
- </node>
- <node id="477195597" lat="48.8891565" lon="2.3974249">
- <tag k="amenity" v="fuel"/>
+ <tag k="ref:FR:prix-carburants" v="93230005"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="477199342" lat="48.8884623" lon="2.4082739">
<tag k="amenity" v="fuel"/>
<tag k="name" v="Elan"/>
<tag k="operator" v="Elan"/>
</node>
- <node id="489662580" lat="48.8962798" lon="2.2868916">
- <tag k="amenity" v="fuel"/>
- </node>
<node id="582751437" lat="48.8912181" lon="2.2474811">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92400015"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="Microsoft Bing satellite 2012"/>
</node>
<node id="605504117" lat="48.8229206" lon="2.2952295">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92170002"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="614321106" lat="48.8213817" lon="2.3123435">
- <tag k="amenity" v="fuel"/>
- <tag k="name" v="Elf"/>
- <tag k="operator" v="Elf"/>
- <tag k="source" v="survey"/>
- </node>
+ <node id="614321106" lat="48.8213121" lon="2.3123447"/>
<node id="625171506" lat="48.8323948" lon="2.3645635">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75013019"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="648114671" lat="48.8645440" lon="2.4097670">
+ <node id="648114671" lat="48.8646154" lon="2.4099018">
<tag k="amenity" v="fuel"/>
+ <tag k="opening_hours" v="Mo-Su 07:00-22:00"/>
+ <tag k="operator" v="BP"/>
</node>
<node id="652862411" lat="48.8991280" lon="2.2938509">
<tag k="amenity" v="fuel"/>
@@ -185,9 +322,12 @@
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="BP"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="92300011"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
<node id="661296854" lat="48.8765664" lon="2.4182091">
@@ -197,6 +337,13 @@
</node>
<node id="667281517" lat="48.8258601" lon="2.3878725">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75013023"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="667281518" lat="48.8457817" lon="2.3802229">
@@ -208,8 +355,19 @@
</node>
<node id="667281519" lat="48.8443860" lon="2.3959250">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="hgv:lanes" v="yes"/>
<tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75012007"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
<node id="669879965" lat="48.8337062" lon="2.2849223"/>
<node id="669879966" lat="48.8337518" lon="2.2849590"/>
@@ -229,10 +387,36 @@
<tag k="opening_hours" v="Mo-Su 06:00-22:00"/>
<tag k="operator" v="Total"/>
</node>
+ <node id="837837342" lat="48.8635035" lon="2.4085486">
+ <tag k="amenity" v="fuel"/>
+ <tag k="brand" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total Davout"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75020008"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="survey"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ </node>
+ <node id="867465788" lat="48.9002546" lon="2.4110509"/>
+ <node id="867484065" lat="48.9003432" lon="2.4112411"/>
+ <node id="867511546" lat="48.9003461" lon="2.4112474"/>
+ <node id="867531709" lat="48.9003592" lon="2.4109392"/>
+ <node id="867533250" lat="48.9004507" lon="2.4111359"/>
<node id="870422866" lat="48.8829736" lon="2.4265647"/>
<node id="870438422" lat="48.8828425" lon="2.4266683"/>
<node id="870465818" lat="48.8828828" lon="2.4267858"/>
<node id="870477542" lat="48.8830140" lon="2.4266825"/>
+ <node id="880189633" lat="48.9002663" lon="2.3176695"/>
+ <node id="880216301" lat="48.9003571" lon="2.3178236"/>
+ <node id="880225923" lat="48.9002429" lon="2.3177302"/>
+ <node id="880235931" lat="48.9003819" lon="2.3177614"/>
<node id="880470216" lat="48.8256889" lon="2.2481637"/>
<node id="880472144" lat="48.8257675" lon="2.2482166"/>
<node id="880474062" lat="48.8257456" lon="2.2481312"/>
@@ -287,6 +471,10 @@
<node id="930290277" lat="48.8205844" lon="2.3248487"/>
<node id="930318016" lat="48.8206750" lon="2.3249460"/>
<node id="930341949" lat="48.8205680" lon="2.3248290"/>
+ <node id="951266655" lat="48.8615339" lon="2.4171950"/>
+ <node id="951268541" lat="48.8614376" lon="2.4170664"/>
+ <node id="951273068" lat="48.8614942" lon="2.4172607"/>
+ <node id="951295617" lat="48.8613984" lon="2.4171340"/>
<node id="951862155" lat="48.8554466" lon="2.4174509"/>
<node id="951877503" lat="48.8555614" lon="2.4173919"/>
<node id="951934402" lat="48.8555448" lon="2.4171337"/>
@@ -301,8 +489,16 @@
<node id="954158365" lat="48.8556064" lon="2.4170982"/>
<node id="955211223" lat="48.8635857" lon="2.2722338">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="shell"/>
+ <tag k="ref:FR:prix-carburants" v="75016006"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="957778578" lat="48.8997247" lon="2.2610152"/>
<node id="957779357" lat="48.8999029" lon="2.2610369"/>
@@ -329,10 +525,17 @@
<node id="968924214" lat="48.8408422" lon="2.3172666">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="BP"/>
+ <tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="no"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_95" v="no"/>
<tag k="fuel:octane_98" v="no"/>
<tag k="name" v="8 à Huit"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015022"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
<tag k="wheelchair" v="yes"/>
</node>
<node id="969203965" lat="48.9006923" lon="2.3752658"/>
@@ -353,22 +556,59 @@
<node id="969204055" lat="48.9008578" lon="2.3746127"/>
<node id="973809220" lat="48.8758907" lon="2.3810965">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75019009"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="toilets" v="yes"/>
</node>
+ <node id="975548998" lat="48.8212789" lon="2.3122883"/>
+ <node id="975561181" lat="48.8214060" lon="2.3121938"/>
+ <node id="975571870" lat="48.8213320" lon="2.3121887"/>
+ <node id="975573274" lat="48.8213629" lon="2.3121180"/>
+ <node id="975577611" lat="48.8213724" lon="2.3121355"/>
+ <node id="975579093" lat="48.8214373" lon="2.3121210"/>
+ <node id="975587003" lat="48.8213963" lon="2.3121769"/>
+ <node id="975589819" lat="48.8213648" lon="2.3122480"/>
+ <node id="975590690" lat="48.8213410" lon="2.3122055"/>
+ <node id="975593634" lat="48.8213740" lon="2.3122639"/>
+ <node id="975593724" lat="48.8214055" lon="2.3120640"/>
<node id="987734571" lat="48.8842378" lon="2.3608157">
<tag k="amenity" v="fuel"/>
+ <tag k="brand" v="Elan"/>
+ <tag k="name" v="Elan"/>
+ <tag k="ref:FR:prix-carburants" v="75010007"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="993642116" lat="48.8387798" lon="2.2536841">
+ <node id="993642116" lat="48.8387525" lon="2.2535353">
<tag k="amenity" v="fuel"/>
- <tag k="name" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total Porte Saint-Cloud"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75016017"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="survey"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
- <node id="994059048" lat="48.8391316" lon="2.2485201">
+ <node id="994059048" lat="48.8391182" lon="2.2485054">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Combustible de Boulogne"/>
<tag k="network" v="Elan"/>
+ <tag k="ref:FR:prix-carburants" v="92100013"/>
<tag k="source" v="survey"/>
</node>
<node id="995502815" lat="48.8257564" lon="2.2481734"/>
@@ -378,6 +618,12 @@
<node id="1119984196" lat="48.8281523" lon="2.2728394">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Esso Express"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015011"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="1119984227" lat="48.8275149" lon="2.2719489"/>
<node id="1119984230" lat="48.8277736" lon="2.2717101"/>
@@ -389,39 +635,79 @@
<node id="1165365653" lat="48.8177100" lon="2.2770800"/>
<node id="1172665573" lat="48.8168431" lon="2.3604808">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="hgv:lanes" v="yes"/>
<tag k="name" v="Relais Total Porte D'Italie"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75013022"/>
<tag k="source" v="survey"/>
</node>
- <node id="1188299494" lat="48.8960731" lon="2.2520490">
- <tag k="amenity" v="fuel"/>
- <tag k="name" v="BP"/>
- <tag k="shop" v="yes"/>
- </node>
<node id="1191594862" lat="48.8595020" lon="2.3116861">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75007004"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1211057208" lat="48.8969126" lon="2.2546796">
+ <node id="1211057208" lat="48.8969055" lon="2.2546411">
+ <tag k="addr:city" v="Courbevoie"/>
+ <tag k="addr:postcode" v="92400"/>
+ <tag k="addr:street" v="Rue de l'Alma"/>
<tag k="amenity" v="fuel"/>
- <tag k="name" v="Total"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total - Relais de l'Alma"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92400018"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="wikidata" v="Q154037"/>
+ <tag k="wikipedia" v="fr:Total (entreprise)"/>
</node>
<node id="1243135736" lat="48.8407841" lon="2.3912112">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="hgv:lanes" v="yes"/>
<tag k="name" v="Total"/>
- </node>
- <node id="1266563433" lat="48.8607706" lon="2.3747898">
- <tag k="amenity" v="fuel"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75012005"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
<node id="1282166627" lat="48.8787212" lon="2.3698437">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Esso Express"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75010003"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1319463008" lat="48.8204344" lon="2.3051655">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92240009"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="1390843628" lat="48.8414780" lon="2.3731994">
<tag k="addr:housenumber" v="36"/>
@@ -430,12 +716,13 @@
<node id="1547720813" lat="48.8586303" lon="2.3897622">
<tag k="amenity" v="fuel"/>
</node>
- <node id="1547748415" lat="48.8579937" lon="2.3897210">
+ <node id="1547748415" lat="48.8580224" lon="2.3896621">
<tag k="amenity" v="fuel"/>
</node>
<node id="1568009842" lat="48.8364028" lon="2.2775659">
<tag k="amenity" v="fuel"/>
- <tag k="name" v="bp"/>
+ <tag k="name" v="BP"/>
+ <tag k="operator" v="British Petroleum"/>
</node>
<node id="1650397378" lat="48.8995880" lon="2.3300677"/>
<node id="1650397379" lat="48.8996017" lon="2.3299812"/>
@@ -450,6 +737,10 @@
<node id="1747138950" lat="48.8558395" lon="2.3835889">
<tag k="amenity" v="fuel"/>
</node>
+ <node id="1755343492" lat="48.8820806" lon="2.3381707">
+ <tag k="amenity" v="fuel"/>
+ <tag k="shop" v="car_service"/>
+ </node>
<node id="1871844543" lat="48.8205780" lon="2.3247820"/>
<node id="1871844544" lat="48.8205816" lon="2.3247820"/>
<node id="1871844546" lat="48.8205880" lon="2.3248530"/>
@@ -469,55 +760,80 @@
<node id="1937157672" lat="48.8519985" lon="2.2908966">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="no"/>
<tag k="name" v="Total"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75015025"/>
+ <tag k="shop" v="convenience"/>
<tag k="source" v="survey"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="1987167009" lat="48.8656358" lon="2.2892405">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Elan"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75016011"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="1997748867" lat="48.8786755" lon="2.3549221">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="142"/>
- <tag k="addr:postcode" v="75010"/>
- <tag k="addr:state" v="Île-de-France"/>
- <tag k="addr:street" v="Rue La Fayette"/>
- <tag k="amenity" v="fuel"/>
- <tag k="atm" v="no"/>
- <tag k="fuel" v="yes"/>
- <tag k="name" v="Station essence"/>
- </node>
- <node id="2034367275" lat="48.8797035" lon="2.3026873">
<tag k="amenity" v="fuel"/>
</node>
<node id="2040281444" lat="48.8164408" lon="2.3252194">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92120003"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2117639904" lat="48.8219928" lon="2.4027040">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Relais Total de Conflans"/>
- </node>
- <node id="2184296199" lat="48.8478375" lon="2.3535433">
- <tag k="amenity" v="fuel"/>
- <tag k="brand" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="94220004"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2261671804" lat="48.8841496" lon="2.3640114">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Avia"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
<tag k="fuel:octane_100" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75010002"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
- <node id="2330020597" lat="48.8973798" lon="2.3589436">
+ <node id="2330020597" lat="48.8973441" lon="2.3589356">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Esso"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75018009"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="2330020601" lat="48.8986959" lon="2.3633779">
<tag k="amenity" v="fuel"/>
@@ -525,26 +841,54 @@
<node id="2330020604" lat="48.9000487" lon="2.3617903">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="BP"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:lpg" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75018003"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
- <node id="2377881055" lat="48.8936152" lon="2.3152934">
+ <node id="2377881055" lat="48.8936328" lon="2.3152304">
+ <tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="190"/>
+ <tag k="addr:postcode" v="75017"/>
<tag k="addr:street" v="Avenue de Clichy"/>
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
+ <tag k="hgv:lanes" v="yes"/>
<tag k="name" v="Total"/>
- </node>
- <node id="2394065587" lat="48.8522407" lon="2.2805336">
- <tag k="amenity" v="fuel"/>
- <tag k="brand" v="Agip"/>
- <tag k="source" v="survey 2013"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75017017"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2409683708" lat="48.8191934" lon="2.2957144">
+ <tag k="addr:city" v="Malakoff"/>
+ <tag k="addr:housenumber" v="16"/>
+ <tag k="addr:postcode" v="92240"/>
+ <tag k="addr:street" v="Boulevard Gabriel Péri"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Avia"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Avia"/>
+ <tag k="ref:FR:prix-carburants" v="92240001"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="survey"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2419607653" lat="48.8935024" lon="2.3027161"/>
<node id="2419607655" lat="48.8936066" lon="2.3031200"/>
@@ -558,7 +902,9 @@
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="no"/>
<tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75018012"/>
<tag k="shop" v="no"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="2635358750" lat="48.9001725" lon="2.3444887">
<tag k="amenity" v="fuel"/>
@@ -567,14 +913,35 @@
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="no"/>
<tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75018013"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="2642295714" lat="48.8467942" lon="2.4149487">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75012008"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2642295718" lat="48.8466936" lon="2.4141038">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75012024"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
<node id="2655943000" lat="48.8711680" lon="2.3244832">
<tag k="amenity" v="fuel"/>
@@ -585,11 +952,25 @@
</node>
<node id="2931788253" lat="48.8839109" lon="2.3897638">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75019015"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="3140383554" lat="48.8470173" lon="2.4162807">
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Avia"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="94160001"/>
<tag k="source" v="survey"/>
</node>
<node id="3140383568" lat="48.8467382" lon="2.4163242"/>
@@ -597,23 +978,46 @@
<node id="3140383570" lat="48.8468423" lon="2.4163428"/>
<node id="3140383571" lat="48.8468564" lon="2.4161603"/>
<node id="3149588793" lat="48.8277343" lon="2.2717074"/>
- <node id="3157148176" lat="48.8784033" lon="2.3659429">
+ <node id="3157148176" lat="48.8783988" lon="2.3658750">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="159"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Quai de Valmy"/>
<tag k="amenity" v="fuel"/>
+ <tag k="name" v="BSA Carburants"/>
+ <tag k="opening_hours" v="Mo-Sa 07:00-21:00; Su 18:00-21:00"/>
+ <tag k="source" v="survey"/>
</node>
<node id="3207437073" lat="48.8650847" lon="2.3656389">
<tag k="amenity" v="fuel"/>
+ <tag k="name" v="Essence 32"/>
</node>
<node id="3224147783" lat="48.8233460" lon="2.3160166">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="28"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue de la Porte de Châtillon"/>
<tag k="amenity" v="fuel"/>
- <tag k="operator" v="BP"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total - Relais Porte de Châtillon"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="75014011"/>
+ <tag k="shop" v="gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="3240835095" lat="48.8816209" lon="2.2803057">
<tag k="amenity" v="fuel"/>
<tag k="brand" v="BP"/>
<tag k="compressed_air" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="92200003"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
<node id="3286282646" lat="48.8380740" lon="2.3312952">
@@ -623,7 +1027,8 @@
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75014008"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="3286282647" lat="48.8449642" lon="2.2715165">
<tag k="amenity" v="fuel"/>
@@ -632,39 +1037,30 @@
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75016013"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
<node id="3286282648" lat="48.8473675" lon="2.2588537">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- </node>
- <node id="3286282649" lat="48.8532253" lon="2.3080493">
- <tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- </node>
- <node id="3286282650" lat="48.8696482" lon="2.3095132">
- <tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75016003"/>
+ <tag k="shop" v="gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
<node id="3286282651" lat="48.8720375" lon="2.2998901">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="note" v="Parking Georges 5"/>
<tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75008009"/>
<tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
<node id="3286282652" lat="48.8738003" lon="2.2922634">
@@ -674,8 +1070,9 @@
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75016016"/>
<tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
<node id="3286282653" lat="48.8751861" lon="2.3096416">
@@ -684,168 +1081,208 @@
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75008006"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</node>
- <node id="3286282654" lat="48.8937900" lon="2.3314100">
- <tag k="amenity" v="fuel"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- </node>
- <node id="3286368391" lat="48.8380740" lon="2.3312952">
+ <node id="3286368394" lat="48.8532253" lon="2.3080493">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:octane_95" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="name" v="Avia"/>
+ <tag k="ref:FR:prix-carburants" v="75007003"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="wheelchair" v="limited"/>
</node>
- <node id="3286368392" lat="48.8449642" lon="2.2715165">
+ <node id="3286386321" lat="48.8951128" lon="2.3724583">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Rue de Crimée"/>
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
- <tag k="fixme" v="99 Avenue de Versailles"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75019016"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</node>
- <node id="3286368393" lat="48.8473675" lon="2.2588537">
+ <node id="3286430496" lat="48.8679452" lon="2.4057911">
<tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="ref:FR:prix-carburants" v="75020007"/>
+ <tag k="shop" v="gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="3286368394" lat="48.8532253" lon="2.3080493">
+ <node id="3286430497" lat="48.8711283" lon="2.4085012">
<tag k="amenity" v="fuel"/>
+ <tag k="brand" v="Total"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="name" v="Total Mortier"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75020010"/>
+ <tag k="shop" v="convenience"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
</node>
- <node id="3286368395" lat="48.8696482" lon="2.3095132">
+ <node id="3286543311" lat="48.8565470" lon="2.3790561">
<tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75011003"/>
+ <tag k="shop" v="gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="3286368396" lat="48.8720375" lon="2.2998901">
+ <node id="3286567614" lat="48.8457849" lon="2.4008634">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
- <tag k="note" v="Parking Georges 5"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75012021"/>
<tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 30/08/2017"/>
<tag k="toilets" v="yes"/>
</node>
- <node id="3286368397" lat="48.8738003" lon="2.2922634">
+ <node id="3286659165" lat="48.8202004" lon="2.2586036">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:octane_95" v="yes"/>
- <tag k="fuel:octane_98" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
<tag k="shop" v="convenience"/>
<tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
<tag k="toilets" v="yes"/>
</node>
- <node id="3286368398" lat="48.8751861" lon="2.3096416">
+ <node id="3348610471" lat="48.8270093" lon="2.3590302">
+ <tag k="amenity" v="fuel"/>
+ <tag k="name" v="Station Service Choisy"/>
+ <tag k="source" v="survey"/>
+ </node>
+ <node id="3392253612" lat="48.8635007" lon="2.3703277">
<tag k="amenity" v="fuel"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:octane_95" v="yes"/>
- <tag k="fuel:octane_98" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- <tag k="toilets" v="yes"/>
</node>
- <node id="3286368399" lat="48.8937900" lon="2.3314100">
+ <node id="3556696927" lat="48.8937900" lon="2.3314100">
<tag k="amenity" v="fuel"/>
<tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
</node>
- <node id="3286386321" lat="48.8941507" lon="2.3733344">
+ <node id="3556855896" lat="48.8924476" lon="2.4106600">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Relais Pantin Lolive"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- <tag k="vending" v="fuel"/>
- <tag k="vending_machine" v="fuel"/>
+ <tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="93500007"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="3286420963" lat="48.8258806" lon="2.3446643">
+ <node id="3600133170" lat="48.8631933" lon="2.3689292">
<tag k="amenity" v="fuel"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
</node>
- <node id="3286430496" lat="48.8679452" lon="2.4057911">
+ <node id="3637277654" lat="48.8503953" lon="2.3596248">
<tag k="amenity" v="fuel"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:e10" v="yes"/>
- <tag k="fuel:octane_98" v="yes"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
</node>
- <node id="3286430497" lat="48.8711571" lon="2.4084569">
+ <node id="3646201480" lat="48.8213576" lon="2.3121549"/>
+ <node id="3646201481" lat="48.8213850" lon="2.3122215"/>
+ <node id="3689837990" lat="48.8649231" lon="2.3755432">
<tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:e10" v="yes"/>
- <tag k="fuel:octane_98" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- <tag k="toilets" v="yes"/>
</node>
- <node id="3286543311" lat="48.8565470" lon="2.3790561">
+ <node id="3759536260" lat="48.8456610" lon="2.3086447"/>
+ <node id="3759536261" lat="48.8456328" lon="2.3085669"/>
+ <node id="3759536262" lat="48.8455816" lon="2.3086058"/>
+ <node id="3759536263" lat="48.8455728" lon="2.3085843"/>
+ <node id="3759536264" lat="48.8455048" lon="2.3086339"/>
+ <node id="3759536265" lat="48.8455392" lon="2.3087278"/>
+ <node id="3759536266" lat="48.8456054" lon="2.3086742"/>
+ <node id="3759536267" lat="48.8456098" lon="2.3086876"/>
+ <node id="3776756660" lat="48.8403571" lon="2.3213304">
<tag k="amenity" v="fuel"/>
- <tag k="fuel:diesel" v="yes"/>
- <tag k="fuel:octane_95" v="yes"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="level" v="0"/>
+ <tag k="maxheight" v="2.40"/>
+ <tag k="name" v="Total"/>
+ <tag k="operator" v="Total"/>
</node>
- <node id="3286567614" lat="48.8457849" lon="2.4008634">
+ <node id="3812680958" lat="48.8873385" lon="2.3222062">
+ <tag k="amenity" v="fuel"/>
+ <tag k="name" v="Élan"/>
+ </node>
+ <node id="4078163949" lat="48.8926627" lon="2.3263297">
+ <tag k="amenity" v="fuel"/>
+ </node>
+ <node id="4086291206" lat="48.8788379" lon="2.3024062">
<tag k="amenity" v="fuel"/>
+ </node>
+ <node id="4086291207" lat="48.8786148" lon="2.3000583">
+ <tag k="amenity" v="fuel"/>
+ </node>
+ <node id="4294514704" lat="48.8963124" lon="2.2871355">
+ <tag k="addr:city" v="Levallois-Perret"/>
+ <tag k="addr:housenumber" v="106"/>
+ <tag k="addr:postcode" v="92300"/>
+ <tag k="addr:street" v="Rue du Président Wilson"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="brand" v="BP"/>
<tag k="compressed_air" v="yes"/>
<tag k="fuel:diesel" v="yes"/>
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Station BP Levallois Président Wilson"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="92300007"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="survey"/>
<tag k="toilets" v="yes"/>
</node>
- <node id="3286571162" lat="48.8390378" lon="2.4083902">
- <tag k="amenity" v="fuel"/>
- <tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- </node>
- <node id="3286583966" lat="48.8390378" lon="2.4083902">
+ <node id="4318020828" lat="48.8827020" lon="2.2484558"/>
+ <node id="4318020830" lat="48.8827673" lon="2.2483268"/>
+ <node id="4318020834" lat="48.8831640" lon="2.2488342"/>
+ <node id="4590775701" lat="48.8394172" lon="2.3887811">
<tag k="amenity" v="fuel"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75012020"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</node>
- <node id="3286659165" lat="48.8202004" lon="2.2586036">
+ <node id="4647664891" lat="48.8391937" lon="2.3887609">
<tag k="amenity" v="fuel"/>
- <tag k="compressed_air" v="yes"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- <tag k="toilets" v="yes"/>
+ <tag k="name" v="Total"/>
+ <tag k="opening_hours" v="&quot;En travaux actuellement, fermé&quot;"/>
+ <tag k="wheelchair" v="no"/>
</node>
- <node id="3287386187" lat="48.8384296" lon="2.3723291">
+ <node id="4984526853" lat="48.8341169" lon="2.2723929"/>
+ <node id="4984526854" lat="48.8340966" lon="2.2724976"/>
+ <node id="4984526855" lat="48.8339749" lon="2.2726301"/>
+ <node id="4984526856" lat="48.8339648" lon="2.2725438"/>
+ <node id="4984526857" lat="48.8339121" lon="2.2724391"/>
+ <node id="4984526858" lat="48.8340074" lon="2.2723004"/>
+ <node id="4984526859" lat="48.8340419" lon="2.2723713"/>
+ <node id="4984526860" lat="48.8340743" lon="2.2723251"/>
+ <node id="5140375294" lat="48.8258974" lon="2.3441324">
<tag k="amenity" v="fuel"/>
<tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Esso"/>
<tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75013026"/>
<tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
- </node>
- <node id="3348610471" lat="48.8270093" lon="2.3590302">
- <tag k="amenity" v="fuel"/>
- <tag k="name" v="Station Service Choisy"/>
- <tag k="source" v="survey"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 30/08/2017"/>
</node>
<way id="52823933">
<nd ref="669879965"/>
@@ -859,11 +1296,39 @@
<tag k="address" v="44 Bd Victor"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="PARIS"/>
<tag k="name" v="Station BP"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="75015018"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010;stations.gpl.online.fr"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <way id="73118279">
+ <nd ref="867533250"/>
+ <nd ref="867531709"/>
+ <nd ref="867465788"/>
+ <nd ref="867484065"/>
+ <nd ref="867511546"/>
+ <nd ref="867533250"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="93500008"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ <tag k="wall" v="no"/>
</way>
<way id="73428044">
<nd ref="870422866"/>
@@ -874,11 +1339,36 @@
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total Acess"/>
<tag k="building" v="roof"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="height" v="5"/>
<tag k="name" v="Total Access"/>
<tag k="operator" v="Total"/>
- <tag k="shop" v="yes"/>
- <tag k="source" v="extraction vectorielle v1 cadastre-dgi-fr source : Direction Générale des Impôts - Cadas. Mise à jour : 2010"/>
+ <tag k="ref:FR:prix-carburants" v="93260007"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ </way>
+ <way id="74469025">
+ <nd ref="880189633"/>
+ <nd ref="880225923"/>
+ <nd ref="880216301"/>
+ <nd ref="880235931"/>
+ <nd ref="880189633"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92110011"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="wall" v="no"/>
</way>
<way id="74493518">
<nd ref="880474062"/>
@@ -890,9 +1380,16 @@
<nd ref="880474062"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92100004"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="source:name" v="survey"/>
+ <tag k="toilets" v="yes"/>
</way>
<way id="78019560">
<nd ref="916640221"/>
@@ -903,6 +1400,13 @@
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
<tag k="building" v="roof"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75012023"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</way>
<way id="78158556">
@@ -918,7 +1422,8 @@
<tag k="fuel:e10" v="yes"/>
<tag k="fuel:octane_98" v="yes"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75012010"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="wall" v="no"/>
</way>
<way id="78536213">
@@ -939,8 +1444,9 @@
<tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total"/>
<tag k="opening_hours" v="24/7"/>
- <tag k="shop" v="convenience"/>
- <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 15/09/2014"/>
+ <tag k="ref:FR:prix-carburants" v="75013024"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
<tag k="toilets" v="yes"/>
</way>
<way id="79147677">
@@ -974,8 +1480,37 @@
<nd ref="924689439"/>
<nd ref="924702277"/>
<tag k="amenity" v="fuel"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Station Service Carrefour Quais d'ivry"/>
+ <tag k="ref:FR:prix-carburants" v="94204001"/>
<tag k="source" v="extraction vectorielle v1 cadastre-dgi-fr source : Direction Générale des Impôts - Cadas. Mise à jour : 2010"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ </way>
+ <way id="81613605">
+ <nd ref="951273068"/>
+ <nd ref="951266655"/>
+ <nd ref="951268541"/>
+ <nd ref="951295617"/>
+ <nd ref="951273068"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="93170002"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ <tag k="wall" v="no"/>
</way>
<way id="81771134">
<nd ref="954158365"/>
@@ -989,7 +1524,13 @@
<nd ref="954158365"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="roof"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_95" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Carrefour"/>
+ <tag k="ref:FR:prix-carburants" v="93100006"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="wheelchair" v="limited"/>
</way>
@@ -1001,8 +1542,17 @@
<nd ref="951948436"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="roof"/>
- <tag k="name" v="Elf"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total Access"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="93100015"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
<tag k="wheelchair" v="limited"/>
</way>
<way id="82250343">
@@ -1029,14 +1579,21 @@
<nd ref="957779956"/>
<nd ref="957783769"/>
<tag k="addr:housenumber" v="45"/>
- <tag k="addr:postcode" v="92400"/>
- <tag k="addr:street" v="Boulevard de Verdun"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="roof"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Total Access"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="Total"/>
+ <tag k="ref:FR:prix-carburants" v="92400020"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</way>
<way id="83297869">
<nd ref="969203965"/>
@@ -1060,6 +1617,35 @@
<tag k="area" v="yes"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</way>
+ <way id="83791472">
+ <nd ref="975579093"/>
+ <nd ref="975593724"/>
+ <nd ref="975573274"/>
+ <nd ref="975577611"/>
+ <nd ref="3646201480"/>
+ <nd ref="975571870"/>
+ <nd ref="975590690"/>
+ <nd ref="975548998"/>
+ <nd ref="614321106"/>
+ <nd ref="975593634"/>
+ <nd ref="975589819"/>
+ <nd ref="3646201481"/>
+ <nd ref="975561181"/>
+ <nd ref="975587003"/>
+ <nd ref="975579093"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="roof"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Elf"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Elf"/>
+ <tag k="ref:FR:prix-carburants" v="92242002"/>
+ <tag k="source" v="survey"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
+ </way>
<way id="96711347">
<nd ref="1119984194"/>
<nd ref="1119984230"/>
@@ -1069,8 +1655,18 @@
<nd ref="1119984194"/>
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
- <tag k="name" v="Total"/>
- <tag k="shop" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Station Service Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="phone" v="+33 1 40 93 04 08"/>
+ <tag k="ref:FR:prix-carburants" v="92130006"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</way>
<way id="100840943">
<nd ref="1165365653"/>
@@ -1082,7 +1678,12 @@
<nd ref="1165365653"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Esso Express"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="92130005"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="wall" v="no"/>
</way>
@@ -1104,7 +1705,10 @@
<tag k="fuel:octane_98" v="yes"/>
<tag k="layer" v="1"/>
<tag k="name" v="Esso Express Saint-Ouen"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75017020"/>
<tag k="shop" v="no"/>
+ <tag k="source:fuel" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</way>
<way id="152205005">
<nd ref="1650397383"/>
@@ -1121,7 +1725,10 @@
<tag k="fuel:octane_98" v="yes"/>
<tag k="layer" v="1"/>
<tag k="name" v="Esso Express Saint-Ouen Bichat"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75018014"/>
<tag k="shop" v="no"/>
+ <tag k="source:fuel" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
</way>
<way id="176708088">
<nd ref="1871844596"/>
@@ -1145,8 +1752,20 @@
<tag k="amenity" v="fuel"/>
<tag k="brand" v="Total"/>
<tag k="building" v="yes"/>
- <tag k="operator" v="Total"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="Total - Relais Maréchal Leclerc"/>
+ <tag k="ref:FR:prix-carburants" v="75014010"/>
+ <tag k="shop" v="convenience;gas"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="source:fuel" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
</way>
<way id="233599523">
<nd ref="2419607656"/>
@@ -1158,12 +1777,20 @@
<tag k="address" v="2 bd Fort de Vaux (périph. ext., sortie pte de Clichy, dir pte d'Asnières)"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:e85" v="yes"/>
<tag k="fuel:lpg" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="is_in" v="PARIS"/>
<tag k="name" v="Station Service E. Leclerc - Levallois Distribution"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="operator" v="E. Leclerc"/>
- <tag k="shop" v="no"/>
+ <tag k="ref:FR:prix-carburants" v="92300004"/>
+ <tag k="shop" v="gas"/>
<tag k="source" v="stations.gpl.online.fr"/>
+ <tag k="vending" v="fuel"/>
+ <tag k="vending_machine" v="fuel"/>
<tag k="wall" v="no"/>
</way>
<way id="308771053">
@@ -1174,10 +1801,71 @@
<nd ref="3140383571"/>
<tag k="amenity" v="fuel"/>
<tag k="building" v="yes"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
<tag k="name" v="Avia"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="94160001"/>
<tag k="shelter" v="yes"/>
<tag k="source" v="survey"/>
<tag k="wall" v="no"/>
</way>
+ <way id="372386505">
+ <nd ref="3759536260"/>
+ <nd ref="3759536261"/>
+ <nd ref="3759536262"/>
+ <nd ref="3759536263"/>
+ <nd ref="3759536264"/>
+ <nd ref="3759536265"/>
+ <nd ref="3759536266"/>
+ <nd ref="3759536267"/>
+ <nd ref="3759536260"/>
+ <tag k="alt_name" v="Total Buffon"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="fuel:octane_98" v="yes"/>
+ <tag k="name" v="Total"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="ref:FR:prix-carburants" v="75015028"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ </way>
+ <way id="432849877">
+ <nd ref="4318020830"/>
+ <nd ref="4318020834"/>
+ <nd ref="27117237"/>
+ <nd ref="4318020828"/>
+ <nd ref="4318020830"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="building" v="roof"/>
+ <tag k="compressed_air" v="yes"/>
+ <tag k="fuel:diesel" v="yes"/>
+ <tag k="fuel:e10" v="yes"/>
+ <tag k="name" v="BP"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="operator" v="BP"/>
+ <tag k="ref:FR:prix-carburants" v="92800007"/>
+ <tag k="shop" v="convenience;gas"/>
+ <tag k="source" v="Ministère de l'Economie, de l'Industrie et du Numérique - 22/10/2016"/>
+ <tag k="toilets" v="yes"/>
+ </way>
+ <way id="509185700">
+ <nd ref="4984526853"/>
+ <nd ref="4984526854"/>
+ <nd ref="4984526855"/>
+ <nd ref="4984526856"/>
+ <nd ref="4984526857"/>
+ <nd ref="4984526858"/>
+ <nd ref="4984526859"/>
+ <nd ref="4984526860"/>
+ <nd ref="4984526853"/>
+ <tag k="amenity" v="fuel"/>
+ <tag k="fuel:kerosene" v="yes"/>
+ <tag k="name" v="Dépot carburant Heliport"/>
+ <tag k="operator" v="ADP"/>
+ </way>
</osm>
diff --git a/test/poi-service/script/paris/museum-and-hotel.xml b/test/poi-service/script/paris/museum-and-hotel.xml
index 2917142..44b3843 100755..100644
--- a/test/poi-service/script/paris/museum-and-hotel.xml
+++ b/test/poi-service/script/paris/museum-and-hotel.xml
@@ -1,24 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
-<osm version="0.6" generator="Overpass API">
+<osm version="0.6" generator="Overpass API 0.7.54.12 054bb0bb">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
-<meta osm_base="2015-03-09T10:21:02Z"/>
+<meta osm_base="2017-12-11T17:02:02Z"/>
- <node id="21662047" lat="48.8487450" lon="2.3593419"/>
- <node id="21662048" lat="48.8491190" lon="2.3588172"/>
+ <node id="21662047" lat="48.8487679" lon="2.3593826"/>
+ <node id="21662048" lat="48.8491155" lon="2.3588494"/>
<node id="21662049" lat="48.8494261" lon="2.3578865"/>
- <node id="21662491" lat="48.8479258" lon="2.3606195"/>
- <node id="21662510" lat="48.8472904" lon="2.3616388"/>
- <node id="21662511" lat="48.8469445" lon="2.3621216"/>
- <node id="21662512" lat="48.8459278" lon="2.3633017"/>
- <node id="25554287" lat="48.8624777" lon="2.3349913"/>
+ <node id="21662510" lat="48.8472100" lon="2.3618297">
+ <tag k="seamark:notice:addition" v="left_triangle;right_triangle"/>
+ <tag k="seamark:notice:category" v="no_berthing"/>
+ <tag k="seamark:notice:distance_down" v="200m"/>
+ <tag k="seamark:notice:distance_end" v="0"/>
+ <tag k="seamark:notice:distance_start" v="0"/>
+ <tag k="seamark:notice:distance_up" v="100m"/>
+ <tag k="seamark:notice:function" v="prohibition"/>
+ <tag k="seamark:notice:impact" v="left_bank"/>
+ <tag k="seamark:notice:orientation" v="230"/>
+ <tag k="seamark:notice:system" v="cevni"/>
+ <tag k="seamark:type" v="notice"/>
+ </node>
+ <node id="21662512" lat="48.8459401" lon="2.3633236"/>
<node id="130102845" lat="48.8570374" lon="2.3118779">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="129"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue de Grenelle"/>
<tag k="name" v="Musée de l'Armée"/>
<tag k="opening_hours" v="Nov-Mar: Mo-Su 10:00-17:00; Apr-Oct: Mo-Su 10:00-18:00; Apr-Sep: Tu 21:00+; Jan 1 off; May 1 off; Dec 25 off"/>
- <tag k="phone" v="01.44.42.38.77"/>
<tag k="source" v="survey"/>
+ <tag k="toilets:wheelchair" v="yes"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.musee-armee.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wheelchair:description" v="Barrierefreier Zugang nur über Avenue de Tourville möglich"/>
<tag k="wikidata" v="Q1996069"/>
<tag k="wikipedia" v="fr:Musée de l'Armée (Paris)"/>
</node>
@@ -45,10 +59,10 @@
</node>
<node id="191770987" lat="48.8385211" lon="2.3203937"/>
<node id="191770988" lat="48.8386623" lon="2.3205311"/>
- <node id="191770990" lat="48.8386839" lon="2.3204818"/>
- <node id="191770992" lat="48.8387567" lon="2.3205642"/>
+ <node id="191770990" lat="48.8386847" lon="2.3204799"/>
+ <node id="191770992" lat="48.8387567" lon="2.3205643"/>
<node id="191770993" lat="48.8386341" lon="2.3209087"/>
- <node id="191770995" lat="48.8386623" lon="2.3211319"/>
+ <node id="191770995" lat="48.8386623" lon="2.3211314"/>
<node id="191770996" lat="48.8386115" lon="2.3212692"/>
<node id="191770997" lat="48.8384589" lon="2.3212177"/>
<node id="191770999" lat="48.8383742" lon="2.3211576"/>
@@ -71,9 +85,10 @@
<node id="237003117" lat="48.8507240" lon="2.3518758">
<tag k="alt_name" v="Hôtel de Miramion"/>
<tag k="name" v="Musée de l'Assistance Publique Hôpitaux de Paris"/>
- <tag k="phone" v="01.40.27.50.05"/>
+ <tag k="phone" v="+33140275005"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.aphp.fr/"/>
+ <tag k="wikidata" v="Q1998638"/>
<tag k="wikipedia" v="fr:Musée de l'AP-HP"/>
</node>
<node id="237015622" lat="48.8424522" lon="2.3557040"/>
@@ -82,8 +97,8 @@
<node id="237015626" lat="48.8418596" lon="2.3568694"/>
<node id="237015628" lat="48.8426173" lon="2.3564213"/>
<node id="237015631" lat="48.8425664" lon="2.3561702"/>
- <node id="237016931" lat="48.8420354" lon="2.3589336"/>
- <node id="237016932" lat="48.8421679" lon="2.3588540"/>
+ <node id="237016931" lat="48.8420353" lon="2.3589332"/>
+ <node id="237016932" lat="48.8421679" lon="2.3588545"/>
<node id="237018217" lat="48.8430694" lon="2.3621494"/>
<node id="237018219" lat="48.8428676" lon="2.3622691"/>
<node id="237018220" lat="48.8431966" lon="2.3636137"/>
@@ -103,11 +118,14 @@
<tag k="name" v="BVJ Paris-Louvre"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="247435003" lat="48.8645200" lon="2.3405468">
- <tag k="name" v="Hôtel de Rouen"/>
+ <node id="247435003" lat="48.8645288" lon="2.3405105">
+ <tag k="name" v="Hôtel Crayon Rouge"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="247435032" lat="48.8611819" lon="2.3436118">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="85"/>
+ <tag k="addr:street" v="Rue Saint-Honoré"/>
<tag k="name" v="Hôtel Saint-Honoré"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -115,7 +133,7 @@
<tag k="name" v="Hôtel Montpensier"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
- <tag k="wheelchair" v="yes"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="247436637" lat="48.8629098" lon="2.3381793">
<tag k="name" v="Hôtel Louvre Bon Enfants"/>
@@ -125,35 +143,41 @@
<node id="247436814" lat="48.8670031" lon="2.3287060">
<tag k="name" v="Hôtel Vendôme"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3145996"/>
</node>
- <node id="247437972" lat="48.8667055" lon="2.3279639">
+ <node id="247437972" lat="48.8666933" lon="2.3280003">
<tag k="name" v="Hôtel Costes"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q904945"/>
</node>
<node id="247584452" lat="48.8631692" lon="2.3329513">
<tag k="level" v="4"/>
<tag k="name" v="Musée des Arts Décoratifs - Musée de la Publicité"/>
<tag k="name:ru" v="Музей декоративного искусства"/>
- <tag k="phone" v="01.44.55.57.50"/>
+ <tag k="phone" v="+33144555750"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.lesartsdecoratifs.fr/francais/arts-decoratifs/"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q1319378"/>
<tag k="wikipedia" v="fr:Musée des Arts décoratifs de Paris"/>
</node>
<node id="247609768" lat="48.8711661" lon="2.3415044">
<tag k="name" v="Hôtel Vivienne"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="247618453" lat="48.8660977" lon="2.3554138">
- <tag k="fax" v="+33 (0)1 53 01 82 01"/>
- <tag k="fee" v="full:6,50; discount:4,5; free: under 26, handicap, press, unemployment, ICOM, AMCSTI, PARIS MUSEUM PASS, Cnam, Amis du Musée des arts et métiers, 1er dimanche de chaque mois, jeudi à partir 18h00"/>
+ <tag k="fax" v="+33 1 53 01 82 01"/>
+ <tag k="fee" v="full:6,50;discount:4,5;free: under 26, handicap, press, unemployment, ICOM, AMCSTI, PARIS MUSEUM PASS, Cnam, Amis du Musée des arts et métiers, 1er dimanche de chaque mois, jeudi à partir 18h00"/>
<tag k="name" v="Musée national des Arts et Métiers"/>
+ <tag k="name:en" v="Art and Metier"/>
<tag k="name:ru" v="Музей искусств и ремёсел"/>
- <tag k="name:uk" v="Музей мистецтв і ремесел"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00; Th 10:00-21:30; May 1 off; Dec 25 off"/>
- <tag k="phone" v="+33 (0)1 53 01 82 00"/>
+ <tag k="phone" v="+33 1 53 01 82 00"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.arts-et-metiers.net/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1538826"/>
<tag k="wikipedia" v="fr:Musée des arts et métiers"/>
</node>
<node id="250657151" lat="48.8643016" lon="2.3480523">
@@ -162,6 +186,7 @@
<tag k="name" v="Tour de Jean-sans-Peur"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.tourjeansanspeur.com/"/>
+ <tag k="wikidata" v="Q3533101"/>
<tag k="wikipedia" v="fr:Tour Jean-sans-Peur"/>
</node>
<node id="251001754" lat="48.8696872" lon="2.3486973">
@@ -171,6 +196,7 @@
<node id="251001755" lat="48.8695728" lon="2.3486760">
<tag k="name" v="Hôtel Sainte-Marie"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="251127407" lat="48.8559607" lon="2.3573425">
<tag k="name" v="Hôtel Paris Rivoli"/>
@@ -200,15 +226,16 @@
<tag k="name" v="Hôtel de la Place des Vosges"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="251131789" lat="48.8566486" lon="2.3558134">
+ <node id="251131789" lat="48.8566251" lon="2.3557614">
<tag k="name" v="Hôtel de Nice"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="251318666" lat="48.8779237" lon="2.3345515">
<tag k="name" v="Musée Gustave Moreau"/>
- <tag k="phone" v="01.48.74.38.50"/>
+ <tag k="phone" v="+33148743850"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.musee-moreau.fr"/>
+ <tag k="wikidata" v="Q2296362"/>
<tag k="wikipedia" v="fr:Musée Gustave-Moreau"/>
</node>
<node id="251531802" lat="48.8487987" lon="2.3483264">
@@ -234,8 +261,9 @@
<tag k="name" v="Maitre Albert B&amp;B"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="251733867" lat="48.8486356" lon="2.3404438">
+ <node id="251733867" lat="48.8482841" lon="2.3405763">
<tag k="name" v="Le Clos Medicis"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="251733871" lat="48.8563230" lon="2.3352294">
@@ -243,27 +271,41 @@
<tag k="note" v="c'est bien son nom"/>
<tag k="note:en" v="this is the real name"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q23283"/>
</node>
<node id="251733872" lat="48.8457742" lon="2.3243407">
+ <tag k="contact:website" v="http://www.victoriapalace.com/mobile/"/>
<tag k="name" v="Victoria Palace Hotel"/>
+ <tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="251742041" lat="48.8626245" lon="2.3025393">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="93"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Quai d'Orsay"/>
+ <tag k="addr:unit" v="Face"/>
+ <tag k="description" v="La visite présente les entrailles de Paris de l'Antiquité à Belgrand, ingénieur du XIXe siècle, qui a conçu le réseau d'égouts actuel. Dans les galeries souterraines, sont évoqués le cycle de l'eau et le travail des égoutiers de Paris."/>
<tag k="email" v="visite-des-egouts@paris.fr"/>
- <tag k="fare" v="full:4,30; discount:3,50"/>
+ <tag k="fare" v="full:4,30;discount:3,50"/>
<tag k="fare:currency" v="euro"/>
- <tag k="fax" v="01.53.68.27.89"/>
- <tag k="name" v="Les Égouts de Paris"/>
+ <tag k="fax" v="+33153682789"/>
+ <tag k="level" v="-1"/>
+ <tag k="name" v="Visite des Égouts de Paris"/>
<tag k="note:fr" v="Dernier ticket vendu à 16h en hiver, 17h en été"/>
<tag k="opening_hours" v="Oct 1 - Apr 30: 11:00-16:00; May 1 - Sep 30: 11:00-17:00; Th,Fr off"/>
- <tag k="phone" v="01.53.68.27.81"/>
+ <tag k="operator" v="Mairie de Paris"/>
+ <tag k="phone" v="+33153682781"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.paris.fr/loisirs/musees-expos/musee-des-egouts/visite-publique-des-egouts-de-paris/rub_9691_stand_5943_port_23931"/>
+ <tag k="website" v="http://equipement.paris.fr/musee-des-egouts-5059"/>
<tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Égouts de Paris"/>
+ <tag k="wikidata" v="Q2654419"/>
+ <tag k="wikipedia" v="fr:Musée des Égouts"/>
</node>
- <node id="251758241" lat="48.8519056" lon="2.3254299">
- <tag k="name" v="Hôtel Chomel"/>
+ <node id="251758241" lat="48.8519344" lon="2.3253667">
+ <tag k="contact:website" v="http://www.lepetitchomel.com/"/>
+ <tag k="name" v="Le Petit Chomel"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="251758242" lat="48.8521505" lon="2.3260910">
@@ -294,10 +336,6 @@
<tag k="name" v="Timhôtel Best Western Tour Eiffel Invalides"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="251758252" lat="48.8643297" lon="2.3182161">
- <tag k="name" v="Phytéas's houseboat B&amp;B"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="251758255" lat="48.8687840" lon="2.3006774">
<tag k="name" v="Four Seasons Hôtel George V"/>
<tag k="tourism" v="hotel"/>
@@ -318,30 +356,20 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="251851394" lat="48.8763467" lon="2.3710708">
- <tag k="name" v="Hôtel Vicq d'Azir"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="251851395" lat="48.8773197" lon="2.3627064">
<tag k="name" v="Hôtel du Terrage"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="251851402" lat="48.8711954" lon="2.3550205">
- <tag k="addr:housenumber" v="31"/>
- <tag k="addr:street" v="Boulevard de Strasbourg"/>
<tag k="name" v="Comfort Hotel Gare de l'Est"/>
<tag k="tourism" v="hotel"/>
<tag k="wifi" v="free"/>
</node>
- <node id="251851404" lat="48.8794148" lon="2.3584116">
- <tag k="name" v="Albert 1er Hotel"/>
- <tag k="operator" v="Best Western"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="252211317" lat="48.8662844" lon="2.3817490">
<tag k="name" v="Musée Edith Piaf"/>
- <tag k="phone" v="01.43.55.52.72"/>
+ <tag k="phone" v="+33143555272"/>
<tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q3055415"/>
</node>
<node id="252683843" lat="48.8651810" lon="2.3673647">
<tag k="name" v="Appel"/>
@@ -398,8 +426,8 @@
<tag k="name" v="Corail Hotel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="252806984" lat="48.8490527" lon="2.3858203">
- <tag k="name" v="Hôtel Le Quartier Bastille, Le Faubourg"/>
+ <node id="252806984" lat="48.8490103" lon="2.3856902">
+ <tag k="name" v="Paris Reuilly - Aparthotels Adagio"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="252806985" lat="48.8462381" lon="2.3733925">
@@ -425,7 +453,11 @@
<tag k="wheelchair:description" v="Elevators and sliding doors, not known if there any rooms are specially adapted to wheelchair users (standard rooms are not)"/>
</node>
<node id="252819330" lat="48.8283030" lon="2.3473418">
- <tag k="name" v="Timhotel Italie"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Ibis Styles - Butte aux Cailles"/>
+ <tag k="operator" v="Ibis"/>
+ <tag k="rooms" v="72"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="limited"/>
</node>
@@ -442,8 +474,8 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="252820659" lat="48.8290334" lon="2.3741541"/>
- <node id="252820661" lat="48.8315527" lon="2.3572533">
+ <node id="252820659" lat="48.8290416" lon="2.3741725"/>
+ <node id="252820661" lat="48.8315772" lon="2.3571955">
<tag k="name" v="Holiday Inn Express Paris place d'Italie"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -453,9 +485,10 @@
</node>
<node id="252855046" lat="48.8403827" lon="2.3113658">
<tag k="name" v="Musée Pasteur"/>
- <tag k="phone" v="01.45.68.82.83"/>
+ <tag k="phone" v="+33145688283"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.pasteur.fr/ip/easysite/pasteur/fr/institut-pasteur/musees/musee-pasteur"/>
+ <tag k="website" v="https://www.pasteur.fr/fr/institut-pasteur/musee-pasteur"/>
+ <tag k="wikidata" v="Q2255375"/>
</node>
<node id="252860489" lat="48.8333693" lon="2.3319728">
<tag k="contact:city" v="Paris"/>
@@ -468,18 +501,10 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.paris-hotel-lion.com"/>
</node>
- <node id="252863244" lat="48.8421541" lon="2.3046648">
- <tag k="name" v="Aloha Youth Hostel"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="252958953" lat="48.8671624" lon="2.2857115">
<tag k="name" v="Le Parc"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="252969205" lat="48.8850200" lon="2.3249065">
- <tag k="name" v="Hôtel Eldorado"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="252969206" lat="48.8867808" lon="2.3137817">
<tag k="name" v="Hôtel Prince Albert Monceau"/>
<tag k="tourism" v="hotel"/>
@@ -490,10 +515,12 @@
</node>
<node id="252970813" lat="48.8864800" lon="2.3399022">
<tag k="name" v="Espace Dali"/>
+ <tag k="name:ja" v="ダリ美術館"/>
<tag k="name:ru" v="Музей Дали"/>
- <tag k="phone" v="01.42.64.40.10"/>
+ <tag k="phone" v="+33142644010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.daliparis.com/"/>
+ <tag k="wikidata" v="Q973216"/>
<tag k="wikipedia" v="fr:Espace Dalí"/>
</node>
<node id="253007446" lat="48.8861896" lon="2.3361789">
@@ -510,8 +537,15 @@
<tag k="name" v="Hôtel des Arts"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="253007450" lat="48.8928537" lon="2.3428303">
+ <node id="253007450" lat="48.8928489" lon="2.3428390">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="90"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Ordener"/>
+ <tag k="internet_access" v="wlan"/>
<tag k="name" v="Hôtel Eden Montmartre"/>
+ <tag k="smoking" v="isolated"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://edenhotel-montmartre.com"/>
</node>
@@ -519,22 +553,32 @@
<tag k="name" v="Paris Hotel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="253007453" lat="48.8866384" lon="2.3330799">
- <tag k="created_by" v="JOSM"/>
+ <node id="253007453" lat="48.8865811" lon="2.3330450">
<tag k="name" v="Terrass'hôtel"/>
<tag k="note" v="SIC: the name is the owner's preferred spelling"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.terrass-hotel.com/"/>
</node>
<node id="253065826" lat="48.8957518" lon="2.3879761">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="30"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Avenue Corentin Cariou"/>
+ <tag k="hazard" v="robot"/>
<tag k="importance" v="international"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
<tag k="name" v="Cité des Sciences et de l'Industrie"/>
<tag k="name:it" v="Museo delle Scienze e dell'Industria"/>
<tag k="name:ru" v="Городок науки и индустрии"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-18:00; Su 10:00-19:00"/>
<tag k="phone" v="+33 1 40 05 70 00"/>
+ <tag k="subject" v="science"/>
<tag k="tourism" v="museum"/>
<tag k="tourism:visitors" v="3000000"/>
<tag k="website" v="http://www.cite-sciences.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1094338"/>
<tag k="wikipedia" v="fr:Cité des sciences et de l'industrie"/>
</node>
<node id="253983923" lat="48.8693546" lon="2.3495274">
@@ -562,7 +606,7 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="254009082" lat="48.8662848" lon="2.3574075">
- <tag k="name" v="Grand Hôtel des Arts et Metiers"/>
+ <tag k="name" v="Grand Hôtel des Arts et Métiers"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="254033221" lat="48.8547934" lon="2.3662431">
@@ -579,14 +623,17 @@
<tag k="tourism" v="museum"/>
<tag k="website" v="http://maisonsvictorhugo.paris.fr/"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q2599177"/>
<tag k="wikipedia" v="fr:Maison de Victor Hugo"/>
</node>
<node id="255038752" lat="48.8460247" lon="2.3981137">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:street" v="Avenue du Bel Air"/>
<tag k="name" v="Hôtel Royal Bel Air"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="256147849" lat="48.8457013" lon="2.3636204"/>
+ <node id="256147849" lat="48.8457136" lon="2.3636423"/>
<node id="256148606" lat="48.8456661" lon="2.3628994"/>
<node id="256148607" lat="48.8457339" lon="2.3630196"/>
<node id="256148608" lat="48.8455192" lon="2.3633114"/>
@@ -600,7 +647,7 @@
<node id="256148618" lat="48.8484028" lon="2.3590752"/>
<node id="256148619" lat="48.8483396" lon="2.3589659"/>
<node id="256148621" lat="48.8482298" lon="2.3591204"/>
- <node id="256148622" lat="48.8483030" lon="2.3592382"/>
+ <node id="256148622" lat="48.8481861" lon="2.3591806"/>
<node id="256148623" lat="48.8467449" lon="2.3614832"/>
<node id="256148624" lat="48.8466433" lon="2.3613373"/>
<node id="256324365" lat="48.8421016" lon="2.3032187">
@@ -609,25 +656,30 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="256324720" lat="48.8399264" lon="2.3032478">
- <tag k="created_by" v="Potlatch 0.8a"/>
- <tag k="name" v="Hôtel Novotel"/>
+ <tag k="name" v="Novotel Paris Vaugirand Montparnasse"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="256624370" lat="48.8534631" lon="2.3162798"/>
<node id="257746377" lat="48.8226911" lon="2.2734484">
- <tag k="email" v="musee@ville-issy.fr"/>
- <tag k="fixme" v="16 rue Auguste Gervais"/>
+ <tag k="addr:housenumber" v="16"/>
+ <tag k="addr:street" v="Rue Auguste Gervais"/>
+ <tag k="contact:email" v="musee@ville-issy.fr"/>
+ <tag k="contact:phone" v="+33 1 41 23 83 60"/>
+ <tag k="contact:website" v="http://www.issy.com/ma-ville/equipements-culturels/musee-francais-de-la-carte-a-jouer"/>
<tag k="name" v="Musée de la Carte à Jouer et Galerie d'Histoire de la Ville"/>
<tag k="note" v="Culture"/>
<tag k="source" v="Open Data - Issy-les-Moulineaux - Lieux Culturels - Février2015"/>
- <tag k="telephone" v="01 41 23 83 60"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.issy.com/ma-ville/equipements-culturels/musee-francais-de-la-carte-a-jouer"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1530976"/>
+ <tag k="wikipedia" v="en:Musée Français de la Carte à Jouer"/>
</node>
<node id="259009772" lat="48.8471379" lon="2.3013512">
<tag k="name" v="Hôtel Ibis Cambronne"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.accorhotels.com/fr/hotel-1400-ibis-paris-tour-eiffel-cambronne-15eme/index.shtml"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="259477205" lat="48.8384924" lon="2.3151043">
<tag k="name" v="Novotel Pari Gare Montparnasse"/>
@@ -637,19 +689,30 @@
<node id="261576902" lat="48.8489053" lon="2.3572967"/>
<node id="261576903" lat="48.8492117" lon="2.3568184"/>
<node id="261577998" lat="48.8486345" lon="2.3574243"/>
- <node id="264775551" lat="48.8789301" lon="2.3620440">
- <tag k="railway" v="subway_entrance"/>
+ <node id="264775551" lat="48.8789019" lon="2.3620266">
+ <tag k="entrance" v="main"/>
+ <tag k="level" v="0"/>
+ <tag k="name" v="Gare de l'Est - Château-Landon"/>
+ <tag k="railway" v="train_station_entrance"/>
</node>
- <node id="265606996" lat="48.8261552" lon="2.2782521">
+ <node id="265606996" lat="48.8261138" lon="2.2781477">
+ <tag k="email" v="hotelmoderne@yahoo.fr"/>
+ <tag k="name" v="Hôtel Moderne"/>
+ <tag k="phone" v="+33 1 40 93 58 48"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.hotelmoderne.net"/>
</node>
- <node id="267211208" lat="48.8784567" lon="2.3583300">
+ <node id="267211208" lat="48.8784720" lon="2.3582756">
<tag k="name" v="Hôtel Kuntz"/>
+ <tag k="rooms" v="35"/>
+ <tag k="source" v="survey 11/2017"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelkuntz.com/"/>
</node>
- <node id="267486654" lat="48.9011636" lon="2.3332328">
- <tag k="created_by" v="Potlatch 0.9c"/>
+ <node id="267486654" lat="48.9011416" lon="2.3325958">
+ <tag k="alt_name" v="Hôtel Formule 1 Porte de Montmartre"/>
+ <tag k="name" v="HotelF1 Porte de Montmartre"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="268057549" lat="48.8454273" lon="2.3241304">
@@ -659,6 +722,7 @@
<node id="274247570" lat="48.8911605" lon="2.3763728">
<tag k="name" v="Hôtel Crimée"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="274249824" lat="48.8717563" lon="2.3927092">
<tag k="name" v="Hôtel Ermitage"/>
@@ -669,13 +733,20 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="274259534" lat="48.8766342" lon="2.2907798">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue des Acacias"/>
<tag k="name" v="Hôtel Acacias Etoile"/>
+ <tag k="smoking" v="outside"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="274261929" lat="48.8706664" lon="2.3304172">
<tag k="name" v="Le Grand Hôtel Intercontinental"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3153054"/>
<tag k="wikipedia" v="fr:InterContinental Paris Le Grand"/>
</node>
<node id="276203548" lat="48.8273283" lon="2.3211689">
@@ -693,12 +764,13 @@
<tag k="addr:postcode" v="75001"/>
<tag k="addr:street" v="Rue Hérold"/>
<tag k="amenity" v="arts_centre"/>
- <tag k="fax" v="01.40.67.92.13"/>
+ <tag k="fax" v="+33140679213"/>
<tag k="name" v="Musée en Herbe"/>
<tag k="opening_hours" v="Mo-Su 10:00-19:00; Th 10:00-21:00"/>
- <tag k="phone" v="01.40.67.97.66"/>
+ <tag k="phone" v="+33140679766"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.musee-en-herbe.com/"/>
+ <tag k="wikidata" v="Q3330549"/>
<tag k="wikipedia" v="fr:Musée en Herbe"/>
</node>
<node id="281000310" lat="48.8685689" lon="2.3500099">
@@ -712,6 +784,7 @@
<node id="289439794" lat="48.8684048" lon="2.3213802">
<tag k="name" v="Hôtel Sofitel Le Faubourg"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="289464150" lat="48.8728474" lon="2.3193054">
<tag k="name" v="Hôtel Astor Saint-Honoré"/>
@@ -742,10 +815,10 @@
<tag k="name" v="Novotel Paris Est"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="304741556" lat="48.8235187" lon="2.2729518">
+ <node id="304741556" lat="48.8235049" lon="2.2730115">
<tag k="tourism" v="hotel"/>
</node>
- <node id="304741581" lat="48.8233881" lon="2.2730353">
+ <node id="304741581" lat="48.8234066" lon="2.2730739">
<tag k="name" v="Classics - Parc Des Expositions"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -780,6 +853,7 @@
</node>
<node id="308530497" lat="48.8706403" lon="2.3297901">
<tag k="name" v="Hôtel Scribe"/>
+ <tag k="name:zh" v="索菲特巴黎斯克里布酒店"/>
<tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -833,86 +907,90 @@
<tag k="alt_name" v="MEP"/>
<tag k="amenity" v="arts_centre"/>
<tag k="name" v="Maison Européenne de la Photographie"/>
+ <tag k="opening_hours" v="We-Su 11:00-20:00"/>
<tag k="phone" v="+33 1 44 78 75 00"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.mep-fr.org"/>
+ <tag k="wikidata" v="Q3100297"/>
<tag k="wikipedia" v="fr:Maison européenne de la photographie"/>
</node>
- <node id="324191957" lat="48.8772610" lon="2.3543434">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="7"/>
- <tag k="addr:postcode" v="75010"/>
- <tag k="addr:street" v="Rue des Petits Hôtels"/>
+ <node id="324191957" lat="48.8772727" lon="2.3543165">
<tag k="name" v="Hôtel Paris Est Lafayette"/>
+ <tag k="smoking" v="outside"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="324299178" lat="48.8695018" lon="2.3546892">
<tag k="email" v="contact@annehoguet.fr"/>
- <tag k="fax" v="01.42.08.30.91"/>
+ <tag k="fax" v="+33142083091"/>
<tag k="fee" v="full : 6.5; discount : 3.5"/>
<tag k="level" v="3"/>
<tag k="name" v="Musée de l'Eventail"/>
<tag k="official_name" v="L’Atelier Hoguet - Musée de l’Éventail"/>
<tag k="opening_hours" v="Mo-We 14:00-18:00"/>
- <tag k="phone" v="01.42.08.90.20"/>
+ <tag k="phone" v="+33142089020"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.annehoguet.fr/musee.htm"/>
<tag k="wheelchair" v="no"/>
<tag k="wikidata" v="Q3329860"/>
<tag k="wikipedia" v="fr:Musée de l'Éventail"/>
</node>
+ <node id="330252484" lat="48.8881905" lon="2.2471954"/>
+ <node id="330252489" lat="48.8879407" lon="2.2476672"/>
+ <node id="330252493" lat="48.8880135" lon="2.2477783"/>
<node id="338242543" lat="48.8506769" lon="2.3924817">
<tag k="name" v="Hôtel du Prince Eugène"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="338546592" lat="48.8416763" lon="2.3569475"/>
- <node id="338546614" lat="48.8417045" lon="2.3569311"/>
- <node id="338546616" lat="48.8417417" lon="2.3570760"/>
- <node id="338546618" lat="48.8417141" lon="2.3570928"/>
- <node id="338546620" lat="48.8420379" lon="2.3583498"/>
- <node id="338546946" lat="48.8420668" lon="2.3583328"/>
- <node id="338546948" lat="48.8421043" lon="2.3584780"/>
- <node id="338546951" lat="48.8420754" lon="2.3584949"/>
- <node id="338546953" lat="48.8419539" lon="2.3586168"/>
- <node id="338546955" lat="48.8419188" lon="2.3586379"/>
+ <node id="338546592" lat="48.8416764" lon="2.3569476"/>
+ <node id="338546614" lat="48.8417044" lon="2.3569310"/>
+ <node id="338546616" lat="48.8417418" lon="2.3570762"/>
+ <node id="338546618" lat="48.8417161" lon="2.3570914"/>
+ <node id="338546620" lat="48.8420378" lon="2.3583499"/>
+ <node id="338546946" lat="48.8420671" lon="2.3583325"/>
+ <node id="338546948" lat="48.8421045" lon="2.3584778"/>
+ <node id="338546951" lat="48.8420755" lon="2.3584950"/>
<node id="338546977" lat="48.8418587" lon="2.3584039"/>
- <node id="338546979" lat="48.8418939" lon="2.3583830"/>
- <node id="338546998" lat="48.8415588" lon="2.3572320"/>
- <node id="338547031" lat="48.8415943" lon="2.3572123"/>
- <node id="338547033" lat="48.8414948" lon="2.3570014"/>
- <node id="338547035" lat="48.8415342" lon="2.3569774"/>
- <node id="354627220" lat="48.8417734" lon="2.3317486">
- <tag k="name" v="Hôtel Apostrophe"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="354648289" lat="48.8789004" lon="2.3448758">
- <tag k="addr:housenumber" v="10"/>
- <tag k="addr:street" v="Rue de la Tour d'Auvergne"/>
- <tag k="name" v="Hôtel La Tour d'Auvergne"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <node id="338546979" lat="48.8418945" lon="2.3583827"/>
+ <node id="338546998" lat="48.8415569" lon="2.3572338"/>
+ <node id="338547031" lat="48.8415936" lon="2.3572121"/>
+ <node id="338547033" lat="48.8414968" lon="2.3569999"/>
+ <node id="338547035" lat="48.8415347" lon="2.3569774"/>
+ <node id="342882449" lat="48.8536042" lon="2.3477583"/>
+ <node id="346359755" lat="48.8882506" lon="2.3356733">
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Avenue Junot"/>
+ <tag k="name" v="Le Très Particulier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2009"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.hotel-particulier-montmartre.com/"/>
</node>
<node id="354653445" lat="48.8515615" lon="2.3906806">
<tag k="name" v="Grand Hotel Français"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="354658898" lat="48.8390977" lon="2.3974259">
+ <node id="354658898" lat="48.8391530" lon="2.3974700">
<tag k="name" v="Grand Hôtel Doré"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="354664734" lat="48.8452340" lon="2.3101111">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="94"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Boulevard Garibaldi"/>
<tag k="name" v="Hôtel Sublim Eiffel"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="limited"/>
</node>
- <node id="355349419" lat="48.8420815" lon="2.3583884"/>
+ <node id="355349419" lat="48.8420774" lon="2.3583727"/>
<node id="361128665" lat="48.8707687" lon="2.3598696">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="4"/>
- <tag k="addr:postcode" v="75010"/>
- <tag k="addr:street" v="Rue Lucien Sampaix"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:country" v="FR"/>
+ <tag k="contact:housenumber" v="4"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue Lucien Sampaix"/>
<tag k="name" v="Hôtel Albouy"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
@@ -921,21 +999,25 @@
<tag k="name" v="Relais du Pré"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="368330088" lat="48.8775316" lon="2.3471837">
<tag k="name" v="Hôtel du Pré"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="368330093" lat="48.8784021" lon="2.3475786">
<tag k="name" v="Résidence du Pré"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="394566883" lat="48.8537719" lon="2.3323137">
<tag k="name" v="Au Manoir Saint-Germain des Prés"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q23258"/>
</node>
<node id="408959736" lat="48.8831159" lon="2.3425480">
<tag k="name" v="Adagio Paris Montmartre"/>
@@ -955,9 +1037,10 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="410272989" lat="48.8957352" lon="2.3886935">
- <tag k="name" v="Cité des Enfants"/>
+ <tag k="level" v="0"/>
+ <tag k="name" v="Cité des Enfants (5-12 ans)"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.cite-sciences.fr/fr/cite-des-sciences/contenu/c/1248104303612/cite-des-enfants/"/>
+ <tag k="website" v="http://www.cite-sciences.fr/fr/au-programme/expos-permanentes/la-cite-des-enfants/cite-des-enfants-5-12-ans/"/>
<tag k="wheelchair" v="yes"/>
</node>
<node id="412221222" lat="48.8271300" lon="2.3482326">
@@ -965,8 +1048,8 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="414195849" lat="48.8400155" lon="2.3612991">
- <tag k="contact:fax" v="0143319603"/>
- <tag k="contact:phone" v="0143313750"/>
+ <tag k="contact:fax" v="+33 1 43 31 96 03"/>
+ <tag k="contact:phone" v="+33 1 43 31 37 50"/>
<tag k="contact:website" v="www.hoteldevillas.com"/>
<tag k="name" v="Hôtel deVillas"/>
<tag k="tourism" v="hotel"/>
@@ -995,18 +1078,19 @@
<tag k="wheelchair" v="yes"/>
</node>
<node id="428145711" lat="48.8616153" lon="2.3542965">
- <tag k="fee" v="full:8; children(3-11),handicap:4; student(12-25),unemployment, senior(+65):6"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="7"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Impasse Berthaud"/>
+ <tag k="fee" v="full:8;children(3-11),handicap:4;student(12-25),unemployment, senior(+65):6"/>
<tag k="fee:currency" v="euro"/>
<tag k="name" v="Musée de la Poupée"/>
<tag k="opening_hours" v="Tu-Sa 10:00-18:45"/>
- <tag k="phone" v="01.44.54.04.48"/>
+ <tag k="phone" v="+331 42 72 73 11"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museedelapoupeeparis.com/"/>
- </node>
- <node id="428158055" lat="48.8472227" lon="2.3777378">
- <tag k="name" v="Hôtel Prince Albert"/>
- <tag k="stars" v="3"/>
- <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3329948"/>
+ <tag k="wikipedia" v="fr:Musée de la Poupée - Au Petit Monde Ancien"/>
</node>
<node id="471410543" lat="48.8493663" lon="2.4164765">
<tag k="name" v="Ibis Budget"/>
@@ -1023,17 +1107,21 @@
<node id="472351943" lat="48.8360061" lon="2.4060195">
<tag k="tourism" v="hotel"/>
</node>
- <node id="472351944" lat="48.8362217" lon="2.4040125">
- <tag k="name" v="Sport Hotel"/>
+ <node id="472351944" lat="48.8363649" lon="2.4036639">
+ <tag k="contact:website" v="http://www.hotelinterlude.com/"/>
+ <tag k="name" v="L'Interlude"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="472398313" lat="48.8665538" lon="2.4164224">
- <tag k="name" v="Etap Hotel Porte de Bagnolet"/>
+ <tag k="name" v="Ibis Budget Porte de Bagnolet"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
- <node id="472398315" lat="48.8665312" lon="2.4167859">
+ <node id="472398315" lat="48.8665731" lon="2.4168062">
<tag k="name" v="Ibis Porte de Bagnolet"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="473827195" lat="48.8351933" lon="2.3876342">
<tag k="name" v="Hôtel Kyriad"/>
@@ -1072,11 +1160,21 @@
<node id="493554424" lat="48.8149659" lon="2.4188038">
<tag k="tourism" v="hotel"/>
</node>
- <node id="493870538" lat="48.8339752" lon="2.3324559">
+ <node id="493870538" lat="48.8339640" lon="2.3324924">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue du Colonel Henri Rol Tanguy"/>
<tag k="name" v="Catacombes de Paris"/>
+ <tag k="name:de" v="Katakomben von Paris"/>
+ <tag k="name:en" v="Catacombs of Paris"/>
+ <tag k="name:it" v="Catacombe di Parigi"/>
+ <tag k="name:ja" v="カタコンブ"/>
+ <tag k="opening_hours" v="Tu-Su 10:00-20:30"/>
<tag k="phone" v="+33 1 43224763"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="catacombes.paris.fr/"/>
+ <tag k="website" v="http://www.catacombes.paris.fr/"/>
+ <tag k="wikidata" v="Q28924"/>
<tag k="wikipedia" v="fr:Catacombes de Paris"/>
</node>
<node id="494663377" lat="48.8337124" lon="2.3176364">
@@ -1118,7 +1216,15 @@
<node id="517939580" lat="48.8509041" lon="2.3435850"/>
<node id="517939581" lat="48.8509084" lon="2.3435699"/>
<node id="519073606" lat="48.8430418" lon="2.4051424">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="33"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Avenue du Docteur Arnold Netter"/>
+ <tag k="alt_name" v="Best Western Allegro Nation"/>
+ <tag k="alt_name_1" v="Hôtel Best Western Allegro Nation"/>
<tag k="name" v="Hôtel Allegro"/>
+ <tag k="operator" v="Best Western"/>
+ <tag k="phone" v="+33 1 40 04 90 90"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="523358676" lat="48.8486403" lon="2.2919302"/>
@@ -1149,18 +1255,6 @@
<tag k="addr:street" v="Quai Saint-Bernard"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2009"/>
</node>
- <node id="529914028" lat="48.8880472" lon="2.2525318">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="4"/>
- <tag k="addr:postcode" v="92081"/>
- <tag k="addr:street" v="Boulevard de Neuilly"/>
- <tag k="name" v="Hôtel Ibis Paris La Défense"/>
- <tag k="operator" v="Accor Hotels"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- <tag k="url" v="http://www.accorhotels.com/de/hotel-0747-novotel-paris-la-defense/index.shtml"/>
- </node>
<node id="529914035" lat="48.8879723" lon="2.2528582">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -1169,18 +1263,20 @@
<tag k="addr:street" v="Boulevard de Neuilly"/>
<tag k="name" v="Novotel Paris La Défense"/>
<tag k="operator" v="Accor Hotels"/>
- <tag k="phone" v="(+33)1/41452323"/>
+ <tag k="phone" v="+33141452323"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="url" v="http://www.accorhotels.com/de/hotel-0747-novotel-paris-la-defense/index.shtml"/>
</node>
- <node id="530272873" lat="48.8458059" lon="2.3717510">
+ <node id="530272873" lat="48.8458297" lon="2.3717725">
<tag k="internet_access" v="wlan"/>
<tag k="name" v="Terminus - Lyon"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="530272876" lat="48.8493585" lon="2.3744491">
+ <tag k="name" v="Hôtel Albe Bastille"/>
+ <tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="530272916" lat="48.8468441" lon="2.3725504">
@@ -1208,12 +1304,6 @@
<tag k="name" v="Lyon Bastille"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="530751148" lat="48.8471104" lon="2.3720281">
- <tag k="name" v="Hôtel Adriatic"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- <tag k="wheelchair" v="no"/>
- </node>
<node id="530876703" lat="48.8444405" lon="2.3728366">
<tag k="name" v="Mercure"/>
<tag k="tourism" v="hotel"/>
@@ -1352,10 +1442,10 @@
<tag k="name" v="Alcyon"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="571518042" lat="48.8845491" lon="2.3442421"/>
- <node id="571518044" lat="48.8844796" lon="2.3443290"/>
+ <node id="571518042" lat="48.8846055" lon="2.3442501"/>
+ <node id="571518044" lat="48.8845457" lon="2.3443156"/>
<node id="571518046" lat="48.8844759" lon="2.3445350"/>
- <node id="571518047" lat="48.8845430" lon="2.3447385"/>
+ <node id="571518047" lat="48.8845853" lon="2.3446808"/>
<node id="571518050" lat="48.8851036" lon="2.3443019"/>
<node id="571518052" lat="48.8850797" lon="2.3447991"/>
<node id="571518054" lat="48.8850818" lon="2.3447396"/>
@@ -1366,7 +1456,6 @@
<node id="571518062" lat="48.8851911" lon="2.3444434"/>
<node id="571518065" lat="48.8851502" lon="2.3443868"/>
<node id="571518066" lat="48.8851000" lon="2.3443624"/>
- <node id="573262998" lat="48.8608347" lon="2.3317758"/>
<node id="582747696" lat="48.8548916" lon="2.3050685">
<tag k="name" v="Hôtel Prince"/>
<tag k="tourism" v="hotel"/>
@@ -1378,20 +1467,22 @@
</node>
<node id="583318136" lat="48.8196937" lon="2.3762012">
<tag k="addr:housenumber" v="1 à 11"/>
- <tag k="addr:street" v="rue Rene Villars"/>
+ <tag k="addr:street" v="Rue René Villars"/>
<tag k="name" v="Kyriad Paris Sud Porte d'Ivry"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="591672596" lat="48.8565619" lon="2.3273421">
<tag k="name" v="Hôtel Pont Royal"/>
+ <tag k="name:zh" v="皇家庞特酒店"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3145633"/>
</node>
- <node id="596074206" lat="48.8920695" lon="2.3152913">
+ <node id="596074206" lat="48.8919813" lon="2.3151840">
<tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="163 bis"/>
+ <tag k="addr:housenumber" v="10"/>
<tag k="addr:postcode" v="75017"/>
- <tag k="addr:street" v="Avenue de Clichy"/>
- <tag k="name" v="ibis"/>
+ <tag k="addr:street" v="Rue Bernard Buffet"/>
+ <tag k="name" v="Hôtel Ibis Paris 17 Clichy-Batignolles"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="597414066" lat="48.8710747" lon="2.3050358">
@@ -1409,11 +1500,14 @@
<node id="615119715" lat="48.8920260" lon="2.3021892"/>
<node id="615119716" lat="48.8920064" lon="2.3022181"/>
<node id="617271663" lat="48.8333040" lon="2.3565158">
+ <tag k="addr:housenumber" v="142"/>
+ <tag k="addr:street" v="Boulevard de l'Hôpital"/>
+ <tag k="internet_access" v="wlan"/>
<tag k="name" v="Hôtel Coypel"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="617271681" lat="48.8332640" lon="2.3559756">
+ <node id="617271681" lat="48.8332931" lon="2.3560025">
<tag k="name" v="Hôtel des Arts"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
@@ -1428,33 +1522,6 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="632026005" lat="48.8544214" lon="2.3636362"/>
- <node id="632026006" lat="48.8544160" lon="2.3636326"/>
- <node id="632026007" lat="48.8543786" lon="2.3637712"/>
- <node id="632026009" lat="48.8543737" lon="2.3637675"/>
- <node id="632026010" lat="48.8544559" lon="2.3635061"/>
- <node id="632026016" lat="48.8544598" lon="2.3640111"/>
- <node id="632026017" lat="48.8543351" lon="2.3638955"/>
- <node id="632026018" lat="48.8543331" lon="2.3638943"/>
- <node id="632026022" lat="48.8543275" lon="2.3639203"/>
- <node id="632026023" lat="48.8544779" lon="2.3639556"/>
- <node id="632026037" lat="48.8545637" lon="2.3635871"/>
- <node id="632026039" lat="48.8545976" lon="2.3636124"/>
- <node id="632026042" lat="48.8548234" lon="2.3635960"/>
- <node id="632026043" lat="48.8548104" lon="2.3637288"/>
- <node id="632026044" lat="48.8548156" lon="2.3635351"/>
- <node id="632026045" lat="48.8547288" lon="2.3637103"/>
- <node id="632026049" lat="48.8548137" lon="2.3635334"/>
- <node id="632026050" lat="48.8548209" lon="2.3636031"/>
- <node id="632026051" lat="48.8548007" lon="2.3635890"/>
- <node id="632026052" lat="48.8547883" lon="2.3635159"/>
- <node id="632026058" lat="48.8546948" lon="2.3641192"/>
- <node id="632026193" lat="48.8549169" lon="2.3637622"/>
- <node id="632026196" lat="48.8548621" lon="2.3636215"/>
- <node id="632026197" lat="48.8549127" lon="2.3637591"/>
- <node id="632026198" lat="48.8549426" lon="2.3636496"/>
- <node id="632026199" lat="48.8548682" lon="2.3636012"/>
- <node id="632026208" lat="48.8549033" lon="2.3638067"/>
<node id="632026546" lat="48.8536864" lon="2.3662496"/>
<node id="632026547" lat="48.8537017" lon="2.3661832"/>
<node id="632026565" lat="48.8538895" lon="2.3663507"/>
@@ -1472,10 +1539,8 @@
<node id="635373681" lat="48.8883193" lon="2.2471923"/>
<node id="635373683" lat="48.8882843" lon="2.2471845"/>
<node id="635373686" lat="48.8882371" lon="2.2471837"/>
- <node id="635373687" lat="48.8881905" lon="2.2471954"/>
<node id="635373690" lat="48.8881482" lon="2.2472177"/>
<node id="635373693" lat="48.8879453" lon="2.2476851"/>
- <node id="635373695" lat="48.8879407" lon="2.2476672"/>
<node id="635373696" lat="48.8879490" lon="2.2476728"/>
<node id="635373700" lat="48.8880156" lon="2.2474167"/>
<node id="635373702" lat="48.8880114" lon="2.2474303"/>
@@ -1487,7 +1552,6 @@
<node id="635373723" lat="48.8879428" lon="2.2480163"/>
<node id="635373725" lat="48.8880902" lon="2.2477823"/>
<node id="635373726" lat="48.8880788" lon="2.2478220"/>
- <node id="635373729" lat="48.8880135" lon="2.2477783"/>
<node id="635373732" lat="48.8880590" lon="2.2477613"/>
<node id="635373735" lat="48.8880473" lon="2.2478010"/>
<node id="635373737" lat="48.8883885" lon="2.2480769"/>
@@ -1524,6 +1588,14 @@
<node id="635373810" lat="48.8882999" lon="2.2483645"/>
<node id="635373813" lat="48.8883094" lon="2.2483700"/>
<node id="635373816" lat="48.8883967" lon="2.2480825"/>
+ <node id="639179786" lat="48.8797974" lon="2.3339073"/>
+ <node id="639179788" lat="48.8798439" lon="2.3337198"/>
+ <node id="639179796" lat="48.8798781" lon="2.3337379"/>
+ <node id="639179797" lat="48.8798572" lon="2.3338466"/>
+ <node id="639179799" lat="48.8798810" lon="2.3338567"/>
+ <node id="639179842" lat="48.8797476" lon="2.3339995"/>
+ <node id="639179844" lat="48.8798071" lon="2.3340755"/>
+ <node id="639179847" lat="48.8798607" lon="2.3339768"/>
<node id="650007651" lat="48.8531115" lon="2.3447283">
<tag k="name" v="Albe Hôtel Saint-Michel"/>
<tag k="tourism" v="hotel"/>
@@ -1554,6 +1626,7 @@
<node id="664266488" lat="48.8306116" lon="2.3385481"/>
<node id="667526202" lat="48.8288534" lon="2.2822756">
<tag k="name" v="Hôtel Luxor"/>
+ <tag k="phone" v="+33 1 46 48 83 83"/>
<tag k="source" v="knowledge"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
@@ -1578,7 +1651,6 @@
<node id="673947487" lat="48.8457982" lon="2.2983510"/>
<node id="673947708" lat="48.8468714" lon="2.2962275"/>
<node id="673947822" lat="48.8451691" lon="2.2973209"/>
- <node id="673947899" lat="48.8459022" lon="2.2981830"/>
<node id="673948087" lat="48.8477864" lon="2.2938506"/>
<node id="673948171" lat="48.8459220" lon="2.2982315"/>
<node id="673948208" lat="48.8466819" lon="2.2962384"/>
@@ -1598,8 +1670,28 @@
<node id="673951367" lat="48.8478116" lon="2.2978104"/>
<node id="673951370" lat="48.8467543" lon="2.2961193"/>
<node id="673951522" lat="48.8459396" lon="2.2983152"/>
+ <node id="674395329" lat="48.8412367" lon="2.3008186"/>
+ <node id="674395515" lat="48.8412435" lon="2.3008563"/>
+ <node id="674395891" lat="48.8412526" lon="2.3008835"/>
+ <node id="674397413" lat="48.8412750" lon="2.3010189"/>
+ <node id="674399738" lat="48.8413400" lon="2.3009760"/>
+ <node id="674399999" lat="48.8413147" lon="2.3008821"/>
+ <node id="674400668" lat="48.8412374" lon="2.3008989"/>
+ <node id="674400728" lat="48.8412452" lon="2.3008520"/>
+ <node id="674400794" lat="48.8412701" lon="2.3007982"/>
+ <node id="674400853" lat="48.8412985" lon="2.3008905"/>
+ <node id="675558327" lat="48.8459913" lon="2.2788987"/>
+ <node id="675558566" lat="48.8459538" lon="2.2787735"/>
+ <node id="675558589" lat="48.8460184" lon="2.2787644"/>
+ <node id="675558710" lat="48.8459226" lon="2.2787782"/>
+ <node id="675558718" lat="48.8459944" lon="2.2789707"/>
+ <node id="675558884" lat="48.8460929" lon="2.2787534"/>
+ <node id="675558948" lat="48.8460358" lon="2.2789690"/>
+ <node id="675558994" lat="48.8461032" lon="2.2789604"/>
+ <node id="675559053" lat="48.8459670" lon="2.2789002"/>
<node id="676748293" lat="48.8567159" lon="2.3418236">
<tag k="name" v="Hôtel Henri IV"/>
+ <tag k="name:zh" v="亨利四世酒店"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -1608,9 +1700,9 @@
<node id="676860093" lat="48.8578252" lon="2.3467061">
<tag k="addr:housenumber" v="17"/>
<tag k="addr:street" v="Avenue Victoria"/>
- <tag k="fax" v="+33-1-40263561"/>
+ <tag k="fax" v="+33 1 40 26 35 61"/>
<tag k="name" v="Hôtel Victoria Châtelet"/>
- <tag k="phone" v="+33-1-40269017"/>
+ <tag k="phone" v="+33 1 40 26 90 17"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -1657,103 +1749,24 @@
<node id="677773867" lat="48.8335663" lon="2.2870557"/>
<node id="677774048" lat="48.8335763" lon="2.2870425"/>
<node id="677774071" lat="48.8336132" lon="2.2870934"/>
- <node id="677805412" lat="48.8608183" lon="2.3461668"/>
- <node id="677805413" lat="48.8608276" lon="2.3461766"/>
- <node id="677805417" lat="48.8608275" lon="2.3461719"/>
- <node id="677805420" lat="48.8608435" lon="2.3461840"/>
- <node id="677805421" lat="48.8608497" lon="2.3461608"/>
- <node id="677805423" lat="48.8608785" lon="2.3461757"/>
- <node id="677805424" lat="48.8608887" lon="2.3461320"/>
- <node id="677805425" lat="48.8609075" lon="2.3461224"/>
- <node id="677805427" lat="48.8609803" lon="2.3461596"/>
- <node id="677805429" lat="48.8609941" lon="2.3462109"/>
- <node id="677805454" lat="48.8606637" lon="2.3468619"/>
- <node id="677805455" lat="48.8606551" lon="2.3468585"/>
- <node id="677805457" lat="48.8606480" lon="2.3468511"/>
- <node id="677805462" lat="48.8606430" lon="2.3468409"/>
- <node id="677805463" lat="48.8606421" lon="2.3468262"/>
- <node id="677805464" lat="48.8606450" lon="2.3468097"/>
- <node id="677805465" lat="48.8606505" lon="2.3468014"/>
- <node id="677805466" lat="48.8606559" lon="2.3467968"/>
- <node id="677805468" lat="48.8606636" lon="2.3467955"/>
- <node id="677805475" lat="48.8607229" lon="2.3465726"/>
- <node id="677805477" lat="48.8607193" lon="2.3465706"/>
- <node id="677805478" lat="48.8607378" lon="2.3464874"/>
- <node id="677805480" lat="48.8607430" lon="2.3464897"/>
- <node id="677805483" lat="48.8606704" lon="2.3467968"/>
- <node id="677805485" lat="48.8606774" lon="2.3468028"/>
- <node id="677805487" lat="48.8606892" lon="2.3467445">
- <tag k="addr:housenumber" v="4"/>
- <tag k="addr:street" v="Place Marguerite de Navarre"/>
+ <node id="678029634" lat="48.8605775" lon="2.3437450"/>
+ <node id="678029635" lat="48.8606316" lon="2.3437732">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Rue du Roule"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="677805489" lat="48.8606858" lon="2.3467421"/>
- <node id="677805521" lat="48.8610099" lon="2.3462186"/>
- <node id="677805522" lat="48.8610146" lon="2.3462006"/>
- <node id="677805523" lat="48.8610662" lon="2.3462277"/>
- <node id="677805524" lat="48.8610566" lon="2.3462684"/>
- <node id="677805526" lat="48.8610894" lon="2.3462891"/>
- <node id="677805527" lat="48.8611057" lon="2.3462815"/>
- <node id="677805528" lat="48.8611312" lon="2.3463517"/>
- <node id="677805530" lat="48.8611419" lon="2.3463028"/>
- <node id="677805531" lat="48.8611222" lon="2.3463569"/>
- <node id="677805533" lat="48.8611298" lon="2.3463842"/>
- <node id="677805534" lat="48.8611401" lon="2.3463797"/>
- <node id="677805536" lat="48.8611643" lon="2.3463926"/>
- <node id="677805538" lat="48.8611594" lon="2.3464180"/>
- <node id="677805540" lat="48.8611497" lon="2.3464231"/>
- <node id="677805542" lat="48.8611576" lon="2.3464560"/>
- <node id="677805544" lat="48.8611706" lon="2.3464494"/>
- <node id="677805548" lat="48.8612133" lon="2.3464747"/>
- <node id="677805550" lat="48.8612117" lon="2.3464823"/>
- <node id="677805552" lat="48.8612226" lon="2.3464886"/>
- <node id="677805553" lat="48.8612083" lon="2.3465545"/>
- <node id="677805555" lat="48.8612302" lon="2.3465666"/>
- <node id="677805557" lat="48.8611935" lon="2.3466101"/>
- <node id="677805559" lat="48.8611612" lon="2.3469231"/>
- <node id="677805560" lat="48.8611661" lon="2.3469535"/>
- <node id="677805562" lat="48.8612180" lon="2.3466231"/>
- <node id="677805564" lat="48.8611857" lon="2.3466461"/>
- <node id="677805565" lat="48.8612210" lon="2.3466653"/>
- <node id="677805566" lat="48.8606177" lon="2.3470667"/>
- <node id="677805567" lat="48.8606121" lon="2.3470632"/>
- <node id="677805568" lat="48.8606166" lon="2.3470415"/>
- <node id="677805569" lat="48.8606235" lon="2.3470437"/>
- <node id="677805570" lat="48.8606362" lon="2.3469864">
- <tag k="addr:housenumber" v="2"/>
- <tag k="addr:street" v="Place Marguerite de Navarre"/>
+ <node id="678029640" lat="48.8605545" lon="2.3438651"/>
+ <node id="678029641" lat="48.8606602" lon="2.3439167"/>
+ <node id="678029652" lat="48.8606789" lon="2.3437979"/>
+ <node id="678029677" lat="48.8609336" lon="2.3439306"/>
+ <node id="678029679" lat="48.8609930" lon="2.3440452"/>
+ <node id="678029680" lat="48.8609197" lon="2.3440161"/>
+ <node id="678029683" lat="48.8609731" lon="2.3439509">
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:street" v="Rue du Roule"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="677805571" lat="48.8605782" lon="2.3472097"/>
- <node id="677805573" lat="48.8605920" lon="2.3472059"/>
- <node id="677805574" lat="48.8605893" lon="2.3472158"/>
- <node id="677805576" lat="48.8605820" lon="2.3471922"/>
- <node id="677805577" lat="48.8605879" lon="2.3471948"/>
- <node id="677805579" lat="48.8607260" lon="2.3472766"/>
- <node id="677805581" lat="48.8607239" lon="2.3472861"/>
- <node id="677805583" lat="48.8607128" lon="2.3472805"/>
- <node id="677805585" lat="48.8607148" lon="2.3472710"/>
- <node id="677805602" lat="48.8610017" lon="2.3474204"/>
- <node id="677805603" lat="48.8609985" lon="2.3474344"/>
- <node id="677805604" lat="48.8609921" lon="2.3474581"/>
- <node id="677805605" lat="48.8609944" lon="2.3474589"/>
- <node id="677805606" lat="48.8609913" lon="2.3474725"/>
- <node id="677805607" lat="48.8609828" lon="2.3474668"/>
- <node id="677805608" lat="48.8609914" lon="2.3474318"/>
- <node id="677805609" lat="48.8609860" lon="2.3474278"/>
- <node id="677805610" lat="48.8609884" lon="2.3474181"/>
- <node id="677805611" lat="48.8611661" lon="2.3469800"/>
- <node id="677805612" lat="48.8611633" lon="2.3470052"/>
- <node id="677805613" lat="48.8611583" lon="2.3470250"/>
- <node id="677805614" lat="48.8611513" lon="2.3470428"/>
- <node id="677805615" lat="48.8611427" lon="2.3470602"/>
- <node id="677805616" lat="48.8611319" lon="2.3470742"/>
- <node id="677805617" lat="48.8611237" lon="2.3470823"/>
- <node id="677805618" lat="48.8610561" lon="2.3473777"/>
- <node id="677805619" lat="48.8610166" lon="2.3473570"/>
- <node id="677805620" lat="48.8610413" lon="2.3474421"/>
- <node id="677805621" lat="48.8610387" lon="2.3474541"/>
- <node id="677967765" lat="48.8606933" lon="2.3467079"/>
+ <node id="678029686" lat="48.8610092" lon="2.3439694"/>
<node id="678316223" lat="48.8358742" lon="2.2923492"/>
<node id="678316692" lat="48.8358798" lon="2.2925331"/>
<node id="678317840" lat="48.8358531" lon="2.2924878"/>
@@ -1772,1076 +1785,59 @@
<node id="678322011" lat="48.8358188" lon="2.2924253"/>
<node id="678322047" lat="48.8358547" lon="2.2923714"/>
<node id="678322154" lat="48.8358355" lon="2.2924461"/>
- <node id="679324992" lat="48.8609070" lon="2.3303863"/>
- <node id="679324994" lat="48.8609123" lon="2.3303892"/>
- <node id="679324995" lat="48.8609331" lon="2.3303241"/>
- <node id="679324996" lat="48.8609825" lon="2.3303579"/>
- <node id="679324997" lat="48.8609861" lon="2.3303470"/>
- <node id="679324998" lat="48.8611172" lon="2.3304429"/>
- <node id="679324999" lat="48.8611137" lon="2.3304553"/>
- <node id="679325002" lat="48.8608948" lon="2.3307011"/>
- <node id="679325003" lat="48.8608927" lon="2.3306982"/>
- <node id="679325004" lat="48.8608990" lon="2.3306749"/>
- <node id="679325005" lat="48.8608349" lon="2.3306265"/>
- <node id="679325006" lat="48.8608567" lon="2.3305601"/>
- <node id="679325007" lat="48.8608518" lon="2.3305554"/>
- <node id="679325008" lat="48.8609949" lon="2.3310931"/>
- <node id="679325009" lat="48.8609919" lon="2.3310942"/>
- <node id="679325010" lat="48.8609892" lon="2.3311081"/>
- <node id="679325012" lat="48.8609865" lon="2.3311086"/>
- <node id="679325013" lat="48.8606426" lon="2.3317770"/>
- <node id="679325014" lat="48.8606414" lon="2.3317734"/>
- <node id="679325016" lat="48.8606428" lon="2.3317663"/>
- <node id="679325017" lat="48.8606406" lon="2.3317641"/>
- <node id="679325018" lat="48.8606374" lon="2.3317635"/>
- <node id="679325019" lat="48.8606404" lon="2.3317555"/>
- <node id="679325020" lat="48.8606417" lon="2.3317448"/>
- <node id="679325021" lat="48.8606402" lon="2.3317440"/>
- <node id="679325022" lat="48.8606419" lon="2.3317353"/>
- <node id="679325023" lat="48.8606438" lon="2.3317350"/>
- <node id="679325024" lat="48.8606627" lon="2.3316562"/>
- <node id="679325025" lat="48.8606629" lon="2.3316522"/>
- <node id="679325026" lat="48.8609588" lon="2.3312261"/>
- <node id="679325027" lat="48.8609609" lon="2.3312283"/>
- <node id="679325028" lat="48.8609597" lon="2.3312344"/>
- <node id="679325030" lat="48.8609569" lon="2.3312344"/>
- <node id="679325031" lat="48.8609549" lon="2.3312441"/>
- <node id="679325032" lat="48.8609562" lon="2.3312470"/>
- <node id="679325033" lat="48.8609549" lon="2.3312525"/>
- <node id="679325034" lat="48.8609529" lon="2.3312531"/>
- <node id="679325035" lat="48.8606701" lon="2.3316261"/>
- <node id="679325036" lat="48.8606690" lon="2.3316221"/>
- <node id="679325037" lat="48.8606705" lon="2.3316156"/>
- <node id="679325039" lat="48.8606750" lon="2.3316150"/>
- <node id="679325040" lat="48.8606771" lon="2.3316026"/>
- <node id="679325041" lat="48.8606811" lon="2.3316021"/>
- <node id="679325042" lat="48.8606835" lon="2.3315922"/>
- <node id="679325044" lat="48.8606858" lon="2.3315916"/>
- <node id="679325045" lat="48.8608263" lon="2.3318113"/>
- <node id="679325046" lat="48.8608209" lon="2.3318095"/>
- <node id="679325047" lat="48.8608378" lon="2.3317405"/>
- <node id="679325048" lat="48.8608418" lon="2.3317446"/>
- <node id="679325049" lat="48.8611629" lon="2.3304931"/>
- <node id="679325050" lat="48.8610606" lon="2.3307967"/>
- <node id="679325051" lat="48.8610092" lon="2.3310123"/>
- <node id="679325052" lat="48.8610106" lon="2.3310142"/>
- <node id="679325053" lat="48.8610078" lon="2.3310234"/>
- <node id="679325054" lat="48.8610116" lon="2.3310263"/>
- <node id="679325056" lat="48.8602935" lon="2.3331954"/>
- <node id="679325057" lat="48.8602957" lon="2.3331858"/>
- <node id="679325059" lat="48.8602944" lon="2.3331851"/>
- <node id="679325060" lat="48.8602988" lon="2.3331665"/>
- <node id="679325061" lat="48.8602819" lon="2.3331573"/>
- <node id="679325062" lat="48.8602958" lon="2.3331965"/>
- <node id="679325063" lat="48.8603108" lon="2.3330358"/>
- <node id="679325064" lat="48.8602216" lon="2.3334640"/>
- <node id="679325065" lat="48.8602321" lon="2.3334697"/>
- <node id="679325066" lat="48.8602235" lon="2.3335060"/>
- <node id="679325067" lat="48.8602130" lon="2.3335003"/>
- <node id="679325069" lat="48.8601409" lon="2.3337634"/>
- <node id="679325070" lat="48.8601697" lon="2.3336418"/>
- <node id="679325071" lat="48.8601860" lon="2.3336507"/>
- <node id="679325072" lat="48.8601928" lon="2.3336220"/>
- <node id="679325073" lat="48.8601956" lon="2.3336236"/>
- <node id="679325074" lat="48.8603188" lon="2.3337246"/>
- <node id="679325075" lat="48.8601526" lon="2.3337918"/>
- <node id="679325076" lat="48.8601571" lon="2.3337719"/>
- <node id="679325077" lat="48.8601642" lon="2.3337991"/>
- <node id="679325078" lat="48.8603137" lon="2.3338149"/>
- <node id="679325079" lat="48.8603157" lon="2.3338165"/>
- <node id="679325080" lat="48.8603090" lon="2.3338445"/>
- <node id="679325081" lat="48.8602872" lon="2.3338602"/>
- <node id="679325082" lat="48.8602923" lon="2.3338396"/>
- <node id="679325083" lat="48.8602724" lon="2.3338695"/>
- <node id="679325085" lat="48.8602762" lon="2.3338539"/>
- <node id="679325086" lat="48.8602719" lon="2.3338835"/>
- <node id="679325087" lat="48.8602750" lon="2.3338710"/>
- <node id="679325088" lat="48.8602699" lon="2.3338824"/>
- <node id="679325089" lat="48.8603062" lon="2.3338474"/>
- <node id="679325090" lat="48.8602547" lon="2.3339580"/>
- <node id="679325091" lat="48.8602578" lon="2.3339453"/>
- <node id="679325092" lat="48.8602383" lon="2.3340180"/>
- <node id="679325093" lat="48.8602533" lon="2.3339572"/>
- <node id="679325094" lat="48.8602378" lon="2.3340326"/>
- <node id="679325096" lat="48.8602410" lon="2.3340195"/>
- <node id="679325097" lat="48.8602361" lon="2.3340316"/>
- <node id="679325098" lat="48.8602549" lon="2.3339436"/>
- <node id="679325100" lat="48.8602213" lon="2.3340918"/>
- <node id="679325101" lat="48.8602237" lon="2.3340932"/>
- <node id="679325102" lat="48.8602192" lon="2.3341115"/>
- <node id="679325103" lat="48.8602290" lon="2.3341170"/>
- <node id="679325104" lat="48.8602264" lon="2.3341273"/>
- <node id="679325105" lat="48.8603081" lon="2.3341746"/>
- <node id="679325107" lat="48.8603102" lon="2.3341659"/>
- <node id="679325108" lat="48.8603193" lon="2.3341711"/>
- <node id="679325109" lat="48.8603169" lon="2.3341811"/>
- <node id="679325110" lat="48.8602586" lon="2.3341455"/>
- <node id="679325111" lat="48.8602608" lon="2.3341364"/>
- <node id="679325112" lat="48.8602698" lon="2.3341415"/>
- <node id="679325114" lat="48.8602673" lon="2.3341515"/>
- <node id="679325115" lat="48.8607738" lon="2.3320110"/>
- <node id="679325116" lat="48.8607786" lon="2.3320229"/>
- <node id="679325118" lat="48.8607859" lon="2.3320221"/>
- <node id="679325119" lat="48.8607915" lon="2.3320252"/>
- <node id="679325120" lat="48.8607963" lon="2.3320318"/>
- <node id="679325121" lat="48.8607988" lon="2.3320408"/>
- <node id="679325123" lat="48.8607986" lon="2.3320485"/>
- <node id="679325125" lat="48.8607975" lon="2.3320548"/>
- <node id="679325126" lat="48.8608510" lon="2.3320794"/>
- <node id="679325127" lat="48.8608520" lon="2.3320762"/>
- <node id="679325128" lat="48.8608687" lon="2.3320854"/>
- <node id="679325129" lat="48.8608684" lon="2.3320892"/>
- <node id="679325130" lat="48.8608747" lon="2.3320923"/>
- <node id="679325131" lat="48.8608731" lon="2.3320992"/>
- <node id="679325132" lat="48.8608752" lon="2.3321008"/>
- <node id="679325133" lat="48.8608525" lon="2.3321861"/>
- <node id="679325134" lat="48.8608655" lon="2.3321302"/>
- <node id="679325135" lat="48.8608719" lon="2.3321336"/>
- <node id="679325136" lat="48.8608755" lon="2.3321182"/>
- <node id="679325138" lat="48.8608589" lon="2.3321895"/>
- <node id="679325139" lat="48.8608720" lon="2.3321163"/>
- <node id="679325141" lat="48.8608197" lon="2.3323275"/>
- <node id="679325142" lat="48.8608324" lon="2.3322728"/>
- <node id="679325143" lat="48.8608156" lon="2.3323439"/>
- <node id="679325144" lat="48.8608220" lon="2.3323473"/>
- <node id="679325145" lat="48.8608258" lon="2.3323308"/>
- <node id="679325146" lat="48.8608029" lon="2.3323985"/>
- <node id="679325147" lat="48.8608091" lon="2.3324018"/>
- <node id="679325148" lat="48.8608053" lon="2.3324184"/>
- <node id="679325149" lat="48.8607990" lon="2.3324150"/>
- <node id="679325150" lat="48.8607863" lon="2.3324697"/>
- <node id="679325151" lat="48.8607926" lon="2.3324731"/>
- <node id="679325153" lat="48.8607890" lon="2.3324889"/>
- <node id="679325154" lat="48.8607824" lon="2.3324853"/>
- <node id="679325155" lat="48.8608362" lon="2.3322565"/>
- <node id="679325156" lat="48.8608491" lon="2.3322009"/>
- <node id="679325157" lat="48.8608555" lon="2.3322042"/>
- <node id="679325158" lat="48.8608389" lon="2.3322763"/>
- <node id="679325159" lat="48.8608427" lon="2.3322600"/>
- <node id="679325160" lat="48.8604240" lon="2.3326834"/>
- <node id="679325161" lat="48.8604292" lon="2.3326830"/>
- <node id="679325162" lat="48.8604319" lon="2.3326724"/>
- <node id="679325163" lat="48.8604342" lon="2.3326710"/>
- <node id="679325164" lat="48.8605565" lon="2.3328739"/>
- <node id="679325165" lat="48.8605193" lon="2.3328542"/>
- <node id="679325166" lat="48.8605184" lon="2.3328582"/>
- <node id="679325168" lat="48.8605147" lon="2.3328572"/>
- <node id="679325169" lat="48.8605136" lon="2.3328620"/>
- <node id="679325171" lat="48.8605104" lon="2.3328613"/>
- <node id="679325172" lat="48.8603270" lon="2.3330444"/>
- <node id="679325173" lat="48.8603317" lon="2.3330281"/>
- <node id="679325175" lat="48.8603422" lon="2.3330330"/>
- <node id="679325176" lat="48.8604804" lon="2.3329901"/>
- <node id="679325177" lat="48.8604837" lon="2.3329916"/>
- <node id="679325178" lat="48.8604795" lon="2.3330098"/>
- <node id="679325179" lat="48.8604761" lon="2.3330077"/>
- <node id="679325180" lat="48.8604630" lon="2.3330633"/>
- <node id="679325181" lat="48.8604665" lon="2.3330655"/>
- <node id="679325182" lat="48.8604621" lon="2.3330833"/>
- <node id="679325183" lat="48.8604590" lon="2.3330807"/>
- <node id="679325185" lat="48.8604564" lon="2.3330926"/>
- <node id="679325186" lat="48.8604672" lon="2.3330992"/>
- <node id="679325187" lat="48.8604627" lon="2.3331191"/>
- <node id="679325188" lat="48.8604671" lon="2.3331219"/>
- <node id="679325189" lat="48.8604679" lon="2.3331193"/>
- <node id="679325191" lat="48.8604775" lon="2.3331256"/>
- <node id="679325192" lat="48.8604777" lon="2.3331310"/>
- <node id="679325193" lat="48.8604694" lon="2.3331654"/>
- <node id="679325194" lat="48.8604666" lon="2.3331636"/>
- <node id="679325195" lat="48.8604563" lon="2.3332087"/>
- <node id="679325196" lat="48.8604592" lon="2.3332105"/>
- <node id="679325197" lat="48.8606534" lon="2.3329311"/>
- <node id="679325198" lat="48.8606542" lon="2.3329272"/>
- <node id="679325199" lat="48.8606168" lon="2.3329067"/>
- <node id="679325200" lat="48.8606159" lon="2.3329110"/>
- <node id="679325201" lat="48.8606043" lon="2.3329048"/>
- <node id="679325202" lat="48.8606050" lon="2.3329000"/>
- <node id="679325203" lat="48.8605677" lon="2.3328800"/>
- <node id="679325205" lat="48.8605669" lon="2.3328843"/>
- <node id="679325206" lat="48.8605560" lon="2.3328788"/>
- <node id="679325207" lat="48.8604976" lon="2.3329160"/>
- <node id="679325208" lat="48.8605006" lon="2.3329181"/>
- <node id="679325209" lat="48.8604965" lon="2.3329360"/>
- <node id="679325210" lat="48.8604934" lon="2.3329341"/>
- <node id="679325211" lat="48.8607431" lon="2.3326860"/>
- <node id="679325213" lat="48.8607363" lon="2.3326824"/>
- <node id="679325214" lat="48.8607324" lon="2.3326988"/>
- <node id="679325215" lat="48.8607393" lon="2.3327024"/>
- <node id="679325216" lat="48.8607491" lon="2.3326274"/>
- <node id="679325217" lat="48.8607696" lon="2.3325403"/>
- <node id="679325218" lat="48.8607762" lon="2.3325439"/>
- <node id="679325219" lat="48.8607725" lon="2.3325596"/>
- <node id="679325221" lat="48.8607659" lon="2.3325561"/>
- <node id="679325222" lat="48.8607530" lon="2.3326116"/>
- <node id="679325223" lat="48.8607594" lon="2.3326150"/>
- <node id="679325224" lat="48.8607557" lon="2.3326309"/>
- <node id="679325225" lat="48.8607262" lon="2.3327565"/>
- <node id="679325226" lat="48.8607198" lon="2.3327531"/>
- <node id="679325227" lat="48.8607159" lon="2.3327697"/>
- <node id="679325228" lat="48.8607223" lon="2.3327732"/>
- <node id="679325229" lat="48.8607096" lon="2.3328274"/>
- <node id="679325230" lat="48.8607033" lon="2.3328240"/>
- <node id="679325231" lat="48.8606994" lon="2.3328405"/>
- <node id="679325233" lat="48.8607057" lon="2.3328439"/>
- <node id="679325235" lat="48.8606791" lon="2.3329268"/>
- <node id="679325236" lat="48.8606816" lon="2.3329281"/>
- <node id="679325238" lat="48.8606769" lon="2.3329360"/>
- <node id="679325239" lat="48.8606929" lon="2.3328991"/>
- <node id="679325240" lat="48.8606866" lon="2.3328957"/>
- <node id="679325241" lat="48.8606851" lon="2.3329131"/>
- <node id="679325242" lat="48.8606892" lon="2.3329152"/>
- <node id="679325243" lat="48.8606746" lon="2.3329367"/>
- <node id="679325244" lat="48.8606728" lon="2.3329346"/>
- <node id="679325245" lat="48.8606655" lon="2.3329341"/>
- <node id="679325246" lat="48.8606644" lon="2.3329379"/>
- <node id="679325247" lat="48.8604498" lon="2.3332483"/>
- <node id="679325248" lat="48.8604390" lon="2.3332426"/>
- <node id="679325249" lat="48.8604388" lon="2.3332398"/>
- <node id="679325250" lat="48.8604346" lon="2.3332379"/>
- <node id="679325251" lat="48.8604293" lon="2.3332599"/>
- <node id="679325253" lat="48.8604267" lon="2.3332583"/>
- <node id="679325254" lat="48.8603212" lon="2.3337017"/>
- <node id="679325255" lat="48.8603241" lon="2.3337039"/>
- <node id="679325256" lat="48.8603334" lon="2.3337322"/>
- <node id="679325258" lat="48.8603332" lon="2.3337390"/>
- <node id="679325259" lat="48.8603275" lon="2.3337648"/>
- <node id="679325260" lat="48.8603258" lon="2.3337639"/>
- <node id="679325261" lat="48.8603575" lon="2.3342040"/>
- <node id="679325262" lat="48.8603595" lon="2.3341957"/>
- <node id="679325263" lat="48.8603688" lon="2.3342009"/>
- <node id="679325264" lat="48.8603664" lon="2.3342107"/>
- <node id="679325265" lat="48.8604153" lon="2.3342392"/>
- <node id="679325266" lat="48.8604176" lon="2.3342298"/>
- <node id="679325268" lat="48.8604088" lon="2.3342249"/>
- <node id="679325269" lat="48.8604067" lon="2.3342335"/>
- <node id="679325270" lat="48.8604649" lon="2.3342685"/>
- <node id="679325271" lat="48.8604671" lon="2.3342594"/>
- <node id="679325272" lat="48.8604583" lon="2.3342544"/>
- <node id="679325273" lat="48.8604563" lon="2.3342624"/>
- <node id="679325274" lat="48.8605142" lon="2.3342978"/>
- <node id="679325275" lat="48.8605166" lon="2.3342884"/>
- <node id="679325276" lat="48.8605074" lon="2.3342832"/>
- <node id="679325277" lat="48.8605054" lon="2.3342914"/>
- <node id="679325278" lat="48.8605683" lon="2.3343166"/>
- <node id="679325279" lat="48.8605677" lon="2.3343188"/>
- <node id="679325280" lat="48.8605567" lon="2.3343125"/>
- <node id="679325282" lat="48.8605547" lon="2.3343207"/>
- <node id="679325283" lat="48.8606158" lon="2.3343498"/>
- <node id="679325284" lat="48.8606211" lon="2.3343284"/>
- <node id="679325285" lat="48.8605878" lon="2.3343276"/>
- <node id="679325286" lat="48.8605864" lon="2.3343331"/>
- <node id="679325287" lat="48.8606422" lon="2.3343403"/>
- <node id="679325288" lat="48.8606368" lon="2.3343622"/>
- <node id="679325289" lat="48.8607273" lon="2.3344158"/>
- <node id="679325290" lat="48.8607284" lon="2.3344114"/>
- <node id="679325291" lat="48.8607038" lon="2.3343776"/>
- <node id="679325292" lat="48.8606984" lon="2.3343994"/>
- <node id="679325293" lat="48.8606776" lon="2.3343853"/>
- <node id="679325294" lat="48.8606826" lon="2.3343648"/>
- <node id="679325295" lat="48.8607043" lon="2.3345840"/>
- <node id="679325298" lat="48.8607184" lon="2.3345921"/>
- <node id="679325299" lat="48.8607412" lon="2.3344998"/>
- <node id="679325300" lat="48.8607336" lon="2.3345302"/>
- <node id="679325301" lat="48.8607196" lon="2.3345222"/>
- <node id="679325302" lat="48.8607368" lon="2.3344502"/>
- <node id="679325303" lat="48.8607265" lon="2.3344915"/>
- <node id="679325305" lat="48.8607480" lon="2.3344225"/>
- <node id="679325306" lat="48.8607406" lon="2.3344523"/>
- <node id="679325307" lat="48.8598345" lon="2.3351588"/>
- <node id="679325308" lat="48.8598466" lon="2.3351651"/>
- <node id="679325309" lat="48.8598414" lon="2.3351286"/>
- <node id="679325310" lat="48.8598177" lon="2.3352307"/>
- <node id="679325311" lat="48.8598371" lon="2.3352069"/>
- <node id="679325312" lat="48.8598246" lon="2.3352003"/>
- <node id="679325313" lat="48.8598524" lon="2.3351345"/>
- <node id="679325314" lat="48.8598288" lon="2.3352376"/>
- <node id="679325315" lat="48.8594703" lon="2.3367041"/>
- <node id="679325317" lat="48.8594541" lon="2.3366956"/>
- <node id="679325318" lat="48.8594976" lon="2.3365794"/>
- <node id="679325320" lat="48.8594824" lon="2.3365714"/>
- <node id="679325321" lat="48.8595023" lon="2.3365589"/>
- <node id="679325322" lat="48.8595146" lon="2.3365650"/>
- <node id="679325323" lat="48.8594658" lon="2.3367242"/>
- <node id="679325324" lat="48.8603155" lon="2.3361644"/>
- <node id="679325325" lat="48.8603095" lon="2.3361609"/>
- <node id="679325326" lat="48.8603061" lon="2.3361737"/>
- <node id="679325327" lat="48.8603124" lon="2.3361772"/>
- <node id="679325328" lat="48.8602968" lon="2.3362396"/>
- <node id="679325329" lat="48.8602907" lon="2.3362361"/>
- <node id="679325331" lat="48.8602723" lon="2.3363112"/>
- <node id="679325332" lat="48.8602937" lon="2.3362521"/>
- <node id="679325333" lat="48.8602878" lon="2.3362487"/>
- <node id="679325334" lat="48.8602785" lon="2.3363147"/>
- <node id="679325335" lat="48.8602538" lon="2.3363872"/>
- <node id="679325336" lat="48.8602599" lon="2.3363907"/>
- <node id="679325337" lat="48.8602753" lon="2.3363277"/>
- <node id="679325338" lat="48.8602694" lon="2.3363243"/>
- <node id="679325340" lat="48.8602486" lon="2.3364456"/>
- <node id="679325341" lat="48.8602447" lon="2.3364434"/>
- <node id="679325342" lat="48.8602534" lon="2.3364171"/>
- <node id="679325343" lat="48.8602553" lon="2.3364183"/>
- <node id="679325344" lat="48.8602274" lon="2.3365164"/>
- <node id="679325345" lat="48.8602342" lon="2.3364858"/>
- <node id="679325347" lat="48.8602040" lon="2.3366085"/>
- <node id="679325348" lat="48.8602182" lon="2.3366166"/>
- <node id="679325349" lat="48.8602257" lon="2.3365866"/>
- <node id="679325350" lat="48.8602120" lon="2.3365788"/>
- <node id="679325351" lat="48.8601966" lon="2.3366531"/>
- <node id="679325352" lat="48.8601934" lon="2.3366513"/>
- <node id="679325353" lat="48.8602410" lon="2.3365241"/>
- <node id="679325355" lat="48.8602485" lon="2.3364939"/>
- <node id="679325356" lat="48.8597720" lon="2.3368897"/>
- <node id="679325357" lat="48.8597171" lon="2.3368498"/>
- <node id="679325358" lat="48.8597151" lon="2.3368610"/>
- <node id="679325359" lat="48.8597743" lon="2.3368779"/>
- <node id="679325360" lat="48.8599601" lon="2.3371421"/>
- <node id="679325363" lat="48.8598668" lon="2.3371021"/>
- <node id="679325364" lat="48.8598547" lon="2.3371675"/>
- <node id="679325365" lat="48.8598518" lon="2.3371686"/>
- <node id="679325366" lat="48.8599902" lon="2.3369853"/>
- <node id="679325367" lat="48.8601429" lon="2.3368487"/>
- <node id="679325368" lat="48.8601484" lon="2.3368519"/>
- <node id="679325369" lat="48.8601455" lon="2.3368358"/>
- <node id="679325370" lat="48.8601365" lon="2.3368649"/>
- <node id="679325371" lat="48.8601386" lon="2.3368660"/>
- <node id="679325372" lat="48.8601336" lon="2.3368735"/>
- <node id="679325373" lat="48.8601390" lon="2.3368859"/>
- <node id="679325374" lat="48.8601440" lon="2.3369023"/>
- <node id="679325376" lat="48.8601459" lon="2.3369134"/>
- <node id="679325377" lat="48.8601762" lon="2.3366737"/>
- <node id="679325378" lat="48.8601896" lon="2.3366813"/>
- <node id="679325379" lat="48.8601671" lon="2.3367418"/>
- <node id="679325380" lat="48.8601633" lon="2.3367396"/>
- <node id="679325381" lat="48.8601691" lon="2.3367162"/>
- <node id="679325382" lat="48.8601661" lon="2.3367145"/>
- <node id="679325383" lat="48.8601612" lon="2.3367725"/>
- <node id="679325384" lat="48.8601661" lon="2.3367753"/>
- <node id="679325385" lat="48.8601693" lon="2.3367626"/>
- <node id="679325386" lat="48.8601629" lon="2.3367590"/>
- <node id="679325387" lat="48.8601516" lon="2.3368393"/>
- <node id="679325388" lat="48.8601514" lon="2.3369162"/>
- <node id="679325390" lat="48.8601528" lon="2.3369117"/>
- <node id="679325392" lat="48.8601676" lon="2.3369217"/>
- <node id="679325393" lat="48.8601645" lon="2.3369343"/>
- <node id="679325394" lat="48.8601695" lon="2.3369377"/>
- <node id="679325395" lat="48.8601664" lon="2.3369503"/>
- <node id="679325396" lat="48.8601604" lon="2.3369465"/>
- <node id="679325397" lat="48.8600965" lon="2.3370514"/>
- <node id="679325398" lat="48.8600989" lon="2.3370613"/>
- <node id="679325399" lat="48.8600949" lon="2.3370789"/>
- <node id="679325400" lat="48.8600948" lon="2.3370593"/>
- <node id="679325401" lat="48.8601002" lon="2.3370816"/>
- <node id="679325402" lat="48.8601447" lon="2.3370160"/>
- <node id="679325403" lat="48.8601478" lon="2.3370322"/>
- <node id="679325404" lat="48.8601434" lon="2.3370302"/>
- <node id="679325406" lat="48.8601402" lon="2.3370427"/>
- <node id="679325407" lat="48.8601338" lon="2.3370419"/>
- <node id="679325408" lat="48.8601276" lon="2.3370387"/>
- <node id="679325409" lat="48.8601280" lon="2.3370346"/>
- <node id="679325410" lat="48.8601215" lon="2.3370312"/>
- <node id="679325411" lat="48.8601092" lon="2.3370436"/>
- <node id="679325412" lat="48.8600974" lon="2.3370941"/>
- <node id="679325413" lat="48.8600923" lon="2.3370914"/>
- <node id="679325414" lat="48.8600830" lon="2.3371586"/>
- <node id="679325415" lat="48.8600778" lon="2.3371559"/>
- <node id="679325416" lat="48.8600746" lon="2.3371661"/>
- <node id="679325417" lat="48.8600806" lon="2.3371693"/>
- <node id="679325419" lat="48.8600673" lon="2.3371853"/>
- <node id="679325420" lat="48.8600700" lon="2.3371866"/>
- <node id="679325421" lat="48.8600779" lon="2.3372059"/>
- <node id="679325422" lat="48.8600643" lon="2.3371989"/>
- <node id="679325423" lat="48.8600928" lon="2.3372238"/>
- <node id="679325426" lat="48.8600759" lon="2.3372151"/>
- <node id="679325427" lat="48.8601346" lon="2.3372551"/>
- <node id="679325428" lat="48.8600909" lon="2.3372324"/>
- <node id="679325429" lat="48.8601368" lon="2.3372454"/>
- <node id="679325430" lat="48.8601450" lon="2.3372496"/>
- <node id="679325431" lat="48.8601434" lon="2.3372566"/>
- <node id="679325432" lat="48.8601503" lon="2.3370200"/>
- <node id="679325433" lat="48.8601575" lon="2.3372639"/>
- <node id="679325434" lat="48.8601538" lon="2.3372801"/>
- <node id="679325435" lat="48.8601729" lon="2.3372893"/>
- <node id="679325436" lat="48.8602171" lon="2.3373233"/>
- <node id="679325437" lat="48.8602193" lon="2.3373138"/>
- <node id="679325438" lat="48.8602279" lon="2.3373182"/>
- <node id="679325440" lat="48.8602259" lon="2.3373273"/>
- <node id="679325442" lat="48.8601707" lon="2.3372993"/>
- <node id="679325443" lat="48.8606398" lon="2.3348511"/>
- <node id="679325444" lat="48.8606336" lon="2.3348476"/>
- <node id="679325445" lat="48.8606305" lon="2.3348606"/>
- <node id="679325446" lat="48.8606365" lon="2.3348640"/>
- <node id="679325447" lat="48.8606577" lon="2.3347766"/>
- <node id="679325448" lat="48.8606519" lon="2.3347734"/>
- <node id="679325449" lat="48.8606488" lon="2.3347861"/>
- <node id="679325450" lat="48.8606545" lon="2.3347894"/>
- <node id="679325451" lat="48.8606210" lon="2.3349256"/>
- <node id="679325452" lat="48.8606152" lon="2.3349223"/>
- <node id="679325453" lat="48.8606120" lon="2.3349353"/>
- <node id="679325455" lat="48.8605750" lon="2.3350853"/>
- <node id="679325456" lat="48.8605781" lon="2.3350721"/>
- <node id="679325457" lat="48.8606028" lon="2.3350006"/>
- <node id="679325458" lat="48.8605967" lon="2.3349971"/>
- <node id="679325459" lat="48.8605934" lon="2.3350105"/>
- <node id="679325460" lat="48.8605995" lon="2.3350140"/>
- <node id="679325461" lat="48.8606178" lon="2.3349386"/>
- <node id="679325462" lat="48.8605811" lon="2.3350888"/>
- <node id="679325463" lat="48.8605844" lon="2.3350757"/>
- <node id="679325464" lat="48.8605626" lon="2.3351632"/>
- <node id="679325465" lat="48.8605568" lon="2.3351598"/>
- <node id="679325467" lat="48.8605597" lon="2.3351470"/>
- <node id="679325468" lat="48.8605658" lon="2.3351504"/>
- <node id="679325470" lat="48.8605443" lon="2.3352371"/>
- <node id="679325471" lat="48.8605385" lon="2.3352339"/>
- <node id="679325472" lat="48.8605414" lon="2.3352219"/>
- <node id="679325473" lat="48.8605472" lon="2.3352252"/>
- <node id="679325474" lat="48.8606823" lon="2.3346876"/>
- <node id="679325475" lat="48.8606805" lon="2.3346866"/>
- <node id="679325476" lat="48.8606731" lon="2.3347164"/>
- <node id="679325477" lat="48.8606669" lon="2.3347129"/>
- <node id="679325478" lat="48.8607108" lon="2.3346226"/>
- <node id="679325479" lat="48.8606965" lon="2.3346145"/>
- <node id="679325480" lat="48.8606861" lon="2.3346566"/>
- <node id="679325481" lat="48.8606895" lon="2.3346585"/>
- <node id="679325483" lat="48.8604854" lon="2.3354820"/>
- <node id="679325484" lat="48.8604527" lon="2.3356151"/>
- <node id="679325485" lat="48.8604836" lon="2.3355962"/>
- <node id="679325486" lat="48.8604692" lon="2.3355880"/>
- <node id="679325487" lat="48.8604864" lon="2.3355186"/>
- <node id="679325490" lat="48.8605258" lon="2.3353120"/>
- <node id="679325491" lat="48.8605199" lon="2.3353087"/>
- <node id="679325492" lat="48.8605231" lon="2.3352961"/>
- <node id="679325493" lat="48.8605289" lon="2.3352994"/>
- <node id="679325494" lat="48.8605084" lon="2.3354951"/>
- <node id="679325495" lat="48.8604976" lon="2.3354330"/>
- <node id="679325496" lat="48.8605123" lon="2.3354414"/>
- <node id="679325497" lat="48.8605198" lon="2.3354111"/>
- <node id="679325498" lat="48.8605036" lon="2.3354019"/>
- <node id="679325499" lat="48.8605103" lon="2.3353748"/>
- <node id="679325500" lat="48.8605044" lon="2.3353714"/>
- <node id="679325502" lat="48.8605005" lon="2.3355266"/>
- <node id="679325503" lat="48.8604023" lon="2.3357841"/>
- <node id="679325504" lat="48.8604474" lon="2.3357028"/>
- <node id="679325505" lat="48.8604319" lon="2.3356940"/>
- <node id="679325506" lat="48.8604549" lon="2.3356722"/>
- <node id="679325507" lat="48.8604405" lon="2.3356640"/>
- <node id="679325508" lat="48.8604757" lon="2.3356282"/>
- <node id="679325509" lat="48.8604241" lon="2.3357255"/>
- <node id="679325511" lat="48.8604177" lon="2.3357219"/>
- <node id="679325512" lat="48.8604085" lon="2.3357876"/>
- <node id="679325513" lat="48.8604052" lon="2.3358011"/>
- <node id="679325514" lat="48.8603993" lon="2.3357978"/>
- <node id="679325515" lat="48.8603839" lon="2.3358601"/>
- <node id="679325516" lat="48.8603898" lon="2.3358634"/>
- <node id="679325517" lat="48.8603866" lon="2.3358761"/>
- <node id="679325518" lat="48.8603805" lon="2.3358726"/>
- <node id="679325519" lat="48.8603651" lon="2.3359348"/>
- <node id="679325520" lat="48.8603711" lon="2.3359382"/>
- <node id="679325521" lat="48.8603619" lon="2.3359481"/>
- <node id="679325522" lat="48.8603679" lon="2.3359515"/>
- <node id="679325523" lat="48.8603525" lon="2.3360137"/>
- <node id="679325524" lat="48.8603465" lon="2.3360103"/>
- <node id="679325525" lat="48.8603436" lon="2.3360235"/>
- <node id="679325527" lat="48.8603493" lon="2.3360267"/>
- <node id="679325528" lat="48.8603342" lon="2.3360893"/>
- <node id="679325529" lat="48.8603282" lon="2.3360859"/>
- <node id="679325530" lat="48.8603250" lon="2.3360982"/>
- <node id="679325531" lat="48.8603311" lon="2.3361017"/>
- <node id="679325532" lat="48.8596063" lon="2.3383197"/>
- <node id="679325533" lat="48.8595828" lon="2.3382811"/>
- <node id="679325534" lat="48.8595967" lon="2.3382882"/>
- <node id="679325535" lat="48.8595913" lon="2.3383120"/>
- <node id="679325536" lat="48.8598216" lon="2.3373652"/>
- <node id="679325538" lat="48.8598068" lon="2.3373576"/>
- <node id="679325539" lat="48.8596558" lon="2.3380265"/>
- <node id="679325636" lat="48.8602726" lon="2.3373515"/>
- <node id="679325637" lat="48.8602747" lon="2.3373422"/>
- <node id="679325638" lat="48.8602834" lon="2.3373467"/>
- <node id="679325639" lat="48.8602814" lon="2.3373554"/>
- <node id="679325669" lat="48.8596363" lon="2.3380424"/>
- <node id="679325670" lat="48.8596716" lon="2.3380347"/>
- <node id="679325671" lat="48.8596505" lon="2.3380498"/>
- <node id="679325750" lat="48.8594562" lon="2.3389897"/>
- <node id="679325751" lat="48.8594401" lon="2.3389814"/>
- <node id="679325752" lat="48.8593816" lon="2.3392423"/>
- <node id="679325753" lat="48.8595997" lon="2.3393545"/>
- <node id="679325755" lat="48.8596048" lon="2.3393320"/>
- <node id="679325913" lat="48.8600083" lon="2.3395654"/>
- <node id="679325914" lat="48.8600043" lon="2.3395833"/>
- <node id="679325916" lat="48.8600248" lon="2.3395938"/>
- <node id="679325917" lat="48.8600284" lon="2.3395774"/>
- <node id="679325919" lat="48.8600100" lon="2.3395404"/>
- <node id="679325920" lat="48.8600048" lon="2.3395636"/>
- <node id="679325922" lat="48.8603917" lon="2.3374120"/>
- <node id="679325925" lat="48.8603938" lon="2.3374026"/>
- <node id="679325928" lat="48.8603851" lon="2.3373982"/>
- <node id="679325930" lat="48.8603830" lon="2.3374078"/>
- <node id="679325932" lat="48.8603364" lon="2.3373837"/>
- <node id="679325934" lat="48.8603385" lon="2.3373743"/>
- <node id="679325935" lat="48.8603301" lon="2.3373699"/>
- <node id="679325937" lat="48.8603279" lon="2.3373794"/>
- <node id="679325939" lat="48.8604853" lon="2.3374092"/>
- <node id="679325941" lat="48.8604875" lon="2.3373994"/>
- <node id="679325942" lat="48.8604801" lon="2.3373955"/>
- <node id="679325944" lat="48.8604786" lon="2.3374022"/>
- <node id="679325946" lat="48.8604653" lon="2.3373953"/>
- <node id="679325950" lat="48.8604564" lon="2.3374349"/>
- <node id="679325952" lat="48.8604402" lon="2.3374265"/>
- <node id="679325954" lat="48.8604381" lon="2.3374360"/>
- <node id="679325982" lat="48.8605863" lon="2.3374334"/>
- <node id="679325983" lat="48.8605948" lon="2.3374378"/>
- <node id="679325985" lat="48.8605471" lon="2.3374407"/>
- <node id="679325987" lat="48.8605807" lon="2.3374581"/>
- <node id="679325990" lat="48.8605301" lon="2.3374214"/>
- <node id="679325992" lat="48.8605492" lon="2.3374313"/>
- <node id="679325993" lat="48.8605279" lon="2.3374312"/>
- <node id="679325995" lat="48.8606408" lon="2.3374880"/>
- <node id="679325996" lat="48.8606370" lon="2.3374584"/>
- <node id="679325997" lat="48.8606464" lon="2.3374632"/>
- <node id="679325998" lat="48.8605893" lon="2.3374617"/>
- <node id="679325999" lat="48.8606315" lon="2.3374828"/>
- <node id="679326043" lat="48.8608124" lon="2.3376169"/>
- <node id="679326044" lat="48.8608102" lon="2.3376263"/>
- <node id="679326045" lat="48.8608185" lon="2.3376294"/>
- <node id="679326046" lat="48.8608204" lon="2.3376211"/>
- <node id="679326047" lat="48.8607491" lon="2.3375840"/>
- <node id="679326048" lat="48.8607578" lon="2.3375458"/>
- <node id="679326050" lat="48.8607627" lon="2.3376015"/>
- <node id="679326051" lat="48.8607648" lon="2.3375921"/>
- <node id="679326052" lat="48.8607379" lon="2.3375279"/>
- <node id="679326053" lat="48.8607359" lon="2.3375367"/>
- <node id="679326054" lat="48.8607447" lon="2.3375390"/>
- <node id="679326055" lat="48.8607462" lon="2.3375322"/>
- <node id="679326056" lat="48.8606766" lon="2.3374958"/>
- <node id="679326057" lat="48.8606744" lon="2.3375055"/>
- <node id="679326058" lat="48.8606935" lon="2.3375146"/>
- <node id="679326059" lat="48.8606955" lon="2.3375056"/>
- <node id="679326060" lat="48.8609217" lon="2.3376833"/>
- <node id="679326062" lat="48.8609238" lon="2.3376741"/>
- <node id="679326063" lat="48.8609317" lon="2.3376783"/>
- <node id="679326065" lat="48.8608654" lon="2.3376538"/>
- <node id="679326066" lat="48.8608674" lon="2.3376452"/>
- <node id="679326067" lat="48.8608751" lon="2.3376493"/>
- <node id="679326068" lat="48.8608731" lon="2.3376579"/>
- <node id="679326112" lat="48.8609770" lon="2.3377117"/>
- <node id="679326113" lat="48.8609791" lon="2.3377023"/>
- <node id="679326114" lat="48.8609870" lon="2.3377064"/>
- <node id="679326115" lat="48.8609849" lon="2.3377154"/>
- <node id="679326116" lat="48.8609297" lon="2.3376871"/>
- <node id="679326242" lat="48.8610325" lon="2.3377401"/>
- <node id="679326243" lat="48.8610347" lon="2.3377304"/>
- <node id="679326244" lat="48.8610530" lon="2.3377399"/>
- <node id="679326245" lat="48.8610575" lon="2.3377203"/>
- <node id="679326246" lat="48.8610828" lon="2.3377264"/>
- <node id="679326247" lat="48.8610805" lon="2.3377368"/>
- <node id="679326249" lat="48.8610739" lon="2.3377289"/>
- <node id="679326251" lat="48.8610754" lon="2.3377225"/>
- <node id="679326252" lat="48.8611396" lon="2.3377566"/>
- <node id="679326254" lat="48.8611424" lon="2.3377446"/>
- <node id="679326255" lat="48.8611246" lon="2.3377598"/>
- <node id="679326256" lat="48.8611268" lon="2.3377499"/>
- <node id="679326257" lat="48.8611517" lon="2.3377495"/>
- <node id="679326259" lat="48.8611588" lon="2.3377184"/>
- <node id="679338924" lat="48.8616764" lon="2.3356216"/>
- <node id="679338926" lat="48.8616918" lon="2.3355610"/>
- <node id="679338927" lat="48.8616637" lon="2.3356988"/>
- <node id="679338928" lat="48.8616578" lon="2.3356953"/>
- <node id="679338929" lat="48.8616729" lon="2.3356351"/>
- <node id="679338930" lat="48.8616790" lon="2.3356387"/>
- <node id="679338931" lat="48.8616828" lon="2.3356253"/>
- <node id="679338932" lat="48.8616353" lon="2.3357826"/>
- <node id="679338933" lat="48.8616417" lon="2.3357863"/>
- <node id="679338934" lat="48.8616452" lon="2.3357726"/>
- <node id="679338935" lat="48.8616388" lon="2.3357688"/>
- <node id="679338936" lat="48.8616542" lon="2.3357092"/>
- <node id="679338937" lat="48.8616605" lon="2.3357129"/>
- <node id="679338939" lat="48.8616077" lon="2.3359200"/>
- <node id="679338940" lat="48.8616011" lon="2.3359162"/>
- <node id="679338941" lat="48.8615977" lon="2.3359297"/>
- <node id="679338942" lat="48.8616042" lon="2.3359335"/>
- <node id="679338943" lat="48.8616264" lon="2.3358460"/>
- <node id="679338944" lat="48.8616204" lon="2.3358424"/>
- <node id="679338945" lat="48.8616168" lon="2.3358563"/>
- <node id="679338946" lat="48.8616230" lon="2.3358599"/>
- <node id="679338947" lat="48.8615198" lon="2.3362250"/>
- <node id="679338948" lat="48.8614976" lon="2.3362120"/>
- <node id="679338949" lat="48.8615057" lon="2.3361803"/>
- <node id="679338950" lat="48.8615197" lon="2.3361885"/>
- <node id="679338951" lat="48.8615017" lon="2.3363051"/>
- <node id="679338952" lat="48.8614857" lon="2.3362957"/>
- <node id="679338954" lat="48.8614935" lon="2.3362652"/>
- <node id="679338955" lat="48.8615074" lon="2.3362734"/>
- <node id="679338956" lat="48.8615523" lon="2.3360361"/>
- <node id="679338957" lat="48.8615663" lon="2.3360443"/>
- <node id="679338958" lat="48.8615760" lon="2.3360156"/>
- <node id="679338959" lat="48.8615599" lon="2.3360062"/>
- <node id="679338960" lat="48.8615238" lon="2.3361118"/>
- <node id="679338961" lat="48.8615372" lon="2.3361196"/>
- <node id="679338962" lat="48.8615539" lon="2.3360932"/>
- <node id="679338963" lat="48.8615318" lon="2.3360803"/>
- <node id="679338964" lat="48.8615888" lon="2.3359938"/>
- <node id="679338965" lat="48.8615825" lon="2.3359900"/>
- <node id="679338966" lat="48.8614805" lon="2.3363890"/>
- <node id="679338967" lat="48.8614864" lon="2.3363925"/>
- <node id="679338968" lat="48.8615016" lon="2.3363329"/>
- <node id="679338970" lat="48.8614955" lon="2.3363294"/>
- <node id="679338971" lat="48.8614618" lon="2.3364611"/>
- <node id="679338973" lat="48.8614679" lon="2.3364646"/>
- <node id="679338974" lat="48.8614829" lon="2.3364060"/>
- <node id="679338975" lat="48.8614770" lon="2.3364026"/>
- <node id="679338977" lat="48.8614582" lon="2.3364750"/>
- <node id="679338978" lat="48.8614644" lon="2.3364786"/>
- <node id="679338980" lat="48.8614217" lon="2.3366199"/>
- <node id="679338981" lat="48.8614281" lon="2.3366236"/>
- <node id="679338983" lat="48.8614311" lon="2.3366105"/>
- <node id="679338984" lat="48.8614250" lon="2.3366070"/>
- <node id="679338986" lat="48.8614494" lon="2.3365374"/>
- <node id="679338987" lat="48.8614435" lon="2.3365339"/>
- <node id="679338988" lat="48.8614399" lon="2.3365479"/>
- <node id="679338990" lat="48.8614461" lon="2.3365516"/>
- <node id="679338993" lat="48.8613473" lon="2.3369127"/>
- <node id="679338994" lat="48.8613319" lon="2.3369712"/>
- <node id="679338995" lat="48.8613385" lon="2.3369750"/>
- <node id="679338996" lat="48.8613237" lon="2.3369946"/>
- <node id="679338997" lat="48.8613256" lon="2.3369957"/>
- <node id="679338998" lat="48.8613508" lon="2.3368990"/>
- <node id="679338999" lat="48.8612853" lon="2.3371588"/>
- <node id="679339000" lat="48.8612713" lon="2.3371506"/>
- <node id="679339001" lat="48.8612870" lon="2.3370888"/>
- <node id="679339002" lat="48.8613010" lon="2.3370971"/>
- <node id="679339003" lat="48.8613089" lon="2.3370667"/>
- <node id="679339005" lat="48.8612948" lon="2.3370584"/>
- <node id="679339006" lat="48.8613193" lon="2.3370261"/>
- <node id="679339007" lat="48.8613161" lon="2.3370242"/>
- <node id="679339008" lat="48.8612458" lon="2.3373231"/>
- <node id="679339009" lat="48.8612494" lon="2.3373091"/>
- <node id="679339010" lat="48.8612525" lon="2.3373104"/>
- <node id="679339011" lat="48.8612537" lon="2.3373044"/>
- <node id="679339012" lat="48.8612542" lon="2.3372870"/>
- <node id="679339013" lat="48.8612581" lon="2.3372894"/>
- <node id="679339014" lat="48.8612647" lon="2.3372626"/>
- <node id="679339015" lat="48.8612640" lon="2.3372289"/>
- <node id="679339018" lat="48.8612566" lon="2.3372579"/>
- <node id="679339019" lat="48.8612637" lon="2.3371807"/>
- <node id="679339020" lat="48.8612670" lon="2.3372307"/>
- <node id="679339021" lat="48.8612777" lon="2.3371889"/>
- <node id="679339022" lat="48.8614128" lon="2.3366834"/>
- <node id="679339023" lat="48.8614062" lon="2.3366796"/>
- <node id="679339024" lat="48.8614030" lon="2.3366925"/>
- <node id="679339025" lat="48.8614091" lon="2.3366961"/>
- <node id="679339026" lat="48.8613940" lon="2.3367556"/>
- <node id="679339027" lat="48.8613880" lon="2.3367522"/>
- <node id="679339028" lat="48.8613534" lon="2.3369163"/>
- <node id="679339030" lat="48.8613910" lon="2.3367691"/>
- <node id="679339031" lat="48.8613847" lon="2.3367655"/>
- <node id="679339032" lat="48.8613695" lon="2.3368264"/>
- <node id="679339033" lat="48.8613755" lon="2.3368299"/>
- <node id="679339034" lat="48.8613720" lon="2.3368430"/>
- <node id="679339035" lat="48.8613661" lon="2.3368395"/>
- <node id="679339036" lat="48.8613568" lon="2.3369025"/>
- <node id="679339037" lat="48.8600879" lon="2.3396071"/>
- <node id="679339038" lat="48.8600833" lon="2.3396251"/>
- <node id="679339039" lat="48.8600635" lon="2.3396147"/>
- <node id="679339040" lat="48.8600673" lon="2.3395967"/>
- <node id="679339041" lat="48.8602484" lon="2.3396658"/>
- <node id="679339043" lat="48.8602433" lon="2.3396882"/>
- <node id="679339045" lat="48.8602399" lon="2.3396862"/>
- <node id="679339046" lat="48.8602359" lon="2.3397054"/>
- <node id="679339047" lat="48.8602154" lon="2.3396933"/>
- <node id="679339048" lat="48.8602197" lon="2.3396765"/>
- <node id="679339049" lat="48.8601813" lon="2.3396557"/>
- <node id="679339050" lat="48.8601767" lon="2.3396743"/>
- <node id="679339051" lat="48.8601571" lon="2.3396627"/>
- <node id="679339052" lat="48.8601613" lon="2.3396452"/>
- <node id="679339053" lat="48.8611781" lon="2.3376300"/>
- <node id="679339054" lat="48.8611750" lon="2.3376284"/>
- <node id="679339055" lat="48.8611722" lon="2.3376413"/>
- <node id="679339057" lat="48.8611776" lon="2.3376441"/>
- <node id="679339058" lat="48.8611737" lon="2.3374660"/>
- <node id="679339059" lat="48.8611768" lon="2.3374528"/>
- <node id="679339062" lat="48.8611606" lon="2.3375596"/>
- <node id="679339063" lat="48.8611775" lon="2.3375686"/>
- <node id="679339064" lat="48.8611611" lon="2.3375447"/>
- <node id="679339065" lat="48.8611585" lon="2.3375558"/>
- <node id="679339066" lat="48.8611612" lon="2.3375572"/>
- <node id="679339068" lat="48.8611656" lon="2.3375326"/>
- <node id="679339069" lat="48.8611598" lon="2.3375295"/>
- <node id="679339070" lat="48.8611569" lon="2.3375424"/>
- <node id="679339071" lat="48.8611856" lon="2.3375959"/>
- <node id="679339072" lat="48.8611812" lon="2.3374552"/>
- <node id="679339073" lat="48.8611839" lon="2.3374436"/>
- <node id="679339074" lat="48.8611803" lon="2.3374696"/>
- <node id="679339075" lat="48.8611887" lon="2.3374433"/>
- <node id="679339076" lat="48.8612036" lon="2.3374510"/>
- <node id="679339077" lat="48.8612093" lon="2.3374442"/>
- <node id="679339078" lat="48.8612214" lon="2.3374365"/>
- <node id="679339079" lat="48.8612298" lon="2.3374013"/>
- <node id="679339080" lat="48.8612270" lon="2.3373984"/>
- <node id="679339082" lat="48.8612303" lon="2.3373856"/>
- <node id="679339084" lat="48.8612361" lon="2.3373888"/>
- <node id="679339085" lat="48.8611635" lon="2.3377082"/>
- <node id="679339086" lat="48.8611551" lon="2.3377165"/>
- <node id="679339087" lat="48.8611576" lon="2.3377052"/>
- <node id="679339088" lat="48.8613282" lon="2.3377234"/>
- <node id="679339089" lat="48.8613275" lon="2.3377250"/>
- <node id="679339090" lat="48.8613129" lon="2.3377171"/>
- <node id="679339091" lat="48.8613139" lon="2.3377124"/>
- <node id="679339092" lat="48.8612783" lon="2.3376934"/>
- <node id="679339094" lat="48.8612525" lon="2.3378061"/>
- <node id="679339095" lat="48.8612781" lon="2.3378194"/>
- <node id="679339097" lat="48.8612183" lon="2.3380795"/>
- <node id="679339098" lat="48.8611999" lon="2.3380703"/>
- <node id="679339101" lat="48.8610969" lon="2.3385359"/>
- <node id="679339102" lat="48.8611274" lon="2.3385517"/>
- <node id="679339103" lat="48.8609630" lon="2.3392538"/>
- <node id="679339105" lat="48.8609318" lon="2.3392364"/>
- <node id="679339106" lat="48.8606479" lon="2.3398994"/>
- <node id="679339107" lat="48.8606531" lon="2.3398766"/>
- <node id="679339108" lat="48.8608271" lon="2.3397003"/>
- <node id="679339109" lat="48.8609239" lon="2.3397501"/>
- <node id="679339110" lat="48.8608651" lon="2.3400118"/>
- <node id="679339111" lat="48.8610835" lon="2.3387442"/>
- <node id="679339112" lat="48.8611128" lon="2.3387765"/>
- <node id="679339113" lat="48.8610513" lon="2.3390185"/>
- <node id="679339114" lat="48.8610979" lon="2.3388159"/>
- <node id="679339115" lat="48.8610622" lon="2.3389696"/>
- <node id="679339117" lat="48.8610681" lon="2.3389726"/>
- <node id="679339118" lat="48.8610916" lon="2.3388674"/>
- <node id="679339119" lat="48.8610869" lon="2.3388650"/>
- <node id="679339120" lat="48.8610397" lon="2.3390718"/>
- <node id="679339121" lat="48.8610427" lon="2.3390586"/>
- <node id="679339122" lat="48.8610469" lon="2.3390608"/>
- <node id="679339123" lat="48.8610559" lon="2.3390209"/>
- <node id="679339124" lat="48.8611028" lon="2.3388185"/>
- <node id="679339125" lat="48.8610095" lon="2.3390575"/>
- <node id="679339126" lat="48.8630216" lon="2.3330424"/>
- <node id="679339128" lat="48.8630264" lon="2.3330459"/>
- <node id="679339129" lat="48.8630438" lon="2.3329724"/>
- <node id="679339130" lat="48.8630487" lon="2.3329761"/>
- <node id="679339131" lat="48.8630393" lon="2.3330051"/>
- <node id="679339133" lat="48.8630347" lon="2.3330018"/>
- <node id="679339134" lat="48.8630662" lon="2.3329007"/>
- <node id="679339135" lat="48.8630613" lon="2.3329352"/>
- <node id="679339136" lat="48.8630569" lon="2.3329319"/>
- <node id="679339137" lat="48.8629807" lon="2.3331795"/>
- <node id="679339138" lat="48.8629749" lon="2.3331752"/>
- <node id="679339139" lat="48.8629657" lon="2.3332048"/>
- <node id="679339140" lat="48.8629712" lon="2.3332089"/>
- <node id="679339141" lat="48.8629997" lon="2.3331112"/>
- <node id="679339142" lat="48.8630058" lon="2.3331157"/>
- <node id="679339143" lat="48.8629981" lon="2.3331397"/>
- <node id="679339144" lat="48.8629886" lon="2.3331327"/>
- <node id="679339145" lat="48.8630171" lon="2.3330745"/>
- <node id="679339146" lat="48.8630126" lon="2.3330712"/>
- <node id="679339147" lat="48.8628560" lon="2.3335501"/>
- <node id="679339149" lat="48.8628621" lon="2.3335547"/>
- <node id="679339150" lat="48.8628656" lon="2.3335218"/>
- <node id="679339151" lat="48.8628713" lon="2.3335260"/>
- <node id="679339152" lat="48.8628845" lon="2.3334836"/>
- <node id="679339153" lat="48.8628792" lon="2.3334797"/>
- <node id="679339154" lat="48.8628871" lon="2.3334517"/>
- <node id="679339155" lat="48.8628933" lon="2.3334563"/>
- <node id="679339156" lat="48.8629149" lon="2.3333869"/>
- <node id="679339157" lat="48.8629090" lon="2.3333825"/>
- <node id="679339158" lat="48.8629002" lon="2.3334110"/>
- <node id="679339160" lat="48.8629058" lon="2.3334152"/>
- <node id="679339161" lat="48.8629377" lon="2.3333121"/>
- <node id="679339162" lat="48.8629324" lon="2.3333081"/>
- <node id="679339163" lat="48.8629202" lon="2.3333475"/>
- <node id="679339164" lat="48.8629251" lon="2.3333511"/>
- <node id="679339166" lat="48.8629587" lon="2.3332488"/>
- <node id="679339167" lat="48.8629529" lon="2.3332445"/>
- <node id="679339168" lat="48.8629441" lon="2.3332720"/>
- <node id="679339169" lat="48.8629499" lon="2.3332763"/>
- <node id="679339170" lat="48.8628347" lon="2.3338735"/>
- <node id="679339171" lat="48.8628376" lon="2.3338756"/>
- <node id="679339172" lat="48.8628678" lon="2.3337821"/>
- <node id="679339173" lat="48.8628648" lon="2.3337798"/>
- <node id="679339174" lat="48.8628724" lon="2.3337562"/>
- <node id="679339175" lat="48.8628755" lon="2.3337585"/>
- <node id="679339176" lat="48.8628837" lon="2.3337331"/>
- <node id="679339177" lat="48.8628807" lon="2.3337308"/>
- <node id="679339178" lat="48.8628944" lon="2.3336884"/>
- <node id="679339179" lat="48.8628431" lon="2.3335900"/>
- <node id="679339180" lat="48.8628974" lon="2.3336906"/>
- <node id="679339182" lat="48.8629120" lon="2.3336453"/>
- <node id="679339183" lat="48.8629085" lon="2.3336418"/>
- <node id="679339184" lat="48.8629089" lon="2.3336389"/>
- <node id="679339185" lat="48.8626110" lon="2.3345664"/>
- <node id="679339186" lat="48.8626144" lon="2.3345689"/>
- <node id="679339187" lat="48.8627215" lon="2.3342365"/>
- <node id="679339188" lat="48.8627182" lon="2.3342341"/>
- <node id="679339189" lat="48.8627007" lon="2.3342877"/>
- <node id="679339190" lat="48.8627042" lon="2.3342902"/>
- <node id="679339192" lat="48.8626782" lon="2.3343707"/>
- <node id="679339193" lat="48.8626747" lon="2.3343681"/>
- <node id="679339194" lat="48.8626597" lon="2.3344157"/>
- <node id="679339195" lat="48.8626629" lon="2.3344181"/>
- <node id="679339196" lat="48.8626460" lon="2.3344693"/>
- <node id="679339198" lat="48.8626431" lon="2.3344672"/>
- <node id="679339199" lat="48.8626274" lon="2.3345157"/>
- <node id="679339200" lat="48.8626303" lon="2.3345179"/>
- <node id="679339201" lat="48.8627623" lon="2.3341091"/>
- <node id="679339202" lat="48.8627592" lon="2.3341067"/>
- <node id="679339203" lat="48.8627446" lon="2.3341524"/>
- <node id="679339204" lat="48.8627476" lon="2.3341547"/>
- <node id="679339205" lat="48.8627745" lon="2.3340593"/>
- <node id="679339206" lat="48.8627775" lon="2.3340615"/>
- <node id="679339207" lat="48.8627921" lon="2.3340164"/>
- <node id="679339208" lat="48.8627891" lon="2.3340142"/>
- <node id="679339209" lat="48.8628045" lon="2.3339667"/>
- <node id="679339210" lat="48.8628075" lon="2.3339689"/>
- <node id="679339211" lat="48.8628222" lon="2.3339235"/>
- <node id="679339212" lat="48.8628193" lon="2.3339213"/>
- <node id="679339214" lat="48.8633126" lon="2.3321043"/>
- <node id="679339215" lat="48.8633167" lon="2.3321074"/>
- <node id="679339216" lat="48.8633092" lon="2.3321307"/>
- <node id="679339217" lat="48.8633053" lon="2.3321278"/>
- <node id="679339218" lat="48.8633033" lon="2.3321340"/>
- <node id="679339219" lat="48.8633017" lon="2.3321328"/>
- <node id="679339220" lat="48.8632879" lon="2.3321756"/>
- <node id="679339221" lat="48.8632911" lon="2.3321779"/>
- <node id="679339222" lat="48.8633256" lon="2.3320643"/>
- <node id="679339223" lat="48.8633793" lon="2.3321034"/>
- <node id="679339225" lat="48.8633841" lon="2.3320918"/>
- <node id="679339226" lat="48.8632363" lon="2.3323470"/>
- <node id="679339227" lat="48.8632391" lon="2.3323491"/>
- <node id="679339228" lat="48.8632272" lon="2.3323906"/>
- <node id="679339229" lat="48.8632232" lon="2.3323876"/>
- <node id="679339230" lat="48.8632259" lon="2.3324179"/>
- <node id="679339232" lat="48.8632198" lon="2.3324134"/>
- <node id="679339233" lat="48.8631975" lon="2.3324841"/>
- <node id="679339234" lat="48.8632029" lon="2.3324881"/>
- <node id="679339235" lat="48.8632162" lon="2.3324481"/>
- <node id="679339236" lat="48.8632105" lon="2.3324439"/>
- <node id="679339237" lat="48.8631939" lon="2.3325158"/>
- <node id="679339238" lat="48.8631884" lon="2.3325117"/>
- <node id="679339239" lat="48.8632467" lon="2.3323255"/>
- <node id="679339240" lat="48.8632440" lon="2.3323235"/>
- <node id="679339241" lat="48.8632805" lon="2.3322000"/>
- <node id="679339242" lat="48.8632833" lon="2.3322021"/>
- <node id="679339243" lat="48.8632679" lon="2.3322514"/>
- <node id="679339244" lat="48.8632647" lon="2.3322490"/>
- <node id="679339245" lat="48.8632578" lon="2.3322721"/>
- <node id="679339247" lat="48.8632605" lon="2.3322741"/>
- <node id="679339248" lat="48.8632456" lon="2.3323186"/>
- <node id="679339251" lat="48.8632433" lon="2.3323168"/>
- <node id="679339252" lat="48.8635268" lon="2.3321958"/>
- <node id="679339253" lat="48.8635238" lon="2.3322072"/>
- <node id="679339254" lat="48.8634922" lon="2.3324906"/>
- <node id="679339255" lat="48.8634964" lon="2.3324937"/>
- <node id="679339257" lat="48.8635516" lon="2.3323222"/>
- <node id="679339258" lat="48.8635472" lon="2.3323190"/>
- <node id="679339259" lat="48.8635719" lon="2.3322423"/>
- <node id="679339260" lat="48.8631359" lon="2.3326821"/>
- <node id="679339261" lat="48.8631364" lon="2.3326986"/>
- <node id="679339262" lat="48.8631317" lon="2.3326951"/>
- <node id="679339263" lat="48.8631388" lon="2.3326782"/>
- <node id="679339264" lat="48.8631447" lon="2.3326600"/>
- <node id="679339265" lat="48.8631467" lon="2.3326614"/>
- <node id="679339266" lat="48.8631607" lon="2.3325962"/>
- <node id="679339267" lat="48.8631634" lon="2.3325982"/>
- <node id="679339268" lat="48.8631715" lon="2.3325864"/>
- <node id="679339269" lat="48.8631653" lon="2.3325819"/>
- <node id="679339270" lat="48.8631572" lon="2.3326175"/>
- <node id="679339271" lat="48.8631602" lon="2.3326198"/>
- <node id="679339274" lat="48.8631752" lon="2.3325523"/>
- <node id="679339275" lat="48.8631811" lon="2.3325567"/>
- <node id="679339276" lat="48.8631012" lon="2.3327924"/>
- <node id="679339277" lat="48.8631060" lon="2.3327960"/>
- <node id="679339279" lat="48.8631152" lon="2.3327673"/>
- <node id="679339280" lat="48.8631100" lon="2.3327634"/>
- <node id="679339281" lat="48.8630788" lon="2.3328616"/>
- <node id="679339283" lat="48.8630839" lon="2.3328653"/>
- <node id="679339285" lat="48.8630930" lon="2.3328368"/>
- <node id="679339287" lat="48.8630880" lon="2.3328331"/>
- <node id="679339289" lat="48.8631225" lon="2.3327246"/>
- <node id="679339291" lat="48.8631269" lon="2.3327279"/>
- <node id="679339293" lat="48.8630712" lon="2.3329044"/>
- <node id="679339295" lat="48.8634674" lon="2.3325554"/>
- <node id="679339298" lat="48.8634706" lon="2.3325578"/>
- <node id="679339300" lat="48.8618122" lon="2.3350778"/>
- <node id="679339302" lat="48.8618155" lon="2.3350797"/>
- <node id="679339304" lat="48.8620134" lon="2.3351646"/>
- <node id="679339306" lat="48.8619989" lon="2.3351564"/>
- <node id="679339308" lat="48.8619997" lon="2.3351528"/>
- <node id="679339310" lat="48.8619799" lon="2.3351416"/>
- <node id="679339312" lat="48.8620110" lon="2.3351742"/>
- <node id="679339314" lat="48.8618390" lon="2.3350603"/>
- <node id="679339316" lat="48.8618195" lon="2.3350493"/>
- <node id="679339318" lat="48.8619790" lon="2.3351453"/>
- <node id="679339320" lat="48.8618377" lon="2.3350655"/>
- <node id="679339323" lat="48.8620619" lon="2.3351921"/>
- <node id="679339326" lat="48.8620532" lon="2.3351872"/>
- <node id="679339328" lat="48.8620509" lon="2.3351967"/>
- <node id="679339330" lat="48.8621991" lon="2.3352706"/>
- <node id="679339333" lat="48.8622081" lon="2.3352756"/>
- <node id="679339335" lat="48.8621568" lon="2.3352574"/>
- <node id="679339337" lat="48.8621968" lon="2.3352800"/>
- <node id="679339339" lat="48.8621020" lon="2.3352152"/>
- <node id="679339341" lat="48.8621107" lon="2.3352201"/>
- <node id="679339343" lat="48.8620594" lon="2.3352019"/>
- <node id="679339346" lat="48.8620997" lon="2.3352246"/>
- <node id="679339347" lat="48.8621507" lon="2.3352431"/>
- <node id="679339348" lat="48.8621592" lon="2.3352479"/>
- <node id="679339349" lat="48.8621085" lon="2.3352294"/>
- <node id="679339351" lat="48.8621485" lon="2.3352520"/>
- <node id="679339352" lat="48.8617326" lon="2.3354002"/>
- <node id="679339353" lat="48.8617389" lon="2.3354039"/>
- <node id="679339355" lat="48.8617542" lon="2.3353440"/>
- <node id="679339357" lat="48.8617483" lon="2.3353405"/>
- <node id="679339358" lat="48.8617549" lon="2.3353146"/>
- <node id="679339360" lat="48.8617528" lon="2.3353134"/>
- <node id="679339361" lat="48.8617603" lon="2.3352841"/>
- <node id="679339363" lat="48.8617630" lon="2.3352856"/>
- <node id="679339364" lat="48.8617355" lon="2.3354173"/>
- <node id="679339366" lat="48.8617292" lon="2.3354135"/>
- <node id="679339368" lat="48.8616982" lon="2.3355647"/>
- <node id="679339369" lat="48.8616952" lon="2.3355476"/>
- <node id="679339371" lat="48.8617016" lon="2.3355513"/>
- <node id="679339373" lat="48.8617170" lon="2.3354910"/>
- <node id="679339374" lat="48.8617105" lon="2.3354872"/>
- <node id="679339375" lat="48.8617138" lon="2.3354740"/>
- <node id="679339376" lat="48.8617201" lon="2.3354777"/>
- <node id="679339377" lat="48.8623428" lon="2.3353622"/>
- <node id="679339379" lat="48.8623033" lon="2.3353407"/>
- <node id="679339380" lat="48.8623584" lon="2.3353606"/>
- <node id="679339381" lat="48.8623452" lon="2.3353526"/>
- <node id="679339382" lat="48.8622944" lon="2.3353356"/>
- <node id="679339383" lat="48.8622544" lon="2.3353131"/>
- <node id="679339385" lat="48.8623057" lon="2.3353309"/>
- <node id="679339386" lat="48.8622968" lon="2.3353259"/>
- <node id="679339387" lat="48.8622480" lon="2.3352989"/>
- <node id="679339389" lat="48.8622567" lon="2.3353038"/>
- <node id="679339390" lat="48.8622058" lon="2.3352851"/>
- <node id="679339391" lat="48.8622458" lon="2.3353076"/>
- <node id="679339393" lat="48.8623630" lon="2.3353408"/>
- <node id="679339394" lat="48.8623660" lon="2.3353430"/>
- <node id="679339395" lat="48.8625471" lon="2.3347654"/>
- <node id="679339396" lat="48.8625503" lon="2.3347678"/>
- <node id="679339399" lat="48.8625346" lon="2.3348164"/>
- <node id="679339400" lat="48.8625315" lon="2.3348141"/>
- <node id="679339401" lat="48.8625145" lon="2.3348647"/>
- <node id="679339402" lat="48.8625174" lon="2.3348671"/>
- <node id="679339403" lat="48.8625024" lon="2.3349139"/>
- <node id="679339404" lat="48.8624995" lon="2.3349121"/>
- <node id="679339405" lat="48.8625987" lon="2.3346173"/>
- <node id="679339406" lat="48.8625955" lon="2.3346149"/>
- <node id="679339408" lat="48.8625792" lon="2.3346655"/>
- <node id="679339409" lat="48.8625822" lon="2.3346678"/>
- <node id="679339410" lat="48.8625664" lon="2.3347167"/>
- <node id="679339411" lat="48.8625635" lon="2.3347146"/>
- <node id="679339412" lat="48.8627192" lon="2.3348815"/>
- <node id="679339413" lat="48.8627205" lon="2.3348825"/>
- <node id="679339414" lat="48.8624291" lon="2.3350540"/>
- <node id="679339415" lat="48.8624274" lon="2.3350527"/>
- <node id="679339417" lat="48.8624386" lon="2.3350204"/>
- <node id="679339418" lat="48.8624490" lon="2.3350287"/>
- <node id="679339419" lat="48.8624481" lon="2.3350315"/>
- <node id="679339420" lat="48.8624519" lon="2.3350344"/>
- <node id="679339421" lat="48.8624568" lon="2.3350213"/>
- <node id="679339422" lat="48.8624637" lon="2.3350253"/>
- <node id="679339423" lat="48.8624672" lon="2.3350125"/>
- <node id="679339424" lat="48.8624709" lon="2.3350144"/>
- <node id="679339425" lat="48.8624856" lon="2.3349667"/>
- <node id="679339426" lat="48.8624828" lon="2.3349643"/>
- <node id="679339427" lat="48.8623825" lon="2.3352800"/>
- <node id="679339428" lat="48.8624174" lon="2.3351858"/>
- <node id="679339430" lat="48.8624028" lon="2.3352313"/>
- <node id="679339431" lat="48.8624095" lon="2.3351784"/>
- <node id="679339433" lat="48.8624026" lon="2.3351641"/>
- <node id="679339434" lat="48.8624011" lon="2.3351507"/>
- <node id="679339435" lat="48.8624033" lon="2.3351366"/>
- <node id="679339436" lat="48.8626187" lon="2.3352073"/>
- <node id="679339437" lat="48.8626165" lon="2.3352058"/>
- <node id="679339438" lat="48.8626271" lon="2.3351733"/>
- <node id="679339439" lat="48.8626284" lon="2.3351742"/>
- <node id="679339440" lat="48.8626373" lon="2.3351478"/>
- <node id="679339441" lat="48.8626345" lon="2.3351457"/>
- <node id="679339442" lat="48.8626068" lon="2.3352371"/>
- <node id="679339443" lat="48.8625982" lon="2.3352644"/>
- <node id="679339445" lat="48.8625995" lon="2.3352654"/>
- <node id="679339446" lat="48.8627290" lon="2.3348567"/>
- <node id="679339447" lat="48.8627275" lon="2.3348551"/>
- <node id="679339448" lat="48.8623858" lon="2.3352830"/>
- <node id="679339449" lat="48.8625913" lon="2.3352897"/>
- <node id="679339450" lat="48.8625883" lon="2.3352875"/>
- <node id="679339451" lat="48.8624970" lon="2.3355722"/>
- <node id="679339452" lat="48.8624951" lon="2.3355711"/>
- <node id="679339453" lat="48.8621545" lon="2.3366501"/>
- <node id="679339454" lat="48.8621693" lon="2.3366040"/>
- <node id="679339455" lat="48.8621562" lon="2.3366513"/>
- <node id="679339456" lat="48.8621794" lon="2.3365716"/>
- <node id="679339457" lat="48.8621996" lon="2.3365088"/>
- <node id="679339459" lat="48.8621818" lon="2.3366132"/>
- <node id="679339461" lat="48.8621922" lon="2.3365810"/>
- <node id="679339462" lat="48.8622235" lon="2.3364848"/>
- <node id="679339463" lat="48.8622126" lon="2.3365184"/>
- <node id="679339464" lat="48.8622248" lon="2.3364304"/>
- <node id="679339465" lat="48.8622104" lon="2.3364752"/>
- <node id="679339466" lat="48.8622350" lon="2.3364071"/>
- <node id="679339467" lat="48.8622270" lon="2.3364319"/>
- <node id="679339468" lat="48.8622263" lon="2.3364007"/>
- <node id="679339469" lat="48.8621481" lon="2.3366764"/>
- <node id="679339470" lat="48.8621405" lon="2.3366708"/>
- <node id="679339471" lat="48.8618680" lon="2.3375175"/>
- <node id="679339473" lat="48.8617357" lon="2.3379355"/>
- <node id="679339474" lat="48.8618698" lon="2.3375189"/>
- <node id="679398664" lat="48.8602583" lon="2.3333530"/>
- <node id="679398665" lat="48.8602562" lon="2.3333089"/>
- <node id="679398666" lat="48.8602481" lon="2.3333470"/>
- <node id="679398667" lat="48.8602676" lon="2.3333138"/>
- <node id="679398707" lat="48.8601248" lon="2.3396263"/>
- <node id="679398752" lat="48.8638091" lon="2.3326325">
- <tag k="name" v="Hôtel Régina"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="679402856" lat="48.8602540" lon="2.3333190"/>
- <node id="679402857" lat="48.8602191" lon="2.3335248"/>
- <node id="679402858" lat="48.8603927" lon="2.3334011"/>
- <node id="679402860" lat="48.8603453" lon="2.3336007"/>
- <node id="679402862" lat="48.8626433" lon="2.3351175"/>
- <node id="679402863" lat="48.8625772" lon="2.3353181">
- <tag k="highway" v="traffic_signals"/>
- </node>
- <node id="679407691" lat="48.8603358" lon="2.3336403"/>
- <node id="679407774" lat="48.8605186" lon="2.3354105"/>
- <node id="679407782" lat="48.8614872" lon="2.3362966"/>
- <node id="679407783" lat="48.8604628" lon="2.3374064"/>
- <node id="679407784" lat="48.8607547" lon="2.3375597"/>
- <node id="679407811" lat="48.8623675" lon="2.3353389"/>
- <node id="679407813" lat="48.8624005" lon="2.3352362"/>
- <node id="679448814" lat="48.8609603" lon="2.3312315"/>
- <node id="679448816" lat="48.8608292" lon="2.3317989"/>
- <node id="679448821" lat="48.8608399" lon="2.3317530"/>
- <node id="679448849" lat="48.8604176" lon="2.3332967"/>
- <node id="679448895" lat="48.8629338" lon="2.3333039"/>
- <node id="679448896" lat="48.8629191" lon="2.3333511"/>
- <node id="679448897" lat="48.8628498" lon="2.3335694"/>
- <node id="679448900" lat="48.8626852" lon="2.3343357"/>
- <node id="679448906" lat="48.8626499" lon="2.3344461"/>
- <node id="679448925" lat="48.8625198" lon="2.3348484"/>
- <node id="679448927" lat="48.8625151" lon="2.3348739"/>
- <node id="679448928" lat="48.8625586" lon="2.3347297"/>
- <node id="679480119" lat="48.8596098" lon="2.3381605"/>
- <node id="679480123" lat="48.8610800" lon="2.3389192"/>
- <node id="679496134" lat="48.8606561" lon="2.3316816"/>
+ <node id="679398752" lat="48.8637204" lon="2.3325149">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Place des Pyramides"/>
+ <tag k="name" v="Hôtel Regina"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.leshotelsbaverez.com/en/home/regina"/>
+ <tag k="wikidata" v="Q3145660"/>
+ </node>
+ <node id="680456458" lat="48.8626564" lon="2.3479794"/>
+ <node id="680456498" lat="48.8626680" lon="2.3480923"/>
+ <node id="680456503" lat="48.8626321" lon="2.3480772"/>
+ <node id="680456505" lat="48.8626921" lon="2.3479951"/>
+ <node id="680456509" lat="48.8626744" lon="2.3479873">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Rue Mondétour"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="680470839" lat="48.8631755" lon="2.3488740"/>
+ <node id="680470841" lat="48.8631630" lon="2.3489212"/>
+ <node id="680470846" lat="48.8632466" lon="2.3489090"/>
+ <node id="680470847" lat="48.8632287" lon="2.3489818"/>
+ <node id="680470848" lat="48.8631562" lon="2.3489498"/>
+ <node id="680470854" lat="48.8632172" lon="2.3488945">
+ <tag k="addr:housenumber" v="26"/>
+ <tag k="addr:street" v="Rue Pierre Lescot"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="680645902" lat="48.8484812" lon="2.2986500"/>
<node id="680646152" lat="48.8503961" lon="2.2982986"/>
<node id="680646755" lat="48.8502677" lon="2.2982677"/>
<node id="680646824" lat="48.8502873" lon="2.2983437"/>
+ <node id="680646845" lat="48.8495988" lon="2.2969180"/>
+ <node id="680647246" lat="48.8497530" lon="2.2970303"/>
<node id="680647253" lat="48.8503646" lon="2.2981171"/>
<node id="680648297" lat="48.8485478" lon="2.2989178"/>
<node id="680648971" lat="48.8484743" lon="2.2987598"/>
<node id="680650024" lat="48.8484725" lon="2.2988203"/>
<node id="680650248" lat="48.8484671" lon="2.2986766"/>
+ <node id="680650414" lat="48.8496682" lon="2.2971366"/>
<node id="680650821" lat="48.8485879" lon="2.2987874"/>
+ <node id="680650899" lat="48.8497026" lon="2.2970335"/>
<node id="680651478" lat="48.8503230" lon="2.2982989"/>
<node id="680653138" lat="48.8485312" lon="2.2987150"/>
<node id="680653239" lat="48.8503448" lon="2.2983169"/>
<node id="680653336" lat="48.8485069" lon="2.2987021"/>
<node id="680653344" lat="48.8502780" lon="2.2982968"/>
<node id="680653434" lat="48.8502690" lon="2.2982860"/>
+ <node id="680653440" lat="48.8495551" lon="2.2970543"/>
<node id="680653547" lat="48.8502704" lon="2.2981477"/>
<node id="680653702" lat="48.8484533" lon="2.2987952"/>
<node id="680654038" lat="48.8502850" lon="2.2983403"/>
@@ -2855,6 +1851,7 @@
<node id="680655671" lat="48.8484939" lon="2.2987844"/>
<node id="680656065" lat="48.8485199" lon="2.2987360"/>
<node id="680656533" lat="48.8503219" lon="2.2983071"/>
+ <node id="680656580" lat="48.8497438" lon="2.2970595"/>
<node id="681244345" lat="48.8504471" lon="2.2886735"/>
<node id="681244412" lat="48.8547291" lon="2.2925050"/>
<node id="681244515" lat="48.8547492" lon="2.2924761"/>
@@ -2941,30 +1938,28 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="682267317" lat="48.8553722" lon="2.2926936"/>
- <node id="682267321" lat="48.8556940" lon="2.2927517"/>
- <node id="682267323" lat="48.8559057" lon="2.2929831"/>
- <node id="682267324" lat="48.8558874" lon="2.2931101"/>
+ <node id="682267317" lat="48.8553727" lon="2.2926939"/>
+ <node id="682267321" lat="48.8556938" lon="2.2927512"/>
+ <node id="682267323" lat="48.8559063" lon="2.2929835"/>
+ <node id="682267324" lat="48.8558869" lon="2.2931091"/>
<node id="682267325" lat="48.8555856" lon="2.2926654"/>
- <node id="682267326" lat="48.8553859" lon="2.2923717"/>
- <node id="682267327" lat="48.8551484" lon="2.2930429"/>
- <node id="682267331" lat="48.8553956" lon="2.2926591"/>
- <node id="682267333" lat="48.8559191" lon="2.2931601"/>
- <node id="682267336" lat="48.8559107" lon="2.2930703"/>
- <node id="682267338" lat="48.8559168" lon="2.2931520"/>
- <node id="682267340" lat="48.8554830" lon="2.2927928"/>
- <node id="682267342" lat="48.8551879" lon="2.2932549"/>
- <node id="682267343" lat="48.8558289" lon="2.2932977"/>
- <node id="682267351" lat="48.8556695" lon="2.2927888"/>
- <node id="682267353" lat="48.8550983" lon="2.2931226"/>
- <node id="682267354" lat="48.8553075" lon="2.2925977"/>
+ <node id="682267326" lat="48.8553858" lon="2.2923716"/>
+ <node id="682267327" lat="48.8551488" lon="2.2930431"/>
+ <node id="682267331" lat="48.8553953" lon="2.2926586"/>
+ <node id="682267333" lat="48.8559202" lon="2.2931581"/>
+ <node id="682267336" lat="48.8559112" lon="2.2930712"/>
+ <node id="682267340" lat="48.8554842" lon="2.2927915"/>
+ <node id="682267342" lat="48.8551878" lon="2.2932545"/>
+ <node id="682267343" lat="48.8558297" lon="2.2932995"/>
+ <node id="682267351" lat="48.8556696" lon="2.2927890"/>
+ <node id="682267353" lat="48.8550980" lon="2.2931224"/>
+ <node id="682267354" lat="48.8553073" lon="2.2925978"/>
<node id="682267356" lat="48.8555293" lon="2.2925826"/>
- <node id="682267359" lat="48.8550837" lon="2.2929470"/>
- <node id="682267365" lat="48.8554875" lon="2.2927941"/>
- <node id="682267380" lat="48.8558801" lon="2.2930257"/>
- <node id="682267382" lat="48.8552957" lon="2.2925120"/>
- <node id="682267390" lat="48.8558200" lon="2.2929366"/>
- <node id="682267394" lat="48.8558467" lon="2.2928954"/>
+ <node id="682267359" lat="48.8550836" lon="2.2929473"/>
+ <node id="682267380" lat="48.8558797" lon="2.2930250"/>
+ <node id="682267382" lat="48.8552958" lon="2.2925122"/>
+ <node id="682267390" lat="48.8558200" lon="2.2929368"/>
+ <node id="682267394" lat="48.8558465" lon="2.2928955"/>
<node id="682302357" lat="48.8664704" lon="2.3357313">
<tag k="name" v="Hôtel Louvre Saint-Anne"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -2994,6 +1989,12 @@
<tag k="addr:housenumber" v="11"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
</node>
+ <node id="682391435" lat="48.8488122" lon="2.2881486">
+ <tag k="addr:housenumber" v="42b"/>
+ <tag k="name" v="Hôtel de l'Exposition - Tour Eiffel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="682408483" lat="48.8478360" lon="2.2976321">
<tag k="addr:housenumber" v="21"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
@@ -3004,12 +2005,35 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="683081708" lat="48.8460981" lon="2.2788571">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ </node>
<node id="683094871" lat="48.8650960" lon="2.3319535">
<tag k="name" v="Londres Saint-Honoré"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="683260017" lat="48.8648321" lon="2.3290435">
+ <tag k="addr:housenumber" v="218"/>
+ <tag k="addr:street" v="Rue de Rivoli"/>
+ <tag k="name" v="Hôtel Brighton"/>
+ <tag k="phone" v="+33 1 47 03 61 61"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="toilets:wheelchair" v="yes"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wheelchair:description" v="Certaines chambres sont équipées de toilette d'accès aux fauteuils roulants, pas d'accès dans les toilettes du lobby et ils peuvent mettre une rampe à dispo devant l'hôtel pour l'accessibilité."/>
+ </node>
+ <node id="683260018" lat="48.8648839" lon="2.3288840">
+ <tag k="addr:housenumber" v="220"/>
+ <tag k="addr:street" v="Rue de Rivoli"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="683328366" lat="48.8668168" lon="2.3257587">
<tag k="addr:housenumber" v="8"/>
<tag k="addr:street" v="Rue Cambon"/>
@@ -3028,6 +2052,25 @@
<node id="683362312" lat="48.8682006" lon="2.3291898"/>
<node id="683362315" lat="48.8681939" lon="2.3291371"/>
<node id="683362318" lat="48.8682571" lon="2.3291804"/>
+ <node id="683386991" lat="48.8664575" lon="2.3249994"/>
+ <node id="683386993" lat="48.8664393" lon="2.3249864"/>
+ <node id="683386995" lat="48.8663518" lon="2.3252200"/>
+ <node id="683386998" lat="48.8664365" lon="2.3252896"/>
+ <node id="683387000" lat="48.8664609" lon="2.3252131"/>
+ <node id="683387012" lat="48.8664670" lon="2.3251962"/>
+ <node id="683387014" lat="48.8663969" lon="2.3252571">
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="addr:street" v="Rue Cambon"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="683387027" lat="48.8665160" lon="2.3250481"/>
+ <node id="683398601" lat="48.8687107" lon="2.3252026">
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="addr:street" v="Rue du Chevalier de Saint-George"/>
+ <tag k="name" v="Hôtel Opera Richepanse"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="683512523" lat="48.8638554" lon="2.3221594"/>
<node id="683512525" lat="48.8638579" lon="2.3221613"/>
<node id="683512527" lat="48.8638538" lon="2.3221737"/>
@@ -3318,6 +2361,9 @@
<tag k="addr:street" v="Rue de la Banque"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="689142402" lat="48.8681969" lon="2.3313663"/>
+ <node id="689142514" lat="48.8681098" lon="2.3312291"/>
+ <node id="689142883" lat="48.8681579" lon="2.3314562"/>
<node id="689142924" lat="48.8692604" lon="2.3339332">
<tag k="name" v="Hôtel France d'Antin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -3325,6 +2371,23 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="689142987" lat="48.8691166" lon="2.3322273"/>
+ <node id="689143039" lat="48.8693135" lon="2.3322348"/>
+ <node id="689143296" lat="48.8698326" lon="2.3302658"/>
+ <node id="689143362" lat="48.8698184" lon="2.3300621"/>
+ <node id="689143470" lat="48.8693420" lon="2.3321695">
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:street" v="Rue Daunou"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="689143494" lat="48.8699163" lon="2.3300768"/>
+ <node id="689143497" lat="48.8698440" lon="2.3300056"/>
+ <node id="689143534" lat="48.8696606" lon="2.3324127"/>
+ <node id="689143839" lat="48.8696080" lon="2.3325310"/>
+ <node id="689143958" lat="48.8697976" lon="2.3302308">
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:street" v="Rue Volney"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="689144005" lat="48.8691181" lon="2.3322258"/>
<node id="689144129" lat="48.8689950" lon="2.3326160">
<tag k="addr:housenumber" v="13"/>
@@ -3332,13 +2395,23 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="689144153" lat="48.8690269" lon="2.3326459"/>
+ <node id="689144239" lat="48.8681979" lon="2.3313662"/>
<node id="689144263" lat="48.8691143" lon="2.3324447">
<tag k="addr:housenumber" v="1"/>
<tag k="addr:street" v="Rue Daunou"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="689144273" lat="48.8689636" lon="2.3325867"/>
+ <node id="689144275" lat="48.8682268" lon="2.3312933"/>
+ <node id="689144335" lat="48.8680761" lon="2.3313751"/>
<node id="689144365" lat="48.8691822" lon="2.3322880"/>
+ <node id="689144403" lat="48.8693664" lon="2.3321138"/>
+ <node id="689144467" lat="48.8697605" lon="2.3301938"/>
+ <node id="689144575" lat="48.8680935" lon="2.3313000">
+ <tag k="addr:housenumber" v="22"/>
+ <tag k="addr:street" v="Rue Danielle Casanova"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="689178439" lat="48.8692690" lon="2.3340349">
<tag k="name" v="Hôtel France d'Antin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -3349,15 +2422,50 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="693661161" lat="48.8615285" lon="2.3361537"/>
- <node id="693661163" lat="48.8621915" lon="2.3365341"/>
+ <node id="691614090" lat="48.8663496" lon="2.3505569"/>
+ <node id="691614148" lat="48.8662585" lon="2.3508623"/>
+ <node id="691614264" lat="48.8663133" lon="2.3507504"/>
+ <node id="691614271" lat="48.8663139" lon="2.3506792"/>
+ <node id="691614408" lat="48.8663012" lon="2.3507438"/>
+ <node id="691614414" lat="48.8662724" lon="2.3508719">
+ <tag k="addr:housenumber" v="197"/>
+ <tag k="addr:street" v="Rue Saint-Denis"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="691614443" lat="48.8663167" lon="2.3505432"/>
+ <node id="691614557" lat="48.8663264" lon="2.3506849"/>
+ <node id="691614626" lat="48.8662888" lon="2.3508832"/>
+ <node id="691614727" lat="48.8662912" lon="2.3508707"/>
+ <node id="691774842" lat="48.8658178" lon="2.3507681"/>
+ <node id="691774898" lat="48.8657226" lon="2.3508985"/>
+ <node id="691775280" lat="48.8657612" lon="2.3507344"/>
+ <node id="691775336" lat="48.8657789" lon="2.3509355"/>
+ <node id="691775673" lat="48.8657492" lon="2.3509159"/>
+ <node id="691775932" lat="48.8657961" lon="2.3507551">
+ <tag k="addr:housenumber" v="158"/>
+ <tag k="addr:street" v="Rue Saint-Denis"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="694681946" lat="48.8512172" lon="2.3598878">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Quai d'Anjou"/>
+ <tag k="email" v="hello@hollmann.eu.com"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hollmann in Paris"/>
+ <tag k="operator" v="Hollmann Robert"/>
+ <tag k="phone" v="+4357778300"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hollmann-paris.at"/>
+ </node>
<node id="695121789" lat="48.8527864" lon="2.3423027">
<tag k="name" v="Holiday Inn Paris Notre-Dame"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="695286618" lat="48.8497835" lon="2.3468492">
- <tag k="name" v="Jardin de Cluny"/>
+ <tag k="name" v="Le Jardin de Cluny"/>
<tag k="operator" v="Best Western"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="695453331" lat="48.8487636" lon="2.3493605"/>
@@ -3377,7 +2485,7 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="696070844" lat="48.8523187" lon="2.3549674">
- <tag k="name" v="Hôtel des Deux Iles"/>
+ <tag k="name" v="Hôtel les Deux Iles"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -3408,8 +2516,12 @@
<node id="697074687" lat="48.8499860" lon="2.3726636"/>
<node id="697074729" lat="48.8500611" lon="2.3724207"/>
<node id="697323147" lat="48.8277692" lon="2.2733630">
+ <tag k="email" v="info@hotelgabriel.fr"/>
<tag k="name" v="Le Gabriel"/>
+ <tag k="phone" v="+33 1 40 93 44 15"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.gabrielhotel.com"/>
</node>
<node id="697454548" lat="48.8613444" lon="2.3517851"/>
<node id="697454606" lat="48.8615340" lon="2.3518920"/>
@@ -3435,23 +2547,6 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelsydneyopera.com/"/>
</node>
- <node id="698985601" lat="48.8836865" lon="2.3338083">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="72"/>
- <tag k="addr:postcode" v="75018"/>
- <tag k="addr:street" v="Boulevard de Clichy"/>
- <tag k="name" v="Musée de l'Erotisme"/>
- <tag k="name:en" v="Erotic Museum"/>
- <tag k="name:es" v="Museo_del_Erotismo"/>
- <tag k="name:fr" v="Musée de l'érotisme"/>
- <tag k="name:he" v="מוזיאון הארוטיקה"/>
- <tag k="opening_hours" v="Mo-Su 10:00-02:00"/>
- <tag k="phone" v="01.42.58.28.73"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.musee-erotisme.com"/>
- <tag k="wikipedia" v="fr:Musée de l'érotisme (Paris)"/>
- </node>
<node id="699045688" lat="48.8549427" lon="2.3558366"/>
<node id="699045741" lat="48.8550345" lon="2.3559781"/>
<node id="699045840" lat="48.8548912" lon="2.3563922"/>
@@ -3464,7 +2559,8 @@
<node id="699046037" lat="48.8547254" lon="2.3562354"/>
<node id="699046039" lat="48.8550266" lon="2.3559971"/>
<node id="700451789" lat="48.8586565" lon="2.3537620">
- <tag k="name" v="Hôtel Acacias"/>
+ <tag k="name" v="D'win"/>
+ <tag k="phone" v="+33144540505"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -3508,11 +2604,6 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="702306855" lat="48.8572250" lon="2.3543875"/>
- <node id="702307590" lat="48.8567557" lon="2.3551825">
- <tag k="name" v="Hôtel Rivoli"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="702405541" lat="48.8267304" lon="2.3324502">
<tag k="tourism" v="hotel"/>
</node>
@@ -3521,6 +2612,20 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="702915187" lat="48.8564036" lon="2.3569918"/>
+ <node id="702915438" lat="48.8564273" lon="2.3570829"/>
+ <node id="702915717" lat="48.8564398" lon="2.3570356"/>
+ <node id="702915914" lat="48.8564129" lon="2.3569599"/>
+ <node id="702915978" lat="48.8565291" lon="2.3570411"/>
+ <node id="702916028" lat="48.8565011" lon="2.3571319"/>
+ <node id="702916088" lat="48.8565174" lon="2.3570789">
+ <tag k="addr:housenumber" v="31"/>
+ <tag k="addr:street" v="Rue du Roi de Sicile"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="702916104" lat="48.8564008" lon="2.3570078"/>
+ <node id="702916254" lat="48.8564379" lon="2.3569774"/>
+ <node id="702916270" lat="48.8564275" lon="2.3570778"/>
<node id="703339736" lat="48.8691274" lon="2.3007665">
<tag k="name" v="Prince de Galles"/>
<tag k="source" v="survey"/>
@@ -3528,16 +2633,33 @@
<tag k="tourism" v="hotel"/>
<tag k="wikidata" v="Q3145636"/>
</node>
+ <node id="703460762" lat="48.8552701" lon="2.3624879">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue d'Ormesson"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="703460832" lat="48.8552810" lon="2.3624489"/>
+ <node id="703460893" lat="48.8552554" lon="2.3625403"/>
<node id="703460922" lat="48.8555439" lon="2.3632131">
<tag k="name" v="Hôtel Jeanne d'Arc"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="703460951" lat="48.8551906" lon="2.3624096"/>
<node id="703461067" lat="48.8550844" lon="2.3634743">
<tag k="name" v="Hôtel Turenne"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="703461090" lat="48.8551694" lon="2.3624817"/>
+ <node id="703461112" lat="48.8551950" lon="2.3623914"/>
+ <node id="703619127" lat="48.8448008" lon="2.3521483">
+ <tag k="addr:housenumber" v="54"/>
+ <tag k="addr:street" v="Rue Monge"/>
+ <tag k="name" v="Hôtel des Nations Saint-Germain"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="703723123" lat="48.8442570" lon="2.3445852"/>
<node id="703723146" lat="48.8442620" lon="2.3445608"/>
<node id="703723169" lat="48.8442961" lon="2.3445770"/>
@@ -3555,16 +2677,6 @@
<tag k="addr:street" v="Rue Saint-Antoine"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="703870928" lat="48.8544026" lon="2.3636954">
- <tag k="addr:housenumber" v="62"/>
- <tag k="addr:street" v="Rue Saint-Antoine"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="703987712" lat="48.8540443" lon="2.3674256"/>
- <node id="703987959" lat="48.8540258" lon="2.3676714"/>
- <node id="703988242" lat="48.8539358" lon="2.3674505"/>
- <node id="703988543" lat="48.8539401" lon="2.3674442"/>
- <node id="703988767" lat="48.8539205" lon="2.3676519"/>
<node id="705045827" lat="48.8655367" lon="2.3107584"/>
<node id="705045828" lat="48.8655448" lon="2.3107577"/>
<node id="705045829" lat="48.8655444" lon="2.3107484"/>
@@ -3932,7 +3044,7 @@
<node id="705056082" lat="48.8503741" lon="2.3621762"/>
<node id="705056087" lat="48.8507062" lon="2.3620368"/>
<node id="705056120" lat="48.8506295" lon="2.3618684"/>
- <node id="705056152" lat="48.8530530" lon="2.3612311"/>
+ <node id="705056152" lat="48.8530863" lon="2.3611946"/>
<node id="705056162" lat="48.8503419" lon="2.3622167"/>
<node id="705056183" lat="48.8503084" lon="2.3623814">
<tag k="addr:housenumber" v="9"/>
@@ -3968,19 +3080,35 @@
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="706744041" lat="48.8674482" lon="2.3623261"/>
+ <node id="706744062" lat="48.8673672" lon="2.3626441"/>
+ <node id="706744095" lat="48.8674426" lon="2.3624952"/>
+ <node id="706744107" lat="48.8674456" lon="2.3623227"/>
+ <node id="706744136" lat="48.8673752" lon="2.3626102"/>
+ <node id="706744144" lat="48.8674219" lon="2.3624699"/>
+ <node id="706744231" lat="48.8673985" lon="2.3626519"/>
+ <node id="706744241" lat="48.8674151" lon="2.3626194"/>
<node id="706744257" lat="48.8682462" lon="2.3617582">
<tag k="name" v="Hôtel de la Paix République"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="707236992" lat="48.8418616" lon="2.3576657"/>
+ <node id="706744260" lat="48.8673626" lon="2.3622872"/>
+ <node id="706744280" lat="48.8673069" lon="2.3625774"/>
+ <node id="706744292" lat="48.8673357" lon="2.3624273">
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:street" v="Rue Meslay"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="706744306" lat="48.8673747" lon="2.3626622"/>
+ <node id="707236992" lat="48.8418634" lon="2.3576646"/>
<node id="707237071" lat="48.8418642" lon="2.3576641"/>
- <node id="707237117" lat="48.8418928" lon="2.3577753"/>
- <node id="707237124" lat="48.8414538" lon="2.3566619"/>
- <node id="707237167" lat="48.8418903" lon="2.3577769"/>
+ <node id="707237117" lat="48.8418928" lon="2.3577754"/>
+ <node id="707237124" lat="48.8414412" lon="2.3566018"/>
+ <node id="707237167" lat="48.8418904" lon="2.3577768"/>
<node id="707317041" lat="48.8678710" lon="2.3558815">
- <tag k="name" v="Hôtel Nazareth"/>
+ <tag k="name" v="Nazareth"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -3988,7 +3116,7 @@
<tag k="addr:housenumber" v="6"/>
<tag k="addr:postcode" v="75003"/>
<tag k="addr:street" v="Rue Montgolfier"/>
- <tag k="name" v="Austin's Arts et Métiers Hôtel"/>
+ <tag k="name" v="Austin's Arts et Métiers"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -4004,7 +3132,9 @@
<node id="707827645" lat="48.8664540" lon="2.3608723">
<tag k="addr:housenumber" v="76"/>
<tag k="addr:street" v="Rue de Turbigo"/>
+ <tag k="name" v="Le Relais du Marais"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="708188554" lat="48.8642767" lon="2.3578802"/>
@@ -4032,7 +3162,18 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="708490850" lat="48.8641449" lon="2.3576106"/>
- <node id="708980733" lat="48.8614284" lon="2.3554271"/>
+ <node id="708598665" lat="48.8506553" lon="2.3420106">
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:street" v="Rue de l'École de Médecine"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="708598671" lat="48.8506844" lon="2.3421647"/>
+ <node id="708598675" lat="48.8507553" lon="2.3419592"/>
+ <node id="708598678" lat="48.8506800" lon="2.3421629"/>
+ <node id="708598689" lat="48.8506935" lon="2.3419094"/>
+ <node id="708598705" lat="48.8506163" lon="2.3421140"/>
+ <node id="708598740" lat="48.8506777" lon="2.3421659"/>
+ <node id="708598761" lat="48.8507416" lon="2.3420001"/>
<node id="708980738" lat="48.8610395" lon="2.3557672">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -4040,25 +3181,22 @@
<tag k="addr:street" v="Rue du Temple"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="708980750" lat="48.8613039" lon="2.3551442"/>
<node id="708980793" lat="48.8612435" lon="2.3550663"/>
<node id="708980809" lat="48.8611620" lon="2.3551684"/>
<node id="708980816" lat="48.8613423" lon="2.3556515"/>
- <node id="708980832" lat="48.8615482" lon="2.3553745"/>
<node id="708980871" lat="48.8612626" lon="2.3558561"/>
<node id="708980873" lat="48.8608822" lon="2.3555189"/>
<node id="708980879" lat="48.8612087" lon="2.3559870"/>
- <node id="708980893" lat="48.8613433" lon="2.3549951"/>
<node id="708980897" lat="48.8611197" lon="2.3552208"/>
<node id="708980918" lat="48.8613714" lon="2.3555744"/>
<node id="708980940" lat="48.8615325" lon="2.3555859"/>
- <node id="708980981" lat="48.8614445" lon="2.3554075"/>
<node id="708981018" lat="48.8609469" lon="2.3554340"/>
<node id="708981041" lat="48.8612604" lon="2.3550461"/>
<node id="708981060" lat="48.8615009" lon="2.3555634"/>
<node id="708981076" lat="48.8609488" lon="2.3554328"/>
+ <node id="708981079" lat="48.8613144" lon="2.3549470"/>
<node id="708981083" lat="48.8615862" lon="2.3554416"/>
- <node id="708981113" lat="48.8612865" lon="2.3551655"/>
+ <node id="708981107" lat="48.8613751" lon="2.3548727"/>
<node id="708981117" lat="48.8609506" lon="2.3556268">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -4073,12 +3211,9 @@
<tag k="addr:street" v="Rue du Temple"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="708981133" lat="48.8612735" lon="2.3550854"/>
<node id="708981149" lat="48.8612854" lon="2.3557957"/>
<node id="708981159" lat="48.8613269" lon="2.3556922"/>
- <node id="708981222" lat="48.8614761" lon="2.3554623"/>
<node id="708981267" lat="48.8612702" lon="2.3558336"/>
- <node id="708981286" lat="48.8613266" lon="2.3549632"/>
<node id="708981305" lat="48.8613050" lon="2.3549892"/>
<node id="708981308" lat="48.8614621" lon="2.3556604"/>
<node id="708981329" lat="48.8613242" lon="2.3549662"/>
@@ -4102,150 +3237,13 @@
<tag k="addr:street" v="Rue des Bernardins"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="715635960" lat="48.8599228" lon="2.3606118"/>
- <node id="715635976" lat="48.8593366" lon="2.3596778"/>
- <node id="715635991" lat="48.8600560" lon="2.3570115"/>
- <node id="715635996" lat="48.8596519" lon="2.3588993"/>
- <node id="715636003" lat="48.8595358" lon="2.3599150"/>
- <node id="715636039" lat="48.8610539" lon="2.3583596"/>
- <node id="715636051" lat="48.8600350" lon="2.3570264"/>
- <node id="715636067" lat="48.8595353" lon="2.3579598"/>
- <node id="715636069" lat="48.8600632" lon="2.3603520"/>
- <node id="715636098" lat="48.8594660" lon="2.3592181"/>
- <node id="715636125" lat="48.8594703" lon="2.3598410"/>
- <node id="715636148" lat="48.8595672" lon="2.3600056"/>
- <node id="715636154" lat="48.8593922" lon="2.3594445"/>
- <node id="715636184" lat="48.8606336" lon="2.3592131"/>
- <node id="715636186" lat="48.8593268" lon="2.3596670"/>
- <node id="715636201" lat="48.8600883" lon="2.3570012"/>
- <node id="715636210" lat="48.8597316" lon="2.3574230"/>
- <node id="715636240" lat="48.8606843" lon="2.3591110"/>
- <node id="715636265" lat="48.8600308" lon="2.3604207"/>
- <node id="715636282" lat="48.8593576" lon="2.3597188"/>
- <node id="715636307" lat="48.8595400" lon="2.3599276"/>
- <node id="715636330" lat="48.8611508" lon="2.3581819"/>
- <node id="715636332" lat="48.8594475" lon="2.3598531"/>
- <node id="715636339" lat="48.8599907" lon="2.3570889"/>
- <node id="715636356" lat="48.8595562" lon="2.3599485"/>
- <node id="715636385" lat="48.8604584" lon="2.3595700"/>
- <node id="715636425" lat="48.8594941" lon="2.3598645"/>
- <node id="715636438" lat="48.8605291" lon="2.3574959"/>
- <node id="715636446" lat="48.8597892" lon="2.3574047"/>
- <node id="715636447" lat="48.8595889" lon="2.3600658"/>
- <node id="715636466" lat="48.8592965" lon="2.3596249"/>
- <node id="715636481" lat="48.8595135" lon="2.3591207"/>
- <node id="715636486" lat="48.8595960" lon="2.3600776"/>
- <node id="715636494" lat="48.8596937" lon="2.3582446"/>
- <node id="715636511" lat="48.8606828" lon="2.3591095"/>
- <node id="715636514" lat="48.8593319" lon="2.3596812"/>
- <node id="715636527" lat="48.8600742" lon="2.3570047"/>
- <node id="715636542" lat="48.8595757" lon="2.3590471"/>
- <node id="715636575" lat="48.8606944" lon="2.3590682"/>
- <node id="715636584" lat="48.8600444" lon="2.3570143"/>
- <node id="715636597" lat="48.8596279" lon="2.3581289"/>
- <node id="715636599" lat="48.8600398" lon="2.3603945"/>
- <node id="715636620" lat="48.8594395" lon="2.3598382"/>
- <node id="715636630" lat="48.8594940" lon="2.3592519"/>
- <node id="715636648" lat="48.8595422" lon="2.3599330"/>
- <node id="715636659" lat="48.8605828" lon="2.3575400">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="58"/>
- <tag k="addr:street" v="Rue des Archives"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="715636663" lat="48.8594615" lon="2.3598410"/>
- <node id="715636684" lat="48.8595684" lon="2.3599898"/>
- <node id="715636693" lat="48.8594989" lon="2.3577474">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="56"/>
- <tag k="addr:street" v="Rue des Francs Bourgeois"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="715636700" lat="48.8594110" lon="2.3594081"/>
- <node id="715636748" lat="48.8606146" lon="2.3592513"/>
- <node id="715636751" lat="48.8595094" lon="2.3598878"/>
- <node id="715636765" lat="48.8595149" lon="2.3591225"/>
- <node id="715636768" lat="48.8600962" lon="2.3570053"/>
- <node id="715636774" lat="48.8597329" lon="2.3574250"/>
- <node id="715636776" lat="48.8595942" lon="2.3600794"/>
- <node id="715636811" lat="48.8599280" lon="2.3606119"/>
- <node id="715636830" lat="48.8595244" lon="2.3599012">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="87"/>
- <tag k="addr:street" v="Rue Vieille du Temple"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="715636837" lat="48.8593579" lon="2.3597103"/>
- <node id="715636862" lat="48.8595420" lon="2.3599231"/>
- <node id="715636898" lat="48.8610586" lon="2.3583641"/>
- <node id="715636913" lat="48.8600319" lon="2.3570220"/>
- <node id="715636921" lat="48.8594539" lon="2.3578095"/>
- <node id="715636923" lat="48.8600707" lon="2.3603523"/>
- <node id="715636981" lat="48.8601250" lon="2.3602472"/>
- <node id="715637006" lat="48.8594849" lon="2.3598527"/>
- <node id="715637013" lat="48.8605403" lon="2.3575029"/>
- <node id="715637017" lat="48.8598539" lon="2.3585069"/>
- <node id="715637031" lat="48.8598353" lon="2.3573314"/>
- <node id="715637034" lat="48.8595585" lon="2.3600229"/>
- <node id="715637040" lat="48.8593697" lon="2.3594854"/>
- <node id="715637042" lat="48.8594671" lon="2.3592158"/>
- <node id="715637082" lat="48.8606321" lon="2.3592119"/>
- <node id="715637085" lat="48.8593268" lon="2.3596715"/>
- <node id="715637093" lat="48.8600737" lon="2.3570002"/>
- <node id="715637094" lat="48.8595135" lon="2.3598880"/>
- <node id="715637103" lat="48.8597574" lon="2.3573872"/>
- <node id="715637130" lat="48.8607010" lon="2.3590751"/>
- <node id="715637136" lat="48.8597267" lon="2.3574335">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="58"/>
- <tag k="addr:street" v="Rue des Francs Bourgeois"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="715637139" lat="48.8600549" lon="2.3570080"/>
- <node id="715637152" lat="48.8600402" lon="2.3604073"/>
- <node id="715637178" lat="48.8595610" lon="2.3590284"/>
- <node id="715637180" lat="48.8594194" lon="2.3598114"/>
- <node id="715637190" lat="48.8596197" lon="2.3581140"/>
- <node id="715637198" lat="48.8596722" lon="2.3601947"/>
- <node id="715637209" lat="48.8595433" lon="2.3599300"/>
- <node id="715637224" lat="48.8606563" lon="2.3576210"/>
- <node id="715637225" lat="48.8594564" lon="2.3598427"/>
- <node id="715637242" lat="48.8595653" lon="2.3599709"/>
- <node id="715637253" lat="48.8594809" lon="2.3592797"/>
- <node id="715637256" lat="48.8605149" lon="2.3594547"/>
- <node id="715637277" lat="48.8595046" lon="2.3598820"/>
- <node id="715637281" lat="48.8600992" lon="2.3570023"/>
- <node id="715637285" lat="48.8597682" lon="2.3574042"/>
- <node id="715637286" lat="48.8595873" lon="2.3600680"/>
- <node id="715744219" lat="48.8589037" lon="2.3616854"/>
- <node id="715744232" lat="48.8591840" lon="2.3620044"/>
- <node id="715744237" lat="48.8591594" lon="2.3620623"/>
- <node id="715744246" lat="48.8590496" lon="2.3619462"/>
- <node id="715744260" lat="48.8591558" lon="2.3620628"/>
- <node id="715744274" lat="48.8590662" lon="2.3616558"/>
- <node id="715744277" lat="48.8589439" lon="2.3618870"/>
- <node id="715744284" lat="48.8592543" lon="2.3618670"/>
- <node id="715744289" lat="48.8589131" lon="2.3618540"/>
- <node id="715744305" lat="48.8590327" lon="2.3619791"/>
- <node id="715744341" lat="48.8591736" lon="2.3620240"/>
- <node id="715744370" lat="48.8591236" lon="2.3620289"/>
- <node id="715744378" lat="48.8591282" lon="2.3617266"/>
- <node id="715744382" lat="48.8589712" lon="2.3615459"/>
- <node id="715744390" lat="48.8591983" lon="2.3619752"/>
- <node id="715744410" lat="48.8589603" lon="2.3619034"/>
- <node id="715744434" lat="48.8588543" lon="2.3617919"/>
- <node id="715744449" lat="48.8592214" lon="2.3619306">
- <tag k="addr:housenumber" v="1"/>
- <tag k="addr:street" v="Rue de la Perle"/>
+ <node id="715356442" lat="48.8476512" lon="2.3517453">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue des Écoles"/>
+ <tag k="name" v="Hôtel Quartier Latin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
</node>
- <node id="715744451" lat="48.8591763" lon="2.3620290"/>
- <node id="715744461" lat="48.8590046" lon="2.3619508"/>
- <node id="715744490" lat="48.8590786" lon="2.3616699"/>
<node id="715963536" lat="48.8597560" lon="2.3620109"/>
<node id="715963539" lat="48.8600823" lon="2.3622936"/>
<node id="715963544" lat="48.8596301" lon="2.3622302"/>
@@ -4300,7 +3298,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="715963700" lat="48.8596287" lon="2.3622290"/>
- <node id="715963702" lat="48.8602544" lon="2.3620151"/>
+ <node id="715963702" lat="48.8602500" lon="2.3620142"/>
<node id="715963703" lat="48.8597268" lon="2.3614988"/>
<node id="715963711" lat="48.8597213" lon="2.3618469"/>
<node id="715963726" lat="48.8598959" lon="2.3615496"/>
@@ -4412,8 +3410,8 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
</node>
<node id="726567920" lat="48.8609881" lon="2.3789048">
- <tag k="addr:housenumber" v="1"/>
- <tag k="addr:street" v="Rue Du Général Blaise"/>
+ <tag k="contact:housenumber" v="1"/>
+ <tag k="contact:street" v="Rue du Général Blaise"/>
<tag k="name" v="Gardette Park Hôtel"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -4427,20 +3425,33 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="729868303" lat="48.8644122" lon="2.3662794">
- <tag k="contact:phone" v="+33-0147003346"/>
+ <tag k="contact:phone" v="+33 1 47 00 33 46"/>
<tag k="name" v="Printania"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="732351563" lat="48.8657522" lon="2.3088881">
+ <tag k="name" v="Hôtel la Résidence du Roy"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="734695116" lat="48.8442494" lon="2.3422817">
<tag k="name" v="Hôtel Gay-Lussac"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="735171928" lat="48.8794453" lon="2.3684329">
- <tag k="name" v="Ibis"/>
+ <tag k="brand" v="Ibis"/>
+ <tag k="email" v="h0900@accor.com"/>
+ <tag k="fax" v="+33 1 42 08 21 40"/>
+ <tag k="name" v="Paris Canal Saint-Martin"/>
+ <tag k="operator" v="Accor"/>
+ <tag k="phone" v="+33142012121"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="735172066" lat="48.8811018" lon="2.3654227">
- <tag k="name" v="Campanile"/>
+ <tag k="name" v="Hôtel Paris Louis Blanc"/>
+ <tag k="source" v="survey 11/2017"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="739801720" lat="48.8429257" lon="2.3631379">
@@ -4463,6 +3474,27 @@
<node id="744804568" lat="48.8502906" lon="2.3394648"/>
<node id="744804589" lat="48.8505106" lon="2.3394080"/>
<node id="744804590" lat="48.8502849" lon="2.3394911"/>
+ <node id="755853031" lat="48.8455450" lon="2.3409997"/>
+ <node id="755853045" lat="48.8455578" lon="2.3410552"/>
+ <node id="755853049" lat="48.8456104" lon="2.3409172"/>
+ <node id="755853051" lat="48.8454912" lon="2.3410690"/>
+ <node id="755853069" lat="48.8455771" lon="2.3408937">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Impasse Royer-Collard"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ </node>
+ <node id="755853080" lat="48.8455375" lon="2.3410244"/>
+ <node id="755853095" lat="48.8455263" lon="2.3410393"/>
+ <node id="755853112" lat="48.8454946" lon="2.3410260"/>
+ <node id="755853117" lat="48.8455559" lon="2.3410613"/>
+ <node id="755853121" lat="48.8455403" lon="2.3410618"/>
+ <node id="755853133" lat="48.8454809" lon="2.3410708"/>
+ <node id="755853149" lat="48.8455304" lon="2.3410259"/>
+ <node id="755853151" lat="48.8455794" lon="2.3410232"/>
+ <node id="755853164" lat="48.8455331" lon="2.3410380"/>
+ <node id="755853176" lat="48.8455153" lon="2.3410667"/>
+ <node id="755853178" lat="48.8455410" lon="2.3408684"/>
+ <node id="755853189" lat="48.8455542" lon="2.3410600"/>
<node id="761249978" lat="48.8381865" lon="2.3497555"/>
<node id="761249982" lat="48.8381037" lon="2.3497583"/>
<node id="761250014" lat="48.8382151" lon="2.3496145"/>
@@ -4482,141 +3514,260 @@
<tag k="addr:street" v="Rue Pascal"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
</node>
+ <node id="772945980" lat="48.8739425" lon="2.3623762">
+ <tag k="addr:housenumber" v="46"/>
+ <tag k="addr:street" v="Rue Lucien Sampaix"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ </node>
<node id="773602205" lat="48.8675046" lon="2.3539915">
<tag k="name" v="Little Palace Hotel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="778227840" lat="48.8544758" lon="2.3355256"/>
- <node id="778227958" lat="48.8544704" lon="2.3355283"/>
+ <node id="778228133" lat="48.8546703" lon="2.3356383"/>
<node id="778228209" lat="48.8547056" lon="2.3356214"/>
- <node id="778228264" lat="48.8544197" lon="2.3357624"/>
- <node id="778228402" lat="48.8545028" lon="2.3354171"/>
- <node id="778228434" lat="48.8545976" lon="2.3359087"/>
- <node id="778228529" lat="48.8544750" lon="2.3355298"/>
- <node id="778228570" lat="48.8545229" lon="2.3353342"/>
- <node id="778228894" lat="48.8544546" lon="2.3356656"/>
+ <node id="778228313" lat="48.8548158" lon="2.3352905"/>
+ <node id="778228555" lat="48.8547502" lon="2.3352432"/>
<node id="778228962" lat="48.8547512" lon="2.3354841"/>
+ <node id="778229117" lat="48.8547702" lon="2.3354276"/>
<node id="778229154" lat="48.8545166" lon="2.3353256"/>
- <node id="778229333" lat="48.8545162" lon="2.3353298"/>
- <node id="778229598" lat="48.8546402" lon="2.3357880"/>
- <node id="778229776" lat="48.8544272" lon="2.3356425"/>
+ <node id="778229288" lat="48.8545988" lon="2.3351335"/>
+ <node id="778229555" lat="48.8545733" lon="2.3351149"/>
+ <node id="778229678" lat="48.8547534" lon="2.3354771"/>
<node id="780319544" lat="48.8496648" lon="2.3402192">
<tag k="name" v="Hôtel Saint-Paul Rive Gauche"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="782249947" lat="48.8357043" lon="2.4091177"/>
- <node id="782251472" lat="48.8354662" lon="2.4097293"/>
- <node id="782251973" lat="48.8352110" lon="2.4086634"/>
- <node id="782253229" lat="48.8353809" lon="2.4099400"/>
- <node id="782253443" lat="48.8350430" lon="2.4091086"/>
- <node id="782253794" lat="48.8355576" lon="2.4094266"/>
- <node id="782254066" lat="48.8353749" lon="2.4100985"/>
- <node id="782254679" lat="48.8354185" lon="2.4099711"/>
- <node id="782255124" lat="48.8354574" lon="2.4097230"/>
- <node id="782256060" lat="48.8350001" lon="2.4098007"/>
- <node id="782256825" lat="48.8353758" lon="2.4100859"/>
- <node id="782259100" lat="48.8354127" lon="2.4099789"/>
- <node id="782259443" lat="48.8355662" lon="2.4094335"/>
- <node id="782260533" lat="48.8355697" lon="2.4093893"/>
- <node id="782260755" lat="48.8350543" lon="2.4091176"/>
- <node id="782260813" lat="48.8353785" lon="2.4100894"/>
- <node id="782260932" lat="48.8353500" lon="2.4087726"/>
- <node id="782261025" lat="48.8356667" lon="2.4092359"/>
- <node id="782261039" lat="48.8348422" lon="2.4097310"/>
- <node id="782261242" lat="48.8354426" lon="2.4097604"/>
- <node id="782262225" lat="48.8349854" lon="2.4098450"/>
- <node id="782262510" lat="48.8354439" lon="2.4097604"/>
- <node id="782263390" lat="48.8355682" lon="2.4093872"/>
- <node id="782263947" lat="48.8356296" lon="2.4092062"/>
- <node id="782264816" lat="48.8356699" lon="2.4092268"/>
- <node id="782264853" lat="48.8354156" lon="2.4099802"/>
- <node id="782265019" lat="48.8350001" lon="2.4092810"/>
- <node id="782265746" lat="48.8356677" lon="2.4092240"/>
- <node id="782266667" lat="48.8353351" lon="2.4088162"/>
- <node id="782267844" lat="48.8357099" lon="2.4091099"/>
- <node id="782270170" lat="48.8349871" lon="2.4092706"/>
- <node id="782270343" lat="48.8357070" lon="2.4091183"/>
- <node id="782600968" lat="48.8484123" lon="2.3341363"/>
- <node id="782600979" lat="48.8482427" lon="2.3349204"/>
- <node id="782601113" lat="48.8487242" lon="2.3338868"/>
- <node id="782601145" lat="48.8484068" lon="2.3341330"/>
- <node id="782601256" lat="48.8482708" lon="2.3339755"/>
- <node id="782601299" lat="48.8487308" lon="2.3339791"/>
- <node id="782601367" lat="48.8484128" lon="2.3341329"/>
- <node id="782601483" lat="48.8482683" lon="2.3339598"/>
- <node id="782601507" lat="48.8484146" lon="2.3338763"/>
- <node id="782601546" lat="48.8484068" lon="2.3341364"/>
- <node id="782601636" lat="48.8482498" lon="2.3348678"/>
- <node id="782601652" lat="48.8484068" lon="2.3339298"/>
- <node id="782601675" lat="48.8487223" lon="2.3339796"/>
- <node id="782601835" lat="48.8482676" lon="2.3339752"/>
- <node id="782601850" lat="48.8484065" lon="2.3339441"/>
- <node id="782601870" lat="48.8487862" lon="2.3341154"/>
- <node id="782601893" lat="48.8484008" lon="2.3341413"/>
- <node id="782602031" lat="48.8487379" lon="2.3339740"/>
- <node id="782602058" lat="48.8487864" lon="2.3341604"/>
- <node id="782602060" lat="48.8483707" lon="2.3349254"/>
- <node id="782602071" lat="48.8483812" lon="2.3349112"/>
- <node id="782602219" lat="48.8482708" lon="2.3339376"/>
- <node id="782602244" lat="48.8484049" lon="2.3339445"/>
- <node id="782602262" lat="48.8487839" lon="2.3339745"/>
- <node id="782602289" lat="48.8484010" lon="2.3341337"/>
- <node id="782602402" lat="48.8482692" lon="2.3339234"/>
- <node id="782602427" lat="48.8487311" lon="2.3339741"/>
- <node id="782602448" lat="48.8487267" lon="2.3341518"/>
+ <node id="782600968" lat="48.8484125" lon="2.3341365"/>
+ <node id="782600979" lat="48.8482425" lon="2.3349204"/>
+ <node id="782601145" lat="48.8484068" lon="2.3341335"/>
+ <node id="782601256" lat="48.8482714" lon="2.3339755"/>
+ <node id="782601367" lat="48.8484126" lon="2.3341334"/>
+ <node id="782601483" lat="48.8482681" lon="2.3339597"/>
+ <node id="782601507" lat="48.8484153" lon="2.3338706"/>
+ <node id="782601546" lat="48.8484068" lon="2.3341362"/>
+ <node id="782601636" lat="48.8482492" lon="2.3348684"/>
+ <node id="782601652" lat="48.8484060" lon="2.3339305"/>
+ <node id="782601835" lat="48.8482678" lon="2.3339753"/>
+ <node id="782601850" lat="48.8484058" lon="2.3339443"/>
+ <node id="782601893" lat="48.8484009" lon="2.3341413"/>
+ <node id="782602058" lat="48.8487852" lon="2.3341606"/>
+ <node id="782602060" lat="48.8483707" lon="2.3349249"/>
+ <node id="782602071" lat="48.8483819" lon="2.3349113"/>
+ <node id="782602219" lat="48.8482707" lon="2.3339375"/>
+ <node id="782602244" lat="48.8484057" lon="2.3339443"/>
+ <node id="782602289" lat="48.8484011" lon="2.3341332"/>
+ <node id="782602402" lat="48.8482691" lon="2.3339226"/>
+ <node id="782602448" lat="48.8487267" lon="2.3341507"/>
<node id="782602457" lat="48.8483706" lon="2.3349290"/>
- <node id="782602474" lat="48.8484017" lon="2.3341413"/>
- <node id="782602613" lat="48.8482701" lon="2.3339598"/>
- <node id="782602631" lat="48.8484104" lon="2.3339603"/>
- <node id="782602657" lat="48.8487376" lon="2.3339725"/>
- <node id="782602673" lat="48.8484149" lon="2.3341340"/>
- <node id="782602792" lat="48.8482687" lon="2.3339373"/>
- <node id="782602809" lat="48.8484138" lon="2.3339569"/>
- <node id="782602834" lat="48.8487266" lon="2.3341574"/>
- <node id="782602840" lat="48.8482527" lon="2.3349210"/>
- <node id="782602853" lat="48.8483826" lon="2.3349296"/>
- <node id="782602998" lat="48.8482439" lon="2.3348688"/>
- <node id="782603026" lat="48.8484048" lon="2.3339600"/>
- <node id="782603044" lat="48.8487897" lon="2.3339768"/>
- <node id="782603073" lat="48.8484148" lon="2.3341316"/>
- <node id="782603236" lat="48.8484103" lon="2.3339570"/>
- <node id="782603266" lat="48.8482528" lon="2.3349176"/>
- <node id="782603284" lat="48.8483834" lon="2.3349114"/>
- <node id="782603465" lat="48.8487839" lon="2.3339769"/>
+ <node id="782602474" lat="48.8484010" lon="2.3341413"/>
+ <node id="782602613" lat="48.8482702" lon="2.3339599"/>
+ <node id="782602631" lat="48.8484103" lon="2.3339603"/>
+ <node id="782602673" lat="48.8484148" lon="2.3341335"/>
+ <node id="782602792" lat="48.8482688" lon="2.3339374"/>
+ <node id="782602809" lat="48.8484132" lon="2.3339570"/>
+ <node id="782602834" lat="48.8487266" lon="2.3341572"/>
+ <node id="782602840" lat="48.8482529" lon="2.3349210"/>
+ <node id="782602853" lat="48.8483828" lon="2.3349297"/>
+ <node id="782602998" lat="48.8482438" lon="2.3348681"/>
+ <node id="782603026" lat="48.8484054" lon="2.3339600"/>
+ <node id="782603044" lat="48.8487919" lon="2.3338922"/>
+ <node id="782603073" lat="48.8484149" lon="2.3341327"/>
+ <node id="782603236" lat="48.8484104" lon="2.3339569"/>
+ <node id="782603266" lat="48.8482529" lon="2.3349181"/>
+ <node id="782603284" lat="48.8483832" lon="2.3349114"/>
+ <node id="784297701" lat="48.8716740" lon="2.3498503"/>
+ <node id="784298784" lat="48.8791524" lon="2.3577635"/>
+ <node id="784298864" lat="48.8753371" lon="2.3579542"/>
+ <node id="784298868" lat="48.8781464" lon="2.3573130"/>
+ <node id="784299283" lat="48.8752663" lon="2.3582126"/>
+ <node id="784299612" lat="48.8797214" lon="2.3502590"/>
+ <node id="784300157" lat="48.8792859" lon="2.3578284"/>
+ <node id="784302701" lat="48.8794892" lon="2.3582625"/>
+ <node id="784302762" lat="48.8739401" lon="2.3625029"/>
+ <node id="784304548" lat="48.8709179" lon="2.3517150"/>
+ <node id="784304573" lat="48.8836545" lon="2.3595135"/>
+ <node id="784305775" lat="48.8801014" lon="2.3515563"/>
+ <node id="784306417" lat="48.8725495" lon="2.3555676"/>
+ <node id="784306790" lat="48.8781546" lon="2.3572669"/>
+ <node id="784306858" lat="48.8792510" lon="2.3578115"/>
+ <node id="784307480" lat="48.8760885" lon="2.3572023"/>
+ <node id="784311602" lat="48.8725674" lon="2.3555840"/>
+ <node id="784312376" lat="48.8741356" lon="2.3500764"/>
+ <node id="784312916" lat="48.8764506" lon="2.3488035"/>
+ <node id="784312948" lat="48.8793926" lon="2.3582976"/>
+ <node id="784313326" lat="48.8801103" lon="2.3514756"/>
+ <node id="784314262" lat="48.8725293" lon="2.3555989"/>
+ <node id="784314982" lat="48.8719777" lon="2.3496710"/>
+ <node id="784315052" lat="48.8832595" lon="2.3594908"/>
+ <node id="784315105" lat="48.8742025" lon="2.3626501"/>
+ <node id="784315127" lat="48.8761504" lon="2.3576060"/>
<node id="784316020" lat="48.8793613" lon="2.3620142"/>
+ <node id="784317253" lat="48.8724850" lon="2.3558171"/>
+ <node id="784317436" lat="48.8701281" lon="2.3570379"/>
+ <node id="784317530" lat="48.8725053" lon="2.3557312"/>
<node id="784317543" lat="48.8780975" lon="2.3552272"/>
<node id="784317546" lat="48.8790956" lon="2.3620197"/>
+ <node id="784317644" lat="48.8729190" lon="2.3543358"/>
+ <node id="784317764" lat="48.8765459" lon="2.3541522"/>
+ <node id="784318309" lat="48.8711024" lon="2.3500660"/>
<node id="784318799" lat="48.8790537" lon="2.3620123"/>
+ <node id="784319451" lat="48.8782566" lon="2.3573831"/>
+ <node id="784319853" lat="48.8790428" lon="2.3577152"/>
<node id="784320067" lat="48.8789184" lon="2.3619602"/>
+ <node id="784320727" lat="48.8794535" lon="2.3584764"/>
+ <node id="784321125" lat="48.8835671" lon="2.3595836"/>
+ <node id="784321277" lat="48.8708919" lon="2.3518739"/>
+ <node id="784321732" lat="48.8740454" lon="2.3502383"/>
+ <node id="784323198" lat="48.8763786" lon="2.3487808"/>
+ <node id="784324182" lat="48.8741260" lon="2.3501862"/>
+ <node id="784325867" lat="48.8794407" lon="2.3585137"/>
+ <node id="784327994" lat="48.8700970" lon="2.3571686"/>
+ <node id="784328063" lat="48.8726410" lon="2.3553332"/>
<node id="784328068" lat="48.8728079" lon="2.3614220"/>
+ <node id="784328398" lat="48.8754236" lon="2.3581030">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue Saint-Laurent"/>
+ </node>
+ <node id="784331107" lat="48.8832878" lon="2.3594493"/>
+ <node id="784331295" lat="48.8763885" lon="2.3487466"/>
+ <node id="784332213" lat="48.8765759" lon="2.3540128"/>
+ <node id="784332591" lat="48.8711339" lon="2.3498382"/>
+ <node id="784333654" lat="48.8794179" lon="2.3585227"/>
+ <node id="784335105" lat="48.8835760" lon="2.3597167"/>
+ <node id="784335294" lat="48.8729131" lon="2.3586579"/>
+ <node id="784335408" lat="48.8794750" lon="2.3580240"/>
+ <node id="784336624" lat="48.8762098" lon="2.3572522"/>
+ <node id="784338169" lat="48.8725582" lon="2.3555416"/>
+ <node id="784339245" lat="48.8761917" lon="2.3573595"/>
+ <node id="784339355" lat="48.8760348" lon="2.3575664"/>
<node id="784339383" lat="48.8789093" lon="2.3619557"/>
+ <node id="784339692" lat="48.8752783" lon="2.3579048"/>
+ <node id="784339898" lat="48.8739843" lon="2.3503571"/>
+ <node id="784341261" lat="48.8831977" lon="2.3594423"/>
+ <node id="784342694" lat="48.8700823" lon="2.3571519"/>
+ <node id="784343265" lat="48.8741333" lon="2.3502566"/>
+ <node id="784345112" lat="48.8801018" lon="2.3514880"/>
+ <node id="784345206" lat="48.8763824" lon="2.3487606"/>
+ <node id="784345658" lat="48.8729877" lon="2.3541158"/>
+ <node id="784345976" lat="48.8716769" lon="2.3498565"/>
<node id="784346182" lat="48.8791773" lon="2.3620185"/>
+ <node id="784346648" lat="48.8791259" lon="2.3577557"/>
+ <node id="784348082" lat="48.8793491" lon="2.3586121"/>
+ <node id="784348666" lat="48.8725615" lon="2.3555334"/>
+ <node id="784349536" lat="48.8761328" lon="2.3569062"/>
+ <node id="784349599" lat="48.8764103" lon="2.3486137"/>
+ <node id="784349964" lat="48.8721695" lon="2.3495149"/>
+ <node id="784350251" lat="48.8700701" lon="2.3571561"/>
+ <node id="784350326" lat="48.8700916" lon="2.3570873"/>
+ <node id="784350593" lat="48.8765400" lon="2.3542809"/>
<node id="784350653" lat="48.8791981" lon="2.3620192"/>
+ <node id="784351390" lat="48.8719929" lon="2.3495915"/>
+ <node id="784353132" lat="48.8781458" lon="2.3573165"/>
+ <node id="784353426" lat="48.8740055" lon="2.3501599"/>
<node id="784354261" lat="48.8787862" lon="2.3619002"/>
+ <node id="784354326" lat="48.8738943" lon="2.3503390"/>
+ <node id="784354704" lat="48.8801310" lon="2.3516107"/>
<node id="784354812" lat="48.8792793" lon="2.3620188"/>
+ <node id="784355290" lat="48.8797240" lon="2.3502774"/>
+ <node id="784355434" lat="48.8836176" lon="2.3597086"/>
+ <node id="784356769" lat="48.8797160" lon="2.3502207"/>
+ <node id="784356961" lat="48.8791269" lon="2.3577512"/>
<node id="784357272" lat="48.8788705" lon="2.3619383"/>
<node id="784358766" lat="48.8746102" lon="2.3558012"/>
+ <node id="784360384" lat="48.8738929" lon="2.3623245"/>
+ <node id="784360650" lat="48.8765567" lon="2.3541554"/>
+ <node id="784361412" lat="48.8729441" lon="2.3585967"/>
+ <node id="784362425" lat="48.8709723" lon="2.3516231"/>
<node id="784363867" lat="48.8746383" lon="2.3556749"/>
+ <node id="784364136" lat="48.8725427" lon="2.3555688"/>
<node id="784364244" lat="48.8793963" lon="2.3620107"/>
+ <node id="784365419" lat="48.8835879" lon="2.3597496"/>
+ <node id="784366161" lat="48.8730364" lon="2.3585790"/>
+ <node id="784366556" lat="48.8740344" lon="2.3503672"/>
+ <node id="784368314" lat="48.8835798" lon="2.3597170"/>
+ <node id="784368326" lat="48.8719838" lon="2.3496403"/>
<node id="784369152" lat="48.8792691" lon="2.3622459"/>
+ <node id="784372611" lat="48.8726398" lon="2.3553363"/>
+ <node id="784372734" lat="48.8761863" lon="2.3573926"/>
+ <node id="784374768" lat="48.8765425" lon="2.3541753"/>
+ <node id="784375322" lat="48.8725785" lon="2.3554400"/>
+ <node id="784376161" lat="48.8794280" lon="2.3586282"/>
+ <node id="784376759" lat="48.8708944" lon="2.3515836"/>
<node id="784377482" lat="48.8780726" lon="2.3553908"/>
<node id="784377692" lat="48.8728311" lon="2.3614463"/>
+ <node id="784378707" lat="48.8835893" lon="2.3595870"/>
+ <node id="784378860" lat="48.8800969" lon="2.3515535"/>
+ <node id="784379099" lat="48.8832062" lon="2.3594487"/>
+ <node id="784379231" lat="48.8700749" lon="2.3571601"/>
<node id="784380704" lat="48.8795291" lon="2.3619864"/>
<node id="784382071" lat="48.8793203" lon="2.3620175"/>
+ <node id="784382472" lat="48.8730808" lon="2.3586946"/>
+ <node id="784382881" lat="48.8797314" lon="2.3503285"/>
<node id="784383731" lat="48.8795092" lon="2.3620434"/>
<node id="784383837" lat="48.8781685" lon="2.3554205"/>
+ <node id="784383976" lat="48.8797624" lon="2.3503319"/>
+ <node id="784385293" lat="48.8725815" lon="2.3555510"/>
<node id="784385304" lat="48.8792384" lon="2.3620179"/>
+ <node id="784385331" lat="48.8709221" lon="2.3516479"/>
+ <node id="784385703" lat="48.8739419" lon="2.3624961"/>
+ <node id="784385860" lat="48.8794574" lon="2.3584746"/>
+ <node id="784386044" lat="48.8836407" lon="2.3596951"/>
+ <node id="784386447" lat="48.8832487" lon="2.3594824"/>
+ <node id="784386472" lat="48.8742265" lon="2.3502766"/>
+ <node id="784386875" lat="48.8789905" lon="2.3579564"/>
+ <node id="784387031" lat="48.8794707" lon="2.3583552"/>
+ <node id="784387419" lat="48.8835537" lon="2.3596783"/>
<node id="784388465" lat="48.8728057" lon="2.3614303"/>
<node id="784388476" lat="48.8746905" lon="2.3558625"/>
+ <node id="784389066" lat="48.8762595" lon="2.3569549"/>
+ <node id="784389462" lat="48.8763925" lon="2.3487813"/>
+ <node id="784389705" lat="48.8800943" lon="2.3514620"/>
+ <node id="784390007" lat="48.8729689" lon="2.3586109"/>
+ <node id="784391385" lat="48.8700961" lon="2.3571622"/>
+ <node id="784391752" lat="48.8730586" lon="2.3541682"/>
+ <node id="784392149" lat="48.8793561" lon="2.3584742"/>
+ <node id="784392168" lat="48.8739049" lon="2.3502085"/>
<node id="784392507" lat="48.8728624" lon="2.3613314"/>
+ <node id="784392545" lat="48.8738608" lon="2.3624758"/>
+ <node id="784392566" lat="48.8701703" lon="2.3571113"/>
+ <node id="784393702" lat="48.8710128" lon="2.3498048"/>
<node id="784394160" lat="48.8794297" lon="2.3621207"/>
<node id="784394175" lat="48.8780880" lon="2.3552640"/>
+ <node id="784395579" lat="48.8801071" lon="2.3515569"/>
+ <node id="784396528" lat="48.8709240" lon="2.3517042"/>
+ <node id="784397013" lat="48.8710090" lon="2.3498763"/>
+ <node id="784397531" lat="48.8801037" lon="2.3514554"/>
+ <node id="784397577" lat="48.8719295" lon="2.3499255"/>
+ <node id="784397826" lat="48.8737217" lon="2.3521945"/>
+ <node id="784398020" lat="48.8754128" lon="2.3580177"/>
+ <node id="784399077" lat="48.8729489" lon="2.3586042"/>
+ <node id="784401623" lat="48.8717718" lon="2.3493402"/>
+ <node id="784402570" lat="48.8739416" lon="2.3625171"/>
+ <node id="784403247" lat="48.8724086" lon="2.3557746"/>
+ <node id="784404216" lat="48.8836450" lon="2.3596385"/>
+ <node id="784408372" lat="48.8742428" lon="2.3501011"/>
+ <node id="784409682" lat="48.8798461" lon="2.3503416"/>
+ <node id="784412474" lat="48.8794646" lon="2.3584759"/>
+ <node id="784413276" lat="48.8754253" lon="2.3580527"/>
+ <node id="784413869" lat="48.8726240" lon="2.3553763"/>
<node id="784414568" lat="48.8728370" lon="2.3613155"/>
+ <node id="784416706" lat="48.8831929" lon="2.3592914"/>
<node id="784416890" lat="48.8795402" lon="2.3621648"/>
+ <node id="784421311" lat="48.8701122" lon="2.3573076"/>
+ <node id="784421327" lat="48.8789978" lon="2.3579606"/>
+ <node id="784422300" lat="48.8725945" lon="2.3554029"/>
+ <node id="784422314" lat="48.8719493" lon="2.3498218"/>
+ <node id="784423519" lat="48.8763833" lon="2.3487828"/>
+ <node id="784423807" lat="48.8800902" lon="2.3515414"/>
<node id="784424535" lat="48.8780805" lon="2.3552231"/>
<node id="784424997" lat="48.8780772" lon="2.3552607"/>
+ <node id="784425996" lat="48.8800923" lon="2.3515473"/>
+ <node id="784427191" lat="48.8836647" lon="2.3593772"/>
<node id="784428707" lat="48.8788925" lon="2.3619487"/>
+ <node id="784429491" lat="48.8709434" lon="2.3517462"/>
+ <node id="784431758" lat="48.8737631" lon="2.3520338"/>
+ <node id="784436386" lat="48.8709239" lon="2.3518165"/>
<node id="784437084" lat="48.8604069" lon="2.3261896"/>
<node id="784437090" lat="48.8600812" lon="2.3272670"/>
<node id="784437095" lat="48.8599036" lon="2.3278508"/>
@@ -4747,36 +3898,146 @@
<node id="784437945" lat="48.8599598" lon="2.3276980"/>
<node id="784437951" lat="48.8599263" lon="2.3252943"/>
<node id="784437958" lat="48.8603730" lon="2.3263473"/>
+ <node id="784438272" lat="48.8753596" lon="2.3579731"/>
+ <node id="784438408" lat="48.8766826" lon="2.3540462"/>
+ <node id="784438511" lat="48.8729493" lon="2.3585994"/>
+ <node id="784439301" lat="48.8800436" lon="2.3515644"/>
+ <node id="784440572" lat="48.8797806" lon="2.3501215"/>
+ <node id="784441241" lat="48.8795839" lon="2.3584392"/>
+ <node id="784441252" lat="48.8739051" lon="2.3624983"/>
+ <node id="784441337" lat="48.8793678" lon="2.3578679"/>
<node id="784443291" lat="48.8728330" lon="2.3614394"/>
+ <node id="784443328" lat="48.8726083" lon="2.3554159"/>
<node id="784444257" lat="48.8746290" lon="2.3558156"/>
<node id="784444605" lat="48.8790037" lon="2.3619974"/>
+ <node id="784445171" lat="48.8783141" lon="2.3571771"/>
+ <node id="784446142" lat="48.8801071" lon="2.3514846"/>
+ <node id="784446871" lat="48.8701812" lon="2.3570743"/>
+ <node id="784447754" lat="48.8709619" lon="2.3516673"/>
<node id="784449056" lat="48.8781870" lon="2.3552499"/>
- <node id="784457336" lat="48.8787613" lon="2.3619436"/>
+ <node id="784450504" lat="48.8783896" lon="2.3571846"/>
+ <node id="784451101" lat="48.8794368" lon="2.3585308"/>
+ <node id="784451122" lat="48.8739083" lon="2.3624767"/>
+ <node id="784451381" lat="48.8736130" lon="2.3521172"/>
+ <node id="784451787" lat="48.8760669" lon="2.3573471"/>
+ <node id="784451859" lat="48.8832985" lon="2.3593106"/>
+ <node id="784452011" lat="48.8739150" lon="2.3624621"/>
+ <node id="784452485" lat="48.8739446" lon="2.3624914"/>
+ <node id="784452738" lat="48.8709130" lon="2.3516904"/>
+ <node id="784452844" lat="48.8801101" lon="2.3516050"/>
+ <node id="784453040" lat="48.8799927" lon="2.3515731"/>
+ <node id="784453771" lat="48.8740225" lon="2.3505035"/>
+ <node id="784453867" lat="48.8801141" lon="2.3515781"/>
+ <node id="784454453" lat="48.8835702" lon="2.3595437"/>
+ <node id="784454671" lat="48.8730262" lon="2.3585733"/>
+ <node id="784454761" lat="48.8729663" lon="2.3587966"/>
+ <node id="784454982" lat="48.8729590" lon="2.3585099"/>
+ <node id="784457336" lat="48.8787604" lon="2.3619352"/>
+ <node id="784457747" lat="48.8801645" lon="2.3514138"/>
+ <node id="784459223" lat="48.8728457" lon="2.3586300"/>
+ <node id="784459933" lat="48.8797389" lon="2.3502445"/>
+ <node id="784459941" lat="48.8765538" lon="2.3541792"/>
<node id="784459957" lat="48.8794342" lon="2.3621121"/>
+ <node id="784460210" lat="48.8835493" lon="2.3597664"/>
+ <node id="784461245" lat="48.8725820" lon="2.3552809"/>
<node id="784461280" lat="48.8793979" lon="2.3620273"/>
+ <node id="784462302" lat="48.8738853" lon="2.3504666"/>
+ <node id="784463203" lat="48.8730339" lon="2.3585724"/>
+ <node id="784463529" lat="48.8763932" lon="2.3487767"/>
+ <node id="784463721" lat="48.8718127" lon="2.3491288"/>
+ <node id="784464576" lat="48.8700956" lon="2.3571730"/>
<node id="784464761" lat="48.8794357" lon="2.3622224">
<tag k="addr:housenumber" v="3"/>
<tag k="addr:street" v="Rue du Château Landon"/>
</node>
+ <node id="784465315" lat="48.8792899" lon="2.3582466"/>
+ <node id="784466119" lat="48.8709130" lon="2.3518012"/>
+ <node id="784466401" lat="48.8797088" lon="2.3501704"/>
+ <node id="784466936" lat="48.8725530" lon="2.3556196"/>
+ <node id="784467252" lat="48.8835844" lon="2.3593625"/>
+ <node id="784467894" lat="48.8700766" lon="2.3571554"/>
+ <node id="784470564" lat="48.8701100" lon="2.3570255"/>
+ <node id="784470653" lat="48.8795309" lon="2.3582375"/>
+ <node id="784470795" lat="48.8794489" lon="2.3580253"/>
+ <node id="784470839" lat="48.8754182" lon="2.3581727"/>
<node id="784471155" lat="48.8795174" lon="2.3621660"/>
+ <node id="784471168" lat="48.8794213" lon="2.3585046"/>
<node id="784472188" lat="48.8747294" lon="2.3557325"/>
+ <node id="784473280" lat="48.8711157" lon="2.3500671"/>
+ <node id="784474132" lat="48.8793347" lon="2.3585778"/>
<node id="784474564" lat="48.8791377" lon="2.3620186"/>
+ <node id="784474637" lat="48.8729866" lon="2.3541194"/>
+ <node id="784475879" lat="48.8761235" lon="2.3575965"/>
+ <node id="784476536" lat="48.8783765" lon="2.3573990"/>
+ <node id="784477718" lat="48.8782112" lon="2.3573405"/>
+ <node id="784477725" lat="48.8739400" lon="2.3625103"/>
+ <node id="784478526" lat="48.8794490" lon="2.3584817"/>
+ <node id="784478757" lat="48.8836226" lon="2.3597301"/>
+ <node id="784481891" lat="48.8799974" lon="2.3515278"/>
+ <node id="784482025" lat="48.8800024" lon="2.3515756"/>
+ <node id="784482258" lat="48.8831820" lon="2.3594298"/>
+ <node id="784483296" lat="48.8720081" lon="2.3495118"/>
+ <node id="784485262" lat="48.8764778" lon="2.3486518"/>
+ <node id="784485322" lat="48.8742031" lon="2.3626477"/>
+ <node id="784485453" lat="48.8831839" lon="2.3594051"/>
+ <node id="784485514" lat="48.8729858" lon="2.3543790"/>
+ <node id="784485624" lat="48.8736615" lon="2.3519567"/>
+ <node id="784485764" lat="48.8766456" lon="2.3543138"/>
+ <node id="784486368" lat="48.8709994" lon="2.3500558"/>
+ <node id="784486836" lat="48.8794768" lon="2.3583600"/>
+ <node id="784488540" lat="48.8797453" lon="2.3502778"/>
+ <node id="784488628" lat="48.8782877" lon="2.3573184"/>
+ <node id="784489454" lat="48.8760338" lon="2.3575654"/>
+ <node id="784489599" lat="48.8800523" lon="2.3515654"/>
+ <node id="784491196" lat="48.8708761" lon="2.3516706"/>
+ <node id="784492683" lat="48.8701264" lon="2.3571107"/>
+ <node id="784493286" lat="48.8835918" lon="2.3595471"/>
+ <node id="784495437" lat="48.8708148" lon="2.3517812"/>
+ <node id="784495481" lat="48.8737684" lon="2.3520378"/>
<node id="784499599" lat="48.8746846" lon="2.3558582"/>
+ <node id="784502176" lat="48.8835247" lon="2.3597352"/>
+ <node id="784502180" lat="48.8794853" lon="2.3583663"/>
+ <node id="784502680" lat="48.8701066" lon="2.3571809"/>
+ <node id="784502872" lat="48.8700403" lon="2.3572578"/>
+ <node id="784502897" lat="48.8800411" lon="2.3515864"/>
+ <node id="784503169" lat="48.8740166" lon="2.3500489"/>
+ <node id="784503655" lat="48.8835606" lon="2.3596648"/>
+ <node id="784504987" lat="48.8789710" lon="2.3580963"/>
+ <node id="784505754" lat="48.8739188" lon="2.3500281"/>
+ <node id="784506818" lat="48.8728695" lon="2.3584891"/>
+ <node id="784506864" lat="48.8724978" lon="2.3554892"/>
+ <node id="784507619" lat="48.8802074" lon="2.3515591"/>
+ <node id="784507675" lat="48.8722027" lon="2.3493011"/>
+ <node id="784508536" lat="48.8725337" lon="2.3554002"/>
+ <node id="784508888" lat="48.8832829" lon="2.3595093"/>
+ <node id="784509620" lat="48.8720201" lon="2.3494492"/>
+ <node id="784510490" lat="48.8723992" lon="2.3557338"/>
+ <node id="784511979" lat="48.8781537" lon="2.3572721"/>
<node id="784512707" lat="48.8794317" lon="2.3620549"/>
+ <node id="784560879" lat="48.8845015" lon="2.3794866"/>
<node id="784567730" lat="48.8832131" lon="2.3736222"/>
+ <node id="784569088" lat="48.8844817" lon="2.3792689"/>
<node id="784570884" lat="48.8831990" lon="2.3738369"/>
<node id="784576505" lat="48.8831666" lon="2.3735016"/>
+ <node id="784579064" lat="48.8845979" lon="2.3794114"/>
+ <node id="784589636" lat="48.8844593" lon="2.3792841"/>
<node id="784592286" lat="48.8831679" lon="2.3736708"/>
+ <node id="784593802" lat="48.8844679" lon="2.3793123"/>
+ <node id="784618300" lat="48.8844899" lon="2.3794957"/>
<node id="784623395" lat="48.8832295" lon="2.3735915"/>
+ <node id="784625301" lat="48.8845392" lon="2.3794591"/>
<node id="784631517" lat="48.8831473" lon="2.3736431"/>
<node id="784632162" lat="48.8831908" lon="2.3735363"/>
<node id="784655367" lat="48.8832300" lon="2.3735922"/>
<node id="784659466" lat="48.8831368" lon="2.3737439"/>
<node id="784669287" lat="48.8831900" lon="2.3735734"/>
<node id="784671770" lat="48.8831301" lon="2.3737336"/>
+ <node id="784675854" lat="48.8845372" lon="2.3794585"/>
<node id="784677093" lat="48.8832019" lon="2.3735895"/>
<node id="784681326" lat="48.8830758" lon="2.3736525"/>
<node id="784685576" lat="48.8832936" lon="2.3736860"/>
+ <node id="784685669" lat="48.8844667" lon="2.3794207"/>
+ <node id="784687393" lat="48.8845330" lon="2.3792341"/>
<node id="784697717" lat="48.8832022" lon="2.3736063"/>
<node id="786142162" lat="48.8509738" lon="2.3276638"/>
<node id="786142356" lat="48.8510353" lon="2.3276506"/>
@@ -4805,56 +4066,94 @@
<node id="786146266" lat="48.8507792" lon="2.3275926"/>
<node id="786146555" lat="48.8510320" lon="2.3278679"/>
<node id="786146639" lat="48.8513935" lon="2.3271009"/>
+ <node id="787317772" lat="48.8520061" lon="2.3836975"/>
<node id="787318811" lat="48.8695127" lon="2.3745131"/>
<node id="787319805" lat="48.8695291" lon="2.3745009"/>
+ <node id="787320196" lat="48.8657173" lon="2.3829589"/>
+ <node id="787320394" lat="48.8656336" lon="2.3663208"/>
+ <node id="787320518" lat="48.8656105" lon="2.3665159"/>
<node id="787320602" lat="48.8577366" lon="2.3724122"/>
- <node id="787322003" lat="48.8587037" lon="2.3819794"/>
+ <node id="787320959" lat="48.8655948" lon="2.3665036"/>
+ <node id="787321354" lat="48.8656314" lon="2.3831698"/>
<node id="787323055" lat="48.8574467" lon="2.3728568"/>
<node id="787326292" lat="48.8696239" lon="2.3745636"/>
<node id="787327385" lat="48.8574328" lon="2.3728192"/>
+ <node id="787330397" lat="48.8656071" lon="2.3830387"/>
<node id="787330678" lat="48.8574407" lon="2.3729019"/>
+ <node id="787331101" lat="48.8656168" lon="2.3665215"/>
+ <node id="787332784" lat="48.8657156" lon="2.3665304"/>
<node id="787332794" lat="48.8695476" lon="2.3746162"/>
- <node id="787334181" lat="48.8586723" lon="2.3822834"/>
+ <node id="787334118" lat="48.8653087" lon="2.3832545"/>
+ <node id="787334300" lat="48.8653416" lon="2.3833482"/>
<node id="787334631" lat="48.8574157" lon="2.3729240"/>
<node id="787334903" lat="48.8574957" lon="2.3731664"/>
<node id="787334959" lat="48.8577583" lon="2.3724999"/>
<node id="787337169" lat="48.8574988" lon="2.3731753"/>
+ <node id="787337717" lat="48.8518190" lon="2.3841970"/>
<node id="787338063" lat="48.8694919" lon="2.3744519"/>
+ <node id="787339222" lat="48.8656070" lon="2.3664992"/>
<node id="787340694" lat="48.8576001" lon="2.3731381"/>
+ <node id="787341659" lat="48.8656731" lon="2.3831010"/>
+ <node id="787341922" lat="48.8520284" lon="2.3841750"/>
<node id="787343280" lat="48.8574672" lon="2.3727816"/>
<node id="787344051" lat="48.8578141" lon="2.3727268"/>
+ <node id="787344375" lat="48.8653283" lon="2.3833097"/>
+ <node id="787345489" lat="48.8656023" lon="2.3665448"/>
+ <node id="787345773" lat="48.8655668" lon="2.3663493"/>
<node id="787346286" lat="48.8574715" lon="2.3727835"/>
<node id="787348825" lat="48.8696427" lon="2.3748972"/>
<node id="787349691" lat="48.8578768" lon="2.3728892"/>
<node id="787352036" lat="48.8537163" lon="2.3881059"/>
- <node id="787352233" lat="48.8587575" lon="2.3819756"/>
+ <node id="787352217" lat="48.8519882" lon="2.3842161"/>
<node id="787352249" lat="48.8536337" lon="2.3882095"/>
+ <node id="787352346" lat="48.8656441" lon="2.3663830"/>
<node id="787352860" lat="48.8537693" lon="2.3882660"/>
<node id="787353236" lat="48.8577885" lon="2.3726608"/>
<node id="787353665" lat="48.8537405" lon="2.3881227"/>
<node id="787355106" lat="48.8695048" lon="2.3744897"/>
<node id="787355679" lat="48.8536513" lon="2.3882965"/>
- <node id="787355717" lat="48.8585550" lon="2.3822088"/>
<node id="787356054" lat="48.8574458" lon="2.3732215"/>
+ <node id="787356612" lat="48.8656212" lon="2.3666510"/>
+ <node id="787356977" lat="48.8654242" lon="2.3831709"/>
+ <node id="787358500" lat="48.8653612" lon="2.3834045"/>
+ <node id="787359859" lat="48.8656583" lon="2.3664497"/>
+ <node id="787360070" lat="48.8518867" lon="2.3842326"/>
+ <node id="787360572" lat="48.8655519" lon="2.3832536"/>
<node id="787360855" lat="48.8697079" lon="2.3748461"/>
+ <node id="787361051" lat="48.8655686" lon="2.3663474"/>
+ <node id="787362321" lat="48.8656346" lon="2.3666669"/>
+ <node id="787363260" lat="48.8518064" lon="2.3838182"/>
+ <node id="787363356" lat="48.8656655" lon="2.3830534"/>
<node id="787363425" lat="48.8536231" lon="2.3881568"/>
<node id="787364151" lat="48.8574710" lon="2.3732862"/>
+ <node id="787367520" lat="48.8518200" lon="2.3842411"/>
+ <node id="787368008" lat="48.8657549" lon="2.3830852"/>
+ <node id="787368888" lat="48.8520169" lon="2.3842127"/>
+ <node id="787369807" lat="48.8657397" lon="2.3830340"/>
<node id="787369958" lat="48.8577653" lon="2.3724921"/>
+ <node id="787370807" lat="48.8655925" lon="2.3664906"/>
<node id="787370855" lat="48.8577806" lon="2.3723729"/>
<node id="787370976" lat="48.8536554" lon="2.3883169"/>
<node id="787371747" lat="48.8695724" lon="2.3743905"/>
<node id="787373041" lat="48.8574520" lon="2.3727936"/>
+ <node id="787373553" lat="48.8656232" lon="2.3831976"/>
+ <node id="787374426" lat="48.8656216" lon="2.3665224"/>
+ <node id="787376645" lat="48.8520300" lon="2.3842109"/>
<node id="787377199" lat="48.8576146" lon="2.3731729"/>
- <node id="787378181" lat="48.8586172" lon="2.3819854"/>
+ <node id="787378212" lat="48.8653882" lon="2.3831972"/>
+ <node id="787379260" lat="48.8656079" lon="2.3665097"/>
<node id="787380784" lat="48.8695936" lon="2.3747518"/>
+ <node id="787381775" lat="48.8656319" lon="2.3831719"/>
<node id="787383154" lat="48.8574588" lon="2.3727829"/>
+ <node id="787383819" lat="48.8656231" lon="2.3665367"/>
+ <node id="787386299" lat="48.8518091" lon="2.3838959"/>
<node id="787387141" lat="48.8575044" lon="2.3731581"/>
+ <node id="787388380" lat="48.8520076" lon="2.3837278"/>
<node id="787390010" lat="48.8695218" lon="2.3744769"/>
<node id="787399483" lat="48.8577648" lon="2.3725193"/>
<node id="787400281" lat="48.8578649" lon="2.3725885"/>
<node id="787402798" lat="48.8574509" lon="2.3728032"/>
- <node id="787404953" lat="48.8586771" lon="2.3819813"/>
- <node id="787407060" lat="48.8586332" lon="2.3819842"/>
+ <node id="787409481" lat="48.8518572" lon="2.3842369"/>
<node id="789974581" lat="48.8918122" lon="2.3849242"/>
<node id="789975553" lat="48.8920147" lon="2.3849014"/>
<node id="789975852" lat="48.8921871" lon="2.3849773"/>
@@ -4945,11 +4244,31 @@
<node id="790435507" lat="48.8428250" lon="2.3334567"/>
<node id="790435569" lat="48.8427903" lon="2.3333714"/>
<node id="790435749" lat="48.8425998" lon="2.3335981"/>
+ <node id="791793000" lat="48.8451584" lon="2.3209566"/>
+ <node id="791793074" lat="48.8454057" lon="2.3214166"/>
+ <node id="791793083" lat="48.8450787" lon="2.3208710"/>
+ <node id="791793109" lat="48.8451627" lon="2.3210163"/>
+ <node id="791793197" lat="48.8453567" lon="2.3212451"/>
+ <node id="791793270" lat="48.8450403" lon="2.3209879"/>
+ <node id="791793312" lat="48.8451276" lon="2.3210340"/>
+ <node id="791793322" lat="48.8452276" lon="2.3213107"/>
+ <node id="791793542" lat="48.8451599" lon="2.3210184"/>
<node id="791793630" lat="48.8443783" lon="2.3234979"/>
+ <node id="791793665" lat="48.8451106" lon="2.3210425"/>
+ <node id="791793704" lat="48.8452594" lon="2.3213626"/>
+ <node id="791793734" lat="48.8452706" lon="2.3213063"/>
<node id="791793751" lat="48.8444025" lon="2.3235647"/>
+ <node id="791793753" lat="48.8451974" lon="2.3214453"/>
<node id="791793877" lat="48.8444281" lon="2.3235527"/>
+ <node id="791793905" lat="48.8451571" lon="2.3209395"/>
+ <node id="791793938" lat="48.8452589" lon="2.3213792"/>
<node id="791793953" lat="48.8442068" lon="2.3235053"/>
+ <node id="791793968" lat="48.8453436" lon="2.3212535"/>
<node id="791793985" lat="48.8442300" lon="2.3236313"/>
+ <node id="791793989" lat="48.8452439" lon="2.3213087"/>
+ <node id="791793993" lat="48.8451546" lon="2.3209006"/>
+ <node id="791793999" lat="48.8451859" lon="2.3213147"/>
+ <node id="791794004" lat="48.8452366" lon="2.3213877"/>
<node id="791794006" lat="48.8442402" lon="2.3234096"/>
<node id="791794019" lat="48.8442294" lon="2.3234405"/>
<node id="791851223" lat="48.8471697" lon="2.3226818"/>
@@ -4963,25 +4282,21 @@
<node id="791853197" lat="48.8472956" lon="2.3228366"/>
<node id="791853443" lat="48.8472103" lon="2.3227652"/>
<node id="791861511" lat="48.8359371" lon="2.2493675"/>
- <node id="791861522" lat="48.8361374" lon="2.2504999"/>
- <node id="791861911" lat="48.8360292" lon="2.2506762"/>
- <node id="791862523" lat="48.8361626" lon="2.2505571"/>
- <node id="791862635" lat="48.8360732" lon="2.2503572"/>
<node id="791862832" lat="48.8359973" lon="2.2493282"/>
- <node id="791862842" lat="48.8360168" lon="2.2506795"/>
<node id="791862976" lat="48.8360043" lon="2.2494178"/>
- <node id="791862979" lat="48.8360276" lon="2.2506709"/>
<node id="791863242" lat="48.8359889" lon="2.2493446"/>
<node id="791863684" lat="48.8360776" lon="2.2493869"/>
<node id="791863696" lat="48.8359055" lon="2.2492673"/>
- <node id="791863982" lat="48.8359965" lon="2.2506141"/>
<node id="791864181" lat="48.8360547" lon="2.2493175"/>
- <node id="791864575" lat="48.8360076" lon="2.2506065"/>
<node id="791864770" lat="48.8359913" lon="2.2493323"/>
<node id="791864960" lat="48.8360252" lon="2.2494090"/>
<node id="791865470" lat="48.8359593" lon="2.2494369"/>
- <node id="791865615" lat="48.8359606" lon="2.2504539"/>
<node id="791865670" lat="48.8360120" lon="2.2491883"/>
+ <node id="794585933" lat="48.8700751" lon="2.3572819">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue Bouchardon"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="794714393" lat="48.8960555" lon="2.2972461"/>
<node id="794714625" lat="48.8961484" lon="2.2971552"/>
<node id="794715756" lat="48.8960856" lon="2.2973186"/>
@@ -4998,11 +4313,39 @@
<node id="794722506" lat="48.8960820" lon="2.2969961"/>
<node id="794722550" lat="48.8961127" lon="2.2972930"/>
<node id="794723585" lat="48.8959892" lon="2.2971206"/>
- <node id="795067310" lat="48.8921637" lon="2.2933252">
+ <node id="795065596" lat="48.8901993" lon="2.2904396"/>
+ <node id="795067310" lat="48.8921088" lon="2.2932553">
<tag k="name" v="Hôtel Boissière"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotel-boissiere.com/"/>
</node>
+ <node id="795068840" lat="48.8903231" lon="2.2903945"/>
+ <node id="795070482" lat="48.8902863" lon="2.2903804"/>
+ <node id="795078040" lat="48.8903103" lon="2.2903920"/>
+ <node id="795079145" lat="48.8902784" lon="2.2905553"/>
+ <node id="795082427" lat="48.8902519" lon="2.2905463"/>
+ <node id="795084768" lat="48.8902979" lon="2.2904046"/>
+ <node id="795088260" lat="48.8903090" lon="2.2903376"/>
+ <node id="795090591" lat="48.8902876" lon="2.2903575"/>
+ <node id="795091378" lat="48.8902942" lon="2.2903716"/>
+ <node id="795096011" lat="48.8903243" lon="2.2903707"/>
+ <node id="795101338" lat="48.8903848" lon="2.2904592"/>
+ <node id="795101701" lat="48.8903220" lon="2.2903256"/>
+ <node id="795606473" lat="48.8725751" lon="2.3552978">
+ <tag k="addr:housenumber" v="70"/>
+ <tag k="addr:street" v="Rue du Château d'Eau"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="795606518" lat="48.8724691" lon="2.3555604">
+ <tag k="addr:housenumber" v="66"/>
+ <tag k="addr:street" v="Rue du Château d'Eau"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="795606623" lat="48.8724221" lon="2.3556771">
+ <tag k="addr:housenumber" v="64"/>
+ <tag k="addr:street" v="Rue du Château d'Eau"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="796082706" lat="48.8377970" lon="2.3464058">
<tag k="name" v="One by the Five"/>
<tag k="tourism" v="hotel"/>
@@ -5022,10 +4365,10 @@
<tag k="addr:postcode" v="92110"/>
<tag k="addr:street" v="Rue du 8 Mai 1945"/>
<tag k="brand" v="Holiday Inn"/>
- <tag k="fax" v="+33-1-76687701"/>
+ <tag k="fax" v="+33 1 76 68 77 01"/>
<tag k="name" v="Holiday Inn : Porte de Clichy"/>
<tag k="operator" v="IHG"/>
- <tag k="phone" v="+33-1-76687700"/>
+ <tag k="phone" v="+33 1 76 68 77 00"/>
<tag k="points" v="PriorityPoints"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -5033,12 +4376,14 @@
<tag k="name" v="IBIS"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="797978414" lat="48.8759291" lon="2.3587392">
- <tag k="fax" v="+33-1-55260500"/>
+ <node id="797978414" lat="48.8758832" lon="2.3589377">
+ <tag k="fax" v="+33 1 55 26 05 00"/>
<tag k="name" v="Holiday Inn : Gare de L'est"/>
<tag k="operator" v="IHG"/>
- <tag k="phone" v="+33-1-55260505"/>
+ <tag k="phone" v="+33 1 55 26 05 05"/>
+ <tag k="survey:date" v="2017-09-01"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3518472"/>
</node>
<node id="801262240" lat="48.8474495" lon="2.3227049">
<tag k="addr:housenumber" v="85"/>
@@ -5049,15 +4394,20 @@
<tag k="addr:housenumber" v="87"/>
<tag k="addr:street" v="Rue du Cherche-Midi"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="wikidata" v="Q22924534"/>
</node>
<node id="804221147" lat="48.8474480" lon="2.3228419">
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue Jean Ferrandi"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="804245725" lat="48.8453807" lon="2.3213291">
+ <tag k="addr:housenumber" v="105"/>
+ <tag k="addr:street" v="Rue de Vaugirard"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="804285849" lat="48.8442240" lon="2.3234560">
<tag k="addr:housenumber" v="61"/>
- <tag k="addr:street" v="Boulevard du Montparnasse"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="804285854" lat="48.8449596" lon="2.3251083">
@@ -5066,6 +4416,10 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="804285885" lat="48.8450655" lon="2.3209112">
+ <tag k="addr:housenumber" v="33"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="804423829" lat="48.8442184" lon="2.3235684">
<tag k="addr:housenumber" v="8"/>
<tag k="addr:street" v="Place du 18 Juin 1940"/>
@@ -5118,6 +4472,22 @@
<tag k="addr:housenumber" v="51"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="805954752" lat="48.8523222" lon="2.3307449">
+ <tag k="addr:housenumber" v="50"/>
+ <tag k="addr:street" v="Rue du Four"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="806011847" lat="48.8501851" lon="2.3346911">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Servandoni"/>
+ <tag k="name" v="Mundolingua"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.mundolingua.org"/>
+ <tag k="wikidata" v="Q24931083"/>
+ </node>
<node id="806114440" lat="48.8535941" lon="2.3383125">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -5125,15 +4495,11 @@
<tag k="addr:postcode" v="75006"/>
<tag k="addr:street" v="Rue de l'Ancienne Comédie"/>
<tag k="entrance" v="yes"/>
+ <tag k="internet_access" v="wlan"/>
<tag k="name" v="Le Petit Trianon"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="806897882" lat="48.8545440" lon="2.3358646">
- <tag k="addr:housenumber" v="4"/>
- <tag k="addr:street" v="Rue de Furstemberg"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
<node id="807097780" lat="48.8660456" lon="2.3145051">
<tag k="addr:city" v="Paris"/>
<tag k="addr:postcode" v="75008"/>
@@ -5141,12 +4507,14 @@
<tag k="name" v="Musée du Petit Palais"/>
<tag k="name:de" v="Museum im Kleinen Palast"/>
<tag k="name:ru" v="Малый дворец"/>
- <tag k="opening_hours" v="Tu-Su 10:00-18:00;PH off"/>
- <tag k="phone" v="01.53.43.40.00"/>
+ <tag k="name:zh" v="巴黎小皇宮"/>
+ <tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
+ <tag k="phone" v="+33153434000"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.petitpalais.paris.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q820892"/>
<tag k="wikipedia" v="fr:Petit Palais"/>
</node>
<node id="807213009" lat="48.8666395" lon="2.3119621"/>
@@ -5177,63 +4545,41 @@
</node>
<node id="810252727" lat="48.8700445" lon="2.3113231">
<tag k="name" v="Hôtel Mathis Élysées"/>
+ <tag k="name:zh" v="马蒂爱丽舍马提尼翁酒店"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="810628508" lat="48.8674311" lon="2.3210006"/>
- <node id="810628518" lat="48.8674363" lon="2.3209685"/>
- <node id="810628611" lat="48.8672878" lon="2.3209367"/>
- <node id="810628677" lat="48.8675376" lon="2.3210796"/>
- <node id="810628748" lat="48.8672959" lon="2.3209426"/>
- <node id="810628823" lat="48.8675360" lon="2.3210844"/>
- <node id="810628840" lat="48.8675029" lon="2.3214987"/>
- <node id="810628860" lat="48.8672313" lon="2.3211623"/>
- <node id="810628967" lat="48.8673092" lon="2.3209020"/>
- <node id="810629021" lat="48.8680342" lon="2.3214134"/>
- <node id="810629040" lat="48.8675017" lon="2.3215047"/>
- <node id="810629065" lat="48.8672270" lon="2.3211589"/>
- <node id="810629174" lat="48.8673132" lon="2.3209050"/>
- <node id="810629258" lat="48.8679194" lon="2.3218082"/>
- <node id="810629294" lat="48.8671941" lon="2.3212785"/>
- <node id="810629304" lat="48.8672400" lon="2.3211187"/>
- <node id="810629308" lat="48.8675276" lon="2.3215237"/>
- <node id="810629357" lat="48.8674293" lon="2.3209907"/>
- <node id="810629365" lat="48.8673200" lon="2.3208831"/>
- <node id="810629462" lat="48.8678601" lon="2.3217645"/>
- <node id="810629503" lat="48.8672318" lon="2.3211128"/>
- <node id="810629512" lat="48.8677253" lon="2.3216669"/>
- <node id="810629608" lat="48.8674334" lon="2.3209939"/>
- <node id="810629733" lat="48.8678265" lon="2.3217400"/>
<node id="812117989" lat="48.8731008" lon="2.3097181">
<tag k="name" v="Le 123 Elysées"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="812118110" lat="48.8717330" lon="2.3147998">
- <tag k="name" v="Le Bristol"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="812605822" lat="48.8157912" lon="2.3636778"/>
<node id="812606130" lat="48.8155862" lon="2.3637783"/>
<node id="812606198" lat="48.8157663" lon="2.3638779"/>
<node id="812606369" lat="48.8157676" lon="2.3638845"/>
<node id="812606695" lat="48.8158294" lon="2.3636971"/>
<node id="812606760" lat="48.8159012" lon="2.3639643"/>
+ <node id="812607301" lat="48.8152322" lon="2.3565492"/>
<node id="812607484" lat="48.8158291" lon="2.3636886"/>
<node id="812607555" lat="48.8159056" lon="2.3640146"/>
+ <node id="812608084" lat="48.8150320" lon="2.3565600"/>
<node id="812608260" lat="48.8157859" lon="2.3638933"/>
<node id="812608331" lat="48.8156033" lon="2.3638183"/>
<node id="812608970" lat="48.8160518" lon="2.3643611"/>
<node id="812609609" lat="48.8157647" lon="2.3638293"/>
<node id="812610061" lat="48.8156454" lon="2.3638781"/>
<node id="812610078" lat="48.8160286" lon="2.3644079"/>
+ <node id="812611740" lat="48.8153703" lon="2.3566954"/>
<node id="812612702" lat="48.8160533" lon="2.3643515"/>
<node id="812612839" lat="48.8160529" lon="2.3643450"/>
+ <node id="812613212" lat="48.8154242" lon="2.3567073"/>
<node id="812613559" lat="48.8158403" lon="2.3637591"/>
<node id="812614458" lat="48.8157797" lon="2.3638956"/>
<node id="812615363" lat="48.8157663" lon="2.3638736"/>
<node id="812615368" lat="48.8156649" lon="2.3639772"/>
+ <node id="812615718" lat="48.8151888" lon="2.3565113"/>
+ <node id="812616636" lat="48.8152263" lon="2.3567162"/>
<node id="812617298" lat="48.8157675" lon="2.3638669"/>
<node id="812618880" lat="48.8160487" lon="2.3643677"/>
<node id="812619753" lat="48.8158011" lon="2.3636669"/>
@@ -5242,17 +4588,26 @@
<node id="812620824" lat="48.8159556" lon="2.3640900"/>
<node id="812620996" lat="48.8157802" lon="2.3636995"/>
<node id="812621065" lat="48.8157887" lon="2.3636863"/>
+ <node id="812621332" lat="48.8152534" lon="2.3566565"/>
+ <node id="812621343" lat="48.8152426" lon="2.3566493"/>
<node id="812621449" lat="48.8160476" lon="2.3643958"/>
<node id="812621779" lat="48.8156181" lon="2.3637469"/>
<node id="812622037" lat="48.8158276" lon="2.3637107"/>
+ <node id="812622412" lat="48.8151860" lon="2.3565226"/>
<node id="812622553" lat="48.8157884" lon="2.3636955"/>
+ <node id="812622658" lat="48.8150604" lon="2.3564400"/>
+ <node id="812623858" lat="48.8150221" lon="2.3566017"/>
<node id="812627276" lat="48.8156739" lon="2.3640600"/>
<node id="812627468" lat="48.8158908" lon="2.3639081"/>
+ <node id="812627821" lat="48.8152449" lon="2.3567289"/>
<node id="812627880" lat="48.8158261" lon="2.3637156"/>
<node id="812629019" lat="48.8156743" lon="2.3638676"/>
<node id="812629237" lat="48.8156924" lon="2.3639656"/>
<node id="812629365" lat="48.8157711" lon="2.3638910"/>
+ <node id="812629592" lat="48.8154349" lon="2.3566047"/>
<node id="812629816" lat="48.8155951" lon="2.3638216"/>
+ <node id="812629964" lat="48.8152349" lon="2.3565376"/>
+ <node id="812630690" lat="48.8152750" lon="2.3565601"/>
<node id="812630723" lat="48.8160511" lon="2.3643390"/>
<node id="812631183" lat="48.8158292" lon="2.3637026"/>
<node id="812631239" lat="48.8157823" lon="2.3638953"/>
@@ -5269,6 +4624,7 @@
<node id="812635520" lat="48.8160443" lon="2.3643723"/>
<node id="812635904" lat="48.8157738" lon="2.3638575"/>
<node id="812637253" lat="48.8158955" lon="2.3639666"/>
+ <node id="812637349" lat="48.8153622" lon="2.3567611"/>
<node id="812637446" lat="48.8159249" lon="2.3640064"/>
<node id="812637690" lat="48.8156213" lon="2.3637627"/>
<node id="812638464" lat="48.8157751" lon="2.3638946"/>
@@ -5299,7 +4655,9 @@
<node id="814052049" lat="48.8731077" lon="2.3160246"/>
<node id="814052251" lat="48.8731163" lon="2.3162187"/>
<node id="814098761" lat="48.8734274" lon="2.3182214"/>
+ <node id="814098887" lat="48.8732945" lon="2.3180166"/>
<node id="814098933" lat="48.8733167" lon="2.3182444"/>
+ <node id="814099017" lat="48.8733986" lon="2.3179582"/>
<node id="814099047" lat="48.8733310" lon="2.3182412"/>
<node id="814099102" lat="48.8733020" lon="2.3180951"/>
<node id="814099188" lat="48.8734117" lon="2.3180699"/>
@@ -5337,55 +4695,90 @@
<node id="815514295" lat="48.8843476" lon="2.2605484"/>
<node id="815514371" lat="48.8795114" lon="2.2748457"/>
<node id="815515414" lat="48.8841741" lon="2.2604631"/>
+ <node id="815716500" lat="48.8737703" lon="2.3201179"/>
+ <node id="815716565" lat="48.8736481" lon="2.3202177"/>
+ <node id="815716584" lat="48.8737644" lon="2.3202932"/>
+ <node id="815716629" lat="48.8736562" lon="2.3202890"/>
+ <node id="815716793" lat="48.8736357" lon="2.3201062"/>
+ <node id="815777168" lat="48.8731912" lon="2.3240358"/>
+ <node id="815777209" lat="48.8731788" lon="2.3240321"/>
+ <node id="815777265" lat="48.8730987" lon="2.3238299"/>
<node id="815777279" lat="48.8717041" lon="2.3233995"/>
+ <node id="815777285" lat="48.8731729" lon="2.3239756"/>
<node id="815777295" lat="48.8717890" lon="2.3235757"/>
+ <node id="815777306" lat="48.8730815" lon="2.3239459"/>
+ <node id="815777341" lat="48.8732088" lon="2.3238222"/>
+ <node id="815777345" lat="48.8731818" lon="2.3240114"/>
+ <node id="815777352" lat="48.8718264" lon="2.3232940"/>
+ <node id="815777381" lat="48.8731891" lon="2.3238610"/>
<node id="815777404" lat="48.8718079" lon="2.3234353"/>
+ <node id="815777433" lat="48.8730912" lon="2.3238821"/>
<node id="815777441" lat="48.8729256" lon="2.3237568">
<tag k="name" v="Royal Madeleine"/>
<tag k="operator" v="Mercure"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="815777467" lat="48.8732066" lon="2.3238377"/>
+ <node id="815777469" lat="48.8732879" lon="2.3240677"/>
+ <node id="815777472" lat="48.8717227" lon="2.3232622"/>
+ <node id="815777480" lat="48.8731933" lon="2.3238342"/>
+ <node id="815777505" lat="48.8733027" lon="2.3238547"/>
<node id="815777509" lat="48.8716867" lon="2.3235342"/>
+ <node id="815777513" lat="48.8731679" lon="2.3240067"/>
+ <node id="815786319" lat="48.8726735" lon="2.3230424"/>
+ <node id="815786457" lat="48.8726258" lon="2.3231511"/>
+ <node id="815786531" lat="48.8726273" lon="2.3233720"/>
+ <node id="815786731" lat="48.8725875" lon="2.3230694"/>
+ <node id="815786790" lat="48.8725116" lon="2.3233368"/>
+ <node id="815786849" lat="48.8725454" lon="2.3230949"/>
+ <node id="815786901" lat="48.8726425" lon="2.3230325"/>
+ <node id="815786932" lat="48.8726512" lon="2.3232024"/>
+ <node id="815786974" lat="48.8726200" lon="2.3230797"/>
+ <node id="815787051" lat="48.8726113" lon="2.3231461"/>
+ <node id="815787133" lat="48.8725822" lon="2.3231069"/>
<node id="815831251" lat="48.8722936" lon="2.3258193">
<tag k="name" v="Hôtel Opal"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="815842556" lat="48.8714671" lon="2.3251111"/>
+ <node id="815842582" lat="48.8715925" lon="2.3249188"/>
+ <node id="815842586" lat="48.8722248" lon="2.3251760"/>
+ <node id="815842620" lat="48.8715095" lon="2.3248636"/>
+ <node id="815842627" lat="48.8714217" lon="2.3248994"/>
+ <node id="815842669" lat="48.8721894" lon="2.3253062"/>
+ <node id="815842673" lat="48.8715142" lon="2.3249715"/>
+ <node id="815842713" lat="48.8713266" lon="2.3251995"/>
+ <node id="815842715" lat="48.8715116" lon="2.3249696"/>
+ <node id="815842745" lat="48.8721218" lon="2.3251126"/>
+ <node id="815842779" lat="48.8714403" lon="2.3248406"/>
+ <node id="815842786" lat="48.8714700" lon="2.3253049"/>
+ <node id="815842821" lat="48.8720896" lon="2.3252409"/>
+ <node id="815842862" lat="48.8713750" lon="2.3250483"/>
+ <node id="815842866" lat="48.8715127" lon="2.3249668"/>
+ <node id="815842905" lat="48.8714655" lon="2.3251148"/>
<node id="815866390" lat="48.8721179" lon="2.3264076"/>
- <node id="815866443" lat="48.8708859" lon="2.3258330"/>
<node id="815866446" lat="48.8721247" lon="2.3262180"/>
- <node id="815866492" lat="48.8708832" lon="2.3259434"/>
<node id="815866494" lat="48.8722209" lon="2.3262885"/>
- <node id="815866537" lat="48.8708720" lon="2.3258164"/>
- <node id="815866542" lat="48.8707345" lon="2.3257161"/>
- <node id="815866545" lat="48.8708339" lon="2.3258107"/>
- <node id="815866575" lat="48.8709412" lon="2.3258658"/>
- <node id="815866616" lat="48.8708810" lon="2.3258279"/>
- <node id="815866623" lat="48.8708636" lon="2.3258094"/>
- <node id="815866651" lat="48.8708167" lon="2.3259221"/>
<node id="815866653" lat="48.8721227" lon="2.3262165"/>
- <node id="815866688" lat="48.8709147" lon="2.3260989"/>
- <node id="815866690" lat="48.8708169" lon="2.3258178"/>
- <node id="815866722" lat="48.8709367" lon="2.3259134"/>
- <node id="815866732" lat="48.8708086" lon="2.3259024"/>
- <node id="815866767" lat="48.8708929" lon="2.3258449"/>
- <node id="815866771" lat="48.8708607" lon="2.3258189"/>
- <node id="815866814" lat="48.8708064" lon="2.3259195"/>
<node id="815866817" lat="48.8722049" lon="2.3264299"/>
- <node id="815866851" lat="48.8706383" lon="2.3260280"/>
- <node id="815866856" lat="48.8708059" lon="2.3259229"/>
- <node id="815866889" lat="48.8706368" lon="2.3260224"/>
- <node id="815866892" lat="48.8708185" lon="2.3259047"/>
+ <node id="817222415" lat="48.8748312" lon="2.3224603"/>
+ <node id="817222627" lat="48.8748287" lon="2.3224313"/>
+ <node id="817222688" lat="48.8750090" lon="2.3224351"/>
+ <node id="817222692" lat="48.8750017" lon="2.3223201"/>
+ <node id="817222767" lat="48.8749564" lon="2.3224414"/>
+ <node id="817223065" lat="48.8748213" lon="2.3223447"/>
+ <node id="817223147" lat="48.8748342" lon="2.3224598"/>
<node id="817809009" lat="48.8754545" lon="2.3233099"/>
<node id="817809024" lat="48.8754233" lon="2.3235104"/>
<node id="817809095" lat="48.8752416" lon="2.3232698"/>
<node id="817809387" lat="48.8754358" lon="2.3234309"/>
<node id="817809509" lat="48.8752545" lon="2.3234815"/>
<node id="817974720" lat="48.8844920" lon="2.3446024"/>
- <node id="817976111" lat="48.8845702" lon="2.3447401"/>
+ <node id="817976111" lat="48.8845834" lon="2.3447428"/>
<node id="819010090" lat="48.8815927" lon="2.3475414">
- <tag k="name" v="Vintage Hostel Near Gare du Nord"/>
+ <tag k="name" v="Vintage Hostel Gare du Nord"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="819030499" lat="48.8818743" lon="2.3221457">
@@ -5410,7 +4803,7 @@
<node id="819033801" lat="48.8809384" lon="2.3230830"/>
<node id="819033834" lat="48.8809220" lon="2.3229838"/>
<node id="819175697" lat="48.8784319" lon="2.3268251">
- <tag k="name" v="Hôtel de la Flèche d'Or"/>
+ <tag k="name" v="Hôtel Exe Paris Centre"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -5420,6 +4813,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="819175919" lat="48.8768790" lon="2.3270689">
<tag k="name" v="Hôtel Britannia"/>
@@ -5448,82 +4842,79 @@
<node id="822767385" lat="48.8796003" lon="2.3121178"/>
<node id="822767587" lat="48.8794997" lon="2.3119850"/>
<node id="822767664" lat="48.8793395" lon="2.3120053"/>
+ <node id="822950961" lat="48.8793431" lon="2.3126096"/>
+ <node id="822950984" lat="48.8793340" lon="2.3125284"/>
+ <node id="822951000" lat="48.8793923" lon="2.3124910"/>
<node id="822951213" lat="48.8792162" lon="2.3125984"/>
+ <node id="822951217" lat="48.8793015" lon="2.3126212"/>
+ <node id="822951401" lat="48.8793360" lon="2.3125364"/>
+ <node id="822951437" lat="48.8796698" lon="2.3125524"/>
<node id="822951627" lat="48.8792950" lon="2.3128171"/>
+ <node id="822951662" lat="48.8793231" lon="2.3126149"/>
+ <node id="822951895" lat="48.8796079" lon="2.3123308"/>
<node id="822952077" lat="48.8792901" lon="2.3119122"/>
<node id="822952082" lat="48.8791267" lon="2.3126952"/>
<node id="822952087" lat="48.8793668" lon="2.3127750"/>
<node id="822952111" lat="48.8789463" lon="2.3122902"/>
+ <node id="822952119" lat="48.8792841" lon="2.3125812"/>
<node id="822952288" lat="48.8796774" lon="2.3125784"/>
<node id="822952402" lat="48.8796755" lon="2.3125790"/>
+ <node id="822952625" lat="48.8793545" lon="2.3126523"/>
+ <node id="822952663" lat="48.8792954" lon="2.3126249"/>
<node id="822952929" lat="48.8797172" lon="2.3125516"/>
+ <node id="822952966" lat="48.8796686" lon="2.3125535"/>
<node id="822953163" lat="48.8788886" lon="2.3129599"/>
<node id="822953165" lat="48.8792564" lon="2.3127105"/>
<node id="822953192" lat="48.8786984" lon="2.3125628"/>
+ <node id="822953197" lat="48.8793075" lon="2.3125525"/>
<node id="822953456" lat="48.8793687" lon="2.3124333"/>
<node id="822953634" lat="48.8789987" lon="2.3128371"/>
+ <node id="822953642" lat="48.8793247" lon="2.3126200"/>
<node id="822953662" lat="48.8788113" lon="2.3124394"/>
+ <node id="822953674" lat="48.8793083" lon="2.3125570"/>
+ <node id="822953702" lat="48.8793873" lon="2.3124707"/>
<node id="822953917" lat="48.8796368" lon="2.3122589"/>
<node id="822953933" lat="48.8794922" lon="2.3126965"/>
- <node id="824421442" lat="48.8552985" lon="2.3155675"/>
- <node id="824421579" lat="48.8554200" lon="2.3157274"/>
- <node id="824421619" lat="48.8553998" lon="2.3159509"/>
- <node id="824421665" lat="48.8554374" lon="2.3156067"/>
- <node id="824421691" lat="48.8552239" lon="2.3157715"/>
- <node id="824421735" lat="48.8554127" lon="2.3157871"/>
- <node id="824421823" lat="48.8552461" lon="2.3155651"/>
- <node id="824421894" lat="48.8552412" lon="2.3155654"/>
- <node id="824422022" lat="48.8552336" lon="2.3155733"/>
- <node id="824422318" lat="48.8552343" lon="2.3156660"/>
- <node id="824422380" lat="48.8554109" lon="2.3158066"/>
- <node id="824422433" lat="48.8551882" lon="2.3160979"/>
- <node id="824422441" lat="48.8551808" lon="2.3160888"/>
- <node id="824422602" lat="48.8553832" lon="2.3155895"/>
- <node id="824422824" lat="48.8551876" lon="2.3161075"/>
- <node id="824422845" lat="48.8552372" lon="2.3155681"/>
- <node id="824422915" lat="48.8552000" lon="2.3159883"/>
- <node id="824422998" lat="48.8551985" lon="2.3159982"/>
- <node id="824423034" lat="48.8551828" lon="2.3160931"/>
- <node id="824423115" lat="48.8551794" lon="2.3160804"/>
- <node id="824423158" lat="48.8554152" lon="2.3158085"/>
- <node id="824423248" lat="48.8551887" lon="2.3160009"/>
- <node id="824423520" lat="48.8553221" lon="2.3161471"/>
- <node id="824423575" lat="48.8551710" lon="2.3160776"/>
- <node id="824423778" lat="48.8552386" lon="2.3161207"/>
- <node id="824423831" lat="48.8552179" lon="2.3156450"/>
- <node id="824424087" lat="48.8551926" lon="2.3159986"/>
- <node id="824424176" lat="48.8552304" lon="2.3157650"/>
- <node id="824424248" lat="48.8552471" lon="2.3155572"/>
- <node id="824424294" lat="48.8551855" lon="2.3160059"/>
- <node id="824424306" lat="48.8552249" lon="2.3157642"/>
- <node id="824424342" lat="48.8552299" lon="2.3156628"/>
- <node id="824424418" lat="48.8552067" lon="2.3159900"/>
- <node id="824424503" lat="48.8552382" lon="2.3161256"/>
- <node id="824424520" lat="48.8553946" lon="2.3159495"/>
- <node id="824424566" lat="48.8553836" lon="2.3155927"/>
- <node id="824424600" lat="48.8552976" lon="2.3155704"/>
- <node id="824424650" lat="48.8551835" lon="2.3160126"/>
- <node id="824424742" lat="48.8551783" lon="2.3160118"/>
- <node id="824424779" lat="48.8552262" lon="2.3155781"/>
- <node id="824424812" lat="48.8553856" lon="2.3160356"/>
- <node id="824425093" lat="48.8552397" lon="2.3156778"/>
- <node id="824425142" lat="48.8552248" lon="2.3156470"/>
- <node id="824425154" lat="48.8552096" lon="2.3159034"/>
- <node id="824425341" lat="48.8553765" lon="2.3161559"/>
- <node id="824425485" lat="48.8553900" lon="2.3160370"/>
- <node id="824425489" lat="48.8552334" lon="2.3156761"/>
- <node id="824425510" lat="48.8552157" lon="2.3159050"/>
- <node id="824425555" lat="48.8554241" lon="2.3157279"/>
- <node id="824425633" lat="48.8553228" lon="2.3161421"/>
- <node id="824425840" lat="48.8552274" lon="2.3156588"/>
- <node id="824425869" lat="48.8552318" lon="2.3155800"/>
+ <node id="824421550" lat="48.8557805" lon="2.3158232"/>
+ <node id="824421798" lat="48.8558326" lon="2.3159056"/>
+ <node id="824421799" lat="48.8557957" lon="2.3158308"/>
+ <node id="824421838" lat="48.8558244" lon="2.3160148"/>
+ <node id="824421842" lat="48.8558340" lon="2.3159675"/>
+ <node id="824421871" lat="48.8558319" lon="2.3159415"/>
+ <node id="824421974" lat="48.8557734" lon="2.3158175"/>
+ <node id="824422009" lat="48.8558331" lon="2.3159296"/>
+ <node id="824422438" lat="48.8558266" lon="2.3159601"/>
+ <node id="824422484" lat="48.8557803" lon="2.3154333"/>
+ <node id="824422617" lat="48.8558289" lon="2.3159410"/>
+ <node id="824422634" lat="48.8558218" lon="2.3158649"/>
+ <node id="824422714" lat="48.8558455" lon="2.3161214"/>
+ <node id="824422891" lat="48.8557938" lon="2.3152669"/>
+ <node id="824422925" lat="48.8558294" lon="2.3160157"/>
+ <node id="824422938" lat="48.8557758" lon="2.3154316"/>
+ <node id="824423027" lat="48.8557986" lon="2.3152440"/>
+ <node id="824423274" lat="48.8558092" lon="2.3158440"/>
+ <node id="824423326" lat="48.8557733" lon="2.3158216"/>
+ <node id="824423518" lat="48.8556887" lon="2.3167532"/>
+ <node id="824423709" lat="48.8556407" lon="2.3167246"/>
+ <node id="824423818" lat="48.8558294" lon="2.3159606"/>
+ <node id="824424026" lat="48.8536181" lon="2.3149892"/>
+ <node id="824424139" lat="48.8558235" lon="2.3160201"/>
+ <node id="824424229" lat="48.8556199" lon="2.3168068"/>
+ <node id="824424516" lat="48.8557403" lon="2.3158081"/>
+ <node id="824424699" lat="48.8558141" lon="2.3161154"/>
+ <node id="824424712" lat="48.8558214" lon="2.3160404"/>
+ <node id="824425287" lat="48.8556528" lon="2.3168263"/>
+ <node id="824425524" lat="48.8558280" lon="2.3158822"/>
+ <node id="824425546" lat="48.8558190" lon="2.3160392"/>
+ <node id="824425675" lat="48.8558205" lon="2.3160201"/>
+ <node id="824425748" lat="48.8558295" lon="2.3159659"/>
+ <node id="824425793" lat="48.8545261" lon="2.3150946"/>
+ <node id="824425846" lat="48.8556472" lon="2.3168478"/>
<node id="826680499" lat="48.8755300" lon="2.3102008"/>
- <node id="826680536" lat="48.8755698" lon="2.3104208"/>
- <node id="826680542" lat="48.8755787" lon="2.3107959"/>
- <node id="826680567" lat="48.8755693" lon="2.3104103"/>
- <node id="826680569" lat="48.8756574" lon="2.3108516"/>
+ <node id="826680536" lat="48.8755701" lon="2.3104208"/>
+ <node id="826680542" lat="48.8755788" lon="2.3107966"/>
+ <node id="826680569" lat="48.8756573" lon="2.3108504"/>
<node id="826680591" lat="48.8756468" lon="2.3108557"/>
- <node id="826680619" lat="48.8757252" lon="2.3108075"/>
<node id="826680658" lat="48.8755728" lon="2.3104726"/>
<node id="826680660" lat="48.8755533" lon="2.3108044"/>
<node id="826680692" lat="48.8756802" lon="2.3108447"/>
@@ -5533,57 +4924,56 @@
<node id="826680801" lat="48.8755899" lon="2.3101961"/>
<node id="826680813" lat="48.8757613" lon="2.3107710"/>
<node id="826680829" lat="48.8755360" lon="2.3102705"/>
- <node id="826680841" lat="48.8755778" lon="2.3105978"/>
<node id="826680875" lat="48.8756929" lon="2.3108370"/>
<node id="826680983" lat="48.8755649" lon="2.3102658"/>
- <node id="826680985" lat="48.8755788" lon="2.3106395"/>
+ <node id="826680985" lat="48.8755784" lon="2.3106395"/>
<node id="826681002" lat="48.8756096" lon="2.3108557"/>
- <node id="826681096" lat="48.8755704" lon="2.3104208"/>
- <node id="826681099" lat="48.8755789" lon="2.3107972"/>
- <node id="826681121" lat="48.8755659" lon="2.3103180"/>
+ <node id="826681121" lat="48.8755665" lon="2.3103179"/>
<node id="826681132" lat="48.8755847" lon="2.3107436"/>
<node id="826681195" lat="48.8757146" lon="2.3108166"/>
<node id="826681209" lat="48.8755352" lon="2.3102632"/>
- <node id="826681238" lat="48.8755726" lon="2.3104625"/>
+ <node id="826681238" lat="48.8755719" lon="2.3104628"/>
<node id="826681249" lat="48.8755559" lon="2.3108040"/>
- <node id="826681275" lat="48.8756707" lon="2.3108461"/>
- <node id="826681304" lat="48.8756571" lon="2.3108491"/>
- <node id="826681325" lat="48.8757370" lon="2.3107987"/>
<node id="826681352" lat="48.8755899" lon="2.3101908"/>
<node id="826681367" lat="48.8755831" lon="2.3105885"/>
<node id="826681373" lat="48.8755776" lon="2.3105881"/>
<node id="826681402" lat="48.8756916" lon="2.3108344"/>
<node id="826681454" lat="48.8753703" lon="2.3101768"/>
<node id="826681465" lat="48.8757553" lon="2.3107720"/>
- <node id="826681479" lat="48.8755817" lon="2.3101950"/>
+ <node id="826681479" lat="48.8755819" lon="2.3101956"/>
<node id="826681510" lat="48.8755577" lon="2.3102656"/>
- <node id="826681513" lat="48.8755780" lon="2.3106395"/>
<node id="826681540" lat="48.8756093" lon="2.3108585"/>
<node id="826681596" lat="48.8756123" lon="2.3101564"/>
- <node id="826681623" lat="48.8755704" lon="2.3104103"/>
+ <node id="826681623" lat="48.8755699" lon="2.3104103"/>
<node id="826681625" lat="48.8755867" lon="2.3107969"/>
- <node id="826681645" lat="48.8755671" lon="2.3103178"/>
<node id="826681652" lat="48.8755826" lon="2.3107438"/>
<node id="826681679" lat="48.8756182" lon="2.3108616"/>
<node id="826681709" lat="48.8757159" lon="2.3108201"/>
<node id="826681720" lat="48.8755327" lon="2.3102630"/>
- <node id="826681756" lat="48.8755712" lon="2.3104630"/>
<node id="826681763" lat="48.8755556" lon="2.3107975"/>
<node id="826681820" lat="48.8756459" lon="2.3108529"/>
- <node id="826681853" lat="48.8757261" lon="2.3108094"/>
- <node id="826681878" lat="48.8756045" lon="2.3101897"/>
+ <node id="826681853" lat="48.8757257" lon="2.3108085"/>
<node id="826681901" lat="48.8755780" lon="2.3104723"/>
<node id="826681922" lat="48.8755557" lon="2.3108623"/>
<node id="826681955" lat="48.8756797" lon="2.3108417"/>
<node id="826682038" lat="48.8752297" lon="2.3101886"/>
<node id="826682050" lat="48.8757452" lon="2.3107848"/>
- <node id="826682081" lat="48.8755820" lon="2.3101962"/>
<node id="826682083" lat="48.8758041" lon="2.3108856"/>
<node id="826682102" lat="48.8755573" lon="2.3102689"/>
- <node id="826682108" lat="48.8755765" lon="2.3105974"/>
- <node id="826682142" lat="48.8757067" lon="2.3108275"/>
+ <node id="826682108" lat="48.8755772" lon="2.3105976"/>
<node id="826682191" lat="48.8755595" lon="2.3101613"/>
<node id="826682252" lat="48.8756182" lon="2.3108548"/>
+ <node id="826835473" lat="48.8768106" lon="2.3078801"/>
+ <node id="826835537" lat="48.8766756" lon="2.3078211"/>
+ <node id="826835540" lat="48.8768236" lon="2.3077491"/>
+ <node id="826835605" lat="48.8766722" lon="2.3078442"/>
+ <node id="826835642" lat="48.8768105" lon="2.3077248"/>
+ <node id="826835709" lat="48.8767503" lon="2.3076107"/>
+ <node id="826835773" lat="48.8766807" lon="2.3076964">
+ <tag k="addr:housenumber" v="48"/>
+ <tag k="addr:street" v="Rue de Courcelles"/>
+ </node>
+ <node id="826835839" lat="48.8766884" lon="2.3077101"/>
<node id="826995359" lat="48.8882128" lon="2.2484917"/>
<node id="826997265" lat="48.8885055" lon="2.2477133"/>
<node id="827019436" lat="48.8882165" lon="2.2484899"/>
@@ -5602,12 +4992,6 @@
<node id="827590672" lat="48.8498498" lon="2.3094928"/>
<node id="827590718" lat="48.8496761" lon="2.3094735"/>
<node id="827590839" lat="48.8498284" lon="2.3095316"/>
- <node id="828090109" lat="48.8769979" lon="2.3064968"/>
- <node id="828090231" lat="48.8765957" lon="2.3059738"/>
- <node id="828090372" lat="48.8764669" lon="2.3062205"/>
- <node id="828090567" lat="48.8763505" lon="2.3064136"/>
- <node id="828090923" lat="48.8772061" lon="2.3067275"/>
- <node id="828091057" lat="48.8772008" lon="2.3064887"/>
<node id="828098463" lat="48.8756281" lon="2.3041375">
<tag k="name" v="Étoile Saint-Honoré"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -5654,36 +5038,153 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="829543920" lat="48.8691738" lon="2.3031698">
- <tag k="name" v="Hôtel Powers"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="829893930" lat="48.8730634" lon="2.3435458"/>
+ <node id="829891756" lat="48.8744070" lon="2.3419923"/>
+ <node id="829891768" lat="48.8728965" lon="2.3444824"/>
+ <node id="829891833" lat="48.8729165" lon="2.3446581"/>
+ <node id="829891962" lat="48.8731847" lon="2.3436487"/>
+ <node id="829892857" lat="48.8738105" lon="2.3453592"/>
+ <node id="829892937" lat="48.8729468" lon="2.3444979"/>
+ <node id="829892992" lat="48.8732586" lon="2.3436750"/>
+ <node id="829893558" lat="48.8731568" lon="2.3436353"/>
+ <node id="829893570" lat="48.8728210" lon="2.3448656"/>
+ <node id="829893740" lat="48.8731552" lon="2.3436404"/>
+ <node id="829894314" lat="48.8728130" lon="2.3448370"/>
+ <node id="829894486" lat="48.8731523" lon="2.3436405"/>
+ <node id="829895297" lat="48.8730410" lon="2.3444200"/>
+ <node id="829895434" lat="48.8730346" lon="2.3446622"/>
+ <node id="829895474" lat="48.8728240" lon="2.3448403"/>
+ <node id="829895583" lat="48.8728535" lon="2.3448489"/>
<node id="829896141" lat="48.8733152" lon="2.3440120"/>
- <node id="829896384" lat="48.8728808" lon="2.3435963"/>
- <node id="829896468" lat="48.8729415" lon="2.3436581"/>
- <node id="829897740" lat="48.8730604" lon="2.3436683"/>
- <node id="829898056" lat="48.8728752" lon="2.3436525"/>
- <node id="829899610" lat="48.8729118" lon="2.3435373"/>
- <node id="829899811" lat="48.8729715" lon="2.3436607"/>
- <node id="829900109" lat="48.8729003" lon="2.3435365"/>
- <node id="829900157" lat="48.8728865" lon="2.3435355"/>
+ <node id="829896165" lat="48.8731570" lon="2.3436164"/>
+ <node id="829896483" lat="48.8732945" lon="2.3436365"/>
+ <node id="829896522" lat="48.8728400" lon="2.3449622"/>
+ <node id="829896659" lat="48.8731686" lon="2.3436203"/>
+ <node id="829896740" lat="48.8729048" lon="2.3443926"/>
+ <node id="829896759" lat="48.8727533" lon="2.3449413"/>
+ <node id="829897403" lat="48.8743378" lon="2.3420951"/>
+ <node id="829897516" lat="48.8728837" lon="2.3446221"/>
+ <node id="829897719" lat="48.8727669" lon="2.3448236"/>
+ <node id="829897879" lat="48.8746604" lon="2.3421994"/>
+ <node id="829897917" lat="48.8728820" lon="2.3446402"/>
+ <node id="829899015" lat="48.8746050" lon="2.3423183"/>
+ <node id="829899506" lat="48.8745370" lon="2.3422615"/>
+ <node id="829899624" lat="48.8731813" lon="2.3436370"/>
+ <node id="829899647" lat="48.8728095" lon="2.3448621"/>
+ <node id="829899730" lat="48.8728955" lon="2.3444945"/>
+ <node id="829899819" lat="48.8746348" lon="2.3422550"/>
+ <node id="829899922" lat="48.8737954" lon="2.3454978"/>
+ <node id="829899940" lat="48.8731553" lon="2.3436364"/>
+ <node id="829900013" lat="48.8729026" lon="2.3444777"/>
+ <node id="829900364" lat="48.8728805" lon="2.3446568"/>
+ <node id="829900571" lat="48.8744404" lon="2.3421806"/>
+ <node id="829900621" lat="48.8729019" lon="2.3444833"/>
+ <node id="829900660" lat="48.8737387" lon="2.3453418"/>
+ <node id="829901074" lat="48.8731572" lon="2.3434208"/>
+ <node id="829901830" lat="48.8731856" lon="2.3436615"/>
+ <node id="829901992" lat="48.8737245" lon="2.3454801"/>
+ <node id="829902324" lat="48.8731849" lon="2.3434222"/>
+ <node id="829902536" lat="48.8737939" lon="2.3454974"/>
+ <node id="829902626" lat="48.8744100" lon="2.3419947"/>
<node id="829902728" lat="48.8735023" lon="2.3440434"/>
<node id="829902761" lat="48.8734205" lon="2.3438831"/>
+ <node id="829902791" lat="48.8731785" lon="2.3436308"/>
+ <node id="829902835" lat="48.8729474" lon="2.3444805"/>
+ <node id="829902978" lat="48.8727830" lon="2.3448282"/>
+ <node id="829921567" lat="48.8717257" lon="2.3276316"/>
+ <node id="829921842" lat="48.8731495" lon="2.3272753"/>
+ <node id="829921858" lat="48.8732307" lon="2.3274225"/>
+ <node id="829922026" lat="48.8713525" lon="2.3275257"/>
+ <node id="829922088" lat="48.8712950" lon="2.3277640"/>
+ <node id="829922090" lat="48.8712822" lon="2.3280555"/>
+ <node id="829922377" lat="48.8716586" lon="2.3280937"/>
+ <node id="829922459" lat="48.8733045" lon="2.3272998"/>
+ <node id="829922799" lat="48.8733003" lon="2.3273598"/>
+ <node id="829923020" lat="48.8712300" lon="2.3274907"/>
+ <node id="829923105" lat="48.8716819" lon="2.3276193"/>
+ <node id="829923475" lat="48.8713819" lon="2.3275342"/>
+ <node id="829925419" lat="48.8718933" lon="2.3276791"/>
+ <node id="829925464" lat="48.8732856" lon="2.3272970"/>
+ <node id="829926478" lat="48.8713579" lon="2.3280631"/>
+ <node id="829927127" lat="48.8718748" lon="2.3281156"/>
+ <node id="829927362" lat="48.8712184" lon="2.3277568"/>
+ <node id="829928495" lat="48.8731403" lon="2.3274078"/>
+ <node id="829928564" lat="48.8717359" lon="2.3281016"/>
+ <node id="829928792" lat="48.8732951" lon="2.3274331"/>
+ <node id="829928902" lat="48.8718471" lon="2.3276661"/>
+ <node id="829929073" lat="48.8732794" lon="2.3274305"/>
+ <node id="829929384" lat="48.8717549" lon="2.3276399"/>
+ <node id="830141710" lat="48.8812756" lon="2.3291741"/>
+ <node id="830141934" lat="48.8797263" lon="2.3288320"/>
+ <node id="830142107" lat="48.8814202" lon="2.3274159"/>
+ <node id="830142349" lat="48.8811429" lon="2.3277699"/>
+ <node id="830142356" lat="48.8778902" lon="2.3274907"/>
+ <node id="830142545" lat="48.8812371" lon="2.3291923"/>
<node id="830142556" lat="48.8826120" lon="2.3279359"/>
<node id="830142557" lat="48.8818407" lon="2.3284872"/>
<node id="830142580" lat="48.8813470" lon="2.3283572"/>
+ <node id="830142606" lat="48.8814478" lon="2.3273466"/>
+ <node id="830142641" lat="48.8777774" lon="2.3279741"/>
+ <node id="830142669" lat="48.8813304" lon="2.3275150"/>
<node id="830142872" lat="48.8817885" lon="2.3285742"/>
<node id="830142914" lat="48.8817845" lon="2.3285809"/>
<node id="830143077" lat="48.8814647" lon="2.3281564"/>
+ <node id="830143245" lat="48.8779131" lon="2.3278190"/>
+ <node id="830143315" lat="48.8820635" lon="2.3285797"/>
<node id="830143362" lat="48.8818059" lon="2.3286865"/>
+ <node id="830143433" lat="48.8778068" lon="2.3276689"/>
+ <node id="830143507" lat="48.8814494" lon="2.3274033"/>
+ <node id="830143673" lat="48.8814206" lon="2.3274305"/>
+ <node id="830143722" lat="48.8814488" lon="2.3274066"/>
+ <node id="830143931" lat="48.8811072" lon="2.3276887"/>
<node id="830144202" lat="48.8825818" lon="2.3281087"/>
+ <node id="830144291" lat="48.8778228" lon="2.3275036"/>
+ <node id="830144321" lat="48.8813273" lon="2.3273499"/>
+ <node id="830144793" lat="48.8777911" lon="2.3278332"/>
+ <node id="830145289" lat="48.8811129" lon="2.3292505"/>
+ <node id="830145493" lat="48.8814377" lon="2.3273466"/>
+ <node id="830145558" lat="48.8811087" lon="2.3277738"/>
+ <node id="830145635" lat="48.8812259" lon="2.3276806"/>
+ <node id="830145847" lat="48.8821296" lon="2.3286741"/>
+ <node id="830146199" lat="48.8813206" lon="2.3290025"/>
<node id="830146210" lat="48.8825491" lon="2.3279651"/>
+ <node id="830146267" lat="48.8814304" lon="2.3275104"/>
+ <node id="830146469" lat="48.8798254" lon="2.3288274"/>
<node id="830146604" lat="48.8826455" lon="2.3280763"/>
+ <node id="830146855" lat="48.8777906" lon="2.3278374"/>
+ <node id="830147009" lat="48.8811419" lon="2.3277398"/>
+ <node id="830147157" lat="48.8797977" lon="2.3286516"/>
<node id="830147159" lat="48.8814680" lon="2.3283016"/>
+ <node id="830147443" lat="48.8779258" lon="2.3279965"/>
+ <node id="830147491" lat="48.8812667" lon="2.3291298"/>
+ <node id="830147597" lat="48.8814282" lon="2.3274301"/>
+ <node id="830147878" lat="48.8798997" lon="2.3286464"/>
+ <node id="830147953" lat="48.8813071" lon="2.3289356"/>
+ <node id="830147977" lat="48.8797230" lon="2.3286552"/>
+ <node id="830148025" lat="48.8777731" lon="2.3280193"/>
+ <node id="830148138" lat="48.8798644" lon="2.3288250"/>
+ <node id="830148281" lat="48.8811091" lon="2.3277975"/>
+ <node id="830148547" lat="48.8778265" lon="2.3279680"/>
+ <node id="830148858" lat="48.8798871" lon="2.3287103"/>
+ <node id="830149011" lat="48.8822116" lon="2.3285004"/>
+ <node id="830149264" lat="48.8811100" lon="2.3278516"/>
+ <node id="830149265" lat="48.8813972" lon="2.3273475"/>
+ <node id="830149445" lat="48.8812279" lon="2.3291469"/>
<node id="830149878" lat="48.8818869" lon="2.3285530"/>
+ <node id="830150275" lat="48.8778212" lon="2.3278820"/>
<node id="830150278" lat="48.8817879" lon="2.3285974"/>
+ <node id="830150299" lat="48.8810717" lon="2.3290435"/>
+ <node id="830150417" lat="48.8777858" lon="2.3278878"/>
+ <node id="830150483" lat="48.8821734" lon="2.3286585"/>
+ <node id="830150645" lat="48.8811081" lon="2.3277430"/>
+ <node id="830150666" lat="48.8798098" lon="2.3286504"/>
+ <node id="830151167" lat="48.8812292" lon="2.3278477"/>
+ <node id="830151486" lat="48.8821364" lon="2.3284603"/>
+ <node id="830151691" lat="48.8814281" lon="2.3274066"/>
+ <node id="830151781" lat="48.8799121" lon="2.3287082"/>
+ <node id="830151970" lat="48.8813027" lon="2.3291616"/>
+ <node id="830152164" lat="48.8777914" lon="2.3280167"/>
+ <node id="830152530" lat="48.8813482" lon="2.3291403"/>
+ <node id="830153156" lat="48.8811405" lon="2.3278508"/>
<node id="830153158" lat="48.8813433" lon="2.3281599"/>
<node id="830671151" lat="48.8668308" lon="2.3028826">
<tag k="name" v="Hôtel de la Trémoille"/>
@@ -5692,33 +5193,47 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
</node>
+ <node id="831121948" lat="48.8736581" lon="2.3346235"/>
+ <node id="831122553" lat="48.8736043" lon="2.3346529"/>
+ <node id="831123313" lat="48.8735058" lon="2.3345014"/>
+ <node id="831123421" lat="48.8735082" lon="2.3345109"/>
+ <node id="831123958" lat="48.8735213" lon="2.3344684"/>
+ <node id="831124287" lat="48.8736582" lon="2.3346505"/>
+ <node id="831124333" lat="48.8735258" lon="2.3345779"/>
+ <node id="831124502" lat="48.8736929" lon="2.3346491"/>
+ <node id="831124850" lat="48.8736982" lon="2.3344808"/>
+ <node id="831125335" lat="48.8735460" lon="2.3346553"/>
+ <node id="831126214" lat="48.8736137" lon="2.3346524"/>
+ <node id="831126716" lat="48.8736135" lon="2.3346246"/>
<node id="831433151" lat="48.8761191" lon="2.3419940"/>
<node id="831433218" lat="48.8761909" lon="2.3417588"/>
+ <node id="831433895" lat="48.8820183" lon="2.3408100"/>
<node id="831435717" lat="48.8761403" lon="2.3419180"/>
+ <node id="831435996" lat="48.8818339" lon="2.3408927"/>
<node id="831436792" lat="48.8761813" lon="2.3419444"/>
+ <node id="831437555" lat="48.8820663" lon="2.3410564"/>
+ <node id="831437877" lat="48.8820286" lon="2.3408623"/>
+ <node id="831439332" lat="48.8817825" lon="2.3411233"/>
<node id="831440340" lat="48.8762289" lon="2.3417733"/>
<node id="831440377" lat="48.8761603" lon="2.3420196"/>
<node id="831440954" lat="48.8761253" lon="2.3417748"/>
<node id="831441015" lat="48.8761844" lon="2.3419322"/>
+ <node id="831448464" lat="48.8820612" lon="2.3410304"/>
+ <node id="831451708" lat="48.8818730" lon="2.3408753"/>
+ <node id="831451857" lat="48.8818451" lon="2.3411556"/>
<node id="831452196" lat="48.8761661" lon="2.3418010"/>
<node id="831452221" lat="48.8760353" lon="2.3421045"/>
<node id="831452223" lat="48.8761712" lon="2.3417832"/>
<node id="831452480" lat="48.8761216" lon="2.3421588"/>
<node id="831452482" lat="48.8762106" lon="2.3418386"/>
<node id="831452567" lat="48.8761822" lon="2.3417897"/>
- <node id="832376333" lat="48.8774464" lon="2.3381482"/>
<node id="832376582" lat="48.8762223" lon="2.3368620"/>
- <node id="832376624" lat="48.8775113" lon="2.3381303"/>
<node id="832376644" lat="48.8762293" lon="2.3370428"/>
- <node id="832376949" lat="48.8775089" lon="2.3381691"/>
<node id="832377086" lat="48.8761768" lon="2.3368002"/>
<node id="832377177" lat="48.8761686" lon="2.3369316">
<tag k="addr:housenumber" v="30"/>
<tag k="addr:street" v="Rue de Châteaudun"/>
</node>
- <node id="832377416" lat="48.8775578" lon="2.3382839"/>
- <node id="832378067" lat="48.8774484" lon="2.3381179"/>
- <node id="832378174" lat="48.8774301" lon="2.3384106"/>
<node id="832378324" lat="48.8762344" lon="2.3368636"/>
<node id="832378336" lat="48.8761634" lon="2.3370141"/>
<node id="832378521" lat="48.8762334" lon="2.3369010"/>
@@ -5742,9 +5257,10 @@
<node id="832530811" lat="48.8764045" lon="2.3353219"/>
<node id="832531012" lat="48.8795479" lon="2.3343535"/>
<node id="832531199" lat="48.8764203" lon="2.3350947"/>
- <node id="833344024" lat="48.8686655" lon="2.2984696">
+ <node id="833344024" lat="48.8686655" lon="2.2984695">
<tag k="name" v="Hôtel Élysées Régencia"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="833541216" lat="48.8717688" lon="2.2976558"/>
@@ -5766,6 +5282,14 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="835351526" lat="48.8542236" lon="2.3074628"/>
+ <node id="835351849" lat="48.8542879" lon="2.3076423"/>
+ <node id="835351862" lat="48.8542149" lon="2.3076346"/>
+ <node id="835351891" lat="48.8543091" lon="2.3074955"/>
+ <node id="835351913" lat="48.8542917" lon="2.3075392"/>
+ <node id="835351916" lat="48.8543084" lon="2.3075563"/>
+ <node id="835351951" lat="48.8543052" lon="2.3076470"/>
+ <node id="835352056" lat="48.8542494" lon="2.3074425"/>
<node id="835355583" lat="48.8547458" lon="2.3065559">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="37"/>
@@ -5773,7 +5297,7 @@
<tag k="addr:street" v="Avenue de la Motte-Picquet"/>
<tag k="name" v="Hôtel Le Walt"/>
<tag k="operator" v="Inwood Hotels"/>
- <tag k="phone" v="+ 33 1 45 51 55 83"/>
+ <tag k="phone" v="+33 1 45 51 55 83"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://lewaltparis.com/fr"/>
@@ -5781,46 +5305,110 @@
</node>
<node id="836329866" lat="48.8653550" lon="2.3982778"/>
<node id="836331014" lat="48.8653569" lon="2.3982762"/>
+ <node id="836332619" lat="48.8750735" lon="2.3919695"/>
<node id="836336194" lat="48.8743762" lon="2.4051986"/>
<node id="836336857" lat="48.8654179" lon="2.3982282"/>
<node id="836337364" lat="48.8654376" lon="2.3984183"/>
+ <node id="836339545" lat="48.8751530" lon="2.3920668"/>
<node id="836341968" lat="48.8743591" lon="2.4053004"/>
<node id="836342288" lat="48.8742727" lon="2.4051604"/>
+ <node id="836345705" lat="48.8751136" lon="2.3920372"/>
<node id="836348503" lat="48.8742964" lon="2.4051993"/>
<node id="836352670" lat="48.8742345" lon="2.4051595"/>
+ <node id="836358123" lat="48.8751201" lon="2.3920259"/>
<node id="836358934" lat="48.8654129" lon="2.3984413"/>
<node id="836363117" lat="48.8743022" lon="2.4051694"/>
<node id="836363168" lat="48.8742079" lon="2.4052397"/>
<node id="836363434" lat="48.8654133" lon="2.3984437"/>
<node id="836366388" lat="48.8742605" lon="2.4051482"/>
<node id="836378079" lat="48.8742201" lon="2.4051694"/>
+ <node id="836380675" lat="48.8750708" lon="2.3919826"/>
<node id="836381525" lat="48.8742616" lon="2.4051558"/>
+ <node id="836385123" lat="48.8749843" lon="2.3920370"/>
<node id="836390084" lat="48.8742349" lon="2.4051640"/>
+ <node id="836396429" lat="48.8750937" lon="2.3921735"/>
+ <node id="836397452" lat="48.8750430" lon="2.3919305"/>
<node id="836397818" lat="48.8742770" lon="2.4051739"/>
+ <node id="836402784" lat="48.8750150" lon="2.3919820"/>
<node id="836404472" lat="48.8654021" lon="2.3982407"/>
<node id="836411857" lat="48.8654699" lon="2.3983856"/>
<node id="836411968" lat="48.8742739" lon="2.4051909"/>
+ <node id="837765070" lat="48.8597079" lon="2.4122338"/>
+ <node id="837775711" lat="48.8602636" lon="2.4119540"/>
+ <node id="837777761" lat="48.8602704" lon="2.4120447"/>
+ <node id="837789356" lat="48.8601957" lon="2.4118417"/>
<node id="837792078" lat="48.8601968" lon="2.4024340"/>
+ <node id="837794818" lat="48.8597021" lon="2.4121482"/>
<node id="837795414" lat="48.8599289" lon="2.4027628"/>
+ <node id="837795469" lat="48.8597189" lon="2.4121454"/>
<node id="837797125" lat="48.8596837" lon="2.4028505"/>
+ <node id="837797462" lat="48.8602721" lon="2.4118283"/>
+ <node id="837798969" lat="48.8602960" lon="2.4121507"/>
+ <node id="837800679" lat="48.8602884" lon="2.4120415"/>
<node id="837800836" lat="48.8596730" lon="2.4028183"/>
<node id="837803124" lat="48.8596892" lon="2.4028437"/>
<node id="837807434" lat="48.8600240" lon="2.4026460"/>
+ <node id="837815624" lat="48.8602812" lon="2.4119512"/>
+ <node id="837816382" lat="48.8597118" lon="2.4120552"/>
<node id="837820203" lat="48.8597970" lon="2.4029223"/>
+ <node id="837820471" lat="48.8597809" lon="2.4122471"/>
<node id="837820639" lat="48.8601138" lon="2.4022788"/>
+ <node id="837822469" lat="48.8597131" lon="2.4122586"/>
<node id="837825916" lat="48.8597026" lon="2.4028866"/>
+ <node id="837827602" lat="48.8601990" lon="2.4118915"/>
+ <node id="837838533" lat="48.8597104" lon="2.4122335"/>
<node id="837844789" lat="48.8597264" lon="2.4028584"/>
<node id="837847780" lat="48.8597687" lon="2.4029375"/>
+ <node id="837848433" lat="48.8596947" lon="2.4120585"/>
+ <node id="837849438" lat="48.8596890" lon="2.4119829"/>
<node id="838040718" lat="48.8736939" lon="2.3003734">
<tag k="name" v="Hôtel de Vigny"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="838121799" lat="48.8742718" lon="2.2983196"/>
+ <node id="838121830" lat="48.8745733" lon="2.2982596"/>
+ <node id="838121863" lat="48.8744095" lon="2.2981673"/>
+ <node id="838122086" lat="48.8744406" lon="2.2982936"/>
+ <node id="838122211" lat="48.8744050" lon="2.2983033"/>
+ <node id="838122261" lat="48.8745689" lon="2.2982426"/>
+ <node id="838122270" lat="48.8742603" lon="2.2982165">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="38"/>
+ <tag k="addr:street" v="Avenue de Friedland"/>
+ </node>
+ <node id="838122335" lat="48.8744149" lon="2.2982145"/>
+ <node id="838122610" lat="48.8745325" lon="2.2980974"/>
+ <node id="838122664" lat="48.8742741" lon="2.2983390"/>
+ <node id="838122774" lat="48.8745016" lon="2.2982775"/>
+ <node id="838122940" lat="48.8744755" lon="2.2978717"/>
+ <node id="838123070" lat="48.8742285" lon="2.2979313"/>
+ <node id="838123098" lat="48.8744316" lon="2.2982117"/>
+ <node id="838123211" lat="48.8744875" lon="2.2981478"/>
<node id="839370572" lat="48.8749760" lon="2.3013383">
<tag k="addr:housenumber" v="14"/>
<tag k="addr:street" v="Rue Beaujon"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="839871988" lat="48.8769651" lon="2.3069884">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="51-57"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue de Courcelles"/>
+ <tag k="name" v="L'Hôtel du Collectionneur"/>
+ <tag k="name:zh" v="巴黎凯旋门收藏家酒店"/>
+ <tag k="phone" v="+33 1 58366700"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelducollectionneur.com/"/>
+ </node>
+ <node id="839872616" lat="48.8742419" lon="2.2980515">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="40"/>
+ <tag k="addr:street" v="Avenue de Friedland"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="839921978" lat="48.8731462" lon="2.3024152">
<tag k="addr:housenumber" v="3"/>
<tag k="addr:street" v="Rue de Chateaubriand"/>
@@ -5833,6 +5421,13 @@
<tag k="addr:street" v="Avenue Bertie Albrecht"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="840653157" lat="48.8712990" lon="2.2981147">
+ <tag k="addr:housenumber" v="52"/>
+ <tag k="addr:street" v="Rue Galilée"/>
+ <tag k="name" v="Hôtel Ekta Champs Elysées"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="840653586" lat="48.8719780" lon="2.2979463">
<tag k="addr:housenumber" v="25"/>
<tag k="addr:street" v="Rue Vernet"/>
@@ -5842,15 +5437,16 @@
<tag k="addr:housenumber" v="49"/>
<tag k="addr:street" v="Rue Pierre Charron"/>
<tag k="amenity" v="restaurant"/>
- <tag k="email" v="info@pershinghall.com"/>
- <tag k="fax" v="+ 33 1 58 36 58 01"/>
+ <tag k="contact:email" v="info@pershinghall.com"/>
+ <tag k="contact:fax" v="+33 1 58 36 58 01"/>
+ <tag k="contact:phone" v="+33 1 58 36 58 00"/>
+ <tag k="contact:website" v="http://www.pershinghall.com"/>
<tag k="internet_access" v="wlan"/>
- <tag k="name" v="Persing Hall"/>
- <tag k="phone" v="+ 33 1 58 36 58 00"/>
+ <tag k="name" v="Pershing Hall"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010 &amp;&amp; website"/>
<tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.pershinghall.com"/>
+ <tag k="wikidata" v="Q3375668"/>
</node>
<node id="840706841" lat="48.8711232" lon="2.3011684">
<tag k="addr:housenumber" v="46"/>
@@ -5859,22 +5455,9 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
<tag k="wikidata" v="Q3145495"/>
</node>
- <node id="840927324" lat="48.8715217" lon="2.3076937">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="97"/>
- <tag k="addr:postcode" v="75008"/>
- <tag k="addr:street" v="Rue La Boétie"/>
- <tag k="name" v="Hôtel Le Monna Lisa"/>
- <tag k="operator" v="Inwood Hotels"/>
- <tag k="phone" v="+33 1 56 43 38 38"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="stars" v="4"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://hotelmonnalisa.com/fr"/>
- <tag k="wheelchair" v="yes"/>
- </node>
<node id="840978667" lat="48.8788507" lon="2.3128807">
<tag k="addr:housenumber" v="63"/>
<tag k="addr:street" v="Rue de Monceau"/>
@@ -5885,6 +5468,11 @@
<tag k="addr:street" v="Rue de Monceau"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="841000760" lat="48.8767477" lon="2.3078638">
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:street" v="Rue Rembrandt"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="841045716" lat="48.8752531" lon="2.3107890">
<tag k="addr:housenumber" v="158"/>
<tag k="addr:street" v="Boulevard Haussmann"/>
@@ -5895,6 +5483,10 @@
<tag k="addr:street" v="Boulevard Haussmann"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="841786410" lat="48.8796408" lon="2.3124486">
+ <tag k="entrance" v="yes"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="841915376" lat="48.8809885" lon="2.3230366">
<tag k="addr:housenumber" v="19"/>
<tag k="addr:street" v="Rue de Berne"/>
@@ -5930,11 +5522,31 @@
<tag k="addr:street" v="Rue de Penthièvre"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="841989440" lat="48.8750052" lon="2.3223759">
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:street" v="Rue de la Pépinière"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="841989453" lat="48.8727803" lon="2.3159219">
<tag k="addr:housenumber" v="25"/>
<tag k="addr:street" v="Rue de Miromesnil"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="842075629" lat="48.8737673" lon="2.3202061">
+ <tag k="addr:housenumber" v="21"/>
+ <tag k="addr:street" v="Rue Lavoisier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="842075693" lat="48.8732979" lon="2.3180518">
+ <tag k="addr:housenumber" v="22"/>
+ <tag k="addr:street" v="Rue Roquépine"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="842075792" lat="48.8725834" lon="2.3233586">
+ <tag k="addr:housenumber" v="21"/>
+ <tag k="addr:street" v="Rue Pasquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="842075868" lat="48.8733095" lon="2.3181711">
<tag k="addr:housenumber" v="20"/>
<tag k="addr:street" v="Rue Roquépine"/>
@@ -5945,57 +5557,66 @@
<tag k="addr:street" v="Rue de l'Arcade"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="842075955" lat="48.8725322" lon="2.3233431">
+ <tag k="addr:housenumber" v="19"/>
+ <tag k="addr:street" v="Rue Pasquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="842076016" lat="48.8717706" lon="2.3232769">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:street" v="Rue Pasquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="842076118" lat="48.8732962" lon="2.3239480">
+ <tag k="addr:housenumber" v="43"/>
+ <tag k="addr:street" v="Rue des Mathurins"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="842127460" lat="48.8721517" lon="2.3264163">
<tag k="addr:housenumber" v="31"/>
<tag k="addr:street" v="Rue Vignon"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="842127826" lat="48.8674831" lon="2.3210392">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="2"/>
- <tag k="addr:street" v="Rue Boissy d'Anglas"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
<node id="842128066" lat="48.8721869" lon="2.3262636">
<tag k="addr:housenumber" v="22"/>
<tag k="addr:street" v="Rue Tronchet"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="842128547" lat="48.8707777" lon="2.3260637">
- <tag k="addr:housenumber" v="9"/>
- <tag k="addr:street" v="Rue Vignon"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="842128691" lat="48.8706937" lon="2.3258439">
- <tag k="addr:housenumber" v="28"/>
- <tag k="addr:street" v="Place de la Madeleine"/>
+ <node id="842128458" lat="48.8722096" lon="2.3252318">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Rue de Castellane"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
- <node id="842152748" lat="48.8672391" lon="2.3210898">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="10"/>
- <tag k="addr:street" v="Place de la Concorde"/>
+ <node id="842128903" lat="48.8713967" lon="2.3252510">
+ <tag k="addr:housenumber" v="7"/>
+ <tag k="addr:street" v="Rue Tronchet"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="843377831" lat="48.8153005" lon="2.3754495">
<tag k="tourism" v="hotel"/>
</node>
<node id="861288578" lat="48.8888774" lon="2.3943052">
+ <tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="216"/>
<tag k="addr:postcode" v="75019"/>
<tag k="addr:street" v="Avenue Jean Jaurès"/>
- <tag k="fax" v="+33-01-44841820"/>
- <tag k="name" v="Mercure : Paris-La Villette"/>
- <tag k="phone" v="+33-01-44841818"/>
+ <tag k="fax" v="+33 1 44 84 18 20"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Mercure Paris 19 Philharmonie La Villette"/>
+ <tag k="operator" v="Accor"/>
+ <tag k="phone" v="+33 1 44 84 18 18"/>
+ <tag k="rooms" v="182"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q24698783"/>
</node>
<node id="861290071" lat="48.8884053" lon="2.3785210">
<tag k="name" v="Holiday Inn Express : Hôtel Paris-Canal De La Villette"/>
<tag k="source" v="survey 2013"/>
<tag k="stars" v="4"/>
+ <tag k="toilets:wheelchair" v="yes"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="867430381" lat="48.8964510" lon="2.4039028"/>
<node id="867434699" lat="48.8964539" lon="2.4038396"/>
@@ -6035,21 +5656,20 @@
<node id="867532281" lat="48.8967726" lon="2.4035708"/>
<node id="867532520" lat="48.8967392" lon="2.4035307"/>
<node id="869479394" lat="48.8457239" lon="2.3448389">
- <tag k="name" v="Hôtel du Panthéon"/>
+ <tag k="name" v="Les Dames du Panthéon"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="875693841" lat="48.8360825" lon="2.2524723"/>
<node id="875694260" lat="48.8361994" lon="2.2523824"/>
<node id="875698397" lat="48.8361327" lon="2.2524345"/>
- <node id="877959029" lat="48.8832437" lon="2.3593471">
- <tag k="name" v="Faubourg 216-224"/>
- <tag k="tourism" v="hotel"/>
+ <node id="877959334" lat="48.8836173" lon="2.3593685">
+ <tag k="addr:housenumber" v="224"/>
+ <tag k="addr:street" v="Rue du Faubourg Saint-Denis"/>
</node>
- <node id="877959041" lat="48.8836193" lon="2.3594167">
- <tag k="name" v="Faubourg 216-224"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hotel-faubourg-216-214-paris.federal-hotel.com/"/>
+ <node id="877959414" lat="48.8832505" lon="2.3593019">
+ <tag k="addr:housenumber" v="216"/>
+ <tag k="addr:street" v="Rue du Faubourg Saint-Denis"/>
</node>
<node id="878701583" lat="48.8315784" lon="2.2467258"/>
<node id="878702453" lat="48.8315809" lon="2.2467388"/>
@@ -6062,8 +5682,9 @@
<node id="878712453" lat="48.8315393" lon="2.2466814"/>
<node id="878713801" lat="48.8316065" lon="2.2468097"/>
<node id="878714890" lat="48.8314508" lon="2.2467192"/>
- <node id="879496873" lat="48.8813609" lon="2.3620200">
+ <node id="879496873" lat="48.8813609" lon="2.3620199">
<tag k="name" v="Timhotel"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="880470095" lat="48.8274283" lon="2.2475817"/>
@@ -6097,87 +5718,163 @@
<node id="880481353" lat="48.8273378" lon="2.2473151"/>
<node id="880481847" lat="48.8273354" lon="2.2476441"/>
<node id="880598163" lat="48.8801030" lon="2.3594914">
- <tag k="name" v="Hôtel Plaza La Fayette"/>
+ <tag k="name" v="Hôtel Mercure Paris Gare du Nord La Fayette"/>
+ <tag k="operator" v="Accor Hotels"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="880598197" lat="48.8793848" lon="2.3585618">
- <tag k="name" v="Hôtel Bristol Nord"/>
- <tag k="tourism" v="hotel"/>
+ <node id="880598177" lat="48.8793754" lon="2.3583810">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue de Dunkerque"/>
</node>
- <node id="880598227" lat="48.8795188" lon="2.3583338">
- <tag k="name" v="Hôtel Montana"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://hotel-montana-lafayette.com"/>
+ <node id="880598200" lat="48.8793448" lon="2.3585290">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue d'Alsace"/>
+ </node>
+ <node id="880598254" lat="48.8794999" lon="2.3581189">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="162"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue La Fayette"/>
+ </node>
+ <node id="880598255" lat="48.8795529" lon="2.3583211">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="164"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue La Fayette"/>
</node>
- <node id="881302453" lat="48.8688321" lon="2.3305499">
+ <node id="881302453" lat="48.8688585" lon="2.3305811">
<tag k="name" v="Park Hyatt Paris -Vendome"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3145620"/>
</node>
<node id="883277910" lat="48.8788369" lon="2.3643037">
<tag k="name" v="Hôtel de France"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="891069113" lat="48.8797564" lon="2.3574795">
+ <tag k="fixme" v="présence à confirmer"/>
<tag k="name" v="Marciano"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.marcianohotel-garedunord.com"/>
</node>
- <node id="894150034" lat="48.8789739" lon="2.3632105">
+ <node id="894150034" lat="48.8789596" lon="2.3632481">
<tag k="name" v="Excelsior Hôtel Varlin"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="894230737" lat="48.8835341" lon="2.3254275"/>
+ <node id="894230778" lat="48.8835086" lon="2.3254410"/>
+ <node id="894230901" lat="48.8833999" lon="2.3252956"/>
+ <node id="894231843" lat="48.8830846" lon="2.3229087"/>
+ <node id="894232239" lat="48.8834892" lon="2.3252410"/>
<node id="894232575" lat="48.8877659" lon="2.3188208"/>
+ <node id="894232714" lat="48.8834647" lon="2.3254004"/>
<node id="894232821" lat="48.8834164" lon="2.3250401"/>
+ <node id="894232856" lat="48.8830242" lon="2.3230753"/>
+ <node id="894232892" lat="48.8934199" lon="2.3251041"/>
+ <node id="894232926" lat="48.8936896" lon="2.3231901"/>
<node id="894233349" lat="48.8877688" lon="2.3187069"/>
<node id="894233794" lat="48.8877365" lon="2.3187648"/>
<node id="894233827" lat="48.8924878" lon="2.3224029"/>
<node id="894233838" lat="48.8876226" lon="2.3189818"/>
+ <node id="894233954" lat="48.8933610" lon="2.3250759"/>
+ <node id="894234483" lat="48.8831104" lon="2.3230346"/>
+ <node id="894234535" lat="48.8859650" lon="2.3249169"/>
+ <node id="894235034" lat="48.8851704" lon="2.3250208"/>
<node id="894235109" lat="48.8875380" lon="2.3188610"/>
<node id="894235259" lat="48.8877760" lon="2.3186937"/>
+ <node id="894236980" lat="48.8850880" lon="2.3251445"/>
+ <node id="894237410" lat="48.8928920" lon="2.3215301"/>
+ <node id="894237613" lat="48.8834931" lon="2.3253831"/>
+ <node id="894237935" lat="48.8934134" lon="2.3251363"/>
+ <node id="894239280" lat="48.8850632" lon="2.3249172"/>
+ <node id="894239398" lat="48.8933774" lon="2.3249855"/>
+ <node id="894239468" lat="48.8834302" lon="2.3254235"/>
<node id="894239608" lat="48.8875486" lon="2.3190315"/>
<node id="894239665" lat="48.8899949" lon="2.3234390"/>
- <node id="894239984" lat="48.8833775" lon="2.3251706"/>
+ <node id="894239984" lat="48.8833775" lon="2.3251707"/>
<node id="894240220" lat="48.8875777" lon="2.3190702"/>
+ <node id="894240843" lat="48.8858551" lon="2.3247164"/>
<node id="894241345" lat="48.8925344" lon="2.3224411"/>
+ <node id="894241363" lat="48.8859025" lon="2.3248026"/>
<node id="894241549" lat="48.8877998" lon="2.3187514"/>
<node id="894242129" lat="48.8925494" lon="2.3224834"/>
<node id="894242231" lat="48.8834112" lon="2.3250141"/>
<node id="894242500" lat="48.8834344" lon="2.3250297"/>
<node id="894242729" lat="48.8925268" lon="2.3224642"/>
+ <node id="894243227" lat="48.8851516" lon="2.3250494"/>
<node id="894243393" lat="48.8875673" lon="2.3190491"/>
+ <node id="894244090" lat="48.8936441" lon="2.3232613"/>
<node id="894244164" lat="48.8899130" lon="2.3233303"/>
+ <node id="894244422" lat="48.8934545" lon="2.3251530"/>
<node id="894244560" lat="48.8874832" lon="2.3189520"/>
+ <node id="894246062" lat="48.8936595" lon="2.3232743"/>
+ <node id="894246252" lat="48.8933590" lon="2.3250752"/>
<node id="894246371" lat="48.8925817" lon="2.3223918"/>
<node id="894246639" lat="48.8877531" lon="2.3188463"/>
+ <node id="894246668" lat="48.8830568" lon="2.3229310"/>
+ <node id="894246803" lat="48.8934801" lon="2.3250300"/>
<node id="894247632" lat="48.8834787" lon="2.3251088"/>
<node id="894248158" lat="48.8876595" lon="2.3190347"/>
+ <node id="894248303" lat="48.8834735" lon="2.3254601"/>
<node id="894248518" lat="48.8877862" lon="2.3187081"/>
+ <node id="894249669" lat="48.8850006" lon="2.3250109"/>
<node id="894250216" lat="48.8877144" lon="2.3187364"/>
<node id="894250356" lat="48.8925576" lon="2.3224604"/>
+ <node id="894250633" lat="48.8834707" lon="2.3254273"/>
+ <node id="894250939" lat="48.8830803" lon="2.3228868"/>
<node id="894251269" lat="48.8924800" lon="2.3224256"/>
<node id="894252436" lat="48.8924891" lon="2.3223154"/>
+ <node id="894252566" lat="48.8834223" lon="2.3253892"/>
+ <node id="894252718" lat="48.8851056" lon="2.3249221"/>
+ <node id="894253277" lat="48.8834430" lon="2.3254763"/>
+ <node id="894253458" lat="48.8834669" lon="2.3254298"/>
<node id="894253749" lat="48.8877802" lon="2.3186997"/>
<node id="894253879" lat="48.8834542" lon="2.3249903"/>
<node id="894254875" lat="48.8877501" lon="2.3186799"/>
<node id="894255998" lat="48.8875988" lon="2.3189477"/>
<node id="894256129" lat="48.8899982" lon="2.3234336"/>
+ <node id="894256748" lat="48.8929226" lon="2.3217266"/>
<node id="894257657" lat="48.8876123" lon="2.3191299"/>
+ <node id="894258115" lat="48.8830508" lon="2.3229007"/>
+ <node id="894258225" lat="48.8859746" lon="2.3248333"/>
<node id="894258306" lat="48.8924309" lon="2.3224752"/>
+ <node id="894258634" lat="48.8928461" lon="2.3216590"/>
+ <node id="894258978" lat="48.8860287" lon="2.3248232"/>
<node id="894260125" lat="48.8924563" lon="2.3224060"/>
<node id="894260638" lat="48.8877297" lon="2.3187926"/>
<node id="894262130" lat="48.8877018" lon="2.3185907"/>
+ <node id="894262313" lat="48.8850858" lon="2.3249510"/>
<node id="894262489" lat="48.8900606" lon="2.3233236"/>
<node id="894264636" lat="48.8833530" lon="2.3250460"/>
+ <node id="894264873" lat="48.8834464" lon="2.3254743"/>
+ <node id="894264889" lat="48.8929229" lon="2.3217238"/>
+ <node id="894264966" lat="48.8935788" lon="2.3231048"/>
<node id="894265004" lat="48.8924643" lon="2.3223836"/>
<node id="894265483" lat="48.8877246" lon="2.3187859"/>
+ <node id="894265537" lat="48.8859439" lon="2.3248780"/>
<node id="894265727" lat="48.8834289" lon="2.3250041"/>
+ <node id="894266919" lat="48.8830005" lon="2.3229574"/>
<node id="894267252" lat="48.8876407" lon="2.3186915"/>
+ <node id="894268127" lat="48.8859215" lon="2.3246362"/>
+ <node id="894271235" lat="48.8835135" lon="2.3254386"/>
<node id="894271663" lat="48.8878071" lon="2.3187372"/>
<node id="894272011" lat="48.8875722" lon="2.3190561"/>
<node id="894272867" lat="48.8925239" lon="2.3225513"/>
+ <node id="894273337" lat="48.8933683" lon="2.3250302"/>
+ <node id="894273649" lat="48.8933789" lon="2.3250847"/>
+ <node id="894273835" lat="48.8929707" lon="2.3215945"/>
+ <node id="894274106" lat="48.8935692" lon="2.3231988"/>
<node id="894274890" lat="48.8899779" lon="2.3232157"/>
+ <node id="894275104" lat="48.8859344" lon="2.3247633"/>
<node id="894275341" lat="48.8877618" lon="2.3186739"/>
<node id="894713136" lat="48.8954877" lon="2.4002250">
<tag k="name" v="Hôtel du Canal"/>
@@ -6193,18 +5890,20 @@
</node>
<node id="895871273" lat="48.8602845" lon="2.3247488">
<tag k="entrance" v="yes"/>
- <tag k="fax" v="01.40.62.84.96"/>
+ <tag k="fax" v="+33140628496"/>
<tag k="name" v="Musée de la Légion d'Honneur et des Ordres de Chevalerie"/>
<tag k="name:ru" v="Музей Почетного легиона и рыцарских орденов"/>
<tag k="opening_hours" v="We-Su 13:00-18:00"/>
- <tag k="phone" v="01.40.62.84.25"/>
+ <tag k="phone" v="+33140628425"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.musee-legiondhonneur.fr/"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q3329915"/>
<tag k="wikipedia" v="fr:Musée de la Légion d'honneur"/>
</node>
<node id="900669295" lat="48.8318013" lon="2.3866661">
<tag k="name" v="Hôtel Pullman Paris Bercy"/>
+ <tag k="name:zh" v="铂尔曼巴黎佩西度假酒店"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
</node>
@@ -6217,11 +5916,26 @@
<tag k="name" v="Conciergerie"/>
<tag k="name:el" v="Κονσιερζερί"/>
<tag k="name:he" v="הקונסיירז'רי"/>
+ <tag k="name:ko" v="콩시에르쥬리"/>
+ <tag k="name:ru" v="Консьерджи"/>
<tag k="name:uk" v="Консьєржері"/>
+ <tag k="name:zh" v="巴黎古監獄"/>
+ <tag k="opening_hours" v="Mo-Su 09:30-18:00"/>
<tag k="operator" v="Centre des monuments nationaux"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://conciergerie.monuments-nationaux.fr/"/>
- <tag k="wikipedia" v="fr:Conciergerie"/>
+ <tag k="wikidata" v="Q138101"/>
+ </node>
+ <node id="912270695" lat="48.8730225" lon="2.3587466">
+ <tag k="addr:housenumber" v="49"/>
+ <tag k="addr:street" v="Boulevard de Magenta"/>
+ <tag k="entrance" v="main"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
+ <node id="912270814" lat="48.8766622" lon="2.3541938">
+ <tag k="addr:housenumber" v="21"/>
+ <tag k="addr:street" v="Rue de Chabrol"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
<node id="912308869" lat="48.8750728" lon="2.3584139">
<tag k="addr:housenumber" v="4"/>
@@ -6231,14 +5945,44 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="912442174" lat="48.8809651" lon="2.3627422">
- <tag k="name" v="Ibis"/>
+ <tag k="addr:housenumber" v="197-199"/>
+ <tag k="addr:street" v="Rue La Fayette"/>
+ <tag k="name" v="Ibis - Paris Gare du Nord Chateau Landon"/>
+ <tag k="phone" v="+33144657000"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.accorhotels.com"/>
</node>
- <node id="913551542" lat="48.8278673" lon="2.3796510">
- <tag k="name" v="Home Business Residence"/>
+ <node id="913551542" lat="48.8278735" lon="2.3796577">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="70"/>
+ <tag k="addr:postcode" v="75013"/>
+ <tag k="addr:street" v="Avenue de France"/>
+ <tag k="fax" v="+33 1 44 97 47 16"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="name" v="Appart'City"/>
+ <tag k="phone" v="+33 1 79 97 52 00"/>
+ <tag k="rooms" v="144"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
+ <node id="913733209" lat="48.8932578" lon="2.3397385"/>
+ <node id="913733653" lat="48.8933658" lon="2.3398523"/>
+ <node id="913734550" lat="48.8933173" lon="2.3398631"/>
+ <node id="913734751" lat="48.8932959" lon="2.3398754"/>
+ <node id="913737497" lat="48.8933472" lon="2.3398454"/>
+ <node id="913739925" lat="48.8933694" lon="2.3398315"/>
+ <node id="913741141" lat="48.8933198" lon="2.3398467"/>
+ <node id="913742213" lat="48.8933585" lon="2.3398956"/>
+ <node id="913743217" lat="48.8933089" lon="2.3398607"/>
+ <node id="913743363" lat="48.8932412" lon="2.3398579"/>
+ <node id="913743828" lat="48.8933059" lon="2.3397580"/>
+ <node id="913744220" lat="48.8933070" lon="2.3398790"/>
+ <node id="913745053" lat="48.8933498" lon="2.3398247"/>
+ <node id="913746903" lat="48.8933768" lon="2.3397864"/>
+ <node id="913747321" lat="48.8933767" lon="2.3397888"/>
+ <node id="913748024" lat="48.8933003" lon="2.3398402"/>
<node id="914052499" lat="48.8606389" lon="2.2987952">
<tag k="addr:housenumber" v="204"/>
<tag k="addr:street" v="Rue de l'Université"/>
@@ -6265,14 +6009,29 @@
<node id="914222297" lat="48.8877469" lon="2.3404029"/>
<node id="914224886" lat="48.8880364" lon="2.3404837"/>
<node id="914753298" lat="48.8884427" lon="2.3405795"/>
- <node id="915735700" lat="48.8860268" lon="2.3374882"/>
- <node id="915735832" lat="48.8858896" lon="2.3373968"/>
- <node id="915736182" lat="48.8860079" lon="2.3375573"/>
- <node id="915736744" lat="48.8859907" lon="2.3374640"/>
- <node id="915736822" lat="48.8857956" lon="2.3377388"/>
- <node id="915739125" lat="48.8860194" lon="2.3374831"/>
- <node id="915739306" lat="48.8858158" lon="2.3377663"/>
- <node id="915740086" lat="48.8859862" lon="2.3376415"/>
+ <node id="914763777" lat="48.8837749" lon="2.3449097"/>
+ <node id="914767089" lat="48.8838019" lon="2.3448782"/>
+ <node id="914767269" lat="48.8837894" lon="2.3449688"/>
+ <node id="914767960" lat="48.8838183" lon="2.3449567"/>
+ <node id="914776362" lat="48.8837836" lon="2.3449266"/>
+ <node id="914779119" lat="48.8836434" lon="2.3450065"/>
+ <node id="914785457" lat="48.8836475" lon="2.3450287"/>
+ <node id="914789644" lat="48.8836317" lon="2.3449434"/>
+ <node id="914792498" lat="48.8837268" lon="2.3449952"/>
+ <node id="914793372" lat="48.8837220" lon="2.3449644"/>
+ <node id="914797585" lat="48.8837682" lon="2.3447987"/>
+ <node id="915955503" lat="48.8854578" lon="2.3336587"/>
+ <node id="915956618" lat="48.8854669" lon="2.3336087"/>
+ <node id="915957918" lat="48.8854791" lon="2.3335882"/>
+ <node id="915958931" lat="48.8855171" lon="2.3336747"/>
+ <node id="915959866" lat="48.8854451" lon="2.3336885"/>
+ <node id="915960462" lat="48.8855393" lon="2.3336247"/>
+ <node id="915960811" lat="48.8854320" lon="2.3336757"/>
+ <node id="915962448" lat="48.8854910" lon="2.3337337"/>
+ <node id="915963730" lat="48.8855277" lon="2.3336509"/>
+ <node id="915964080" lat="48.8853736" lon="2.3336190"/>
+ <node id="915967877" lat="48.8854451" lon="2.3336446"/>
+ <node id="915968281" lat="48.8854330" lon="2.3334849"/>
<node id="917991979" lat="48.8495277" lon="2.3799649"/>
<node id="917992064" lat="48.8496013" lon="2.3796887"/>
<node id="917992524" lat="48.8463864" lon="2.3768704"/>
@@ -6358,11 +6117,9 @@
<node id="920168189" lat="48.8348055" lon="2.3511162"/>
<node id="920168380" lat="48.8352543" lon="2.3524608"/>
<node id="920168765" lat="48.8341458" lon="2.3516696"/>
- <node id="920169182" lat="48.8349647" lon="2.3484113"/>
<node id="920169251" lat="48.8351222" lon="2.3520846"/>
<node id="920169829" lat="48.8348626" lon="2.3514958"/>
<node id="920170268" lat="48.8338801" lon="2.3517577"/>
- <node id="920170308" lat="48.8349455" lon="2.3485025"/>
<node id="920170964" lat="48.8345492" lon="2.3513511"/>
<node id="920171345" lat="48.8351741" lon="2.3519914"/>
<node id="920171614" lat="48.8345170" lon="2.3514033"/>
@@ -6370,11 +6127,9 @@
<node id="920172018" lat="48.8345200" lon="2.3513869"/>
<node id="920172388" lat="48.8351000" lon="2.3520509"/>
<node id="920172587" lat="48.8348499" lon="2.3512133"/>
- <node id="920172913" lat="48.8349776" lon="2.3487055"/>
<node id="920173850" lat="48.8351287" lon="2.3520280"/>
<node id="920174136" lat="48.8345193" lon="2.3527871"/>
<node id="920175289" lat="48.8351022" lon="2.3520499"/>
- <node id="920175462" lat="48.8350594" lon="2.3484549"/>
<node id="920176087" lat="48.8345258" lon="2.3513726"/>
<node id="920176224" lat="48.8339006" lon="2.3517532"/>
<node id="920176252" lat="48.8344967" lon="2.3527138"/>
@@ -6390,7 +6145,6 @@
<node id="920177985" lat="48.8337438" lon="2.3519439"/>
<node id="920178162" lat="48.8336639" lon="2.3519080"/>
<node id="920178442" lat="48.8353017" lon="2.3525956"/>
- <node id="920178471" lat="48.8350349" lon="2.3485708"/>
<node id="920178563" lat="48.8352803" lon="2.3517765"/>
<node id="920178658" lat="48.8344560" lon="2.3525810"/>
<node id="920179187" lat="48.8336051" lon="2.3518816"/>
@@ -6399,9 +6153,7 @@
<node id="920180668" lat="48.8346051" lon="2.3530374"/>
<node id="920181144" lat="48.8337729" lon="2.3517807"/>
<node id="920181200" lat="48.8352079" lon="2.3526608"/>
- <node id="920181336" lat="48.8350317" lon="2.3484423"/>
<node id="920181361" lat="48.8345793" lon="2.3513590"/>
- <node id="920181375" lat="48.8349518" lon="2.3484736"/>
<node id="920181665" lat="48.8351225" lon="2.3520329"/>
<node id="920182186" lat="48.8352256" lon="2.3516200"/>
<node id="920182194" lat="48.8345296" lon="2.3513664"/>
@@ -6418,7 +6170,6 @@
<node id="920184493" lat="48.8349071" lon="2.3514977"/>
<node id="920184586" lat="48.8351773" lon="2.3522415"/>
<node id="920184844" lat="48.8351818" lon="2.3516531"/>
- <node id="920184896" lat="48.8350517" lon="2.3486789"/>
<node id="920184970" lat="48.8338911" lon="2.3520100"/>
<node id="920185475" lat="48.8345603" lon="2.3513498"/>
<node id="920911375" lat="48.8281605" lon="2.3502591"/>
@@ -6483,10 +6234,11 @@
<node id="921166747" lat="48.8256886" lon="2.3527096"/>
<node id="921238848" lat="48.8647693" lon="2.3649321">
<tag k="name" v="Hôtel Américain"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.paris-hotel-americain.com/"/>
</node>
- <node id="921243394" lat="48.8632732" lon="2.3526751">
+ <node id="921243394" lat="48.8632561" lon="2.3527222">
<tag k="name" v="Hôtel Georgette"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelgeorgette.com"/>
@@ -6495,13 +6247,11 @@
<node id="921510550" lat="48.8376084" lon="2.3727980"/>
<node id="921510586" lat="48.8328033" lon="2.3572670"/>
<node id="921511516" lat="48.8325970" lon="2.3592412"/>
- <node id="921512214" lat="48.8344759" lon="2.3545278"/>
<node id="921512597" lat="48.8327007" lon="2.3593817"/>
<node id="921514382" lat="48.8326502" lon="2.3593007"/>
<node id="921515698" lat="48.8326495" lon="2.3590771"/>
<node id="921516263" lat="48.8326888" lon="2.3591933"/>
<node id="921516280" lat="48.8329658" lon="2.3572198"/>
- <node id="921516528" lat="48.8345726" lon="2.3541964"/>
<node id="921516699" lat="48.8328378" lon="2.3571603"/>
<node id="921517001" lat="48.8328627" lon="2.3572884"/>
<node id="921518211" lat="48.8325913" lon="2.3595450"/>
@@ -6520,13 +6270,10 @@
<node id="921527369" lat="48.8326859" lon="2.3596144"/>
<node id="921528021" lat="48.8328642" lon="2.3571799"/>
<node id="921528741" lat="48.8374158" lon="2.3730368"/>
- <node id="921529367" lat="48.8345400" lon="2.3544613"/>
<node id="921529379" lat="48.8326854" lon="2.3591913"/>
<node id="921529530" lat="48.8327075" lon="2.3591208"/>
<node id="921529620" lat="48.8328469" lon="2.3573220"/>
- <node id="921530905" lat="48.8346412" lon="2.3543570"/>
<node id="921530934" lat="48.8328856" lon="2.3572107"/>
- <node id="921531036" lat="48.8343672" lon="2.3543707"/>
<node id="921532039" lat="48.8375415" lon="2.3726743"/>
<node id="921533457" lat="48.8328639" lon="2.3571841"/>
<node id="921533503" lat="48.8326804" lon="2.3594134"/>
@@ -6543,7 +6290,6 @@
<node id="921541569" lat="48.8328369" lon="2.3573538"/>
<node id="921541951" lat="48.8326941" lon="2.3592053"/>
<node id="921543265" lat="48.8325492" lon="2.3593892"/>
- <node id="921543513" lat="48.8344441" lon="2.3545606"/>
<node id="921544869" lat="48.8325987" lon="2.3594756"/>
<node id="921545139" lat="48.8326970" lon="2.3595894"/>
<node id="921545381" lat="48.8374855" lon="2.3729503"/>
@@ -6555,26 +6301,33 @@
<node id="924131988" lat="48.8253804" lon="2.3613407"/>
<node id="924133563" lat="48.8252654" lon="2.3613340"/>
<node id="924134217" lat="48.8228787" lon="2.3613765"/>
- <node id="924135512" lat="48.8289037" lon="2.3743169"/>
+ <node id="924135512" lat="48.8289119" lon="2.3743353"/>
<node id="924137877" lat="48.8229012" lon="2.3613951"/>
<node id="924141099" lat="48.8228839" lon="2.3614058"/>
- <node id="924144981" lat="48.8287960" lon="2.3741208"/>
+ <node id="924144981" lat="48.8288042" lon="2.3741392"/>
<node id="924148427" lat="48.8253091" lon="2.3613112"/>
<node id="924158674" lat="48.8228091" lon="2.3615114"/>
<node id="924159743" lat="48.8252862" lon="2.3613582"/>
<node id="924161041" lat="48.8228860" lon="2.3614643"/>
<node id="924163441" lat="48.8228899" lon="2.3614280"/>
<node id="924163842" lat="48.8228946" lon="2.3613671"/>
- <node id="924170378" lat="48.8289257" lon="2.3739577"/>
+ <node id="924170378" lat="48.8289339" lon="2.3739761"/>
<node id="924171189" lat="48.8252860" lon="2.3612857"/>
<node id="924172766" lat="48.8252419" lon="2.3613902"/>
<node id="924399889" lat="48.8813801" lon="2.3333421"/>
<node id="924399917" lat="48.8814950" lon="2.3335234"/>
<node id="924399994" lat="48.8811463" lon="2.3333866"/>
+ <node id="924400010" lat="48.8827743" lon="2.3325998"/>
<node id="924400028" lat="48.8814577" lon="2.3336923"/>
+ <node id="924400124" lat="48.8826946" lon="2.3324934"/>
<node id="924400181" lat="48.8827372" lon="2.3346464"/>
+ <node id="924400226" lat="48.8828116" lon="2.3326686"/>
+ <node id="924400478" lat="48.8827827" lon="2.3328116"/>
<node id="924400573" lat="48.8813101" lon="2.3332926"/>
<node id="924400596" lat="48.8810962" lon="2.3334248"/>
+ <node id="924400949" lat="48.8827756" lon="2.3325680"/>
+ <node id="924400961" lat="48.8827848" lon="2.3327368"/>
+ <node id="924401086" lat="48.8827204" lon="2.3326766"/>
<node id="924401143" lat="48.8828395" lon="2.3346974"/>
<node id="924401351" lat="48.8812461" lon="2.3332591"/>
<node id="924402023" lat="48.8827917" lon="2.3343890"/>
@@ -6583,19 +6336,31 @@
<node id="924402380" lat="48.8813826" lon="2.3333288"/>
<node id="924402385" lat="48.8808989" lon="2.3332555"/>
<node id="924402417" lat="48.8828927" lon="2.3344421"/>
+ <node id="924402616" lat="48.8827727" lon="2.3325948"/>
<node id="924402621" lat="48.8814411" lon="2.3337677"/>
<node id="924402627" lat="48.8812390" lon="2.3336788"/>
<node id="924402707" lat="48.8815200" lon="2.3334102"/>
+ <node id="924402848" lat="48.8826249" lon="2.3326666"/>
+ <node id="924402960" lat="48.8827677" lon="2.3325902"/>
<node id="924403114" lat="48.8811998" lon="2.3334794"/>
<node id="924403151" lat="48.8828652" lon="2.3345748"/>
<node id="924403315" lat="48.8813987" lon="2.3337624"/>
+ <node id="924403501" lat="48.8827742" lon="2.3326051"/>
<node id="924403514" lat="48.8813109" lon="2.3332895"/>
<node id="924404011" lat="48.8808860" lon="2.3333143"/>
<node id="924404053" lat="48.8814379" lon="2.3337824"/>
+ <node id="924404830" lat="48.8827429" lon="2.3326199"/>
<node id="924405249" lat="48.8815091" lon="2.3334590"/>
<node id="924405303" lat="48.8828752" lon="2.3345256"/>
+ <node id="924406416" lat="48.8827623" lon="2.3326391"/>
+ <node id="924406472" lat="48.8828448" lon="2.3327639"/>
<node id="924406509" lat="48.8815020" lon="2.3334911"/>
+ <node id="924406521" lat="48.8828104" lon="2.3327901"/>
<node id="924406532" lat="48.8809804" lon="2.3332984"/>
+ <node id="924705364" lat="48.8167654" lon="2.3661124"/>
+ <node id="924714775" lat="48.8170426" lon="2.3669161"/>
+ <node id="924745721" lat="48.8169558" lon="2.3666565"/>
+ <node id="924751755" lat="48.8168085" lon="2.3660811"/>
<node id="925427080" lat="48.8645510" lon="2.2967926"/>
<node id="925427082" lat="48.8639051" lon="2.2979272"/>
<node id="925427090" lat="48.8643316" lon="2.2968329"/>
@@ -6748,14 +6513,34 @@
<node id="925427748" lat="48.8643024" lon="2.2973656"/>
<node id="925427755" lat="48.8637342" lon="2.2968926"/>
<node id="925427765" lat="48.8642369" lon="2.2968798"/>
+ <node id="925859982" lat="48.8632409" lon="2.2946433"/>
+ <node id="925860034" lat="48.8631430" lon="2.2943731"/>
+ <node id="925860047" lat="48.8631787" lon="2.2944433"/>
+ <node id="925860083" lat="48.8631365" lon="2.2943776"/>
+ <node id="925860101" lat="48.8631870" lon="2.2947460"/>
+ <node id="925860164" lat="48.8632002" lon="2.2946806"/>
+ <node id="925860231" lat="48.8632393" lon="2.2946448"/>
+ <node id="925860280" lat="48.8631685" lon="2.2943388"/>
+ <node id="925860292" lat="48.8632359" lon="2.2946356"/>
+ <node id="925860341" lat="48.8631057" lon="2.2948046"/>
+ <node id="925860403" lat="48.8632151" lon="2.2947265"/>
+ <node id="925860485" lat="48.8632403" lon="2.2946490"/>
+ <node id="925860576" lat="48.8632383" lon="2.2946345"/>
+ <node id="925860655" lat="48.8630992" lon="2.2948088"/>
+ <node id="925860666" lat="48.8629970" lon="2.2944779"/>
+ <node id="925860669" lat="48.8631959" lon="2.2944306"/>
+ <node id="925860723" lat="48.8632108" lon="2.2947296"/>
+ <node id="925860804" lat="48.8632353" lon="2.2946495"/>
+ <node id="925860811" lat="48.8632360" lon="2.2946516"/>
<node id="926929568" lat="48.8713885" lon="2.2935692">
+ <tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="75116"/>
<tag k="addr:street" v="Avenue Kléber"/>
<tag k="name" v="Hôtel Raphael"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.raphael-hotel.com/"/>
+ <tag k="website" v="http://www.leshotelsbaverez.com/en/home/raphael"/>
<tag k="wikidata" v="Q3145649"/>
</node>
<node id="929095856" lat="48.8401677" lon="2.3307424"/>
@@ -6770,19 +6555,94 @@
<node id="929099320" lat="48.8401701" lon="2.3307565"/>
<node id="929100477" lat="48.8400390" lon="2.3306831"/>
<node id="929100616" lat="48.8401363" lon="2.3305560"/>
- <node id="929140369" lat="48.8411532" lon="2.3257483"/>
- <node id="929141077" lat="48.8413387" lon="2.3258505"/>
- <node id="929141589" lat="48.8411370" lon="2.3258235"/>
- <node id="929141613" lat="48.8411281" lon="2.3257573"/>
- <node id="929141649" lat="48.8411744" lon="2.3257411"/>
- <node id="929143072" lat="48.8412188" lon="2.3257255"/>
- <node id="929143120" lat="48.8411902" lon="2.3258951"/>
- <node id="929144822" lat="48.8411479" lon="2.3259075"/>
- <node id="929144851" lat="48.8411364" lon="2.3257543"/>
- <node id="929144988" lat="48.8412351" lon="2.3258852"/>
- <node id="929145393" lat="48.8412507" lon="2.3258801"/>
- <node id="929146475" lat="48.8411913" lon="2.3258988"/>
- <node id="929146804" lat="48.8413169" lon="2.3256915"/>
+ <node id="929138892" lat="48.8425780" lon="2.3236170"/>
+ <node id="929138974" lat="48.8423678" lon="2.3236916"/>
+ <node id="929139221" lat="48.8423856" lon="2.3235817"/>
+ <node id="929139408" lat="48.8416200" lon="2.3245468"/>
+ <node id="929139508" lat="48.8402278" lon="2.3220625"/>
+ <node id="929139521" lat="48.8414521" lon="2.3245624"/>
+ <node id="929139573" lat="48.8424216" lon="2.3235884"/>
+ <node id="929139886" lat="48.8401816" lon="2.3222615"/>
+ <node id="929139947" lat="48.8409322" lon="2.3239857"/>
+ <node id="929140449" lat="48.8404137" lon="2.3236491"/>
+ <node id="929140509" lat="48.8404024" lon="2.3238566"/>
+ <node id="929140607" lat="48.8386902" lon="2.3231436"/>
+ <node id="929140632" lat="48.8386402" lon="2.3232270"/>
+ <node id="929140686" lat="48.8404307" lon="2.3238878"/>
+ <node id="929140777" lat="48.8415319" lon="2.3245631"/>
+ <node id="929140871" lat="48.8387808" lon="2.3229281"/>
+ <node id="929140875" lat="48.8411720" lon="2.3241335"/>
+ <node id="929140892" lat="48.8424793" lon="2.3238136"/>
+ <node id="929141013" lat="48.8410875" lon="2.3239883"/>
+ <node id="929141027" lat="48.8405143" lon="2.3238962"/>
+ <node id="929141061" lat="48.8387379" lon="2.3228928"/>
+ <node id="929141459" lat="48.8404138" lon="2.3238027"/>
+ <node id="929141606" lat="48.8407158" lon="2.3241810"/>
+ <node id="929141741" lat="48.8411301" lon="2.3238222"/>
+ <node id="929141823" lat="48.8410574" lon="2.3240665"/>
+ <node id="929142004" lat="48.8419258" lon="2.3232338"/>
+ <node id="929142145" lat="48.8411995" lon="2.3240197"/>
+ <node id="929142176" lat="48.8410827" lon="2.3239927"/>
+ <node id="929142183" lat="48.8401452" lon="2.3222771"/>
+ <node id="929142245" lat="48.8410951" lon="2.3239584"/>
+ <node id="929142310" lat="48.8412123" lon="2.3237633"/>
+ <node id="929142369" lat="48.8415630" lon="2.3245890"/>
+ <node id="929142511" lat="48.8404246" lon="2.3237869"/>
+ <node id="929142532" lat="48.8420185" lon="2.3233139"/>
+ <node id="929142559" lat="48.8409289" lon="2.3240014"/>
+ <node id="929142666" lat="48.8415876" lon="2.3245557"/>
+ <node id="929142803" lat="48.8404335" lon="2.3237868"/>
+ <node id="929142824" lat="48.8420264" lon="2.3233311"/>
+ <node id="929142862" lat="48.8404330" lon="2.3238877"/>
+ <node id="929142922" lat="48.8424905" lon="2.3235097"/>
+ <node id="929143048" lat="48.8420937" lon="2.3232027"/>
+ <node id="929143164" lat="48.8410709" lon="2.3239298"/>
+ <node id="929143174" lat="48.8420267" lon="2.3231220"/>
+ <node id="929143279" lat="48.8419595" lon="2.3231394"/>
+ <node id="929143280" lat="48.8411429" lon="2.3237526"/>
+ <node id="929143378" lat="48.8405223" lon="2.3237118"/>
+ <node id="929143457" lat="48.8412110" lon="2.3237911"/>
+ <node id="929143570" lat="48.8420154" lon="2.3233220"/>
+ <node id="929143609" lat="48.8404164" lon="2.3237691"/>
+ <node id="929143658" lat="48.8404352" lon="2.3237281"/>
+ <node id="929143675" lat="48.8404022" lon="2.3238607"/>
+ <node id="929143689" lat="48.8404073" lon="2.3237675"/>
+ <node id="929143767" lat="48.8407517" lon="2.3242045"/>
+ <node id="929143805" lat="48.8402123" lon="2.3222487"/>
+ <node id="929143874" lat="48.8404307" lon="2.3238860"/>
+ <node id="929144020" lat="48.8402569" lon="2.3222299"/>
+ <node id="929144039" lat="48.8407486" lon="2.3242034"/>
+ <node id="929144053" lat="48.8414790" lon="2.3246702"/>
+ <node id="929144184" lat="48.8408417" lon="2.3239065"/>
+ <node id="929144201" lat="48.8414778" lon="2.3244906"/>
+ <node id="929144216" lat="48.8423940" lon="2.3235819"/>
+ <node id="929144229" lat="48.8411084" lon="2.3238031"/>
+ <node id="929144543" lat="48.8408341" lon="2.3238881"/>
+ <node id="929144599" lat="48.8424215" lon="2.3236634"/>
+ <node id="929144826" lat="48.8409146" lon="2.3240626"/>
+ <node id="929144847" lat="48.8404243" lon="2.3238031"/>
+ <node id="929145119" lat="48.8415022" lon="2.3246902"/>
+ <node id="929145228" lat="48.8410903" lon="2.3239547"/>
+ <node id="929145235" lat="48.8424504" lon="2.3237801"/>
+ <node id="929145324" lat="48.8386282" lon="2.3231936"/>
+ <node id="929145338" lat="48.8424143" lon="2.3237092"/>
+ <node id="929145479" lat="48.8404314" lon="2.3238658"/>
+ <node id="929145748" lat="48.8415907" lon="2.3245820"/>
+ <node id="929145918" lat="48.8404097" lon="2.3237258"/>
+ <node id="929145939" lat="48.8387192" lon="2.3230955"/>
+ <node id="929146198" lat="48.8401183" lon="2.3221074"/>
+ <node id="929146264" lat="48.8412067" lon="2.3238776"/>
+ <node id="929146295" lat="48.8416353" lon="2.3246531"/>
+ <node id="929146410" lat="48.8412102" lon="2.3240259"/>
+ <node id="929146481" lat="48.8423348" lon="2.3236796"/>
+ <node id="929146498" lat="48.8423794" lon="2.3233744"/>
+ <node id="929146741" lat="48.8404387" lon="2.3236629"/>
+ <node id="929146899" lat="48.8407850" lon="2.3239351"/>
+ <node id="929146933" lat="48.8415401" lon="2.3245401"/>
+ <node id="929146968" lat="48.8408115" lon="2.3239989"/>
+ <node id="929146979" lat="48.8409091" lon="2.3239658"/>
+ <node id="929147105" lat="48.8424584" lon="2.3237262"/>
+ <node id="929147119" lat="48.8423978" lon="2.3235587"/>
<node id="929179029" lat="48.8313428" lon="2.3406769"/>
<node id="929179851" lat="48.8318085" lon="2.3398492"/>
<node id="929180851" lat="48.8318671" lon="2.3393348"/>
@@ -6791,18 +6651,24 @@
<node id="929182564" lat="48.8315800" lon="2.3406712"/>
<node id="929183875" lat="48.8313698" lon="2.3393148"/>
<node id="929184515" lat="48.8319179" lon="2.3394559"/>
- <node id="929236683" lat="48.8367960" lon="2.3240467"/>
- <node id="929236773" lat="48.8369020" lon="2.3241488"/>
<node id="929237312" lat="48.8368387" lon="2.3239449"/>
<node id="929237325" lat="48.8369818" lon="2.3238108"/>
+ <node id="929238210" lat="48.8361005" lon="2.3242597"/>
+ <node id="929238360" lat="48.8360835" lon="2.3243106"/>
+ <node id="929238710" lat="48.8361055" lon="2.3242452"/>
+ <node id="929238757" lat="48.8361167" lon="2.3242549"/>
+ <node id="929238940" lat="48.8361225" lon="2.3241941"/>
<node id="929240803" lat="48.8369275" lon="2.3239387"/>
<node id="929241287" lat="48.8338710" lon="2.3286678"/>
- <node id="929241318" lat="48.8369453" lon="2.3240444"/>
<node id="929241620" lat="48.8338255" lon="2.3287951"/>
<node id="929241950" lat="48.8339341" lon="2.3287199"/>
<node id="929242203" lat="48.8338885" lon="2.3288455"/>
<node id="929242218" lat="48.8369005" lon="2.3240022"/>
+ <node id="929242631" lat="48.8360020" lon="2.3242443"/>
+ <node id="929242981" lat="48.8361199" lon="2.3241919"/>
+ <node id="929243041" lat="48.8360447" lon="2.3241280"/>
<node id="929244286" lat="48.8369201" lon="2.3237515"/>
+ <node id="929245122" lat="48.8361114" lon="2.3242685"/>
<node id="929366410" lat="48.8650667" lon="2.2937426"/>
<node id="929366422" lat="48.8650729" lon="2.2935903"/>
<node id="929366428" lat="48.8655837" lon="2.2931362"/>
@@ -6896,10 +6762,18 @@
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="929948074" lat="48.8358988" lon="2.3221289"/>
+ <node id="929948735" lat="48.8359693" lon="2.3222022"/>
<node id="929949027" lat="48.8352772" lon="2.3231293"/>
+ <node id="929955795" lat="48.8359378" lon="2.3222411"/>
<node id="929955950" lat="48.8352033" lon="2.3231494"/>
<node id="929957104" lat="48.8352195" lon="2.3232414"/>
+ <node id="929958903" lat="48.8358577" lon="2.3222139"/>
+ <node id="929964146" lat="48.8359028" lon="2.3222769"/>
<node id="929966013" lat="48.8352973" lon="2.3231235"/>
+ <node id="929966915" lat="48.8359360" lon="2.3222171"/>
+ <node id="929966950" lat="48.8359443" lon="2.3222292"/>
+ <node id="929967647" lat="48.8359463" lon="2.3222514"/>
<node id="929967742" lat="48.8353975" lon="2.3231962"/>
<node id="929967762" lat="48.8353866" lon="2.3230992"/>
<node id="929970118" lat="48.8382741" lon="2.2905724"/>
@@ -6912,6 +6786,29 @@
<node id="929970310" lat="48.8383181" lon="2.2906585"/>
<node id="929970337" lat="48.8382687" lon="2.2904426"/>
<node id="929970439" lat="48.8383114" lon="2.2903491"/>
+ <node id="929974188" lat="48.8446898" lon="2.3087426"/>
+ <node id="929974283" lat="48.8445577" lon="2.3086450"/>
+ <node id="929974285" lat="48.8446830" lon="2.3087138"/>
+ <node id="929974292" lat="48.8446498" lon="2.3086656"/>
+ <node id="929974299" lat="48.8446916" lon="2.3087405"/>
+ <node id="929974384" lat="48.8447136" lon="2.3086127"/>
+ <node id="929974406" lat="48.8446444" lon="2.3086492"/>
+ <node id="929974463" lat="48.8446568" lon="2.3086610"/>
+ <node id="929974466" lat="48.8446664" lon="2.3086745"/>
+ <node id="929974562" lat="48.8446091" lon="2.3088048"/>
+ <node id="929974572" lat="48.8445768" lon="2.3087694"/>
+ <node id="929974590" lat="48.8446381" lon="2.3085989"/>
+ <node id="929974624" lat="48.8447347" lon="2.3086743"/>
+ <node id="929974649" lat="48.8445242" lon="2.3088724"/>
+ <node id="929974698" lat="48.8445540" lon="2.3087305"/>
+ <node id="929974716" lat="48.8445635" lon="2.3087621"/>
+ <node id="929974747" lat="48.8446648" lon="2.3087046"/>
+ <node id="929974767" lat="48.8446578" lon="2.3086808"/>
+ <node id="929974775" lat="48.8446354" lon="2.3085903"/>
+ <node id="929974788" lat="48.8446601" lon="2.3086551"/>
+ <node id="929974808" lat="48.8445577" lon="2.3087114"/>
+ <node id="929974809" lat="48.8444739" lon="2.3087064"/>
+ <node id="929974849" lat="48.8446581" lon="2.3086564"/>
<node id="930289859" lat="48.8238590" lon="2.3241489"/>
<node id="930290286" lat="48.8235653" lon="2.3248555"/>
<node id="930292990" lat="48.8272320" lon="2.3158571"/>
@@ -6919,26 +6816,39 @@
<node id="930294071" lat="48.8238686" lon="2.3242925"/>
<node id="930295544" lat="48.8235753" lon="2.3248111"/>
<node id="930295804" lat="48.8238823" lon="2.3241113"/>
+ <node id="930297570" lat="48.8300821" lon="2.3201951"/>
+ <node id="930298388" lat="48.8299550" lon="2.3200988"/>
<node id="930298416" lat="48.8271388" lon="2.3160198"/>
<node id="930305945" lat="48.8238556" lon="2.3240480"/>
<node id="930307953" lat="48.8235382" lon="2.3251612"/>
<node id="930307959" lat="48.8272929" lon="2.3159419"/>
<node id="930310779" lat="48.8239143" lon="2.3240779"/>
<node id="930311793" lat="48.8238498" lon="2.3240724"/>
+ <node id="930312030" lat="48.8298973" lon="2.3201791"/>
<node id="930314792" lat="48.8238909" lon="2.3241875"/>
<node id="930316726" lat="48.8237709" lon="2.3239329"/>
<node id="930319208" lat="48.8236045" lon="2.3246800"/>
+ <node id="930320080" lat="48.8299747" lon="2.3202492"/>
<node id="930321941" lat="48.8271362" lon="2.3160160"/>
+ <node id="930322421" lat="48.8299325" lon="2.3200817"/>
+ <node id="930323456" lat="48.8299542" lon="2.3203162"/>
+ <node id="930323606" lat="48.8300198" lon="2.3203686"/>
<node id="930324966" lat="48.8238045" lon="2.3242604"/>
<node id="930325376" lat="48.8238927" lon="2.3241788"/>
+ <node id="930326750" lat="48.8275822" lon="2.3043889"/>
<node id="930327176" lat="48.8235891" lon="2.3251330"/>
+ <node id="930327641" lat="48.8299374" lon="2.3202129"/>
+ <node id="930328553" lat="48.8299756" lon="2.3201144"/>
<node id="930329615" lat="48.8272329" lon="2.3158588"/>
<node id="930330954" lat="48.8239276" lon="2.3240147"/>
<node id="930331759" lat="48.8271965" lon="2.3160994"/>
<node id="930332820" lat="48.8238737" lon="2.3240848"/>
+ <node id="930334028" lat="48.8299464" lon="2.3202250"/>
<node id="930334766" lat="48.8238836" lon="2.3239904"/>
<node id="930336067" lat="48.8237082" lon="2.3242140"/>
<node id="930336771" lat="48.8237690" lon="2.3247599"/>
+ <node id="930337256" lat="48.8299669" lon="2.3202805"/>
+ <node id="930338359" lat="48.8300011" lon="2.3201337"/>
<node id="930341867" lat="48.8235010" lon="2.3251443"/>
<node id="930342217" lat="48.8238559" lon="2.3241596"/>
<node id="930342931" lat="48.8238752" lon="2.3241388"/>
@@ -6957,26 +6867,24 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="937109817" lat="48.8432610" lon="2.3188580"/>
- <node id="937114035" lat="48.8430288" lon="2.3189490"/>
- <node id="937118006" lat="48.8432560" lon="2.3184322"/>
- <node id="937118286" lat="48.8432848" lon="2.3188486"/>
- <node id="937119546" lat="48.8431305" lon="2.3185498"/>
- <node id="937121206" lat="48.8433191" lon="2.3184066"/>
- <node id="937121871" lat="48.8434557" lon="2.3187076"/>
- <node id="937122099" lat="48.8429700" lon="2.3186139"/>
- <node id="937127073" lat="48.8431987" lon="2.3184577"/>
- <node id="937128515" lat="48.8434132" lon="2.3183677"/>
- <node id="937128685" lat="48.8434275" lon="2.3187162"/>
- <node id="937129960" lat="48.8434409" lon="2.3187874"/>
- <node id="937130638" lat="48.8434459" lon="2.3186306"/>
- <node id="937131021" lat="48.8430139" lon="2.3188646">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="16"/>
- <tag k="addr:street" v="Rue Antoine Bourdelle"/>
- </node>
- <node id="937132369" lat="48.8429600" lon="2.3185579"/>
- <node id="937132675" lat="48.8431722" lon="2.3188022"/>
+ <node id="937108395" lat="48.8430110" lon="2.3130935"/>
+ <node id="937111942" lat="48.8436728" lon="2.3157365"/>
+ <node id="937113069" lat="48.8429370" lon="2.3133248"/>
+ <node id="937114778" lat="48.8436662" lon="2.3157135"/>
+ <node id="937115596" lat="48.8429173" lon="2.3131761"/>
+ <node id="937115760" lat="48.8437398" lon="2.3154806"/>
+ <node id="937115978" lat="48.8436964" lon="2.3157011"/>
+ <node id="937116201" lat="48.8437143" lon="2.3156905"/>
+ <node id="937116230" lat="48.8436486" lon="2.3155363"/>
+ <node id="937116711" lat="48.8430604" lon="2.3132550"/>
+ <node id="937118560" lat="48.8436497" lon="2.3155354"/>
+ <node id="937123555" lat="48.8429080" lon="2.3132352"/>
+ <node id="937124734" lat="48.8429209" lon="2.3131893"/>
+ <node id="937126715" lat="48.8436281" lon="2.3155489"/>
+ <node id="937127070" lat="48.8436658" lon="2.3155261"/>
+ <node id="937132090" lat="48.8429327" lon="2.3131643"/>
+ <node id="937133183" lat="48.8436208" lon="2.3155532"/>
+ <node id="937133999" lat="48.8437945" lon="2.3156614"/>
<node id="938011490" lat="48.8751792" lon="2.2867328"/>
<node id="938012165" lat="48.8752781" lon="2.2868044"/>
<node id="938012717" lat="48.8752348" lon="2.2865601"/>
@@ -6999,6 +6907,13 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="938872662" lat="48.8646401" lon="2.2886813">
+ <tag k="addr:housenumber" v="83"/>
+ <tag k="addr:street" v="Avenue Kléber"/>
+ <tag k="name" v="La Clef Tour Eiffel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="938872681" lat="48.8653195" lon="2.2939017">
<tag k="addr:housenumber" v="7"/>
<tag k="addr:street" v="Avenue d'Iéna"/>
@@ -7045,7 +6960,12 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="940712742" lat="48.8494162" lon="2.3809935">
- <tag k="name" v="Color Hotel"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="35"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Rue de Citeaux"/>
+ <tag k="name" v="Color design Hotel"/>
+ <tag k="phone" v="+33 1 43 07 77 28"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.colordesign-hotel-paris.com"/>
</node>
@@ -7133,6 +7053,21 @@
<node id="945723344" lat="48.8941983" lon="2.2661955"/>
<node id="945723865" lat="48.8940376" lon="2.2661508"/>
<node id="945724014" lat="48.8941868" lon="2.2661679"/>
+ <node id="946144057" lat="48.8904708" lon="2.2765825"/>
+ <node id="946144302" lat="48.8904838" lon="2.2766265"/>
+ <node id="946144777" lat="48.8902635" lon="2.2777209"/>
+ <node id="946145159" lat="48.8900362" lon="2.2769921"/>
+ <node id="946145876" lat="48.8905164" lon="2.2767136"/>
+ <node id="946146469" lat="48.8902075" lon="2.2774532"/>
+ <node id="946146931" lat="48.8900613" lon="2.2768589"/>
+ <node id="946147466" lat="48.8903738" lon="2.2772635"/>
+ <node id="946147771" lat="48.8900918" lon="2.2769450"/>
+ <node id="946148247" lat="48.8902517" lon="2.2769422"/>
+ <node id="946148580" lat="48.8906528" lon="2.2773901"/>
+ <node id="946148872" lat="48.8903767" lon="2.2765898"/>
+ <node id="946149196" lat="48.8904501" lon="2.2765269"/>
+ <node id="946149385" lat="48.8905494" lon="2.2771117"/>
+ <node id="946149742" lat="48.8901731" lon="2.2774815"/>
<node id="946410671" lat="48.8846029" lon="2.2586862"/>
<node id="946411002" lat="48.8861821" lon="2.2611910"/>
<node id="946411052" lat="48.8845174" lon="2.2586539"/>
@@ -7166,11 +7101,15 @@
<node id="946418573" lat="48.8845510" lon="2.2585186"/>
<node id="946418832" lat="48.8846025" lon="2.2586948"/>
<node id="946418929" lat="48.8861864" lon="2.2611800"/>
- <node id="946495328" lat="48.8385581" lon="2.3228175">
+ <node id="946495328" lat="48.8383119" lon="2.3229285">
<tag k="name" v="Holliday Inn"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
</node>
+ <node id="947013432" lat="48.8818741" lon="2.2765074"/>
+ <node id="947013729" lat="48.8819840" lon="2.2765879"/>
+ <node id="947016041" lat="48.8818107" lon="2.2767029"/>
+ <node id="947020216" lat="48.8819219" lon="2.2767847"/>
<node id="947057515" lat="48.8646194" lon="2.2777565"/>
<node id="947057672" lat="48.8645926" lon="2.2780220"/>
<node id="947057719" lat="48.8646438" lon="2.2778980"/>
@@ -7185,34 +7124,82 @@
<tag k="source" v="survey"/>
</node>
<node id="951257752" lat="48.8555796" lon="2.4159683"/>
+ <node id="951258798" lat="48.8662905" lon="2.4175374"/>
<node id="951259069" lat="48.8558509" lon="2.4160871"/>
+ <node id="951259153" lat="48.8562047" lon="2.4159285"/>
+ <node id="951259966" lat="48.8560347" lon="2.4151840"/>
+ <node id="951261056" lat="48.8561201" lon="2.4151472"/>
<node id="951261427" lat="48.8558922" lon="2.4166174"/>
+ <node id="951261660" lat="48.8662839" lon="2.4171948"/>
<node id="951263073" lat="48.8559337" lon="2.4165437"/>
<node id="951263310" lat="48.8555908" lon="2.4159546"/>
+ <node id="951263535" lat="48.8663094" lon="2.4174940"/>
+ <node id="951263703" lat="48.8663094" lon="2.4174861"/>
<node id="951263763" lat="48.8559284" lon="2.4166930"/>
<node id="951263796" lat="48.8556260" lon="2.4160670"/>
+ <node id="951265710" lat="48.8561914" lon="2.4153268"/>
<node id="951266813" lat="48.8559517" lon="2.4166153"/>
<node id="951266828" lat="48.8558981" lon="2.4166486"/>
<node id="951267662" lat="48.8558865" lon="2.4166223"/>
+ <node id="951267805" lat="48.8662246" lon="2.4170365"/>
+ <node id="951269266" lat="48.8663025" lon="2.4171929"/>
<node id="951269298" lat="48.8557339" lon="2.4159492"/>
+ <node id="951269419" lat="48.8560717" lon="2.4151698"/>
+ <node id="951269653" lat="48.8561427" lon="2.4156548"/>
+ <node id="951269700" lat="48.8561932" lon="2.4158595"/>
+ <node id="951270086" lat="48.8560785" lon="2.4153887"/>
+ <node id="951270783" lat="48.8561245" lon="2.4156127"/>
+ <node id="951271616" lat="48.8561240" lon="2.4151819"/>
+ <node id="951273274" lat="48.8662855" lon="2.4172573"/>
<node id="951274595" lat="48.8559192" lon="2.4164857"/>
<node id="951275010" lat="48.8559038" lon="2.4166439"/>
<node id="951275156" lat="48.8556744" lon="2.4161701"/>
+ <node id="951275222" lat="48.8561321" lon="2.4156078"/>
+ <node id="951275455" lat="48.8563212" lon="2.4158624"/>
+ <node id="951275785" lat="48.8560718" lon="2.4151552"/>
+ <node id="951275926" lat="48.8661265" lon="2.4174499"/>
<node id="951280043" lat="48.8558000" lon="2.4161860"/>
<node id="951281779" lat="48.8559254" lon="2.4164561"/>
+ <node id="951281852" lat="48.8662748" lon="2.4172501"/>
+ <node id="951282019" lat="48.8663057" lon="2.4175082"/>
+ <node id="951282039" lat="48.8661120" lon="2.4175181"/>
<node id="951282811" lat="48.8558035" lon="2.4159789"/>
+ <node id="951283016" lat="48.8560355" lon="2.4151678"/>
+ <node id="951284209" lat="48.8661656" lon="2.4175391"/>
<node id="951285610" lat="48.8555844" lon="2.4159571"/>
+ <node id="951286448" lat="48.8662713" lon="2.4175548"/>
+ <node id="951286850" lat="48.8562205" lon="2.4154496"/>
+ <node id="951287833" lat="48.8662820" lon="2.4175466"/>
<node id="951287904" lat="48.8559370" lon="2.4166242"/>
+ <node id="951288502" lat="48.8662149" lon="2.4170692"/>
<node id="951289005" lat="48.8556339" lon="2.4160635"/>
<node id="951289183" lat="48.8556801" lon="2.4161653"/>
<node id="951289758" lat="48.8559512" lon="2.4166798"/>
+ <node id="951289994" lat="48.8561355" lon="2.4156582"/>
+ <node id="951290885" lat="48.8662912" lon="2.4174859"/>
+ <node id="951291002" lat="48.8662270" lon="2.4175575"/>
<node id="951291624" lat="48.8559173" lon="2.4166878"/>
+ <node id="951292579" lat="48.8661676" lon="2.4175611"/>
+ <node id="951293137" lat="48.8559749" lon="2.4151719"/>
<node id="951293369" lat="48.8558304" lon="2.4160346"/>
+ <node id="951293732" lat="48.8559207" lon="2.4151811"/>
<node id="951294352" lat="48.8559148" lon="2.4164681"/>
+ <node id="951294365" lat="48.8662841" lon="2.4172091"/>
<node id="951295972" lat="48.8557342" lon="2.4159338"/>
+ <node id="951298447" lat="48.8662129" lon="2.4170766"/>
+ <node id="951299252" lat="48.8559409" lon="2.4154649"/>
+ <node id="951299614" lat="48.8561690" lon="2.4151736"/>
+ <node id="951300146" lat="48.8662995" lon="2.4170642"/>
<node id="951301424" lat="48.8558603" lon="2.4161238"/>
+ <node id="951302043" lat="48.8562238" lon="2.4159173"/>
+ <node id="951302847" lat="48.8662977" lon="2.4175260"/>
<node id="951303362" lat="48.8557432" lon="2.4159660"/>
+ <node id="951303881" lat="48.8661938" lon="2.4171457"/>
+ <node id="951305935" lat="48.8562035" lon="2.4153202"/>
<node id="951306159" lat="48.8557741" lon="2.4159331"/>
+ <node id="951307430" lat="48.8561882" lon="2.4158626"/>
+ <node id="951307948" lat="48.8661178" lon="2.4174439"/>
+ <node id="951309277" lat="48.8559759" lon="2.4151828"/>
<node id="951826458" lat="48.8567793" lon="2.4269491"/>
<node id="951941925" lat="48.8566573" lon="2.4270095"/>
<node id="951996105" lat="48.8567753" lon="2.4270188"/>
@@ -7246,10 +7233,24 @@
<node id="957610701" lat="48.9004202" lon="2.2719678"/>
<node id="957610847" lat="48.9003545" lon="2.2716529"/>
<node id="957611158" lat="48.9003140" lon="2.2716879"/>
+ <node id="958755333" lat="48.8938542" lon="2.2536941"/>
<node id="958755455" lat="48.8957973" lon="2.2512497">
<tag k="name" v="Mercure"/>
- <tag k="tourism" v="hotel"/>
- </node>
+ <tag k="old_name" v="Hôtel Penta"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="958756048" lat="48.8937132" lon="2.2538176"/>
+ <node id="958756810" lat="48.8937854" lon="2.2535483"/>
+ <node id="958757643" lat="48.8937826" lon="2.2534713"/>
+ <node id="958758083" lat="48.8936772" lon="2.2537304"/>
+ <node id="958758680" lat="48.8937205" lon="2.2538350"/>
+ <node id="958758697" lat="48.8973532" lon="2.2469652"/>
+ <node id="958758742" lat="48.8937532" lon="2.2534087"/>
+ <node id="958759535" lat="48.8974567" lon="2.2472143"/>
+ <node id="958760290" lat="48.8937917" lon="2.2534619"/>
+ <node id="958761329" lat="48.8936824" lon="2.2537428"/>
+ <node id="958762449" lat="48.8938170" lon="2.2535152"/>
+ <node id="958764716" lat="48.8936079" lon="2.2535624"/>
<node id="959800723" lat="48.8716939" lon="2.2814079">
<tag k="addr:housenumber" v="59"/>
<tag k="addr:street" v="Avenue Foch"/>
@@ -7379,11 +7380,11 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="974640037" lat="48.8742380" lon="2.2811266">
- <tag k="fax" v="+33 (0)1 45 01 98 68"/>
+ <tag k="fax" v="+33 1 45 01 98 68"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
<tag k="name" v="Hôtel Résidence Foch"/>
- <tag k="phone" v="+33 (0)1 45 00 46 50"/>
+ <tag k="phone" v="+33 1 45 00 46 50"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.foch-paris-hotel.com/"/>
@@ -7411,9 +7412,9 @@
<node id="975568122" lat="48.8243770" lon="2.3006618"/>
<node id="975568194" lat="48.8169281" lon="2.3057122"/>
<node id="975572987" lat="48.8248703" lon="2.3012134"/>
- <node id="975576880" lat="48.8243974" lon="2.3005613"/>
+ <node id="975576880" lat="48.8243975" lon="2.3005614"/>
<node id="975577594" lat="48.8246958" lon="2.3010562"/>
- <node id="975578253" lat="48.8243864" lon="2.3006452"/>
+ <node id="975578253" lat="48.8243863" lon="2.3006453"/>
<node id="975578998" lat="48.8248808" lon="2.3012193"/>
<node id="975579155" lat="48.8249158" lon="2.3012034"/>
<node id="975580343" lat="48.8249129" lon="2.3011846"/>
@@ -7448,7 +7449,7 @@
<node id="975603285" lat="48.8246746" lon="2.3010379"/>
<node id="975603529" lat="48.8167735" lon="2.3062067"/>
<node id="975603701" lat="48.8249088" lon="2.3012219"/>
- <node id="975603751" lat="48.8168820" lon="2.3059236"/>
+ <node id="975603751" lat="48.8168268" lon="2.3060711"/>
<node id="975604759" lat="48.8191315" lon="2.3037366">
<tag k="contact:housenumber" v="120"/>
<tag k="internet_access" v="wlan"/>
@@ -7460,11 +7461,16 @@
<tag k="wheelchair" v="yes"/>
</node>
<node id="975987576" lat="48.8575222" lon="2.2845690">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:postcode" v="75016"/>
+ <tag k="addr:street" v="Square Charles Dickens"/>
<tag k="name" v="Musée du Vin"/>
- <tag k="phone" v="01.45.25.63.26"/>
+ <tag k="phone" v="+33145256326"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museeduvinparis.com"/>
+ <tag k="wikidata" v="Q2561076"/>
</node>
<node id="976163231" lat="48.8553889" lon="2.2808680"/>
<node id="976163730" lat="48.8553456" lon="2.2808176"/>
@@ -7488,20 +7494,8 @@
<node id="976165892" lat="48.8551278" lon="2.2810080"/>
<node id="976166021" lat="48.8551186" lon="2.2809842"/>
<node id="976978213" lat="48.8363040" lon="2.2531981"/>
- <node id="976978222" lat="48.8360067" lon="2.2506468">
- <tag k="amenity" v="restaurant"/>
- <tag k="cuisine" v="italian"/>
- <tag k="name" v="L'Antipasto"/>
- <tag k="source" v="survey"/>
- </node>
<node id="976978233" lat="48.8364267" lon="2.2531054"/>
<node id="976978250" lat="48.8360594" lon="2.2524888"/>
- <node id="976978257" lat="48.8359725" lon="2.2504927">
- <tag k="name" v="La Baleine Bleue"/>
- <tag k="note" v="selling aquarium stuff"/>
- <tag k="shop" v="yes"/>
- <tag k="source" v="survey"/>
- </node>
<node id="976978263" lat="48.8363123" lon="2.2527415">
<tag k="amenity" v="restaurant"/>
<tag k="cuisine" v="french"/>
@@ -7516,6 +7510,18 @@
<node id="977194956" lat="48.8417544" lon="2.3564509">
<tag k="entrance" v="yes"/>
</node>
+ <node id="979133332" lat="48.8896739" lon="2.2828419"/>
+ <node id="979135664" lat="48.8896842" lon="2.2828786"/>
+ <node id="979135906" lat="48.8896887" lon="2.2828720"/>
+ <node id="979137022" lat="48.8896711" lon="2.2828223"/>
+ <node id="979137892" lat="48.8897103" lon="2.2826064"/>
+ <node id="979138115" lat="48.8896915" lon="2.2828924"/>
+ <node id="979138707" lat="48.8897147" lon="2.2829657"/>
+ <node id="979140812" lat="48.8897959" lon="2.2827663"/>
+ <node id="979141383" lat="48.8897644" lon="2.2827074"/>
+ <node id="979142858" lat="48.8898287" lon="2.2828275"/>
+ <node id="979143691" lat="48.8895975" lon="2.2827436"/>
+ <node id="979143912" lat="48.8896781" lon="2.2828362"/>
<node id="979334707" lat="48.8514571" lon="2.2773609">
<tag k="addr:housenumber" v="8"/>
<tag k="addr:street" v="Rue Gros"/>
@@ -7538,7 +7544,6 @@
<node id="979335932" lat="48.8514751" lon="2.2777623"/>
<node id="979335976" lat="48.8515062" lon="2.2778415"/>
<node id="979336202" lat="48.8514529" lon="2.2774427"/>
- <node id="979336458" lat="48.8514542" lon="2.2774531"/>
<node id="979336509" lat="48.8514503" lon="2.2774107"/>
<node id="979336655" lat="48.8506980" lon="2.2753693"/>
<node id="979336852" lat="48.8514496" lon="2.2774940"/>
@@ -7564,63 +7569,53 @@
<node id="979338205" lat="48.8514797" lon="2.2773171"/>
<node id="979338250" lat="48.8514944" lon="2.2777941"/>
<node id="979338317" lat="48.8516710" lon="2.2775840"/>
- <node id="980278066" lat="48.8851637" lon="2.2933714"/>
<node id="980278084" lat="48.8792030" lon="2.2878110"/>
<node id="980278537" lat="48.8766697" lon="2.2920995"/>
- <node id="980279578" lat="48.8792354" lon="2.2852862"/>
<node id="980280212" lat="48.8764906" lon="2.2929677"/>
<node id="980280859" lat="48.8849473" lon="2.3034004"/>
- <node id="980281114" lat="48.8800192" lon="2.2853817"/>
- <node id="980281195" lat="48.8791718" lon="2.2860360"/>
- <node id="980282612" lat="48.8793532" lon="2.2863096"/>
<node id="980286292" lat="48.8853634" lon="2.3080299"/>
<node id="980286676" lat="48.8762837" lon="2.2932799"/>
- <node id="980287120" lat="48.8791815" lon="2.2851950"/>
+ <node id="980287034" lat="48.8870848" lon="2.3142895"/>
<node id="980287597" lat="48.8848384" lon="2.3034123"/>
- <node id="980287610" lat="48.8789448" lon="2.2849227"/>
+ <node id="980287924" lat="48.8829178" lon="2.3075727"/>
<node id="980288500" lat="48.8849552" lon="2.3034377"/>
- <node id="980290824" lat="48.8798464" lon="2.2859633"/>
+ <node id="980289377" lat="48.8828580" lon="2.3074442"/>
<node id="980292886" lat="48.8791515" lon="2.2876674"/>
<node id="980292913" lat="48.8759709" lon="2.2940025"/>
- <node id="980294416" lat="48.8789918" lon="2.2850119"/>
<node id="980294715" lat="48.8792816" lon="2.2876977"/>
<node id="980294732" lat="48.8759358" lon="2.2938710"/>
<node id="980294973" lat="48.8828546" lon="2.2980900"/>
- <node id="980295054" lat="48.8852732" lon="2.2932449"/>
<node id="980295986" lat="48.8765341" lon="2.2930890"/>
+ <node id="980297520" lat="48.8871511" lon="2.3143481"/>
<node id="980298448" lat="48.8849493" lon="2.3034655"/>
<node id="980299083" lat="48.8764008" lon="2.2931871"/>
- <node id="980299624" lat="48.8796751" lon="2.2856794"/>
+ <node id="980299369" lat="48.8800531" lon="2.3025341"/>
<node id="980299833" lat="48.8826583" lon="2.2983119"/>
<node id="980299863" lat="48.8766705" lon="2.2929868"/>
<node id="980302575" lat="48.8848526" lon="2.3034564"/>
<node id="980302722" lat="48.8764023" lon="2.2931908"/>
<node id="980303186" lat="48.8756337" lon="2.2940177"/>
- <node id="980305872" lat="48.8795894" lon="2.2856688"/>
+ <node id="980305415" lat="48.8871314" lon="2.3140981"/>
<node id="980306242" lat="48.8755875" lon="2.2938931"/>
<node id="980306257" lat="48.8759301" lon="2.2939150"/>
<node id="980307143" lat="48.8759744" lon="2.2940771"/>
- <node id="980308870" lat="48.8792192" lon="2.2861278"/>
<node id="980308908" lat="48.8848553" lon="2.3034263"/>
- <node id="980309821" lat="48.8796042" lon="2.2857325"/>
- <node id="980310450" lat="48.8790379" lon="2.2849535"/>
<node id="980310662" lat="48.8849457" lon="2.3034733"/>
<node id="980311543" lat="48.8750126" lon="2.2935889"/>
<node id="980312059" lat="48.8781955" lon="2.2947920"/>
- <node id="980312132" lat="48.8790633" lon="2.2856581"/>
<node id="980312890" lat="48.8759564" lon="2.2940007"/>
<node id="980313144" lat="48.8750336" lon="2.2935910"/>
<node id="980313162" lat="48.8826811" lon="2.2981198"/>
<node id="980313192" lat="48.8769140" lon="2.2918897"/>
+ <node id="980314023" lat="48.8830347" lon="2.3077872"/>
<node id="980314294" lat="48.8759724" lon="2.2939842"/>
+ <node id="980315505" lat="48.8830648" lon="2.3076442"/>
<node id="980315745" lat="48.8848413" lon="2.3034765"/>
<node id="980318225" lat="48.8767901" lon="2.2920255"/>
<node id="980318253" lat="48.8849420" lon="2.3034801"/>
<node id="980318680" lat="48.8849535" lon="2.3034513"/>
- <node id="980319437" lat="48.8791502" lon="2.2860002"/>
<node id="980319760" lat="48.8760386" lon="2.2940779"/>
- <node id="980319815" lat="48.8790442" lon="2.2856814"/>
- <node id="980320020" lat="48.8796713" lon="2.2862795"/>
+ <node id="980320217" lat="48.8828823" lon="2.3076728"/>
<node id="980320365" lat="48.8849546" lon="2.3034276"/>
<node id="980320945" lat="48.8781346" lon="2.2947587"/>
<node id="980321019" lat="48.8848571" lon="2.3034638"/>
@@ -7629,107 +7624,76 @@
<node id="980322618" lat="48.8849396" lon="2.3034832"/>
<node id="980324539" lat="48.8763698" lon="2.2932152"/>
<node id="980326694" lat="48.8759759" lon="2.2939758"/>
- <node id="980326724" lat="48.8852468" lon="2.2935191"/>
- <node id="980326963" lat="48.8793858" lon="2.2863229"/>
<node id="980327916" lat="48.8852646" lon="2.3081427"/>
- <node id="980328977" lat="48.8798557" lon="2.2861299"/>
<node id="980329578" lat="48.8791618" lon="2.2876285"/>
<node id="980330001" lat="48.8757344" lon="2.2939785"/>
<node id="980330908" lat="48.8780248" lon="2.2949139"/>
<node id="980331426" lat="48.8768296" lon="2.2920564"/>
- <node id="980331943" lat="48.8799418" lon="2.2862311"/>
<node id="980331956" lat="48.8759488" lon="2.2939957"/>
- <node id="980333254" lat="48.8790277" lon="2.2848152"/>
<node id="980334364" lat="48.8828042" lon="2.2979833"/>
<node id="980334450" lat="48.8848642" lon="2.3033306"/>
<node id="980334622" lat="48.8759848" lon="2.2940155"/>
- <node id="980339325" lat="48.8793558" lon="2.2863314"/>
- <node id="980340746" lat="48.8852824" lon="2.2934747"/>
<node id="980343342" lat="48.8759574" lon="2.2938075"/>
<node id="980345029" lat="48.8848835" lon="2.3035549"/>
+ <node id="980345508" lat="48.8800944" lon="2.3024890"/>
<node id="980345846" lat="48.8757447" lon="2.2940087"/>
- <node id="980346507" lat="48.8801097" lon="2.2852363"/>
- <node id="980349251" lat="48.8792108" lon="2.2860887"/>
<node id="980349388" lat="48.8768098" lon="2.2920097"/>
- <node id="980352666" lat="48.8796461" lon="2.2852148"/>
- <node id="980354145" lat="48.8800530" lon="2.2851969"/>
- <node id="980354971" lat="48.8801236" lon="2.2852767"/>
- <node id="980355344" lat="48.8793224" lon="2.2863181"/>
<node id="980355958" lat="48.8848465" lon="2.3034707"/>
<node id="980356648" lat="48.8766961" lon="2.2921683"/>
<node id="980357649" lat="48.8849498" lon="2.3034067"/>
<node id="980358041" lat="48.8758799" lon="2.2940754"/>
<node id="980358803" lat="48.8826062" lon="2.2982026"/>
<node id="980360954" lat="48.8762848" lon="2.2932789"/>
+ <node id="980368227" lat="48.8800716" lon="2.3023637"/>
<node id="980370675" lat="48.8827987" lon="2.2981539"/>
<node id="980372761" lat="48.8849518" lon="2.3034138"/>
- <node id="980372889" lat="48.8799255" lon="2.2853977"/>
<node id="980373833" lat="48.8758912" lon="2.2940755"/>
<node id="980375080" lat="48.8756491" lon="2.2940594"/>
- <node id="980381632" lat="48.8792276" lon="2.2861070"/>
- <node id="980383983" lat="48.8798920" lon="2.2864212"/>
<node id="980387313" lat="48.8853322" lon="2.3078702"/>
<node id="980389942" lat="48.8769252" lon="2.2919183"/>
<node id="980390233" lat="48.8849535" lon="2.3034209"/>
- <node id="980391920" lat="48.8798826" lon="2.2853136"/>
- <node id="980392056" lat="48.8799126" lon="2.2853616"/>
<node id="980392978" lat="48.8792576" lon="2.2875822"/>
<node id="980396734" lat="48.8750280" lon="2.2935762"/>
<node id="980396737" lat="48.8780861" lon="2.2947321"/>
<node id="980398069" lat="48.8849550" lon="2.3034360"/>
<node id="980398676" lat="48.8758836" lon="2.2940345"/>
- <node id="980401889" lat="48.8800745" lon="2.2853722"/>
- <node id="980405321" lat="48.8795848" lon="2.2856531"/>
<node id="980410368" lat="48.8827980" lon="2.2981526"/>
<node id="980412433" lat="48.8849518" lon="2.3034574"/>
<node id="980412673" lat="48.8759803" lon="2.2939791"/>
<node id="980413046" lat="48.8762824" lon="2.2932762"/>
<node id="980415106" lat="48.8768017" lon="2.2919862"/>
<node id="980415628" lat="48.8769155" lon="2.2919842"/>
- <node id="980418691" lat="48.8790041" lon="2.2857307"/>
- <node id="980419413" lat="48.8792159" lon="2.2854696"/>
- <node id="980421732" lat="48.8853048" lon="2.2933005"/>
+ <node id="980419056" lat="48.8870403" lon="2.3142091"/>
<node id="980425964" lat="48.8782863" lon="2.2950557"/>
<node id="980427195" lat="48.8756280" lon="2.2936947"/>
<node id="980433088" lat="48.8827176" lon="2.2980791"/>
- <node id="980435874" lat="48.8801038" lon="2.2852684"/>
<node id="980441837" lat="48.8755411" lon="2.2937678"/>
<node id="980442792" lat="48.8763614" lon="2.2930762"/>
<node id="980446733" lat="48.8848485" lon="2.3034743"/>
- <node id="980447767" lat="48.8792063" lon="2.2854811"/>
<node id="980448676" lat="48.8759739" lon="2.2940433"/>
<node id="980450413" lat="48.8756782" lon="2.2938287"/>
<node id="980450464" lat="48.8783300" lon="2.2948664"/>
- <node id="980452983" lat="48.8798867" lon="2.2853643"/>
<node id="980453953" lat="48.8762434" lon="2.2931755"/>
<node id="980457327" lat="48.8852010" lon="2.3080139"/>
- <node id="980457650" lat="48.8792906" lon="2.2853784"/>
<node id="980460679" lat="48.8750181" lon="2.2936040"/>
- <node id="980460904" lat="48.8791696" lon="2.2855271"/>
<node id="980462158" lat="48.8848507" lon="2.3034395"/>
- <node id="980462839" lat="48.8800504" lon="2.2852107"/>
- <node id="980463562" lat="48.8798099" lon="2.2861011"/>
<node id="980468706" lat="48.8792901" lon="2.2877395"/>
- <node id="980470908" lat="48.8798686" lon="2.2860873"/>
+ <node id="980469640" lat="48.8801336" lon="2.3024466"/>
+ <node id="980471123" lat="48.8828004" lon="2.3075074"/>
<node id="980474003" lat="48.8762746" lon="2.2932561"/>
- <node id="980474482" lat="48.8799349" lon="2.2861799"/>
- <node id="980480298" lat="48.8799463" lon="2.2861364"/>
+ <node id="980475410" lat="48.8800044" lon="2.3024311"/>
<node id="980480436" lat="48.8755689" lon="2.2938434"/>
- <node id="980481252" lat="48.8791926" lon="2.2860659"/>
+ <node id="980481550" lat="48.8800951" lon="2.3024917"/>
+ <node id="980482146" lat="48.8829079" lon="2.3077244"/>
<node id="980485535" lat="48.8760069" lon="2.2940776"/>
<node id="980488567" lat="48.8767818" lon="2.2920034"/>
<node id="980488767" lat="48.8759171" lon="2.2940762"/>
- <node id="980490266" lat="48.8790416" lon="2.2847563"/>
- <node id="980491498" lat="48.8793896" lon="2.2863557"/>
- <node id="980492467" lat="48.8799158" lon="2.2853994"/>
<node id="980493054" lat="48.8757199" lon="2.2939399"/>
- <node id="980493280" lat="48.8795716" lon="2.2856136"/>
+ <node id="980498813" lat="48.8872086" lon="2.3141929"/>
<node id="980498941" lat="48.8780441" lon="2.2948221"/>
<node id="980499996" lat="48.8760956" lon="2.2939295"/>
- <node id="980500693" lat="48.8799522" lon="2.2861910"/>
<node id="980501899" lat="48.8792739" lon="2.2877528"/>
<node id="980502126" lat="48.8849316" lon="2.3033796"/>
- <node id="980502399" lat="48.8801310" lon="2.2853625"/>
<node id="981836397" lat="48.8553621" lon="2.2808368">
<tag k="addr:housenumber" v="47"/>
<tag k="addr:street" v="Rue Raynouard"/>
@@ -7775,8 +7739,18 @@
<tag k="addr:street" v="Avenue Carnot"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="993549837" lat="48.8800481" lon="2.3023872">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="108"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue de Courcelles"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ </node>
<node id="993828548" lat="48.8414574" lon="2.3172246">
<tag k="alt_name" v="L’Adresse Musée de La Poste"/>
+ <tag k="contact:website" v="museedelaposte.fr"/>
+ <tag k="description" v="travaux 2017 boutique 21 avenue du Maine"/>
<tag k="fare" v="3.50–5.00 EUR"/>
<tag k="fax" v="+33 1 42 79 24 00"/>
<tag k="name" v="Musée de la Poste"/>
@@ -7786,19 +7760,22 @@
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.ladressemuseedelaposte.com/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2445818"/>
<tag k="wikipedia" v="fr:L'Adresse Musée de La Poste"/>
</node>
<node id="993828560" lat="48.8677629" lon="2.2935696">
<tag k="email" v="patrimoine@baccarat.fr"/>
<tag k="fare" v="3.50-5.00 EUR"/>
- <tag k="name" v="galerie-musée Baccarat"/>
+ <tag k="name" v="Galerie-musée Baccarat"/>
<tag k="name:be" v="Музей Бакара"/>
+ <tag k="name:ja" v="バカラ美術館"/>
<tag k="name:ru" v="Музей Баккара"/>
- <tag k="opening_hours" v="Mo 10:00-18:00;We-Sa 10:00-18:00"/>
+ <tag k="opening_hours" v="Mo 10:00-18:00; We-Sa 10:00-18:00"/>
<tag k="phone" v="+33 1 40 22 11 00"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.baccarat.fr/fr/univers-baccarat/musees/gallery-opening-hours.htm"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2992085"/>
<tag k="wikipedia" v="fr:Musée Baccarat (Paris)"/>
</node>
<node id="993833772" lat="48.8486125" lon="2.2661824">
@@ -7809,7 +7786,7 @@
</node>
<node id="997919783" lat="48.8848637" lon="2.3606402">
<tag k="name" v="Hôtel du Square"/>
- <tag k="phone" v="+33 (0)1 46 07 69 74"/>
+ <tag k="phone" v="+33 1 46 07 69 74"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -7916,16 +7893,16 @@
<node id="1013338002" lat="48.8266157" lon="2.2907794"/>
<node id="1013338031" lat="48.8270534" lon="2.2909366"/>
<node id="1025401504" lat="48.8379511" lon="2.2585104">
- <tag k="fax" v="+33-1-46510724"/>
+ <tag k="fax" v="+33 1 46 51 07 24"/>
<tag k="name" v="Holiday Inn Garden Court : Paris-Auteuil"/>
- <tag k="phone" v="+33-1-46519922"/>
+ <tag k="phone" v="+33 1 46 51 99 22"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1028569362" lat="48.8596983" lon="2.3588091"/>
<node id="1028569468" lat="48.8625016" lon="2.3453019">
<tag k="addr:street" v="Rue du Cinéma"/>
<tag k="contact:housenumber" v="2"/>
+ <tag k="indoor" v="yes"/>
<tag k="level" v="-3"/>
<tag k="museum" v="cinema"/>
<tag k="name" v="Salle des collections"/>
@@ -7935,11 +7912,11 @@
<tag k="tourism" v="museum"/>
<tag k="website" v="http://forumdesimages.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3078635"/>
<tag k="wikipedia" v="fr:Forum des images"/>
</node>
- <node id="1028572726" lat="48.8598093" lon="2.3585936"/>
<node id="1037359856" lat="48.8176472" lon="2.3291230">
- <tag k="entrance" v="yes"/>
+ <tag k="entrance" v="main"/>
</node>
<node id="1037359857" lat="48.8179716" lon="2.3294400"/>
<node id="1037359859" lat="48.8179929" lon="2.3292394"/>
@@ -7948,9 +7925,12 @@
<tag k="addr:housenumber" v="25"/>
<tag k="addr:postcode" v="75015"/>
<tag k="addr:street" v="Rue Alain Chartier"/>
- <tag k="name" v="Hôtel Studio"/>
+ <tag k="email" v="contact@hotelauguste.com"/>
+ <tag k="name" v="Hôtel Auguste"/>
+ <tag k="old_name" v="Hôtel Studio"/>
+ <tag k="phone" v="+33148286648"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hotel-studio.com/"/>
+ <tag k="website" v="http://www.hotelauguste.com/en/"/>
</node>
<node id="1044947691" lat="48.8853330" lon="2.3604560">
<tag k="name" v="Hôtel Merryl"/>
@@ -7981,6 +7961,9 @@
<tag k="visibility" v="area"/>
</node>
<node id="1080956696" lat="48.8907109" lon="2.3246455">
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Ambassadeur"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1081151262" lat="48.8171116" lon="2.3500417">
@@ -8014,14 +7997,6 @@
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1113738994" lat="48.8424656" lon="2.3124799">
- <tag k="name" v="Camélia Hôtel"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1113739025" lat="48.8423823" lon="2.3125402">
- <tag k="name" v="Le Méditel"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="1119291848" lat="48.8476583" lon="2.3515918">
<tag k="name" v="Familia Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
@@ -8037,80 +8012,82 @@
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/f/ff/Science_Eug%C3%A8ne_Guillaume_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="La Science"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125739636" lat="48.8420836" lon="2.3567595">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/a/ab/Fagon_2_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Guy-Crescent Fagon"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125739686" lat="48.8422052" lon="2.3566882">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/2/20/Geoffroy_st_Hilaire_5_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Geoffroy Saint-Hilaire"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125739693" lat="48.8424524" lon="2.3565434">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/1/10/Gay-Lussac_10_m%C3%A9daillon_galerie_%C3%A9volution_MNHM.jpg"/>
<tag k="name" v="Gay-Lussac"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
- <node id="1125739737" lat="48.8415818" lon="2.3565800"/>
+ <node id="1125739737" lat="48.8415680" lon="2.3565259"/>
<node id="1125739759" lat="48.8422879" lon="2.3566398">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/e/e4/Lamarck_6_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Lamarck"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125739969" lat="48.8421659" lon="2.3567113">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/a/a2/Georges_Cuvier_4_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Georges Cuvier"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125740071" lat="48.8423745" lon="2.3565890">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/8/89/Jussieu_8_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Jussieu"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125740122" lat="48.8423314" lon="2.3566143">
<tag k="artwork_type" v="sculpture"/>
- <tag k="image" v="http://www.mediawiki.org/wiki/File:Alexandre_Brongniart_7_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
+ <tag k="image" v="https://commons.wikimedia.org/wiki/File:Alexandre_Brongniart_7_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Alexandre Brongniart"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
+ </node>
+ <node id="1125740179" lat="48.8417247" lon="2.3570097">
+ <tag k="entrance" v="yes"/>
</node>
- <node id="1125740179" lat="48.8417247" lon="2.3570097"/>
<node id="1125740351" lat="48.8421274" lon="2.3567338">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/c/c4/Buffon_3_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Buffon"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125740442" lat="48.8420448" lon="2.3567823">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/d/d6/Guy_de_la_Brosse_1_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="Guy de la Brosse"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125740465" lat="48.8424163" lon="2.3565645">
<tag k="artwork_type" v="sculpture"/>
<tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/3/39/Ren%C3%A9-Just_Ha%C3%BCy_9_m%C3%A9daillon_galerie_%C3%A9volution_MNHN.jpg"/>
<tag k="name" v="René-Just Haüy"/>
- <tag k="note" v="Scupture sur la façade"/>
<tag k="sculpture:type" v="marble"/>
+ <tag k="tourism" v="artwork"/>
</node>
<node id="1125740485" lat="48.8433144" lon="2.3635599">
<tag k="entrance" v="yes"/>
@@ -8144,9 +8121,16 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1142933435" lat="48.8403652" lon="2.3414281">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="place Alphonse Laveran"/>
<tag k="name" v="Musée du Service de Santé des Armées"/>
+ <tag k="opening_hours" v="Jan-Jul, Sep-Dec : Tu-Su 12:00-18:00; Fr off; Jan 01, May 01, Dec 25 off"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.ecole-valdegrace.sante.defense.gouv.fr/bibliotheque-musee/musee-du-service-de-sante-des-armees"/>
+ <tag k="wikidata" v="Q3330482"/>
</node>
<node id="1159303252" lat="48.8663131" lon="2.3279889">
<tag k="name" v="Le Lotti"/>
@@ -8157,6 +8141,14 @@
<tag k="addr:street" v="Avenue Daumesnil"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1181634188" lat="48.8547808" lon="2.3048556">
+ <tag k="addr:housenumber" v="117"/>
+ <tag k="addr:street" v="Avenue de la Bourdonnais"/>
+ <tag k="name" v="Hôtel Eber Mars"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.hoteleber.com"/>
+ </node>
<node id="1185602629" lat="48.8400740" lon="2.3305797">
<tag k="addr:housenumber" v="225"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
@@ -8187,22 +8179,16 @@
<tag k="name" v="Hôtel Les Théâtres"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1202442146" lat="48.8623767" lon="2.3353116"/>
- <node id="1202442824" lat="48.8603197" lon="2.3337898"/>
- <node id="1202444485" lat="48.8624229" lon="2.3350745"/>
- <node id="1202446614" lat="48.8604620" lon="2.3331836"/>
- <node id="1202448528" lat="48.8625100" lon="2.3348920"/>
- <node id="1202449777" lat="48.8601545" lon="2.3337059"/>
- <node id="1202454263" lat="48.8602967" lon="2.3330949"/>
<node id="1209893702" lat="48.8705899" lon="2.3500828">
<tag k="email" v="info@museeduchocolat.fr"/>
- <tag k="fax" v="00.33.(0)1.42.29.65.08"/>
+ <tag k="fax" v="+33142296508"/>
<tag k="name" v="Choco-Story - Le musée gourmand du chocolat"/>
<tag k="opening_hours" v="Mo-Su 10:00-18:00; Jan 1:off; Dec 25:off"/>
- <tag k="phone" v="00.33.(0)1.42.29.68.60"/>
+ <tag k="phone" v="+33142296860"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museeduchocolat.fr"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3330333"/>
<tag k="wikipedia" v="fr:Musée du Chocolat (Paris)"/>
</node>
<node id="1211868483" lat="48.8243600" lon="2.2603600"/>
@@ -8297,7 +8283,13 @@
<node id="1211870747" lat="48.8244500" lon="2.2604250"/>
<node id="1211870754" lat="48.8244530" lon="2.2604400"/>
<node id="1211870814" lat="48.8242280" lon="2.2607270"/>
- <node id="1211870824" lat="48.8242250" lon="2.2607310"/>
+ <node id="1211870824" lat="48.8242250" lon="2.2607310">
+ <tag k="addr:city" v="Issy-les-Moulineaux"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:postcode" v="92130"/>
+ <tag k="addr:street" v="Rue Jacques-Henri Lartigue"/>
+ </node>
<node id="1211870828" lat="48.8242360" lon="2.2605500"/>
<node id="1211870830" lat="48.8243290" lon="2.2604020"/>
<node id="1211870833" lat="48.8244480" lon="2.2604210"/>
@@ -8314,12 +8306,17 @@
<node id="1211870963" lat="48.8242670" lon="2.2604950"/>
<node id="1211870965" lat="48.8242440" lon="2.2607330"/>
<node id="1211870987" lat="48.8241970" lon="2.2606000"/>
- <node id="1214588638" lat="48.8797908" lon="2.3207196">
+ <node id="1214588638" lat="48.8797757" lon="2.3206849">
<tag k="internet_access" v="yes"/>
<tag k="internet_access:fee" v="no"/>
- <tag k="name" v="Quality Hotel Opéra - St Lazare"/>
- <tag k="operator" v="Quality"/>
+ <tag k="name" v="Best Western Premier Le Swann"/>
+ <tag k="operator" v="Best Western"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-leswann.com/"/>
+ </node>
+ <node id="1215369814" lat="48.8444974" lon="2.3087840">
+ <tag k="addr:housenumber" v="28"/>
+ <tag k="addr:street" v="Rue Lecourbe"/>
</node>
<node id="1219897744" lat="48.8536395" lon="2.3074534">
<tag k="addr:housenumber" v="5"/>
@@ -8327,6 +8324,7 @@
<tag k="name" v="Hôtel Derby Eiffel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="1224673086" lat="48.8612404" lon="2.2970542">
<tag k="addr:housenumber" v="45"/>
@@ -8381,6 +8379,9 @@
<node id="1224673747" lat="48.8617892" lon="2.2986841">
<tag k="addr:housenumber" v="27"/>
<tag k="addr:street" v="Quai Branly"/>
+ <tag k="amenity" v="restaurant"/>
+ <tag k="name" v="Les Ombres"/>
+ <tag k="name:fr" v="Les Ombres"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1224674043" lat="48.8618357" lon="2.2988656">
@@ -8388,11 +8389,50 @@
<tag k="addr:street" v="Quai Branly"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1225597425" lat="48.8679538" lon="2.3657998">
+ <tag k="addr:housenumber" v="66"/>
+ <tag k="addr:street" v="Rue de Malte"/>
+ <tag k="name" v="Hibiscus République"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-hibiscus-republique.com/en/"/>
+ </node>
+ <node id="1227307403" lat="48.8718082" lon="2.3281089">
+ <tag k="addr:housenumber" v="29"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1227307529" lat="48.8713236" lon="2.3280597">
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1227307658" lat="48.8716961" lon="2.3280975">
+ <tag k="addr:housenumber" v="27"/>
+ <tag k="addr:postcode" v="75009"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1232773167" lat="48.8736135" lon="2.3344749">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Cité d'Antin"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1232773667" lat="48.8735342" lon="2.3346099">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Rue La Fayette"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1232995919" lat="48.8763603" lon="2.3353154">
<tag k="addr:housenumber" v="73"/>
<tag k="addr:street" v="Rue Taitbout"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1234174567" lat="48.8779191" lon="2.3279030">
+ <tag k="addr:housenumber" v="21"/>
+ <tag k="addr:street" v="Rue d'Athènes"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1234174673" lat="48.8825849" lon="2.3279485">
<tag k="addr:housenumber" v="76"/>
<tag k="addr:street" v="Rue de Clichy"/>
@@ -8403,11 +8443,49 @@
<tag k="addr:street" v="Rue de Clichy"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1234174861" lat="48.8779012" lon="2.3276485">
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:street" v="Rue d'Athènes"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234196557" lat="48.8797247" lon="2.3287485">
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:street" v="Rue de Liège"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1234196564" lat="48.8813448" lon="2.3282384">
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue de Parme"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1234196582" lat="48.8812276" lon="2.3277685">
+ <tag k="addr:housenumber" v="7"/>
+ <tag k="addr:street" v="Rue de Parme"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234196629" lat="48.8810902" lon="2.3291366">
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="addr:street" v="Rue du Cardinal Mercier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234196730" lat="48.8813288" lon="2.3274280">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Rue de Parme"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234196764" lat="48.8797903" lon="2.3340540">
+ <tag k="entrance" v="main"/>
+ </node>
+ <node id="1234207128" lat="48.8821915" lon="2.3285835">
+ <tag k="addr:housenumber" v="33"/>
+ <tag k="addr:street" v="Rue Ballu"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234207177" lat="48.8821552" lon="2.3286650">
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:street" v="Place Lili Boulanger"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1234207262" lat="48.8827928" lon="2.3346741">
<tag k="addr:housenumber" v="11"/>
<tag k="addr:street" v="Rue Fromentin"/>
@@ -8418,51 +8496,83 @@
<tag k="addr:street" v="Rue de Vintimille"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1234207374" lat="48.8820983" lon="2.3286293">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Rue de Vintimille"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1234207448" lat="48.8826594" lon="2.3325808">
+ <tag k="addr:housenumber" v="34"/>
+ <tag k="addr:street" v="Rue de Douai"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1234212793" lat="48.8794613" lon="2.3342407">
<tag k="addr:housenumber" v="30"/>
<tag k="addr:street" v="Rue La Bruyère"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1235153121" lat="48.8733074" lon="2.3437192">
- <tag k="name" v="Hôtel Arcadia"/>
- <tag k="phone" v="+33 1 40229999 "/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.astotel.com/hotel-acadia-opera-paris.php"/>
- </node>
<node id="1235153125" lat="48.8733772" lon="2.3438855">
<tag k="name" v="Hôtel Lodge du Centre"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1235164449" lat="48.8775079" lon="2.3383334">
- <tag k="addr:housenumber" v="11"/>
- <tag k="addr:street" v="Rue Notre-Dame de Lorette"/>
+ <node id="1236409647" lat="48.8820434" lon="2.3409384">
+ <tag k="addr:housenumber" v="55"/>
+ <tag k="addr:street" v="Boulevard de Rochechouart"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1240424639" lat="48.8650637" lon="2.3417127">
<tag k="name" v="Hôtel des Victoires"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1242438817" lat="48.8727968" lon="2.3449518">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Rue de Trévise"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1242439641" lat="48.8737764" lon="2.3453509">
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:street" v="Rue de Trévise"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1242504249" lat="48.8720574" lon="2.3420399">
<tag k="addr:housenumber" v="12"/>
<tag k="addr:street" v="Passage Jouffroy"/>
<tag k="email" v="front.ronceray@guichard.fr"/>
- <tag k="fax" v="01 42 47 13 63"/>
+ <tag k="fax" v="+33 1 42 47 13 63"/>
<tag k="name" v="Hôtel Ronceray"/>
<tag k="operator" v="Best Western"/>
- <tag k="phone" v="01 42 47 13 45"/>
+ <tag k="phone" v="+33 1 42 47 13 45"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelroncerayopera.fr"/>
</node>
+ <node id="1242504746" lat="48.8743766" lon="2.3420375">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="38"/>
+ <tag k="addr:street" v="Rue du Faubourg Montmartre"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1242504766" lat="48.8760831" lon="2.3421346">
<tag k="addr:housenumber" v="21"/>
<tag k="addr:street" v="Rue Buffault"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1242530189" lat="48.8730619" lon="2.3436079">
- <tag k="addr:housenumber" v="15"/>
- <tag k="addr:street" v="Rue de Montyon"/>
+ <node id="1242529942" lat="48.8733223" lon="2.3436909">
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:street" v="Rue Geoffroy Marie"/>
+ <tag k="name" v="Hôtel Acadia"/>
+ <tag k="phone" v="+33 1 40 22 99 99"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.astotel.com/hotel-acadia-opera-paris.php"/>
+ </node>
+ <node id="1242530236" lat="48.8732521" lon="2.3435536">
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:street" v="Rue Geoffroy Marie"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1242530305" lat="48.8734564" lon="2.3439535">
@@ -8470,8 +8580,15 @@
<tag k="addr:street" v="Rue Geoffroy Marie"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1244401754" lat="48.8350171" lon="2.4091837">
- <tag k="entrance" v="yes"/>
+ <node id="1242530793" lat="48.8731540" lon="2.3435645">
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:street" v="Rue de Montyon"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1242530848" lat="48.8730377" lon="2.3445436">
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:street" v="Rue de Montyon"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1244411691" lat="48.8479558" lon="2.3005672">
<tag k="name" v="Les Relais de Paris"/>
@@ -8502,35 +8619,154 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1252383401" lat="48.8390456" lon="2.3925460">
- <tag k="name" v="Daumesnil Hôtel"/>
- <tag k="source" v="survey"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="1255346269" lat="48.8441540" lon="2.2472531">
<tag k="name" v="Musée-Jardin Paul Landowski"/>
<tag k="opening_hours" v="We,Sa,Su 10:00-12:00,14:00-17:00"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
</node>
+ <node id="1256170882" lat="48.8300706" lon="2.3202271">
+ <tag k="addr:housenumber" v="147 Ter"/>
+ <tag k="addr:street" v="Rue d'Alésia"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2011"/>
+ </node>
+ <node id="1256171067" lat="48.8300377" lon="2.3203189">
+ <tag k="addr:housenumber" v="147 Bis"/>
+ <tag k="addr:street" v="Rue d'Alésia"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2011"/>
+ </node>
<node id="1264674869" lat="48.8779440" lon="2.3378300">
<tag k="created_by" v="iLOE 1.8"/>
<tag k="name" v="Saint-Georges"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1271556296" lat="48.8739595" lon="2.3504866">
+ <tag k="addr:housenumber" v="41"/>
+ <tag k="addr:street" v="Rue d'Hauteville"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556301" lat="48.8717995" lon="2.3491972">
+ <tag k="addr:housenumber" v="38b"/>
+ <tag k="addr:street" v="Rue de l'Échiquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556337" lat="48.8717838" lon="2.3492782">
+ <tag k="addr:housenumber" v="38"/>
+ <tag k="addr:street" v="Rue de l'Échiquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556338" lat="48.8710787" lon="2.3498230">
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:street" v="Rue d'Hauteville"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556404" lat="48.8718379" lon="2.3499005">
+ <tag k="addr:housenumber" v="9b"/>
+ <tag k="addr:street" v="Rue d'Hauteville"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556440" lat="48.8717438" lon="2.3498748">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue d'Hauteville"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556471" lat="48.8717308" lon="2.3495541">
+ <tag k="addr:housenumber" v="36"/>
+ <tag k="addr:street" v="Rue de l'Échiquier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556477" lat="48.8764163" lon="2.3486171">
+ <tag k="addr:housenumber" v="78"/>
+ <tag k="addr:street" v="Rue du Faubourg Poissonnière"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1271556552" lat="48.8721867" lon="2.3494041">
+ <tag k="addr:housenumber" v="39"/>
+ <tag k="addr:street" v="Rue d'Enghien"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272453434" lat="48.8729241" lon="2.3543391">
+ <tag k="addr:housenumber" v="75"/>
+ <tag k="addr:street" v="Rue du Faubourg Saint-Denis"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272453524" lat="48.8708539" lon="2.3518283">
+ <tag k="addr:housenumber" v="11b"/>
+ <tag k="addr:street" v="Rue de Mazagran"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1272453678" lat="48.8746819" lon="2.3557025">
<tag k="addr:housenumber" v="100"/>
<tag k="addr:street" v="Rue du Faubourg Saint-Denis"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1273681753" lat="48.8798133" lon="2.3502312">
- <tag k="addr:housenumber" v="88"/>
+ <node id="1272516617" lat="48.8760951" lon="2.3575869">
+ <tag k="addr:housenumber" v="93"/>
+ <tag k="addr:street" v="Boulevard de Strasbourg"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272516645" lat="48.8739119" lon="2.3501183">
+ <tag k="addr:housenumber" v="42"/>
+ <tag k="addr:street" v="Rue des Petites Écuries"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272516684" lat="48.8736325" lon="2.3520525">
+ <tag k="addr:housenumber" v="22"/>
+ <tag k="addr:street" v="Rue des Petites Écuries"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272516798" lat="48.8724486" lon="2.3557969">
+ <tag k="addr:housenumber" v="49"/>
+ <tag k="addr:street" v="Boulevard de Strasbourg"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272516944" lat="48.8764626" lon="2.3487364">
+ <tag k="addr:housenumber" v="25"/>
+ <tag k="addr:street" v="Rue des Messageries"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1272516969" lat="48.8738906" lon="2.3503921">
+ <tag k="addr:housenumber" v="38"/>
+ <tag k="addr:street" v="Rue des Petites Écuries"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1273548195" lat="48.8793095" lon="2.3581513">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue de Dunkerque"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1273548320" lat="48.8783832" lon="2.3572891">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue des Deux Gares"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1273681592" lat="48.8801886" lon="2.3514956">
+ <tag k="addr:housenumber" v="98"/>
<tag k="addr:street" v="Rue de Maubeuge"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1273681829" lat="48.8803179" lon="2.3513988">
+ <tag k="addr:housenumber" v="79"/>
+ <tag k="addr:street" v="Rue de Maubeuge"/>
+ <tag k="alt_name" v="Hôtel Maubeuge Gare du Nord"/>
+ <tag k="name" v="Hôtel de Maubeuge"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
- <tag k="wheelchair" v="no"/>
+ </node>
+ <node id="1278464602" lat="48.8794106" lon="2.3582104">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="4b"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue de Dunkerque"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1278464911" lat="48.8796570" lon="2.3549177">
<tag k="addr:city" v="Paris"/>
@@ -8544,6 +8780,21 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1280690290" lat="48.8761997" lon="2.3573122">
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:street" v="Rue du 8 Mai 1945"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1280690325" lat="48.8761725" lon="2.3574748">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:street" v="Rue du 8 Mai 1945"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1280690413" lat="48.8762368" lon="2.3570905">
+ <tag k="addr:housenumber" v="13"/>
+ <tag k="addr:street" v="Rue du 8 Mai 1945"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1281858379" lat="48.8793580" lon="2.3622336">
<tag k="addr:housenumber" v="1"/>
<tag k="addr:street" v="Rue du Château Landon"/>
@@ -8569,15 +8820,13 @@
<tag k="addr:street" v="Rue du Faubourg Saint-Martin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1282180288" lat="48.8790898" lon="2.3556386">
+ <node id="1282180279" lat="48.8793854" lon="2.3586195">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="31"/>
+ <tag k="addr:housenumber" v="45"/>
<tag k="addr:postcode" v="75010"/>
- <tag k="addr:street" v="Rue de Saint-Quentin"/>
- <tag k="name" v="Quality Hotel Gare Du Nord"/>
+ <tag k="addr:street" v="Rue d'Alsace"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
- <tag k="tourism" v="hotel"/>
</node>
<node id="1282180311" lat="48.8781799" lon="2.3553154">
<tag k="addr:city" v="Paris"/>
@@ -8592,7 +8841,7 @@
<tag k="addr:country" v="FR"/>
<tag k="addr:housenumber" v="19"/>
<tag k="addr:postcode" v="75010"/>
- <tag k="addr:street" v="Rue de Valenciennes"/>
+ <tag k="addr:street" v="Rue de Saint-Quentin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1282625920" lat="48.8956795" lon="2.2620676">
@@ -8621,45 +8870,46 @@
<tag k="addr:street" v="Rue de l'Orillon"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1289533540" lat="48.8783485" lon="2.3572882">
- <tag k="name" v="Hôtel d'Amiens"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hoteldamiens.com/"/>
- </node>
- <node id="1292036898" lat="48.8663533" lon="2.3043410">
- <tag k="name" v="Hôtel Plaza Athénée"/>
- <tag k="tourism" v="hotel"/>
+ <node id="1289533540" lat="48.8782590" lon="2.3573481"/>
+ <node id="1292143812" lat="48.8656795" lon="2.3665912">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:street" v="Boulevard Voltaire"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1296703177" lat="48.8652754" lon="2.3282212">
<tag k="name" v="Le Meurice"/>
<tag k="name:el" v="Ξενοδοχείο Λε Μερίς"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Hôtel Meurice"/>
+ <tag k="wikidata" v="Q3145596"/>
+ <tag k="wikipedia" v="fr:Le Meurice"/>
</node>
<node id="1296750671" lat="48.8629386" lon="2.2890051">
<tag k="fare" v="full:8; discount:6; free:under 18, Paris Museum Pass, 1st sunday of month, 18/25 ans ressortissants et étudiants de l'UE, les enseignants des 1er et 2nd degré, minimaux sociaux, demandeurs d’emploi, ICOM, ICOMOS, ICAM"/>
<tag k="fare:currency" v="euro"/>
<tag k="name" v="Cité de l'architecture et du patrimoine"/>
<tag k="name:ar" v="متحف_العمارة_و_التراث_(فرنسا)"/>
- <tag k="opening_hours" v="Mo,We,Fr,Sa,Su 11:00-19:00; Th 11:00-21:00 &quot;Fermeture des caisses à 18h15, le jeudi à 20h15&quot;"/>
- <tag k="phone" v="01.58.51.52.00"/>
+ <tag k="name:zh" v="法国建筑历史博物馆"/>
+ <tag k="opening_hours" v="Mo,We,Fr,Sa,Su 11:00-19:00; Th 11:00-21:00"/>
+ <tag k="phone" v="+33158515200"/>
+ <tag k="short_name" v="CAP"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.citechaillot.fr/fr/"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q537515"/>
<tag k="wikipedia" v="fr:Cité de l'architecture et du patrimoine"/>
</node>
<node id="1296754169" lat="48.8618163" lon="2.2873421">
<tag k="email" v="infos.publics@musee-marine.fr"/>
- <tag k="fax" v="01.53.65.81.03"/>
+ <tag k="fax" v="+33153658103"/>
<tag k="name" v="Musée de la Marine"/>
<tag k="note:fr" v="Fermeture des caisses 45 minutes avant"/>
- <tag k="opening_hours" v="Mo,We,Th,Fr 11:00-18:00; Sa,Su 11:00-19:00; May 1 off; Dec 25 off; Jan 1 off; Tu off"/>
- <tag k="phone" v="+33 (0)1 53 65 69 69;+33 (0)1 53 65 69 53"/>
+ <tag k="opening_hours" v="Mo,We,Th,Fr 11:00-18:00; Sa,Su 11:00-19:00; May 1 off; Dec 25 off; Jan 1 off; Tu off"/>
+ <tag k="phone" v="+33 1 53 65 69 69;+33 1 53 65 69 53"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.musee-marine.fr"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1286709"/>
<tag k="wikipedia" v="fr:Musée national de la Marine"/>
</node>
<node id="1298213998" lat="48.8233030" lon="2.2750610"/>
@@ -8682,8 +8932,16 @@
<node id="1298215119" lat="48.8235640" lon="2.2749160"/>
<node id="1298215158" lat="48.8234542" lon="2.2749636"/>
<node id="1298215184" lat="48.8235360" lon="2.2748050"/>
- <node id="1298907948" lat="48.8643761" lon="2.3308831">
+ <node id="1298778047" lat="48.8653183" lon="2.3832815">
+ <tag k="addr:housenumber" v="25"/>
+ <tag k="addr:street" v="Passage de Ménilmontant"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1298907948" lat="48.8642598" lon="2.3308105">
+ <tag k="addr:housenumber" v="202"/>
+ <tag k="addr:street" v="Rue de Rivoli"/>
<tag k="name" v="Hôtel Saint-James &amp; Albany"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1300595272" lat="48.8359882" lon="2.2492059">
@@ -8691,11 +8949,6 @@
<tag k="name" v="Le Petit Cap"/>
<tag k="source" v="survey"/>
</node>
- <node id="1301073488" lat="48.8586086" lon="2.3822429">
- <tag k="addr:housenumber" v="7"/>
- <tag k="addr:street" v="Rue Pache"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
- </node>
<node id="1301125030" lat="48.8548067" lon="2.3689756">
<tag k="addr:housenumber" v="8"/>
<tag k="addr:street" v="Boulevard Beaumarchais"/>
@@ -8722,12 +8975,15 @@
<node id="1307926124" lat="48.8497128" lon="2.2851374"/>
<node id="1307926126" lat="48.8498739" lon="2.2854020"/>
<node id="1307926147" lat="48.8496889" lon="2.2851801"/>
+ <node id="1307926184" lat="48.8508974" lon="2.2850683"/>
<node id="1307926264" lat="48.8497669" lon="2.2850681"/>
<node id="1307926282" lat="48.8497620" lon="2.2855288"/>
<node id="1307926311" lat="48.8498717" lon="2.2853837"/>
<node id="1307926358" lat="48.8496919" lon="2.2852092"/>
<node id="1307926367" lat="48.8497903" lon="2.2834624"/>
<node id="1307926543" lat="48.8497055" lon="2.2854933"/>
+ <node id="1307926570" lat="48.8506092" lon="2.2852233"/>
+ <node id="1307926574" lat="48.8505554" lon="2.2853081"/>
<node id="1307926582" lat="48.8497642" lon="2.2855554"/>
<node id="1307926623" lat="48.8497499" lon="2.2850680"/>
<node id="1307926648" lat="48.8498619" lon="2.2850470"/>
@@ -8736,6 +8992,7 @@
<node id="1307926736" lat="48.8498947" lon="2.2853150"/>
<node id="1307926754" lat="48.8497446" lon="2.2851091"/>
<node id="1307926769" lat="48.8499304" lon="2.2852497"/>
+ <node id="1307926820" lat="48.8506849" lon="2.2850854"/>
<node id="1307926840" lat="48.8498866" lon="2.2850481"/>
<node id="1307926853" lat="48.8496919" lon="2.2851760"/>
<node id="1307926855" lat="48.8498170" lon="2.2854651"/>
@@ -8745,33 +9002,49 @@
<node id="1307926969" lat="48.8498458" lon="2.2854623"/>
<node id="1307926982" lat="48.8497952" lon="2.2850114"/>
<node id="1307926983" lat="48.8498863" lon="2.2853593"/>
+ <node id="1307927008" lat="48.8507670" lon="2.2849990"/>
<node id="1307927028" lat="48.8496680" lon="2.2854512"/>
+ <node id="1307927035" lat="48.8505950" lon="2.2852058"/>
+ <node id="1307927039" lat="48.8505943" lon="2.2856443"/>
<node id="1307927043" lat="48.8497096" lon="2.2851435"/>
<node id="1307927050" lat="48.8497919" lon="2.2855515"/>
<node id="1307927059" lat="48.8499519" lon="2.2851600"/>
<node id="1307927067" lat="48.8496159" lon="2.2840329"/>
<node id="1307927071" lat="48.8498262" lon="2.2850110"/>
+ <node id="1307927073" lat="48.8507944" lon="2.2849422"/>
<node id="1307927088" lat="48.8497316" lon="2.2851344"/>
+ <node id="1307927100" lat="48.8506084" lon="2.2851760"/>
<node id="1307927102" lat="48.8499285" lon="2.2851330"/>
<node id="1307927104" lat="48.8496565" lon="2.2852752"/>
+ <node id="1307927105" lat="48.8507497" lon="2.2850364"/>
<node id="1307927119" lat="48.8497135" lon="2.2851493"/>
<node id="1307927121" lat="48.8499537" lon="2.2852070"/>
+ <node id="1307927123" lat="48.8507222" lon="2.2850070"/>
+ <node id="1307927144" lat="48.8506706" lon="2.2850679"/>
<node id="1307927237" lat="48.8499085" lon="2.2850902"/>
+ <node id="1307927261" lat="48.8505852" lon="2.2852707"/>
<node id="1307927262" lat="48.8496549" lon="2.2852442"/>
<node id="1307927263" lat="48.8499311" lon="2.2853012"/>
<node id="1307927278" lat="48.8497428" lon="2.2850802"/>
<node id="1307927303" lat="48.8499745" lon="2.2852081"/>
<node id="1307927306" lat="48.8496270" lon="2.2853306"/>
+ <node id="1307927329" lat="48.8506840" lon="2.2850381"/>
+ <node id="1307927353" lat="48.8505770" lon="2.2852619"/>
<node id="1307927363" lat="48.8498425" lon="2.2854175"/>
<node id="1307927387" lat="48.8498484" lon="2.2854014"/>
+ <node id="1307927409" lat="48.8507000" lon="2.2850530"/>
<node id="1307927435" lat="48.8496848" lon="2.2854518"/>
+ <node id="1307927468" lat="48.8504879" lon="2.2855172"/>
<node id="1307927476" lat="48.8497336" lon="2.2854950"/>
<node id="1307927507" lat="48.8496330" lon="2.2853780"/>
<node id="1307927516" lat="48.8495269" lon="2.2839423"/>
+ <node id="1307927541" lat="48.8508308" lon="2.2849838"/>
<node id="1307927548" lat="48.8498614" lon="2.2835678"/>
<node id="1307927576" lat="48.8497031" lon="2.2833759"/>
<node id="1307927589" lat="48.8497055" lon="2.2854767"/>
+ <node id="1307927865" lat="48.8506253" lon="2.2851963"/>
<node id="1307927867" lat="48.8497941" lon="2.2849856"/>
+ <node id="1307927868" lat="48.8505828" lon="2.2853400"/>
<node id="1307927872" lat="48.8496768" lon="2.2852355"/>
<node id="1307927924" lat="48.8499218" lon="2.2851250"/>
<node id="1307927933" lat="48.8494575" lon="2.2838369"/>
@@ -8795,6 +9068,28 @@
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1326727534" lat="48.8540849" lon="2.3819815">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue Godefroy Cavaignac"/>
+ <tag k="email" v="info@paris-hotel-desarts.com"/>
+ <tag k="name" v="Hôtel Des Arts Bastille"/>
+ <tag k="phone" v="+33 1 43 79 72 57"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.paris-hotel-desarts.com"/>
+ </node>
+ <node id="1326932089" lat="48.8518496" lon="2.3837921">
+ <tag k="addr:housenumber" v="22"/>
+ <tag k="addr:street" v="Rue Faidherbe"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1326932213" lat="48.8519522" lon="2.3837301">
+ <tag k="addr:housenumber" v="24"/>
+ <tag k="addr:street" v="Rue Faidherbe"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1328013464" lat="48.8537558" lon="2.3881987">
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue Neuve des Boulets"/>
@@ -8807,17 +9102,20 @@
</node>
<node id="1336873192" lat="48.8749151" lon="2.3431481">
<tag k="name" v="Musée de la franc-maçonnerie"/>
- <tag k="phone" v="01.45.23.74.09"/>
+ <tag k="phone" v="+33145237409"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museefm.org/"/>
+ <tag k="wikidata" v="Q2597719"/>
<tag k="wikipedia" v="fr:Musée de la franc-maçonnerie"/>
</node>
<node id="1343714770" lat="48.8834295" lon="2.3251389">
+ <tag k="addr:housenumber" v="3"/>
<tag k="entrance" v="yes"/>
</node>
<node id="1348554962" lat="48.8755250" lon="2.3585349">
<tag k="name" v="Ibis Paris Gare de l'Est"/>
<tag k="operator" v="Accor"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1350641894" lat="48.8466437" lon="2.3698297">
@@ -8859,9 +9157,12 @@
<node id="1365424464" lat="48.8603776" lon="2.2978274"/>
<node id="1365433411" lat="48.8606022" lon="2.2985829"/>
<node id="1367996793" lat="48.8411575" lon="2.3473052">
+ <tag k="facebook" v="https://www.facebook.com/espgg/"/>
<tag k="name" v="Espace des Sciences Pierre-Gilles de Gennes"/>
- <tag k="source" v="http://www.espgg.org"/>
+ <tag k="opening_hours" v="Tu-Sa 14:00-17:00"/>
<tag k="tourism" v="museum"/>
+ <tag k="website" v="https://www.espgg.org"/>
+ <tag k="wikidata" v="Q40772746"/>
</node>
<node id="1370205558" lat="48.8513311" lon="2.3755653">
<tag k="addr:housenumber" v="92"/>
@@ -8884,10 +9185,11 @@
</node>
<node id="1372919987" lat="48.8498614" lon="2.3465433">
<tag k="name" v="Marignan"/>
+ <tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1373609040" lat="48.8498802" lon="2.2884724">
- <tag k="name" v="Mercure"/>
+ <tag k="name" v="Hôtel Eiffel Saint-Charles"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1376158927" lat="48.8479302" lon="2.3878050">
@@ -8922,7 +9224,12 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
<node id="1381610689" lat="48.8565109" lon="2.3263842">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="46"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue du Bac"/>
<tag k="name" v="Deyrolle"/>
+ <tag k="opening_hours" v="Mo-Sa 10:00-19:00"/>
<tag k="tourism" v="museum"/>
</node>
<node id="1381936927" lat="48.8614344" lon="2.3521787"/>
@@ -8979,10 +9286,13 @@
<tag k="addr:street" v="Rue Jean Renoir"/>
</node>
<node id="1399910027" lat="48.8519070" lon="2.2652250">
+ <tag k="addr:postcode" v="75016"/>
<tag k="name" v="Fondation Le Corbusier"/>
- <tag k="phone" v="01.42.88.41.53"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-18:00; Mo 13:30-18:00"/>
+ <tag k="phone" v="+33142884153"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.fondationlecorbusier.asso.fr"/>
+ <tag k="wikidata" v="Q1435661"/>
</node>
<node id="1399929421" lat="48.8703234" lon="2.2765175">
<tag k="addr:city" v="Paris"/>
@@ -8990,18 +9300,22 @@
<tag k="addr:postcode" v="75116"/>
<tag k="addr:street" v="Rue de la Faisanderie"/>
<tag k="name" v="Musée de la Contrefaçon"/>
+ <tag k="name:ja" v="贋造博物館"/>
+ <tag k="opening_hours" v="Tu-Su 14:00-17:30"/>
<tag k="operator" v="UNIFAB"/>
<tag k="phone" v="+33 1 56 26 14 03"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://musee-contrefacon.com/"/>
+ <tag k="wikidata" v="Q2449709"/>
<tag k="wikipedia" v="fr:Musée de la Contrefaçon"/>
</node>
<node id="1399940600" lat="48.8716440" lon="2.2881063">
<tag k="name" v="Musée Dapper"/>
<tag k="name:ru" v="Музей Даппера"/>
- <tag k="phone" v="01.45.00.91.75"/>
+ <tag k="phone" v="+33145009175"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.dapper.com.fr"/>
+ <tag k="wikidata" v="Q2023566"/>
<tag k="wikipedia" v="fr:Musée Dapper"/>
</node>
<node id="1401461539" lat="48.8844650" lon="2.3679226">
@@ -9009,82 +9323,85 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1416514584" lat="48.8720379" lon="2.3446636">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="9"/>
- <tag k="addr:postcode" v="75009"/>
- <tag k="addr:street" v="Cité Bergère"/>
<tag k="beds" v="45"/>
<tag k="name" v="Hôtel d'Espagne"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1419519631" lat="48.8327663" lon="2.3893382">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="53"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Avenue des Terroirs de France"/>
<tag k="email" v="diane@pavillons-de-bercy.com"/>
- <tag k="fax" v="01.43.40.16.89"/>
- <tag k="fee" v="full:16; discount:8"/>
+ <tag k="fax" v="+33143401689"/>
+ <tag k="fee" v="full:16;discount:8"/>
<tag k="name" v="Musée des Arts Forains"/>
<tag k="note:fr" v="Tarif réduit jusque 11 ans; se visite sur rdv uniquement"/>
- <tag k="phone" v="01.43.40.16.22"/>
+ <tag k="phone" v="+33143401622"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="time" v="90"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.pavillons-de-bercy.com/"/>
- <tag k="wheelchair" v="no"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q899223"/>
<tag k="wikipedia" v="fr:Musée des Arts forains"/>
</node>
<node id="1425940779" lat="48.8302877" lon="2.3141843">
<tag k="name" v="Musée Adzak - Espace d'Art International"/>
- <tag k="phone" v="01.45.43.06.98"/>
+ <tag k="phone" v="+33145430698"/>
<tag k="tourism" v="museum"/>
- </node>
- <node id="1425974260" lat="48.8557584" lon="2.3320096">
- <tag k="name" v="Musée d'Anatomie Delmas-Orfila-Rouvière"/>
- <tag k="phone" v="01.42.86.20.47"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.mairie6.paris.fr"/>
+ <tag k="wikidata" v="Q3329038"/>
</node>
<node id="1425982378" lat="48.8716204" lon="2.2814131">
<tag k="name" v="Musée Arménien de France"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.le-maf.com/"/>
+ <tag k="wikidata" v="Q2090916"/>
<tag k="wikipedia" v="fr:Musée arménien de France"/>
</node>
<node id="1426016793" lat="48.8513494" lon="2.3555880">
- <tag k="name" v="Musée Boleslas Biegas - Musée Adam Mickiewicz"/>
- <tag k="phone" v="01.43.54.35.61"/>
+ <tag k="addr:street" v="Rue d'Arcole"/>
+ <tag k="name" v="Musée Adam Mickiewicz"/>
+ <tag k="phone" v="+33143543561"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.bibliotheque-polonaise-paris-shlp.fr"/>
+ <tag k="wikidata" v="Q3051109"/>
</node>
<node id="1426016798" lat="48.8483211" lon="2.3294718">
<tag k="name" v="Musée Bible et Terre Sainte"/>
- <tag k="phone" v="01.45.44.09.55"/>
+ <tag k="phone" v="+33145440955"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.icp.fr"/>
+ <tag k="wikidata" v="Q3056566"/>
</node>
<node id="1426025878" lat="48.8677268" lon="2.3223990">
<tag k="name" v="Musée Bouilhet-Christofle - Musée d'Orfèvrerie"/>
<tag k="note" v="date d'ouverture inconnue"/>
- <tag k="phone" v="01.49.22.41.15"/>
+ <tag k="phone" v="+33149224115"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.christofle.com/"/>
+ <tag k="wikidata" v="Q3329101"/>
</node>
<node id="1426089606" lat="48.8591945" lon="2.2851420">
<tag k="name" v="Musée Clemenceau"/>
- <tag k="phone" v="01.45.20.53.41"/>
+ <tag k="phone" v="+33145205341"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.musee-clemenceau.fr/"/>
+ <tag k="wikidata" v="Q3329119"/>
</node>
<node id="1426093837" lat="48.8522269" lon="2.3350050">
<tag k="name" v="Musée-Librairie du Compagnonnage"/>
- <tag k="phone" v="01.43.26.25.03"/>
+ <tag k="phone" v="+33143262503"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.compagnons.org/"/>
+ <tag k="wikidata" v="Q3329030"/>
</node>
- <node id="1426110613" lat="48.8506815" lon="2.3410772">
+ <node id="1426110613" lat="48.8505577" lon="2.3402229">
<tag k="name" v="Musée d'Anatomie Pathologique Dupuytren"/>
- <tag k="phone" v="01.42.34.68.60"/>
+ <tag k="phone" v="+33142346860"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.upmc.fr/"/>
+ <tag k="wikidata" v="Q3329140"/>
<tag k="wikipedia" v="fr:Musée Dupuytren"/>
</node>
<node id="1426135888" lat="48.8476741" lon="2.3140391">
@@ -9094,28 +9411,24 @@
<tag k="wikidata" v="Q3329379"/>
<tag k="wikipedia" v="fr:Musée Valentin-Haüy"/>
</node>
- <node id="1426135889" lat="48.8830345" lon="2.3077236">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="43"/>
- <tag k="addr:postcode" v="75017"/>
- <tag k="addr:street" v="Avenue de Villiers"/>
- <tag k="name" v="Musée Henner"/>
- <tag k="phone" v="01.47.63.42.73"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.musee-henner.fr/"/>
- <tag k="wikipedia" v="fr:Musée national Jean-Jacques Henner"/>
- </node>
<node id="1426176059" lat="48.8513629" lon="2.3410046">
<tag k="name" v="Musée d'histoire de la Médecine"/>
+ <tag k="opening_hours" v="Mo-We,Fr,Sa 14:00-17:30"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.bium.univ-paris5.fr/musee/"/>
+ <tag k="wikidata" v="Q3329671"/>
</node>
<node id="1426215340" lat="48.8547304" lon="2.3248616">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="59"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue de Grenelle"/>
<tag k="name" v="Musée Maillol"/>
- <tag k="phone" v="01.42.22.59.58"/>
+ <tag k="phone" v="+33142225958"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museemaillol.com/"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q946883"/>
</node>
<node id="1426215341" lat="48.8554427" lon="2.3276941">
<tag k="contact:housenumber" v="222"/>
@@ -9125,48 +9438,44 @@
<tag k="phone" v="+33 1 42 22 48 48"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museedeslettres.fr/"/>
+ <tag k="wikidata" v="Q2407603"/>
<tag k="wikipedia" v="fr:Musée des lettres et manuscrits"/>
</node>
- <node id="1426245243" lat="48.8434645" lon="2.3207843">
+ <node id="1426245243" lat="48.8435077" lon="2.3207897">
<tag k="name" v="Musée du Montparnasse"/>
<tag k="phone" v="+33 1 42229196"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museedumontparnasse.net/"/>
+ <tag k="wikidata" v="Q1758416"/>
</node>
<node id="1426245245" lat="48.8456499" lon="2.3395974">
<tag k="fare" v="full:6 discount:3"/>
<tag k="name" v="Musée de Minéralogie"/>
+ <tag k="name:de" v="Museum für Mineralogie"/>
+ <tag k="name:en" v="Mineralogy Museum"/>
<tag k="opening_hours" v="Tu-Fr 13:30-18:00; Sa 10:00-12:30,14:00-17:00"/>
- <tag k="phone" v="01.40.51.92.90"/>
+ <tag k="phone" v="+33140519290"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.mines-paristech.fr/"/>
+ <tag k="website" v="http://www.musee.mines-paristech.fr/"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q3330098"/>
</node>
<node id="1426245253" lat="48.8434624" lon="2.3362665">
<tag k="name" v="Musée Moissan"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.paris.fr/"/>
- </node>
- <node id="1426281643" lat="48.8536113" lon="2.3476422">
- <tag k="fare" v="full:7; discount:5; free: under 14"/>
- <tag k="fax" v="01.43.29.30.55"/>
- <tag k="name" v="Crypte Archéologique du Parvis Notre-Dame"/>
- <tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
- <tag k="operator" v="Musée Carnavalet"/>
- <tag k="phone" v="01.55.42.50.10"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="crypte.paris.fr/"/>
- <tag k="website:en" v="http://crypte.paris.fr/en/crypt"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikidata" v="Q3005760"/>
- <tag k="wikipedia" v="fr:Crypte archéologique du parvis Notre-Dame"/>
+ <tag k="wikidata" v="Q3329289"/>
</node>
<node id="1426281644" lat="48.8718820" lon="2.3312120">
<tag k="name" v="Bibliothèque-Musée de l'Opéra"/>
- <tag k="phone" v="01.53.79.37.47"/>
+ <tag k="name:ko" v="오페라"/>
+ <tag k="opening_hours" v="Mo-Su 10:00-17:00"/>
+ <tag k="phone" v="+33153793747"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.bnf.fr/"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2717848"/>
<tag k="wikipedia" v="fr:Bibliothèque-musée de l'Opéra"/>
</node>
<node id="1426816231" lat="48.8656784" lon="2.3307909">
@@ -9175,9 +9484,10 @@
</node>
<node id="1426816232" lat="48.8495079" lon="2.3483856">
<tag k="name" v="Musée de la Préfecture de Police"/>
- <tag k="phone" v="01.44.41.52.50"/>
+ <tag k="phone" v="+33144415250"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="prefecturedepolice.interieur.gouv.fr"/>
+ <tag k="wikidata" v="Q642825"/>
</node>
<node id="1430559114" lat="48.8565865" lon="2.3275569">
<tag k="name" v="Hôtel Montalembert"/>
@@ -9187,17 +9497,18 @@
<tag k="name" v="Grand Hôtel du Bel Air"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
- <node id="1432261555" lat="48.8990359" lon="2.2464405">
+ <node id="1432261555" lat="48.8990454" lon="2.2464145">
+ <tag k="name" v="George Sand"/>
+ <tag k="source" v="Microsoft Bing orbital imagery + survey"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1432476646" lat="48.8505331" lon="2.2923753">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="1"/>
- <tag k="addr:postcode" v="75015"/>
- <tag k="addr:street" v="Rue de Lourmel"/>
<tag k="contact:fax" v="+33 1 45753668"/>
+ <tag k="contact:housenumber" v="1"/>
<tag k="contact:phone" v="+33 1 45781712"/>
+ <tag k="contact:street" v="Rue de Lourmel"/>
<tag k="contact:website" v="http://www.hotel-paris-petitlouvre.com/"/>
<tag k="name" v="Hôtel du Petit Louvre"/>
<tag k="source" v="survey"/>
@@ -9223,22 +9534,16 @@
</node>
<node id="1461394098" lat="48.8811174" lon="2.3514426">
<tag k="email" v="resa@avalonparis.com"/>
- <tag k="fax" v="+33 (0)1 42855001"/>
+ <tag k="fax" v="+33 1 42 85 50 01"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
- <tag k="name" v="AVALON HOTEL"/>
- <tag k="phone" v="+33 (0)1 42855000"/>
+ <tag k="name" v="Avalon Hôtel"/>
+ <tag k="phone" v="+33 1 42 85 50 00"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="avalonparis.com"/>
<tag k="wheelchair" v="yes"/>
</node>
- <node id="1461630605" lat="48.8429656" lon="2.3185894">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="18"/>
- <tag k="addr:street" v="Rue Antoine Bourdelle"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
- </node>
<node id="1465052905" lat="48.8687731" lon="2.2829281">
<tag k="name" v="Kickers"/>
<tag k="shop" v="shoes"/>
@@ -9256,6 +9561,18 @@
<tag k="name" v="Entrée Principale"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
+ <node id="1474889088" lat="48.8437701" lon="2.3155807">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="153"/>
+ <tag k="addr:street" v="Rue de Vaugirard"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
+ <node id="1474889110" lat="48.8430349" lon="2.3131715">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="181"/>
+ <tag k="addr:street" v="Rue de Vaugirard"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ </node>
<node id="1475026114" lat="48.8727937" lon="2.3157855">
<tag k="name" v="Hôtellerie Paris Saint-Honoré"/>
<tag k="tourism" v="hotel"/>
@@ -9279,6 +9596,7 @@
<node id="1481765835" lat="48.8713271" lon="2.3351551">
<tag k="name" v="Hôtel London"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="1481765836" lat="48.8718954" lon="2.3350541">
<tag k="name" v="Hôtel Opera Vivaldi"/>
@@ -9286,24 +9604,17 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1483017718" lat="48.8768039" lon="2.3336297">
- <tag k="fax" v="+33-1-49950443"/>
+ <tag k="fax" v="+33 1 49 95 04 43"/>
<tag k="internet_access" v="wlan"/>
<tag k="name" v="Hôtel Langlois"/>
- <tag k="phone" v="+33-1-48747824"/>
+ <tag k="phone" v="+33 1 48 74 78 24"/>
<tag k="smoking" v="no"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1486313991" lat="48.8736518" lon="2.3520817">
- <tag k="name" v="Hôtel des Alpes"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1486313995" lat="48.8711767" lon="2.3499045">
- <tag k="name" v="Hôtel Chamonix"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="1488772093" lat="48.8773396" lon="2.3560770">
- <tag k="name" v="Hôtel Aris Nord"/>
+ <tag k="name" v="Midnight Hotel"/>
+ <tag k="source" v="survey 05/2017"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1489177430" lat="48.8846667" lon="2.3765525">
@@ -9330,6 +9641,7 @@
<tag k="addr:street" v="Boulevard de Grenelle"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2011"/>
</node>
+ <node id="1499641875" lat="48.8497428" lon="2.2970622"/>
<node id="1502802829" lat="48.8172120" lon="2.2489840"/>
<node id="1502802832" lat="48.8172238" lon="2.2490601"/>
<node id="1502802839" lat="48.8172300" lon="2.2490690"/>
@@ -9392,23 +9704,13 @@
<node id="1506236166" lat="48.8147560" lon="2.2517860"/>
<node id="1506236169" lat="48.8147620" lon="2.2517720"/>
<node id="1506236177" lat="48.8148050" lon="2.2518390"/>
- <node id="1510032016" lat="48.8624014" lon="2.3351436"/>
- <node id="1510032017" lat="48.8624014" lon="2.3351587"/>
- <node id="1510032019" lat="48.8624046" lon="2.3351694"/>
- <node id="1510032020" lat="48.8624064" lon="2.3351737"/>
- <node id="1510032026" lat="48.8625036" lon="2.3355467"/>
- <node id="1510032028" lat="48.8625041" lon="2.3349089"/>
- <node id="1510032030" lat="48.8625048" lon="2.3355479"/>
- <node id="1510032032" lat="48.8625061" lon="2.3349052"/>
- <node id="1510032036" lat="48.8625449" lon="2.3354179"/>
- <node id="1510032038" lat="48.8626079" lon="2.3352338"/>
- <node id="1510032040" lat="48.8626754" lon="2.3350174"/>
<node id="1528113319" lat="48.8547412" lon="2.3562503"/>
<node id="1541521701" lat="48.8265002" lon="2.4051977">
<tag k="name" v="Novotel Paris Charenton"/>
<tag k="operator" v="Novotel"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="1541591962" lat="48.8695851" lon="2.3744330">
<tag k="amenity" v="pub"/>
@@ -9417,7 +9719,7 @@
</node>
<node id="1545720490" lat="48.8285878" lon="2.2628048"/>
<node id="1545720498" lat="48.8290729" lon="2.2635106"/>
- <node id="1545720502" lat="48.8291285" lon="2.2630911"/>
+ <node id="1545720502" lat="48.8290597" lon="2.2630403"/>
<node id="1549566003" lat="48.8783013" lon="2.2949905">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -9426,25 +9728,6 @@
<tag k="addr:street" v="Avenue des Ternes"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
</node>
- <node id="1567274107" lat="48.8959975" lon="2.2802012">
- <tag k="name" v="Hermes"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1567274132" lat="48.8957614" lon="2.2798258">
- <tag k="name" v="Hôtel du Parc"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1567274146" lat="48.8958976" lon="2.2800316">
- <tag k="name" v="La Champagne"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1567274176" lat="48.8955865" lon="2.2800380">
- <tag k="stars" v="3"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="1579620894" lat="48.8261537" lon="2.3243946">
<tag k="name" v="Le Clos d'Alésia"/>
<tag k="tourism" v="hotel"/>
@@ -9455,6 +9738,7 @@
<tag k="name" v="Hipotel Paris Nation"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hipotel.info/fr/hipotel-paris-nation,hotel-11.html"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="1602584024" lat="48.8853360" lon="2.3350946">
<tag k="name" v="Hôtel du Moulin"/>
@@ -9464,6 +9748,7 @@
<node id="1606575931" lat="48.8585526" lon="2.3597161">
<tag k="name" v="Centre Culturel Suisse"/>
<tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q2945014"/>
</node>
<node id="1614306685" lat="48.8516043" lon="2.2896851">
<tag k="addr:housenumber" v="8"/>
@@ -9474,10 +9759,6 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1614470597" lat="48.8351446" lon="2.3516125"/>
- <node id="1615799968" lat="48.8544424" lon="2.3356553">
- <tag k="addr:housenumber" v="6"/>
- <tag k="addr:street" v="Rue de Furstemberg"/>
- </node>
<node id="1617770466" lat="48.8223083" lon="2.2577699">
<tag k="internet_access" v="wlan"/>
<tag k="name" v="Ibis"/>
@@ -9529,7 +9810,14 @@
<node id="1639117510" lat="48.8546696" lon="2.2895190"/>
<node id="1639117573" lat="48.8546909" lon="2.2895309"/>
<node id="1639117604" lat="48.8547832" lon="2.2893127"/>
- <node id="1639117610" lat="48.8547843" lon="2.2902156"/>
+ <node id="1639117610" lat="48.8547843" lon="2.2902156">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue de la Fédération"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
+ </node>
<node id="1639117618" lat="48.8547889" lon="2.2895428"/>
<node id="1639117624" lat="48.8547942" lon="2.2893300"/>
<node id="1639117628" lat="48.8548079" lon="2.2893575"/>
@@ -9547,30 +9835,23 @@
<node id="1639118129" lat="48.8548493" lon="2.2895807"/>
<node id="1639118133" lat="48.8548500" lon="2.2895662"/>
<node id="1639118136" lat="48.8548500" lon="2.2895715"/>
- <node id="1639118150" lat="48.8548630" lon="2.2899299"/>
- <node id="1639118159" lat="48.8548676" lon="2.2899105"/>
<node id="1639118167" lat="48.8548738" lon="2.2898859"/>
- <node id="1639118177" lat="48.8548782" lon="2.2898610"/>
- <node id="1639118187" lat="48.8548823" lon="2.2898372"/>
- <node id="1639118195" lat="48.8548856" lon="2.2898109"/>
<node id="1639118213" lat="48.8548864" lon="2.2896040"/>
- <node id="1639118222" lat="48.8548883" lon="2.2897848"/>
- <node id="1639118225" lat="48.8548886" lon="2.2896259"/>
- <node id="1639118233" lat="48.8548902" lon="2.2897577"/>
- <node id="1639118235" lat="48.8548907" lon="2.2896520"/>
- <node id="1639118240" lat="48.8548914" lon="2.2896779"/>
- <node id="1639118278" lat="48.8548917" lon="2.2897318"/>
<node id="1639118286" lat="48.8548922" lon="2.2897053"/>
<node id="1654620488" lat="48.8618661" lon="2.3831677">
<tag k="name" v="Modern Hotel"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1656250107" lat="48.8533658" lon="2.3493036">
- <tag k="fare" v="full:8,50; discount:5,50"/>
- <tag k="name" v="Tour de la Cathédrale"/>
- <tag k="opening_hours" v="Apr-Sep: 10:00-18:30; Jul-Aug: Fr,Sa 10:00-23:00; Oct-Mar: Fr,Sa 10:00-23:00; Oct-Mar: Fr,Sa 10:00-17:30"/>
+ <tag k="charge" v="full:10 EUR;discount:8 EUR"/>
+ <tag k="description" v="Dernier accès 45 min avant la fermeture"/>
+ <tag k="description:en" v="Last admission 45 min before closing"/>
+ <tag k="name" v="Tours de la Cathédrale"/>
+ <tag k="name:en" v="Notre Dame"/>
+ <tag k="name:zh" v="巴黎圣母院"/>
+ <tag k="opening_hours" v="Apr-Sep 10:00-18:30 open &quot;last admission 45 min before closing&quot;; Jul-Aug Fr-Sa 10:00-23:00 open &quot;last admission 45 min before closing&quot;; Oct-Mar 10:00-17:30 open &quot;last admission 45 min before closing&quot;; Jan 1,May 1, Dec 25 closed"/>
<tag k="operator" v="Centre des Monuments Nationaux"/>
- <tag k="phone" v="01.53.10.07.00"/>
+ <tag k="phone" v="+33 1 53 10 07 00"/>
<tag k="tourism" v="museum"/>
<tag k="website:en" v="http://notre-dame-de-paris.monuments-nationaux.fr/en/"/>
<tag k="website:es" v="http://notre-dame-de-paris.monuments-nationaux.fr/es/"/>
@@ -9593,11 +9874,9 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1668780912" lat="48.8929320" lon="2.3433000">
- <tag k="created_by" v="iLOE 1.9"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1669021615" lat="48.8937240" lon="2.3418900">
- <tag k="created_by" v="iLOE 1.9"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1670119926" lat="48.8700380" lon="2.3601770">
@@ -9606,17 +9885,17 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="1670123633" lat="48.8698590" lon="2.3605340">
- <tag k="created_by" v="iLOE 1.9"/>
- <tag k="name" v="Hôtel des 3 nations"/>
+ <tag k="name" v="Hôtel des 3 Nations"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1670126151" lat="48.8697990" lon="2.3610220">
- <tag k="created_by" v="iLOE 1.9"/>
- <tag k="name" v="Hôtel du Prince Eugène"/>
+ <tag k="name" v="Grand Hôtel du Prince Eugène"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1670267633" lat="48.8688100" lon="2.3601130">
<tag k="name" v="Hôtel Excelsior"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="1670300893" lat="48.8704210" lon="2.3610030">
@@ -9643,15 +9922,25 @@
<tag k="name" v="Résidence Mouffetard"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1679237543" lat="48.8693769" lon="2.3310435">
+ <node id="1679237543" lat="48.8693831" lon="2.3310566">
<tag k="name" v="Hôtel Westminster"/>
<tag k="source" v="www.warwickwestminsteropera.com"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1682768696" lat="48.8670604" lon="2.3270370">
- <tag k="name" v="Mandarin Oriental"/>
+ <node id="1682768696" lat="48.8670541" lon="2.3271193">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="251"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Rue Saint-Honoré"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="customers"/>
+ <tag k="name" v="Mandarin Oriental Paris"/>
+ <tag k="smoking" v="no"/>
<tag k="source" v="www.mandarinoriental.com"/>
+ <tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3285427"/>
</node>
<node id="1682770299" lat="48.8721592" lon="2.3333671">
<tag k="name" v="W Paris Opéra"/>
@@ -9696,6 +9985,18 @@
<tag k="source" v="www.sevenhotelparis.com"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1719691297" lat="48.8533064" lon="2.3484506"/>
+ <node id="1719691298" lat="48.8534702" lon="2.3479239"/>
+ <node id="1719691299" lat="48.8535169" lon="2.3478221"/>
+ <node id="1719691300" lat="48.8535684" lon="2.3477645"/>
+ <node id="1719691301" lat="48.8535792" lon="2.3486265"/>
+ <node id="1719691303" lat="48.8536848" lon="2.3478046"/>
+ <node id="1719691304" lat="48.8537349" lon="2.3478406"/>
+ <node id="1719691305" lat="48.8537355" lon="2.3481399"/>
+ <node id="1719691306" lat="48.8537531" lon="2.3478704"/>
+ <node id="1719691307" lat="48.8537579" lon="2.3480319"/>
+ <node id="1719691308" lat="48.8537626" lon="2.3479075"/>
+ <node id="1719691309" lat="48.8537653" lon="2.3479712"/>
<node id="1722685969" lat="48.8201479" lon="2.3951490">
<tag k="name" v="Hôtel Apogia Paris"/>
<tag k="tourism" v="hotel"/>
@@ -9743,7 +10044,7 @@
<tag k="foot" v="yes"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
</node>
- <node id="1765229214" lat="48.8829475" lon="2.3284860">
+ <node id="1765229214" lat="48.8829576" lon="2.3284825">
<tag k="name" v="Clichy Hôtel"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -9773,12 +10074,13 @@
<tag k="addr:street" v="Boulevard Brune"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
</node>
- <node id="1781828194" lat="48.8759130" lon="2.3574890">
+ <node id="1781828194" lat="48.8759184" lon="2.3574365">
<tag k="addr:city" v="Paris"/>
<tag k="addr:street" v="Boulevard de Strasbourg"/>
<tag k="internet_access:fee" v="no"/>
<tag k="name" v="Little Regina"/>
<tag k="smoking" v="yes"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="www.parishotellittleregina.com/"/>
<tag k="wheelchair" v="no"/>
@@ -9788,7 +10090,8 @@
<tag k="contact:postcode" v="75012"/>
<tag k="contact:street" v="Place des Vins de France"/>
<tag k="name" v="Hôtel ibis"/>
- <tag k="phone" v="(+33)1/49280606"/>
+ <tag k="phone" v="+33149280606"/>
+ <tag k="toilets:wheelchair" v="yes"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
<tag k="wheelchair:description" v="Très serviable"/>
@@ -9816,9 +10119,12 @@
<node id="1791678313" lat="48.8437234" lon="2.2967496">
<tag k="name" v="La Soummam"/>
<tag k="note" v="hotel and restaurant and bar"/>
- <tag k="phone" v="0148283979"/>
+ <tag k="phone" v="+33148283979"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="1795595261" lat="48.8414655" lon="2.3246160">
+ <tag k="entrance" v="yes"/>
+ </node>
<node id="1795694037" lat="48.8986522" lon="2.2754207">
<tag k="name" v="Maison de la Pêche et de la Nature"/>
<tag k="tourism" v="museum"/>
@@ -9844,15 +10150,15 @@
<tag k="name" v="Hôtel du Casino"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1824509123" lat="48.8743571" lon="2.3321512">
- <tag k="name" v="Hôtel Antin Trinité"/>
+ <node id="1824509123" lat="48.8743615" lon="2.3321163">
+ <tag k="name" v="Antin Trinité"/>
<tag k="source" v="survey"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
</node>
<node id="1824509162" lat="48.8742308" lon="2.3320216">
- <tag k="name" v="Opéra D'Antin"/>
+ <tag k="name" v="Opéra d'Antin"/>
<tag k="operator" v="Best Western"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
@@ -9861,7 +10167,7 @@
<node id="1827138905" lat="48.8766389" lon="2.3417217">
<tag k="email" v="reservation@plazaopera.com"/>
<tag k="name" v="Plaza Opera Hotel"/>
- <tag k="phone" v="+33-1-45269771"/>
+ <tag k="phone" v="+33 1 45 26 97 71"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -9869,7 +10175,7 @@
</node>
<node id="1827138912" lat="48.8765596" lon="2.3401099">
<tag k="name" v="Villa Lamartine Opéra"/>
- <tag k="phone" v="+33-1-48787858"/>
+ <tag k="phone" v="+33 1 48 78 78 58"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -9884,6 +10190,7 @@
</node>
<node id="1829425292" lat="48.8400178" lon="2.3810213">
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</node>
<node id="1835791069" lat="48.8331256" lon="2.2892198">
<tag k="name" v="Terminus Vaugirard"/>
@@ -9893,15 +10200,14 @@
<node id="1865299719" lat="48.8864902" lon="2.3356152">
<tag k="tourism" v="hotel"/>
</node>
- <node id="1869379716" lat="48.8594910" lon="2.3388344"/>
- <node id="1869379719" lat="48.8595638" lon="2.3367732"/>
- <node id="1869379751" lat="48.8599095" lon="2.3369452"/>
<node id="1875799930" lat="48.8852398" lon="2.3300554">
<tag k="addr:housenumber" v="3"/>
<tag k="addr:postcode" v="75018"/>
<tag k="addr:street" v="Rue Caulaincourt"/>
- <tag k="name" v="Hôtel Mercure Paris Montmartre Sacré Coeur"/>
+ <tag k="name" v="Hôtel Mercure Paris Montmartre Sacré Cœur"/>
+ <tag k="toilets:wheelchair" v="yes"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="1875801637" lat="48.8853086" lon="2.3302109">
<tag k="addr:city" v="Paris"/>
@@ -9932,33 +10238,50 @@
<tag k="wheelchair" v="yes"/>
</node>
<node id="1905543809" lat="48.8797188" lon="2.3507524">
+ <tag k="addr:housenumber" v="13"/>
+ <tag k="addr:street" v="Rue de Rocroy"/>
+ <tag k="email" v="contact@lerocroy.com"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
<tag k="name" v="Le Rocroy"/>
+ <tag k="operator" v="HipHop Hostels"/>
+ <tag k="payment:mastercard" v="yes"/>
+ <tag k="payment:visa" v="yes"/>
+ <tag k="phone" v="+33 1 49 70 70 70"/>
+ <tag k="rooms" v="54"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.lerocroy.com/"/>
</node>
<node id="1913411918" lat="48.8526313" lon="2.3500601">
+ <tag k="contact:website" v="http://www.notredamedeparis.fr/spip.php?rubrique21"/>
<tag k="name" v="Le trésor de Notre-Dame de Paris"/>
+ <tag k="name:ja" v="ノートルダム大聖堂"/>
+ <tag k="name:ko" v="노트르담 대성당"/>
+ <tag k="name:ro" v="notre dame"/>
+ <tag k="name:zh" v="巴黎圣母院"/>
<tag k="opening_hours" v="Mo-Fr 09:30-18:00; Sa 09:30-18:30; Su 13:30-18:30"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
- <tag k="url" v="http://www.notredamedeparis.fr/spip.php?rubrique21"/>
</node>
<node id="1913411919" lat="48.8404563" lon="2.3198526">
<tag k="addr:housenumber" v="23"/>
<tag k="addr:street" v="Allée de la 2e Division Blindée"/>
- <tag k="alt_name" v="Mémorial-Musée"/>
- <tag k="fax" v="01.43.21.28.30"/>
+ <tag k="alt_name" v="Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin"/>
+ <tag k="fax" v="+33143212830"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
<tag k="internet_access:operator" v="Mairie de Paris"/>
<tag k="layer" v="1"/>
- <tag k="name" v="Mémorial du maréchal Leclerc de Hauteclocque et de la Libération de Paris - Musée Jean Moulin"/>
+ <tag k="name" v="Général Leclerc et de la Libération de Paris - Musée Jean Moulin"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
<tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.40.64.39.44"/>
+ <tag k="phone" v="+33140643944"/>
<tag k="source:internet_access" v="Paris Open Data"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.paris.fr/loisirs/musees-expos/memorial-leclerc-et-de-la-liberation-de-paris-musee-jean-moulin/p6923"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q13400783"/>
</node>
<node id="1913411927" lat="48.8814649" lon="2.3336599"/>
<node id="1914640774" lat="48.8178333" lon="2.4229809">
@@ -9988,20 +10311,31 @@
<tag k="addr:postcode" v="75015"/>
<tag k="addr:street" v="Rue de la Croix Nivert"/>
</node>
+ <node id="1919226981" lat="48.8853975" lon="2.3335463">
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
+ </node>
<node id="1920884125" lat="48.8825635" lon="2.3415494">
<tag k="addr:housenumber" v="100"/>
<tag k="name" v="Hôtel Ibis Paris Sacré-Coeur"/>
<tag k="source" v="Ibis web-site"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="1928759307" lat="48.8450421" lon="2.3524270">
+ <node id="1920885240" lat="48.8837126" lon="2.3448577">
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
+ </node>
+ <node id="1928759307" lat="48.8450576" lon="2.3523824">
<tag k="name" v="Hôtel des Arènes"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="1930542200" lat="48.8500954" lon="2.3476090">
<tag k="name" v="Hôtel Studia"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="1930891488" lat="48.8654715" lon="2.3296865">
<tag k="name" v="Renaissance Paris Vendôme Hotel"/>
@@ -10024,13 +10358,10 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="1980664954" lat="48.8730243" lon="2.3445449">
- <tag k="name" v="Mercure Paris Monty Opéra"/>
- <tag k="operator" v="Accor"/>
- <tag k="stars" v="4"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="1982085164" lat="48.8397319" lon="2.3233917">
+ <node id="1982085164" lat="48.8397318" lon="2.3233917">
+ <tag k="addr:housenumber" v="20 bis"/>
+ <tag k="addr:street" v="Rue de la Gaîté"/>
+ <tag k="contact:website" v="http://www.hotelmparis.com/"/>
<tag k="name" v="Hôtel Le M"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
@@ -10054,27 +10385,6 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
</node>
<node id="1986522140" lat="48.8763075" lon="2.2932619"/>
- <node id="1986580819" lat="48.8795077" lon="2.2863231">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="1"/>
- <tag k="addr:postcode" v="75017"/>
- <tag k="addr:street" v="Rue Waldeck-Rousseau"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
- </node>
- <node id="1986580825" lat="48.8796403" lon="2.2862882">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="3"/>
- <tag k="addr:postcode" v="75017"/>
- <tag k="addr:street" v="Rue Waldeck-Rousseau"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
- </node>
- <node id="1986580832" lat="48.8798155" lon="2.2863719">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="5"/>
- <tag k="addr:postcode" v="75017"/>
- <tag k="addr:street" v="Rue Waldeck-Rousseau"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
- </node>
<node id="1987166806" lat="48.8688058" lon="2.2924351">
<tag k="name" v="Hôtel de Sévigné"/>
<tag k="stars" v="3"/>
@@ -10092,6 +10402,21 @@
<tag k="addr:housenumber" v="206"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
</node>
+ <node id="1991010404" lat="48.8727464" lon="2.3822849">
+ <tag k="addr:housenumber" v="78"/>
+ <tag k="addr:postcode" v="75020"/>
+ <tag k="addr:street" v="Rue Julien Lacroix"/>
+ <tag k="name" v="Gallerie Jocelyn Wolf"/>
+ <tag k="opening_hours" v="Tu-Sa 11:00-19:00"/>
+ <tag k="phone" v="+33142030565"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://galeriewolf.com"/>
+ </node>
+ <node id="1991021939" lat="48.8750287" lon="2.3920925">
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
+ </node>
<node id="2003233909" lat="48.8606580" lon="2.3469337">
<tag k="alt_name" v="Apart'Hotel"/>
<tag k="name" v="Citadines"/>
@@ -10099,22 +10424,24 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="2025011400" lat="48.8777667" lon="2.2873179">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="34"/>
- <tag k="addr:street" v="Rue Saint-Ferdinand"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="36"/>
+ <tag k="contact:street" v="Rue Saint-Ferdinand"/>
+ <tag k="contact:website" v="http://www.hotel-paris-ferdinand.com/"/>
<tag k="name" v="Étoile Saint-Ferdinand"/>
<tag k="operator" v="Best Western"/>
- <tag k="source" v="data.paris.f "/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2034381483" lat="48.8801178" lon="2.3024139">
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:street" v="Rue Médéric"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
+ </node>
<node id="2034698945" lat="48.8280249" lon="2.3153561">
<tag k="name" v="Citadines Apart'Hotel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2036631777" lat="48.8690870" lon="2.3027342">
- <tag k="name" v="Le Pavillon Frontenac"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="2043723012" lat="48.8357636" lon="2.2923545">
<tag k="advertising" v="poster_box"/>
</node>
@@ -10147,6 +10474,19 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="limited"/>
</node>
+ <node id="2061878947" lat="48.8769976" lon="2.2971047">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="39"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Avenue de Wagram"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Renaissance Paris Arc de Triomphe Hotel"/>
+ <tag k="name:zh" v="万丽巴黎凯旋门酒店"/>
+ <tag k="phone" v="+33155375537"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.marriott.com/hotels/travel/parwg-renaissance-paris-arc-de-triomphe-hotel/"/>
+ </node>
<node id="2068983978" lat="48.8900208" lon="2.3232716">
<tag k="addr:housenumber" v="14"/>
</node>
@@ -10162,8 +10502,9 @@
<tag k="name" v="Hôtel des Buttes Chaumont"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2073432243" lat="48.8821809" lon="2.3705534">
+ <node id="2073432243" lat="48.8821869" lon="2.3705363">
<tag k="name" v="Hôtel de la Comète"/>
+ <tag k="phone" v="+33142085588"/>
<tag k="source" v="survey 2013"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
@@ -10173,16 +10514,13 @@
<node id="2079256260" lat="48.8242775" lon="2.2988808">
<tag k="name" v="Ibis Budget"/>
<tag k="source" v="survey"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2086399161" lat="48.8429639" lon="2.3242562">
<tag k="name" v="Hôtel Berkeley"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2086399167" lat="48.8423964" lon="2.3234359">
- <tag k="tourism" v="hotel"/>
- <tag k="wheelchair" v="limited"/>
- </node>
<node id="2102769277" lat="48.8169396" lon="2.3205788">
<tag k="name" v="Le Victor Hugo"/>
<tag k="tourism" v="hotel"/>
@@ -10191,6 +10529,28 @@
<tag k="name" v="Platine"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2119679002" lat="48.8871829" lon="2.3142623">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="167"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue de Rome"/>
+ </node>
+ <node id="2119688436" lat="48.8871700" lon="2.3141455">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="142"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue Cardinet"/>
+ </node>
+ <node id="2121960027" lat="48.8830520" lon="2.3077052">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="43"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Avenue de Villiers"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
+ </node>
<node id="2123933908" lat="48.8853541" lon="2.3079347">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -10228,17 +10588,26 @@
<tag k="addr:street" v="Boulevard Vincent Auriol"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2146085910" lat="48.8607161" lon="2.3525007">
- <tag k="name" v="Musée national d'art moderne"/>
+ <node id="2146085910" lat="48.8603240" lon="2.3522598">
+ <tag k="fee" v="yes"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="CentrePompidou"/>
+ <tag k="level" v="4;5"/>
+ <tag k="museum" v="art"/>
+ <tag k="museum_type" v="national"/>
+ <tag k="name" v="Musée National d'Art Moderne"/>
<tag k="official_name" v="Musée national d’art moderne - Centre de création industrielle"/>
- <tag k="opening_hours" v="Mo,We,Th,Fr,Sa,Su 11:00-21:00"/>
+ <tag k="opening_hours" v="Mo,We-Su 11:00-21:00"/>
+ <tag k="operator:type" v="public"/>
<tag k="short_name" v="MNAM"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
<tag k="tourism:visitors" v="3800000"/>
<tag k="website" v="http://www.centrepompidou.fr/cpv/ressource.action?param.id=FR_R-89fd49e847165bc78d564f6dbeb6777&amp;param.idSource=FR_E-2ab598d3369ad7a58ead7e6be32ba7b"/>
<tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Musée national d'art moderne"/>
+ <tag k="wikidata" v="Q1895953"/>
+ <tag k="wikipedia" v="en:Musée National d'Art Moderne"/>
</node>
<node id="2153209360" lat="48.8791797" lon="2.3268489">
<tag k="tourism" v="hotel"/>
@@ -10247,7 +10616,7 @@
<tag k="name" v="New Hotel Saint-Lazare"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2153240035" lat="48.8753556" lon="2.3263124">
+ <node id="2153240035" lat="48.8753163" lon="2.3262880">
<tag k="name" v="Hôtel Londres &amp; New-york"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -10275,6 +10644,9 @@
<tag k="website" v="http://www.novotel.com/fr/hotel-1834-novotel-paris-porte-d-orleans"/>
<tag k="wifi" v="yes"/>
</node>
+ <node id="2179075889" lat="48.8830662" lon="2.3230555">
+ <tag k="addr:housenumber" v="5"/>
+ </node>
<node id="2179797347" lat="48.8508057" lon="2.3698822">
<tag k="name" v="Hôtel Le Pavillon Bastille"/>
<tag k="source" v="survey"/>
@@ -10282,14 +10654,25 @@
</node>
<node id="2179799064" lat="48.8509291" lon="2.3698902">
<tag k="name" v="Hôtel Paris Bastille"/>
+ <tag k="name:zh" v="巴黎巴士底狱酒店"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2188238939" lat="48.8637194" lon="2.2934262">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:street" v="Avenue d'Iéna"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="2009"/>
<tag k="name" v="Shangri-La Hotel"/>
+ <tag k="old_name" v="Hôtel particulier de Roland Bonaparte"/>
<tag k="phone" v="+33 1 5367998"/>
+ <tag k="ref:mhs" v="PA75160005"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.shangri-la.com/paris"/>
+ <tag k="wikidata" v="Q3481407"/>
+ <tag k="wikipedia" v="fr:Hôtel particulier de Roland Bonaparte"/>
</node>
<node id="2194776645" lat="48.8279437" lon="2.3297879">
<tag k="addr:housenumber" v="34"/>
@@ -10378,11 +10761,6 @@
<tag k="addr:street" v="Rue de Langeac"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2255903819" lat="48.8345934" lon="2.3542452">
- <tag k="addr:housenumber" v="35"/>
- <tag k="addr:street" v="Rue du Banquier"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
- </node>
<node id="2256075958" lat="48.8330539" lon="2.2881095">
<tag k="addr:housenumber" v="69"/>
<tag k="addr:postcode" v="75015"/>
@@ -10391,6 +10769,7 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="url" v="http://www.mercure.com/fr/hotel-1131-mercure-paris-vaugirard-porte-de-versailles/index.shtml"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="2256140818" lat="48.8351584" lon="2.2825386">
<tag k="addr:housenumber" v="11"/>
@@ -10400,6 +10779,7 @@
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.pvhotel.com"/>
+ <tag k="wheelchair" v="yes"/>
</node>
<node id="2258450455" lat="48.8901866" lon="2.3614476">
<tag k="name" v="Hôtel Riquet"/>
@@ -10430,8 +10810,8 @@
<tag k="name" v="Hôtel Boileau"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2266909835" lat="48.9011434" lon="2.3342572">
- <tag k="name" v="Ibis budget"/>
+ <node id="2266909835" lat="48.9011584" lon="2.3341043">
+ <tag k="name" v="Ibis budget Paris Porte de Montmartre"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2267772279" lat="48.8362022" lon="2.2789552">
@@ -10453,13 +10833,6 @@
<tag k="addr:street" v="Rue des Cinq-Diamants"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2271678887" lat="48.8672999" lon="2.3221942">
- <tag k="fax" v="01.42.65.30.26"/>
- <tag k="name" v="Maxim's Art Nouveau &quot;Collection 1900&quot;"/>
- <tag k="phone" v="01.42.65.30.47"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.maxims-musee-artnouveau.com/"/>
- </node>
<node id="2272081569" lat="48.8329346" lon="2.3573156">
<tag k="addr:housenumber" v="15"/>
<tag k="addr:street" v="Rue Édouard Manet"/>
@@ -10481,9 +10854,9 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
<node id="2273071266" lat="48.8234693" lon="2.3306543">
- <tag k="addr:housenumber" v="144"/>
- <tag k="addr:postcode" v="75014"/>
- <tag k="addr:street" v="Rue de la Tombe Issoire"/>
+ <tag k="contact:housenumber" v="144"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue de la Tombe Issoire"/>
<tag k="name" v="Villa royale Montsouris"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
@@ -10499,18 +10872,18 @@
<tag k="website" v="http://www.hotelvirgina.com"/>
</node>
<node id="2273101046" lat="48.8240433" lon="2.3300803">
- <tag k="addr:housenumber" v="15"/>
- <tag k="addr:postcode" v="75014"/>
- <tag k="addr:street" v="Rue Beaunier"/>
+ <tag k="contact:housenumber" v="15"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue Beaunier"/>
<tag k="name" v="Hôtel Montsouris Orléans"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.parishotelmontsouris.com"/>
</node>
<node id="2273101051" lat="48.8242675" lon="2.3289215">
- <tag k="addr:housenumber" v="31"/>
- <tag k="addr:postcode" v="75014"/>
- <tag k="addr:street" v="Rue Beaunier"/>
+ <tag k="contact:housenumber" v="31"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue Beaunier"/>
<tag k="name" v="Hôtel Beaunier"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
@@ -10524,18 +10897,18 @@
<tag k="website" v="http://www.cecil-hotel-montparnasse.com"/>
</node>
<node id="2273138267" lat="48.8247043" lon="2.3268143">
- <tag k="addr:housenumber" v="60"/>
- <tag k="addr:postcode" v="75014"/>
- <tag k="addr:street" v="Rue Beaunier"/>
+ <tag k="contact:housenumber" v="60"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue Beaunier"/>
<tag k="name" v="Parc Hotel"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.parc-hotel-paris.com"/>
</node>
<node id="2273154243" lat="48.8247319" lon="2.3264861">
- <tag k="addr:housenumber" v="68"/>
- <tag k="addr:postcode" v="75014"/>
- <tag k="addr:street" v="Rue Beaunier"/>
+ <tag k="contact:housenumber" v="68"/>
+ <tag k="contact:postcode" v="75014"/>
+ <tag k="contact:street" v="Rue Beaunier"/>
<tag k="name" v="Sports Hotel"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
@@ -10558,15 +10931,20 @@
<tag k="addr:street" v="Avenue de Saint-Ouen"/>
<tag k="name" v="Hôtel Source"/>
<tag k="phone" v="+33 1 46 27 73 67"/>
+ <tag k="survey:date" v="2017-07-09"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.sourcehotel.fr"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wheelchair:description" v="Nice adapted rooms. The turn to enter the room is relative small"/>
</node>
<node id="2279206331" lat="48.8648053" lon="2.3525629">
- <tag k="email" v="chariotdor@wanadoo.fr"/>
- <tag k="name" v="Bellevue et du Chariot d'Or"/>
- <tag k="phone" v="+33 01 48 87 45 60"/>
+ <tag k="contact:email" v="chariotdor@orange.fr"/>
+ <tag k="contact:phone" v="+33 1 48 87 45 60"/>
+ <tag k="contact:website" v="http://www.hotel-bellevue-chariot-or.fr/"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Bellevue et du Chariot d'Or"/>
+ <tag k="name:ja" v="ホテル"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hotelbellevue75.com"/>
</node>
<node id="2286779132" lat="48.8258450" lon="2.3526416">
<tag k="entrance" v="main"/>
@@ -10577,14 +10955,14 @@
<tag k="addr:housenumber" v="5-7"/>
<tag k="addr:street" v="Rue d'Avron"/>
<tag k="name" v="Timhotel Nation"/>
+ <tag k="opening_hours" v="24/7"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wifi" v="yes"/>
</node>
<node id="2291906549" lat="48.8504360" lon="2.2920472">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="4"/>
- <tag k="addr:postcode" v="75015"/>
- <tag k="addr:street" v="Rue de Lourmel"/>
+ <tag k="contact:housenumber" v="4"/>
<tag k="contact:phone" v="+33 1 45793012"/>
+ <tag k="contact:street" v="Rue de Lourmel"/>
<tag k="name" v="Dupleix Hotel"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
@@ -10616,7 +10994,7 @@
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
<tag k="name" v="Hôtel de Belfort"/>
- <tag k="phone" v="+33 (0) 1 43 79 24 14"/>
+ <tag k="phone" v="+33 1 43 79 24 14"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2313364681" lat="48.8657299" lon="2.2861084">
@@ -10626,15 +11004,12 @@
</node>
<node id="2314268114" lat="48.8542447" lon="2.3075312">
<tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="20"/>
- <tag k="addr:postcode" v="75007"/>
- <tag k="addr:street" v="Avenue de Tourville"/>
<tag k="name" v="Hôtel Eiffel Turenne"/>
<tag k="phone" v="+33147059992"/>
<tag k="rooms" v="34"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http:/http://www.hotel-turenne.com"/>
+ <tag k="website" v="http://www.hotel-turenne.com"/>
<tag k="wifi" v="customers"/>
</node>
<node id="2315309639" lat="48.8375679" lon="2.3727232">
@@ -10642,12 +11017,12 @@
<tag k="addr:street" v="Rue Giffard"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2319457703" lat="48.8289955" lon="2.3740849">
+ <node id="2319457703" lat="48.8290037" lon="2.3741033">
<tag k="addr:housenumber" v="19"/>
<tag k="addr:street" v="Rue de Tolbiac"/>
<tag k="source" v="DGFiP-cadastre 2013"/>
</node>
- <node id="2319457708" lat="48.8289634" lon="2.3742420">
+ <node id="2319457708" lat="48.8289716" lon="2.3742604">
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue Leredde"/>
<tag k="source" v="DGFiP-cadastre 2013"/>
@@ -10656,31 +11031,19 @@
<tag k="name" v="Hôtel Belfort"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2345158218" lat="48.8939308" lon="2.3118849"/>
- <node id="2345158219" lat="48.8940974" lon="2.3117120"/>
- <node id="2345158221" lat="48.8941684" lon="2.3118633"/>
- <node id="2345158222" lat="48.8941723" lon="2.3123897"/>
- <node id="2345158223" lat="48.8942730" lon="2.3120911"/>
- <node id="2345158225" lat="48.8942976" lon="2.3114724"/>
- <node id="2345158226" lat="48.8943064" lon="2.3121111"/>
- <node id="2345158228" lat="48.8943621" lon="2.3114036"/>
- <node id="2345158230" lat="48.8944190" lon="2.3117513"/>
- <node id="2345158231" lat="48.8945287" lon="2.3122443"/>
- <node id="2345158233" lat="48.8945765" lon="2.3126214"/>
- <node id="2345158235" lat="48.8946889" lon="2.3119732"/>
- <node id="2345158236" lat="48.8949678" lon="2.3119438"/>
- <node id="2358813332" lat="48.8691081" lon="2.3627657">
- <tag k="tourism" v="hotel"/>
- </node>
+ <node id="2345158223" lat="48.8943045" lon="2.3120801"/>
+ <node id="2345158230" lat="48.8944421" lon="2.3117456"/>
+ <node id="2345158231" lat="48.8945314" lon="2.3122299"/>
+ <node id="2345158235" lat="48.8946965" lon="2.3119444"/>
<node id="2359964748" lat="48.8898808" lon="2.3211159">
<tag k="addr:housenumber" v="119"/>
<tag k="addr:postcode" v="75017"/>
<tag k="addr:street" v="Avenue de Clichy"/>
<tag k="building" v="yes"/>
<tag k="name" v="Hôtel Mirific"/>
+ <tag k="survey:date" v="2017-07-04"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2360188639" lat="48.8625745" lon="2.3353266"/>
<node id="2364082235" lat="48.8808975" lon="2.3516143">
<tag k="name" v="Cambrai"/>
<tag k="source" v="Knowledge"/>
@@ -10697,9 +11060,12 @@
<tag k="website" v="http://www.hotel-paris-belloy.com/"/>
</node>
<node id="2371178855" lat="48.8960350" lon="2.3884154">
- <tag k="name" v="Carrefour Numérique"/>
+ <tag k="level" v="-1"/>
+ <tag k="name" v="Carrefour Numérique²"/>
+ <tag k="opening_hours" v="Tu-Su 12:00-18:45"/>
+ <tag k="short_name" v="Carrefour Numérique"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.cite-sciences.fr/fr/carrefour-numerique/"/>
+ <tag k="website" v="http://www.cite-sciences.fr/fr/au-programme/lieux-ressources/carrefour-numerique2/"/>
<tag k="wheelchair" v="yes"/>
</node>
<node id="2377841961" lat="48.8293498" lon="2.3748120">
@@ -10708,15 +11074,17 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="2378562435" lat="48.8488548" lon="2.3584364"/>
- <node id="2381308257" lat="48.8803431" lon="2.4217569">
- <tag k="amenity" v="bar"/>
- <tag k="description" v="bar/hotel/restaurant"/>
- <tag k="name" v="Hôtel du Parc"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="2383470348" lat="48.8845083" lon="2.3257947">
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue Biot"/>
+ <tag k="email" v="info@hoteldeparis-montmartre.com"/>
+ <tag k="internet_access" v="wlan"/>
<tag k="name" v="Hôtel de Paris Montmartre"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="phone" v="+33 1 42 94 02 50"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldeparis-montmartre.com"/>
</node>
<node id="2390653160" lat="48.8742228" lon="2.3878024">
<tag k="name" v="Hipotel"/>
@@ -10753,7 +11121,7 @@
<tag k="addr:housenumber" v="1"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2405532185" lat="48.8848438" lon="2.3442739">
+ <node id="2405532185" lat="48.8849620" lon="2.3442873">
<tag k="addr:housenumber" v="2"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
@@ -10771,7 +11139,9 @@
<tag k="name" v="Caffè Cosy"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2414716190" lat="48.8653687" lon="2.4166078">
+ <node id="2414716190" lat="48.8652815" lon="2.4164888">
+ <tag k="amenity" v="restaurant"/>
+ <tag k="level" v="1"/>
<tag k="name" v="Campanile"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -10785,24 +11155,26 @@
<tag k="source" v="survey:2013-08-15"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2429364371" lat="48.8488376" lon="2.4079096">
+ <node id="2429364371" lat="48.8486532" lon="2.4079525">
<tag k="addr:city" v="Paris"/>
- <tag k="addr:housename" v="Hôtel Charma"/>
<tag k="addr:housenumber" v="14 bis"/>
<tag k="addr:postcode" v="75020"/>
<tag k="addr:street" v="Rue des Maraîchers"/>
- <tag k="name" v="Hôtel Charma"/>
+ <tag k="name" v="Hôtel Comète"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="2433812997" lat="48.8591599" lon="2.3452377">
+ <node id="2433812997" lat="48.8591442" lon="2.3451909">
<tag k="name" v="Hôtel Flor Rivoli"/>
<tag k="source" v="Survey"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2433812999" lat="48.8587815" lon="2.3453015">
- <tag k="name" v="Hôtel Dechampaigne"/>
+ <tag k="contact:website" v="http://www.hoteldechampaigneparis.com/"/>
+ <tag k="name" v="Grand Hôtel Dechampaigne"/>
<tag k="source" v="Survey"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2435340919" lat="48.8146822" lon="2.4010226">
@@ -10811,6 +11183,14 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="no"/>
</node>
+ <node id="2435413099" lat="48.8615919" lon="2.3554370"/>
+ <node id="2435413101" lat="48.8616247" lon="2.3552567"/>
+ <node id="2435413103" lat="48.8616477" lon="2.3552819"/>
+ <node id="2435445823" lat="48.8644690" lon="2.3318128">
+ <tag k="name" v="Louvre Montana"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="2435687396" lat="48.8174526" lon="2.3985388">
<tag k="amenity" v="cafe"/>
<tag k="name" v="La Cantina"/>
@@ -10847,10 +11227,6 @@
<tag k="website" v="http://www.astotel.com/hotel-bergere-opera-paris.php"/>
<tag k="website:en" v="http://www.astotel.com/uk/hotel-bergere-opera-paris.php"/>
</node>
- <node id="2461576464" lat="48.8368173" lon="2.3239958">
- <tag k="addr:housenumber" v="22"/>
- <tag k="addr:street" v="Rue Cels"/>
- </node>
<node id="2461576465" lat="48.8368799" lon="2.3238470">
<tag k="addr:housenumber" v="24"/>
<tag k="addr:street" v="Rue Cels"/>
@@ -10865,6 +11241,11 @@
<tag k="source" v="survey"/>
<tag k="survey:date" v="2013-08-16"/>
</node>
+ <node id="2473600711" lat="48.8850596" lon="2.3251011">
+ <tag k="addr:housenumber" v="18"/>
+ <tag k="source" v="survey"/>
+ <tag k="survey:date" v="2013-09-25"/>
+ </node>
<node id="2477689984" lat="48.8573332" lon="2.3714718">
<tag k="name" v="Hôtel marais bastille"/>
<tag k="tourism" v="hotel"/>
@@ -10875,34 +11256,19 @@
<tag k="survey:date" v="2013-10-04"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2484635805" lat="48.8771373" lon="2.3066014"/>
- <node id="2484635809" lat="48.8771549" lon="2.3067891"/>
- <node id="2484635811" lat="48.8771443" lon="2.3067650"/>
- <node id="2484635813" lat="48.8770800" lon="2.3063359"/>
- <node id="2484635817" lat="48.8763540" lon="2.3066309"/>
- <node id="2484635821" lat="48.8766716" lon="2.3070493"/>
- <node id="2484635825" lat="48.8766857" lon="2.3070332"/>
- <node id="2484635827" lat="48.8767245" lon="2.3070815"/>
- <node id="2484652755" lat="48.8766604" lon="2.3072106"/>
- <node id="2484652757" lat="48.8767100" lon="2.3073103"/>
- <node id="2484696525" lat="48.8766432" lon="2.3071857"/>
<node id="2485092668" lat="48.8851889" lon="2.2939544">
<tag k="name" v="Hôtel Champerret-Élysées"/>
<tag k="source" v="survey"/>
<tag k="survey:date" v="2013-10-04"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2485092695" lat="48.8852941" lon="2.2933838">
- <tag k="addr:housenumber" v="133"/>
- <tag k="source" v="survey"/>
- <tag k="survey:date" v="2013-10-04"/>
- </node>
<node id="2486352415" lat="48.8405179" lon="2.3703276">
<tag k="email" v="info@artludique.com"/>
<tag k="name" v="Art Ludique - Le Musée"/>
<tag k="opening_hours" v="Mo-Th 11:00-19:00; Fr 11:00-22:00; Sa,Su 10:00-20:00"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.artludique.com"/>
+ <tag k="wikidata" v="Q16303874"/>
</node>
<node id="2490914649" lat="48.8503654" lon="2.3494131">
<tag k="name" v="Notre-Dame"/>
@@ -10918,11 +11284,11 @@
</node>
<node id="2497768516" lat="48.8840377" lon="2.3149854">
<tag k="email" v="hotel@jardindevilliers.com"/>
- <tag k="fax" v="+33(0)142673211"/>
+ <tag k="fax" v="+33 1 42 67 32 11"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
<tag k="name" v="Jardin de Villiers"/>
- <tag k="phone" v="+33(0)142671560"/>
+ <tag k="phone" v="+33 1 42 67 15 60"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -10931,7 +11297,7 @@
<node id="2497768524" lat="48.8841956" lon="2.3161259">
<tag k="email" v="monceau@leshotelsdeparis.com"/>
<tag k="name" v="Pavillon Courcelles Parc Monceau"/>
- <tag k="phone" v="+33(0)156332323"/>
+ <tag k="phone" v="+33 1 56 33 23 23"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.pavillon-monceau-etoile.com"/>
@@ -10939,12 +11305,13 @@
<node id="2497768529" lat="48.8836123" lon="2.3163235">
<tag k="internet_access" v="wlan"/>
<tag k="name" v="Pavillon Villiers Étoile"/>
- <tag k="phone" v="+33(0)140530505"/>
+ <tag k="phone" v="+33 1 40 53 05 05"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.leshotelsdeparis.com/fr/nos-hotels/fiche/20/pavillon-villiers-etoile.html"/>
</node>
+ <node id="2499815561" lat="48.8844376" lon="2.3793341"/>
<node id="2500457602" lat="48.8760701" lon="2.3456581">
<tag k="name" v="Holiday Villa"/>
<tag k="tourism" v="hotel"/>
@@ -10973,11 +11340,6 @@
<tag k="addr:street" v="Rue Berbier-du-Mets"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
</node>
- <node id="2503986737" lat="48.8350129" lon="2.3486928">
- <tag k="addr:housenumber" v="14"/>
- <tag k="addr:street" v="Rue des Cordelières"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
- </node>
<node id="2503986802" lat="48.8345618" lon="2.3529111">
<tag k="addr:housenumber" v="2"/>
<tag k="addr:street" v="Rue de Croulebarbe"/>
@@ -11031,9 +11393,10 @@
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2526898729" lat="48.8465117" lon="2.3551571">
+ <node id="2526898729" lat="48.8475990" lon="2.3548138">
+ <tag k="fee" v="6 €"/>
<tag k="name" v="Collection des minéraux - Jussieu"/>
- <tag k="opening_hours" v="We-Mo 13:00-18:00; Tu off; May 1 : off"/>
+ <tag k="opening_hours" v="Mo-Sa 13:00-18:00; Tu off; May 1 : off"/>
<tag k="tourism" v="museum"/>
</node>
<node id="2529999158" lat="48.8253476" lon="2.3614059">
@@ -11048,14 +11411,15 @@
</node>
<node id="2531764615" lat="48.8311105" lon="2.2816228">
<tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="16"/>
<tag k="addr:postcode" v="92130"/>
- <tag k="addr:street" v="16 Rue Elianne Jeanin Garreau"/>
+ <tag k="addr:street" v="Rue Elianne Jeanin Garreau"/>
<tag k="cuisine" v="french"/>
<tag k="name" v="Adagio Portes De Versailles"/>
<tag k="phone" v="+33155006868"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="www.adagio-city.com"/>
+ <tag k="website" v="http://www.adagio-city.com"/>
<tag k="wifi" v="yes"/>
</node>
<node id="2534780351" lat="48.8531762" lon="2.3451166">
@@ -11068,6 +11432,14 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2543364042" lat="48.8495792" lon="2.2969791">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="103"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Boulevard de Grenelle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
+ </node>
<node id="2543951905" lat="48.8548154" lon="2.2901027">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -11100,7 +11472,7 @@
<tag k="addr:street" v="Rue Dupleix"/>
<tag k="name" v="Hôtel Paris Le Marquis Eiffel"/>
<tag k="operator" v="Inwood Hotels Paris"/>
- <tag k="phone" v="+33 (0) 1 43 06 31 50"/>
+ <tag k="phone" v="+33 1 43 06 31 50"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
@@ -11124,23 +11496,27 @@
<node id="2553153348" lat="48.8528343" lon="2.3441184">
<tag k="addr:street" v="Boulevard Saint-Michel"/>
<tag k="email" v="hotelroyalsaintmichel@wanadoo.fr"/>
- <tag k="fax" v="01 44 07 36 25"/>
+ <tag k="fax" v="+33 1 44 07 36 25"/>
<tag k="name" v="Hôtel Royal Saint-Michel"/>
<tag k="operator" v="Best Western Premier"/>
- <tag k="phone" v="01 44 07 06 06"/>
+ <tag k="phone" v="+33 1 44 07 06 06"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelroyalsaintmichel.com/"/>
</node>
<node id="2556489520" lat="48.8502770" lon="2.2933596">
+ <tag k="addr:housenumber" v="72"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Boulevard de Grenelle"/>
<tag k="name" v="Hôtel Saint-Charles"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</node>
- <node id="2556489575" lat="48.8504483" lon="2.2926945">
+ <node id="2556489575" lat="48.8504482" lon="2.2926945">
<tag k="internet_access" v="wlan"/>
- <tag k="name" v="Paris - Tour Eiffel"/>
+ <tag k="name" v="Mercure Paris - Tour Eiffel"/>
<tag k="operator" v="Mercure"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2013"/>
<tag k="stars" v="4"/>
@@ -11154,11 +11530,6 @@
<tag k="name" v="Idéal Hôtel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2574168713" lat="48.8605799" lon="2.3593221"/>
- <node id="2574260031" lat="48.8606175" lon="2.3575783"/>
- <node id="2574260032" lat="48.8608069" lon="2.3577918"/>
- <node id="2574260033" lat="48.8609330" lon="2.3579348"/>
- <node id="2574265512" lat="48.8594842" lon="2.3592401"/>
<node id="2575207502" lat="48.8518053" lon="2.3448347">
<tag k="name" v="Hôtel du Parc Saint-Séverin"/>
<tag k="stars" v="4"/>
@@ -11175,25 +11546,36 @@
<tag k="source" v="survey 2013"/>
</node>
<node id="2582304437" lat="48.8507735" lon="2.3622964">
+ <tag k="addr:postcode" v="75004"/>
<tag k="amenity" v="post_box"/>
<tag k="collection_times" v="Mo-Fr 16:00; Sa 12:00"/>
<tag k="operator" v="La Poste"/>
<tag k="ref" v="A1R4Z2"/>
- <tag k="source" v="survey 2013"/>
+ <tag k="source" v="survey 2013;data.gouv.fr:LaPoste - 06/2015"/>
</node>
<node id="2595544211" lat="48.8176098" lon="2.3242664">
- <tag k="name" v="Kyriad"/>
+ <tag k="contact:city" v="Montrouge"/>
+ <tag k="contact:housenumber" v="11"/>
+ <tag k="contact:postcode" v="92120"/>
+ <tag k="contact:street" v="Rue Gabriel Péri"/>
+ <tag k="name" v="Arc Paris Porte d'Orléans"/>
+ <tag k="phone" v="+331 42 53 02 55"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2597119592" lat="48.8177423" lon="2.3234029">
+ <tag k="contact:city" v="Montrouge"/>
+ <tag k="contact:housenumber" v="17"/>
+ <tag k="contact:postcode" v="92120"/>
+ <tag k="contact:street" v="Rue Gabriel Péri"/>
<tag k="name" v="Le Florus"/>
+ <tag k="phone" v="+31 46 55 38 48"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2604659183" lat="48.8201060" lon="2.3114776">
- <tag k="name" v="adegio aparthotel"/>
+ <tag k="name" v="adagio aparthotel"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -11210,9 +11592,9 @@
<tag k="addr:housenumber" v="46"/>
<tag k="addr:street" v="Passage Jouffroy"/>
<tag k="email" v="info@hotelchopin.fr"/>
- <tag k="fax" v="01 42 47 00 70"/>
+ <tag k="fax" v="+33 1 42 47 00 70"/>
<tag k="name" v="Hôtel Chopin"/>
- <tag k="phone" v="01 47 70 58 10"/>
+ <tag k="phone" v="+33 1 47 70 58 10"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelchopin.fr/"/>
@@ -11272,8 +11654,10 @@
</node>
<node id="2634120983" lat="48.8475577" lon="2.3718376">
<tag k="name" v="Hôtel de France"/>
+ <tag k="phone" v="+331 43 43 06 97"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-defrance-paris.com"/>
</node>
<node id="2639076868" lat="48.8390750" lon="2.3316473">
<tag k="addr:city" v="Paris"/>
@@ -11289,12 +11673,14 @@
<node id="2654910635" lat="48.8367685" lon="2.3218491">
<tag k="name" v="Fondation Henri Cartier-Bresson"/>
<tag k="name:es" v="Fundacion Cartier Bresson"/>
+ <tag k="opening_hours" v="Tu, Th, Fr, Su 13:00-18:30; We 13:00-20:30; Sa 11:00-18:45"/>
<tag k="phone" v="+33156802700"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010 / http://www.henricartierbresson.org/infos/home_fr.htm"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.henricartierbresson.org"/>
+ <tag k="wikidata" v="Q2349008"/>
</node>
- <node id="2655906796" lat="48.8678618" lon="2.3225499">
+ <node id="2655906796" lat="48.8678634" lon="2.3225461">
<tag k="name" v="Galerie Royale"/>
<tag k="tourism" v="museum"/>
</node>
@@ -11302,6 +11688,7 @@
<tag k="name" v="Hôtel madeleine plaza"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2668326773" lat="48.8539984" lon="2.3150336"/>
<node id="2685557608" lat="48.8589774" lon="2.3504303">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="78"/>
@@ -11326,6 +11713,7 @@
<tag k="entrance" v="main"/>
</node>
<node id="2689489688" lat="48.8762008" lon="2.3710157">
+ <tag k="name" v="Hôtel Vicq d'Azir"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2692650153" lat="48.8732766" lon="2.3450350">
@@ -11340,63 +11728,41 @@
</node>
<node id="2696636915" lat="48.8569311" lon="2.3033559">
<tag k="name" v="Hôtel de l'Alma"/>
+ <tag k="name:zh" v="巴黎阿尔玛酒店"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2700561974" lat="48.8622200" lon="2.3495080">
<tag k="name" v="Hôtel de la Vallée"/>
- <tag k="phone" v="+33 (0)1 42 36 46 99"/>
+ <tag k="phone" v="+33 1 42 36 46 99"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.paris-hotel-lavallee.com"/>
</node>
- <node id="2700774174" lat="48.8657793" lon="2.3299663">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="221"/>
- <tag k="addr:postcode" v="75001"/>
- <tag k="addr:street" v="Rue Saint-Honoré"/>
- <tag k="name" v="Hôtel Royal Saint-Honore"/>
+ <node id="2700774174" lat="48.8657787" lon="2.3299877">
+ <tag k="name" v="Hôtel Royal Saint-Honoré"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2704163960" lat="48.8549752" lon="2.3046163">
<tag k="email" v="labourdonnais@inwood-hotels.com"/>
<tag k="name" v="Hôtel La Bourdonnais"/>
<tag k="operator" v="Inwood Hotels"/>
- <tag k="phone" v="33 1 47 05 45 42"/>
+ <tag k="phone" v="+33 1 47 05 45 42"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://hotellabourdonnais.fr/"/>
</node>
- <node id="2708634859" lat="48.8530866" lon="2.3611573"/>
- <node id="2708634864" lat="48.8531333" lon="2.3611564"/>
- <node id="2708634865" lat="48.8530823" lon="2.3612645"/>
- <node id="2708634867" lat="48.8530966" lon="2.3611794">
- <tag k="name" v="Académie de la Magie"/>
- <tag k="tourism" v="museum"/>
- </node>
+ <node id="2708634859" lat="48.8531157" lon="2.3611291"/>
+ <node id="2708634864" lat="48.8531624" lon="2.3611282"/>
+ <node id="2708634865" lat="48.8531185" lon="2.3612229"/>
<node id="2712361029" lat="48.8348854" lon="2.3296013">
<tag k="name" v="Villa Montparnasse"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.villa-montparnasse.com/"/>
</node>
- <node id="2718671992" lat="48.8813853" lon="2.3373815">
- <tag k="addr:city" v="PARIS"/>
- <tag k="addr:housenumber" v="3"/>
- <tag k="addr:postcode" v="75009"/>
- <tag k="addr:street" v="rue Frochot"/>
- <tag k="name" v="IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL"/>
- <tag k="phone" v="(+33)1/42853166"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wheelchair:description" v="sehr klein und eng...aber trotzdem mi E-Rollstuhl nutzbar"/>
- </node>
- <node id="2718671993" lat="48.8813853" lon="2.3373815">
- <tag k="addr:city" v="PARIS"/>
- <tag k="addr:housenumber" v="3"/>
- <tag k="addr:postcode" v="75009"/>
- <tag k="addr:street" v="rue Frochot"/>
- <tag k="name" v="IBIS STYLES Paris PIGALLE MONTMARTRE HOTEL"/>
- <tag k="phone" v="(+33)1/42853166"/>
+ <node id="2718671992" lat="48.8812883" lon="2.3374059">
+ <tag k="name" v="Ibis Style"/>
+ <tag k="official_name" v="IBIS STYLES PARIS PIGALLE MONTMARTRE HOTEL"/>
+ <tag k="phone" v="+33142853166"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.accorhotels.com/de/hotel-8465-ibis-styles-paris-pigalle-montmartre/index.shtml"/>
<tag k="wheelchair" v="yes"/>
@@ -11404,19 +11770,25 @@
</node>
<node id="2726775755" lat="48.8489375" lon="2.3468099">
<tag k="name" v="Claude Bernard"/>
+ <tag k="name:es" v="Hotel Claud Bernard"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2727062244" lat="48.8488721" lon="2.3470349">
<tag k="name" v="Villa Panthéon"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2733282388" lat="48.8531023" lon="2.3611230"/>
+ <node id="2733282388" lat="48.8531314" lon="2.3610948"/>
+ <node id="2736349158" lat="48.8858907" lon="2.3246734">
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="source" v="survey"/>
+ <tag k="survey:date" v="2014"/>
+ </node>
<node id="2753910239" lat="48.8781775" lon="2.2853021">
<tag k="email" v="hotel@fertelmaillot.com"/>
- <tag k="fax" v="0144099494"/>
+ <tag k="fax" v="+33 1 44 09 94 94"/>
<tag k="name" v="Fertel Maillot"/>
<tag k="operator" v="Fertel"/>
- <tag k="phone" v="0144099292"/>
+ <tag k="phone" v="+33144099292"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="www.hotelfertel.com"/>
@@ -11447,7 +11819,7 @@
<tag k="addr:postcode" v="75006"/>
<tag k="addr:street" v="Boulevard du Montparnasse"/>
<tag k="name" v="Hôtel Novanox"/>
- <tag k="phone" v="01 46 33 63 60"/>
+ <tag k="phone" v="+33 1 46 33 63 60"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelnovanox.com/"/>
</node>
@@ -11468,14 +11840,23 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="2789010152" lat="48.8481440" lon="2.3425188">
- <tag k="name" v="Hôtel de la Sorbonne"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue Victor Cousin"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Design de la Sorbonne"/>
+ <tag k="operator" v="Design Hotels"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="2789010163" lat="48.8493373" lon="2.3431508">
<tag k="name" v="Mercure"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2820541880" lat="48.8182822" lon="2.3083964">
+ <node id="2820541880" lat="48.8183672" lon="2.3080140">
<tag k="name" v="Hôtel Atlantide"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
@@ -11491,18 +11872,18 @@
<tag k="name" v="Hôtel du Calvados"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="2826103301" lat="48.8769450" lon="2.3270030">
<tag k="name" v="Austin's Saint-Lazare"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2826103401" lat="48.8769450" lon="2.3270030">
- <tag k="name" v="Austin's Saint-Lazare"/>
- <tag k="stars" v="3"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="2830984499" lat="48.8554055" lon="2.3158985"/>
+ <node id="2830985322" lat="48.8556079" lon="2.3168375"/>
+ <node id="2830985323" lat="48.8553494" lon="2.3167701"/>
+ <node id="2833641432" lat="48.8550828" lon="2.3167006"/>
+ <node id="2833641435" lat="48.8552666" lon="2.3167463"/>
+ <node id="2833641440" lat="48.8551354" lon="2.3167125"/>
<node id="2837861460" lat="48.8683432" lon="2.2918443">
<tag k="name" v="Élysées Union"/>
<tag k="tourism" v="hotel"/>
@@ -11512,6 +11893,7 @@
<tag k="source" v="survey"/>
</node>
<node id="2847425096" lat="48.8766674" lon="2.3587492">
+ <tag k="level" v="1"/>
<tag k="name" v="Hôtel Best Western"/>
<tag k="source" v="survey 2014"/>
<tag k="tourism" v="hotel"/>
@@ -11522,6 +11904,18 @@
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2854576158" lat="48.8635861" lon="2.3573719">
+ <tag k="building" v="hotel"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="11"/>
+ <tag k="contact:postcode" v="75003"/>
+ <tag k="contact:street" v="Rue des Gravilliers"/>
+ <tag k="contact:website" v="https://www.hoteljulesetjim.com/"/>
+ <tag k="name" v="Jules et Jim"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
+ </node>
<node id="2855034345" lat="48.8487972" lon="2.3410105">
<tag k="name" v="Trianon Rive gauche"/>
<tag k="operator" v="Best Western"/>
@@ -11534,7 +11928,7 @@
<tag k="addr:postcode" v="75116"/>
<tag k="addr:street" v="Rue Lauriston"/>
<tag k="name" v="Radisson Blu Le Dokhan's Hotel"/>
- <tag k="phone" v="01 53 65 66 99"/>
+ <tag k="phone" v="+33 1 53 65 66 99"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.radissonblu.com/dokhanhotel-paristrocadero"/>
</node>
@@ -11546,15 +11940,6 @@
<tag k="name" v="Plaza Tour Eiffel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2871998976" lat="48.8766556" lon="2.3072312"/>
- <node id="2886076650" lat="48.8974076" lon="2.2470436">
- <tag k="addr:city" v="Courbevoie"/>
- <tag k="addr:housenumber" v="99"/>
- <tag k="addr:postcode" v="92400"/>
- <tag k="addr:street" v="Rue du Capitaine Guynemer"/>
- <tag k="name" v="Hôtel Ibis Styles"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="2888098851" lat="48.8780091" lon="2.3872453">
<tag k="name" v="Adagio Aparthotel"/>
<tag k="tourism" v="hotel"/>
@@ -11580,6 +11965,10 @@
<tag k="smoking" v="separated"/>
<tag k="tourism" v="hotel"/>
</node>
+ <node id="2904917169" lat="48.8935766" lon="2.3231259">
+ <tag k="addr:housenumber" v="46"/>
+ <tag k="source" v="survey"/>
+ </node>
<node id="2908285601" lat="48.8754147" lon="2.3888922">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="5"/>
@@ -11606,18 +11995,11 @@
<tag k="name" v="Best Western Quartier Latin"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2924913358" lat="48.8436267" lon="2.3524487">
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="71"/>
- <tag k="addr:street" v="Rue Monge"/>
- <tag k="name" v="Best Western Quartier Latin"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="2925648931" lat="48.8464533" lon="2.3058161">
<tag k="internet_access" v="yes"/>
<tag k="internet_access:fee" v="no"/>
<tag k="name" v="Hôtel Villa Garibaldi"/>
- <tag k="phone" v="01 56 58 56 58"/>
+ <tag k="phone" v="+33 1 56 58 56 58"/>
<tag k="smoking" v="no"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -11648,7 +12030,12 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hoteldutriangledor.com/"/>
</node>
- <node id="2939582395" lat="48.8248686" lon="2.2584588">
+ <node id="2939582395" lat="48.8249428" lon="2.2587038">
+ <tag k="addr:city" v="Issy-les-Moulineaux"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="22-24"/>
+ <tag k="addr:postcode" v="92130"/>
+ <tag k="addr:street" v="Rue du Passeur de Boulogne"/>
<tag k="name" v="Residhome Paris Issy-les-Moulineaux"/>
<tag k="tourism" v="hotel"/>
</node>
@@ -11657,7 +12044,7 @@
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2949332503" lat="48.8808600" lon="2.3024094">
+ <node id="2949332503" lat="48.8808514" lon="2.3023626">
<tag k="name" v="Hôtel Noir"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
@@ -11692,6 +12079,7 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hoteledouard7-paris.com"/>
+ <tag k="wikidata" v="Q3145485"/>
</node>
<node id="2952944275" lat="48.8613358" lon="2.2863597">
<tag k="name" v="Hôtel Eiffel Trocadero"/>
@@ -11711,25 +12099,37 @@
<tag k="wheelchair" v="limited"/>
<tag k="wheelchair:description" v="Fahrstuhl bis vorletzte Etage. Stufen am Eingang"/>
</node>
- <node id="2970560548" lat="48.8615283" lon="2.3426262">
- <tag k="name" v="Hapimag"/>
- <tag k="tourism" v="hotel"/>
+ <node id="2969340874" lat="48.8894525" lon="2.3936986">
+ <tag k="addr:housenumber" v="221"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="name" v="Musée de la Musique"/>
+ <tag k="name:en" v="Museum of Music"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="museum"/>
</node>
<node id="2981481778" lat="48.8580936" lon="2.3529258">
- <tag k="name" v="Hôtel duO"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Rue du Temple"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel duo"/>
+ <tag k="phone" v="+33 1 42 72 72 22"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.duo-paris.com/"/>
</node>
<node id="2985611711" lat="48.8206822" lon="2.3063748">
<tag k="source" v="survey"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="2986694413" lat="48.8413274" lon="2.3257682">
- <tag k="addr:housenumber" v="39"/>
+ <node id="2986694408" lat="48.8415660" lon="2.3246724">
+ <tag k="addr:housenumber" v="28"/>
<tag k="source" v="survey"/>
</node>
- <node id="2990418382" lat="48.8707591" lon="2.2931194">
+ <node id="2990418382" lat="48.8707450" lon="2.2933072">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="19"/>
<tag k="addr:street" v="Avenue Kléber"/>
@@ -11739,6 +12139,10 @@
<tag k="website" v="http://paris.peninsula.com"/>
<tag k="wikidata" v="Q16632474"/>
</node>
+ <node id="2990855806" lat="48.8360294" lon="2.3241697">
+ <tag k="addr:housenumber" v="94"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2014"/>
+ </node>
<node id="2993907078" lat="48.8399900" lon="2.2848503">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="76"/>
@@ -11749,6 +12153,18 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.amadeus-hotel-paris.com/"/>
</node>
+ <node id="2996095921" lat="48.8223695" lon="2.3345505">
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:street" v="Rue du Parc de Montsouris"/>
+ <tag k="name" v="Hôtel du Parc Montsouris"/>
+ <tag k="phone" v="+33145890972"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3012899073" lat="48.8934673" lon="2.3250917">
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="source" v="survey"/>
+ </node>
<node id="3020189523" lat="48.8762675" lon="2.3826909">
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
@@ -11778,7 +12194,7 @@
<tag k="name" v="Hôtel Le Bienvenue"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3073090387" lat="48.8582325" lon="2.3718450">
+ <node id="3073090387" lat="48.8582177" lon="2.3718944">
<tag k="amenity" v="restaurant"/>
<tag k="name" v="Auberge flora"/>
<tag k="smoking" v="no"/>
@@ -11790,6 +12206,7 @@
<tag k="addr:postcode" v="75007"/>
<tag k="addr:street" v="Rue du Champ de Mars"/>
<tag k="name" v="Hôtel du Cadran"/>
+ <tag k="name:zh" v="巴黎杜卡德安酒店"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="3087374948" lat="48.8640279" lon="2.3450171">
@@ -11801,6 +12218,7 @@
<tag k="phone" v="+33 1 44 32 47 48"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.avocatparis.org/home/presentation-et-missions/histoire-du-barreau-de-paris/musee-virtuel.html"/>
+ <tag k="wikidata" v="Q6402206"/>
</node>
<node id="3087382803" lat="48.8435231" lon="2.3731854">
<tag k="contact:city" v="Paris"/>
@@ -11814,7 +12232,7 @@
<tag k="name" v="Le citizen hotel"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3099188152" lat="48.8487339" lon="2.3341578"/>
+ <node id="3099188152" lat="48.8487339" lon="2.3341577"/>
<node id="3099976487" lat="48.8494061" lon="2.3987583">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="13"/>
@@ -11859,14 +12277,10 @@
<tag k="website" v="http://www.pinkhotel.fr/en"/>
</node>
<node id="3116545385" lat="48.8674341" lon="2.3966731">
+ <tag k="name" v="Hipotel"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3120851619" lat="48.8340000" lon="2.3323000">
- <tag k="disused" v="yes"/>
- <tag k="man_made" v="mineshaft"/>
- <tag k="name" v="Katakomben von Paris"/>
- <tag k="tourism" v="museum"/>
- </node>
<node id="3123195800" lat="48.8598305" lon="2.4028821"/>
<node id="3125784988" lat="48.8357607" lon="2.3019643">
<tag k="addr:city" v="Paris"/>
@@ -11882,21 +12296,18 @@
<node id="3129255718" lat="48.8599083" lon="2.4027265"/>
<node id="3129255719" lat="48.8599226" lon="2.4027096"/>
<node id="3129255722" lat="48.8600040" lon="2.4026096"/>
- <node id="3138360345" lat="48.8780937" lon="2.3647247">
+ <node id="3138360345" lat="48.8780546" lon="2.3647355">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="17"/>
<tag k="addr:postcode" v="75010"/>
<tag k="addr:street" v="Rue Robert Blache"/>
- <tag k="amenity" v="restaurant"/>
- <tag k="brewery" v="Amstel;Leffe;Edelweiss"/>
- <tag k="cuisine" v="french"/>
+ <tag k="contact:website" v="http://lerobinetdor.com"/>
<tag k="name" v="Le Robinet d'Or"/>
<tag k="phone" v="+33 1 44651450"/>
<tag k="smoking" v="outside"/>
<tag k="source" v="survey"/>
<tag k="star" v="3"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://lerobinetdor.com"/>
</node>
<node id="3149605505" lat="48.8763966" lon="2.2635851"/>
<node id="3149605506" lat="48.8764137" lon="2.2631895"/>
@@ -11950,33 +12361,11 @@
<node id="3149606185" lat="48.8768661" lon="2.2636315"/>
<node id="3149606190" lat="48.8768764" lon="2.2626610"/>
<node id="3149606208" lat="48.8769126" lon="2.2627778"/>
- <node id="3150316826" lat="48.8821180" lon="2.3286239">
- <tag k="name" v="Hôtel Vintimille"/>
- <tag k="tourism" v="hotel"/>
- </node>
- <node id="3163635222" lat="48.8883358" lon="2.2522721">
- <tag k="addr:city" v="Courbevoie"/>
- <tag k="addr:housenumber" v="6"/>
- <tag k="addr:postcode" v="92400"/>
- <tag k="addr:street" v="Boulevard de Neuilly"/>
- <tag k="name" v="Fraser Suites Harmonie Paris La Défense"/>
- <tag k="operator" v="Frasers Hospitality"/>
- <tag k="phone" v="+33-1-5523-2600"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://paris.frasershospitality.com/"/>
- </node>
- <node id="3163646022" lat="48.8886162" lon="2.2523705">
- <tag k="addr:city" v="Courbevoie"/>
- <tag k="addr:housenumber" v="1-8"/>
- <tag k="addr:postcode" v="92400"/>
- <tag k="addr:street" v="Boulevard de Neuilly"/>
- <tag k="name" v="Citadines Paris La Défense"/>
- <tag k="operator" v="Ascott"/>
- <tag k="phone" v="+33-1-5813-5757"/>
+ <node id="3164547095" lat="48.8599068" lon="2.4027897"/>
+ <node id="3172338388" lat="48.8639385" lon="2.3658779">
+ <tag k="name" v="1K"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://citadines.com/"/>
</node>
- <node id="3164547095" lat="48.8599068" lon="2.4027897"/>
<node id="3174271866" lat="48.8752560" lon="2.3108650">
<tag k="entrance" v="main"/>
</node>
@@ -11985,7 +12374,8 @@
<node id="3174271870" lat="48.8756130" lon="2.3101899"/>
<node id="3174271871" lat="48.8757601" lon="2.3107691"/>
<node id="3197149490" lat="48.8691590" lon="2.3641891">
- <tag k="name" v="Ibis"/>
+ <tag k="name" v="Ibis Styles"/>
+ <tag k="operator" v="Groupe Accord"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="3200412591" lat="48.8222717" lon="2.2940161">
@@ -12007,7 +12397,8 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="3207360429" lat="48.8654371" lon="2.3657135">
- <tag k="name" v="Marais home"/>
+ <tag k="contact:website" v="http://www.hotel-marais-home.fr/"/>
+ <tag k="name" v="Marais HÔme"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="3207415695" lat="48.8659977" lon="2.3674507">
@@ -12019,19 +12410,23 @@
<tag k="tourism" v="hotel"/>
</node>
<node id="3207654770" lat="48.8629114" lon="2.3676068">
- <tag k="name" v="Beaumarchais"/>
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue Oberkampf"/>
+ <tag k="name" v="Hôtel Beaumarchais"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3208763068" lat="48.8583920" lon="2.3777450">
+ <node id="3208763068" lat="48.8584046" lon="2.3777246">
<tag k="name" v="Paris Voltaire"/>
+ <tag k="phone" v="+33148054466"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="3213979161" lat="48.8585931" lon="2.3685540">
+ <tag k="name" v="Hôtel Bastille de Launay"/>
+ <tag k="rooms" v="35"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
- </node>
- <node id="3214509392" lat="48.8730436" lon="2.3586960">
- <tag k="name" v="Est hotel"/>
- <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
</node>
<node id="3215695683" lat="48.8630233" lon="2.3644881">
<tag k="name" v="Meteore"/>
@@ -12041,8 +12436,8 @@
<tag k="addr:housenumber" v="4"/>
<tag k="addr:street" v="rue de Chaligny"/>
<tag k="email" v="contact@hoteldevenise.fr"/>
- <tag k="name" v="http://www.hoteldevenise.fr/"/>
- <tag k="phone" v="01 43 43 63 45"/>
+ <tag k="name" v="Hôtel de Venise"/>
+ <tag k="phone" v="+33 1 43 43 63 45"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hoteldevenise.fr/"/>
</node>
@@ -12054,6 +12449,10 @@
<tag k="addr:housenumber" v="1"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
</node>
+ <node id="3220735808" lat="48.8902263" lon="2.2776223">
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
+ </node>
<node id="3220765207" lat="48.8861479" lon="2.2611670">
<tag k="addr:housenumber" v="13"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
@@ -12066,16 +12465,26 @@
<tag k="addr:housenumber" v="4"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
</node>
+ <node id="3221640324" lat="48.8902639" lon="2.2766861">
+ <tag k="addr:housenumber" v="58"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
+ </node>
<node id="3221661001" lat="48.8940024" lon="2.2663061">
<tag k="addr:housenumber" v="4"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
</node>
<node id="3221661014" lat="48.8940406" lon="2.2664004"/>
<node id="3221847975" lat="48.8580295" lon="2.3621316"/>
+ <node id="3221950922" lat="48.8818770" lon="2.2794434">
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<node id="3223710967" lat="48.8573239" lon="2.3286291">
<tag k="name" v="Institut des Lettres et Manuscrits"/>
- <tag k="source" v="local Knowledge"/>
<tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q2407603"/>
+ <tag k="wikipedia" v="fr:Musée des lettres et manuscrits"/>
</node>
<node id="3224966274" lat="48.8660449" lon="2.3682896">
<tag k="name" v="Gabriel"/>
@@ -12112,6 +12521,18 @@
<tag k="addr:street" v="Rue Louis Boilly"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
</node>
+ <node id="3282495251" lat="48.8909532" lon="2.3762481">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="189"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Rue de Crimée"/>
+ <tag k="amenity" v="bar"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Tréma"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteltrema.fr"/>
+ </node>
<node id="3284914027" lat="48.8374147" lon="2.2587399">
<tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="122"/>
@@ -12130,7 +12551,7 @@
<tag k="name" v="Musée d'Histoire contemporaine"/>
<tag k="note:fr" v="Musée devant être relocalisé sur Nanterre dans ses propre locaux après 2017"/>
<tag k="opening_hours" v="&quot;Sur RDV&quot;"/>
- <tag k="phone" v="01.44.42.54.91"/>
+ <tag k="phone" v="+33144425491"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.bdic.fr/"/>
@@ -12143,6 +12564,8 @@
<tag k="source" v="knowledge"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.ordredelaliberation.fr/fr_doc/musee.html"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2920606"/>
<tag k="wikipedia" v="fr:Musée de l'Ordre de la Libération"/>
</node>
<node id="3303412974" lat="48.8564589" lon="2.3132374">
@@ -12150,7 +12573,7 @@
<tag k="level" v="4"/>
<tag k="name" v="Musée des Plans-reliefs"/>
<tag k="opening_hours" v="Oct-Mar: Mo-Su 10:00-17:00; Apr-Sep: Mo-Su 10:00-18:00; Mo[1] off; Jan 1 off; May 1 off; Nov 1 off; Dec 25 off"/>
- <tag k="phone" v="01.45.51.95.05"/>
+ <tag k="phone" v="+33145519505"/>
<tag k="source" v="survey"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museedesplansreliefs.culture.fr/"/>
@@ -12189,16 +12612,11 @@
<tag k="website" v="http://www.kipling-hotel.com/"/>
</node>
<node id="3348610468" lat="48.8268796" lon="2.3591197">
- <tag k="name" v="Hotel Choisy"/>
+ <tag k="name" v="Hôtel Choisy"/>
<tag k="source" v="survey"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3351989067" lat="48.8803320" lon="2.3514085">
- <tag k="name" v="Hôtel de Maubeuge"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </node>
<node id="3352567807" lat="48.8434570" lon="2.3202557">
<tag k="name" v="Ibis Paris Tour Montparnasse"/>
<tag k="network" v="Ibis"/>
@@ -12230,14 +12648,2334 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</node>
- <node id="3378051747" lat="48.8651169" lon="2.3565931">
+ <node id="3378051747" lat="48.8651168" lon="2.3565931">
<tag k="name" v="École centrale"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</node>
<node id="3382903740" lat="48.8269470" lon="2.2913690">
<tag k="entrance" v="main"/>
<tag k="source" v="survey"/>
</node>
+ <node id="3391147490" lat="48.8580886" lon="2.3708776">
+ <tag k="name" v="Citadines"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3391154019" lat="48.8575757" lon="2.3698730">
+ <tag k="name" v="Campanile"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3392185653" lat="48.8640800" lon="2.3686697">
+ <tag k="name" v="Mary's"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3392187406" lat="48.8639711" lon="2.3687304">
+ <tag k="name" v="Alhambra"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3396586046" lat="48.8592501" lon="2.3409933">
+ <tag k="name" v="Le relais du Louvre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3396587250" lat="48.8592411" lon="2.3408997">
+ <tag k="name" v="Hôtel de la place du Louvre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3397875897" lat="48.8795621" lon="2.3556783">
+ <tag k="brand" v="Kyriad"/>
+ <tag k="name" v="Kyriad Gare du Nord"/>
+ <tag k="rooms" v="46"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3397876093" lat="48.8793903" lon="2.3556516">
+ <tag k="name" v="Hôtel des Belges"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
+ </node>
+ <node id="3401358190" lat="48.8310268" lon="2.3299085">
+ <tag k="name" v="Nouvel Orleans"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3404154944" lat="48.8581355" lon="2.3776215">
+ <tag k="name" v="Au royal mad"/>
+ <tag k="phone" v="+33143577050"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3404154945" lat="48.8583251" lon="2.3780178">
+ <tag k="name" v="Hôtel de l'Europe"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3404155240" lat="48.8580854" lon="2.3775006">
+ <tag k="name" v="Cyrano"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3404578880" lat="48.8610769" lon="2.3787886">
+ <tag k="name" v="Rhétia"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3421389916" lat="48.8618089" lon="2.3626401">
+ <tag k="name" v="Saint-Louis Saintonge"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3421389918" lat="48.8827065" lon="2.3421526">
+ <tag k="name" v="Regina"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3423948685" lat="48.8834432" lon="2.3252691">
+ <tag k="addr:housenumber" v="4"/>
+ </node>
+ <node id="3423948686" lat="48.8834202" lon="2.3251445"/>
+ <node id="3428579013" lat="48.8479497" lon="2.3423497">
+ <tag k="name" v="Les Trois Collèges"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q23265"/>
+ </node>
+ <node id="3435006726" lat="48.8542192" lon="2.3075500">
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2015"/>
+ </node>
+ <node id="3450963708" lat="48.8212014" lon="2.2928113">
+ <tag k="name" v="adegio city aparthotel"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3457499093" lat="48.8498319" lon="2.3430667">
+ <tag k="name" v="Hôtel Central Saint-Germain"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3457921296" lat="48.8330291" lon="2.3326221">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue René Coty"/>
+ <tag k="email" v="info@midi-hotel-paris.com"/>
+ <tag k="name" v="Hôtel du Midi"/>
+ <tag k="phone" v="+33 1 43 27 23 25"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.midi-hotel-paris.com/"/>
+ </node>
+ <node id="3472995842" lat="48.8550826" lon="2.3625198">
+ <tag k="name" v="Hôtel Caron"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3483634897" lat="48.8642095" lon="2.3750958">
+ <tag k="name" v="Beau séjour"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3499367633" lat="48.8608893" lon="2.3783489">
+ <tag k="name" v="Acacia"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3501719698" lat="48.8774405" lon="2.3516182">
+ <tag k="fax" v="+33 1 45 23 85 05"/>
+ <tag k="name" v="Art Hotel"/>
+ <tag k="operator" v="Amar Albert"/>
+ <tag k="phone" v="+33 1 45 23 85 00"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3519647709" lat="48.8716336" lon="2.3781382">
+ <tag k="name" v="Hipotel"/>
+ <tag k="phone" v="+33140339815"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3523880930" lat="48.8569801" lon="2.3645643">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="30"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue de Turenne"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="Les Tournelles"/>
+ <tag k="name" v="Les Tournelles"/>
+ <tag k="phone" v="+33 1 42 72 73 47"/>
+ <tag k="rooms" v="24"/>
+ <tag k="smoking" v="no"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3523987383" lat="48.8614028" lon="2.3548481"/>
+ <node id="3530680394" lat="48.8554100" lon="2.2929075"/>
+ <node id="3530680396" lat="48.8555476" lon="2.2928847"/>
+ <node id="3545035779" lat="48.8803508" lon="2.3196013">
+ <tag k="name" v="Best Western Elysées Paris Monceau"/>
+ <tag k="operator" v="Best Western"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelelyseesmonceau.com/"/>
+ </node>
+ <node id="3545052590" lat="48.8803226" lon="2.3197300">
+ <tag k="name" v="New Orient Hôtel"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelneworient.com/"/>
+ </node>
+ <node id="3545053094" lat="48.8797334" lon="2.3208324">
+ <tag k="name" v="Timhotel Opera Gare Saint-Lazare"/>
+ <tag k="operator" v="Timhotel"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.timhotel.com/fr/nos-hotels-paris-opera-st-lazare.htm"/>
+ </node>
+ <node id="3564245499" lat="48.8732586" lon="2.3431878">
+ <tag k="name" v="Madrid Opéra"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3564245508" lat="48.8731724" lon="2.3434216">
+ <tag k="description" v="Villa Opéra Drouot"/>
+ <tag k="entrance" v="yes"/>
+ <tag k="source" v="survey"/>
+ </node>
+ <node id="3572374193" lat="48.8490958" lon="2.3892034">
+ <tag k="name" v="Amadeus"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3579874793" lat="48.8322100" lon="2.3163892">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="11"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue Villemain"/>
+ <tag k="name" v="Fred Hôtel"/>
+ <tag k="phone" v="+33 1 45 43 24 18"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2014"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.fred-hotel.com/"/>
+ </node>
+ <node id="3581994094" lat="48.8458818" lon="2.2982163"/>
+ <node id="3581994095" lat="48.8459030" lon="2.2981820"/>
+ <node id="3581994096" lat="48.8459276" lon="2.2982314"/>
+ <node id="3581994097" lat="48.8459321" lon="2.2982183"/>
+ <node id="3583256575" lat="48.8494398" lon="2.4172483">
+ <tag k="contact:city" v="Montreuil"/>
+ <tag k="contact:housenumber" v="72"/>
+ <tag k="contact:street" v="Rue Claude Érignac"/>
+ <tag k="email" v="montreuil.saintmande@sejours-affaires.com"/>
+ <tag k="fax" v="+33 1 48 18 06 83"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Séjours &amp; Affaires St Mandé - Montreuil"/>
+ <tag k="phone" v="+33 1 48 18 19 91"/>
+ <tag k="toilets:wheelchair" v="no"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.sejours-affaires.com/residence-hoteliere-aparthotel-montreuil-19.html"/>
+ <tag k="wheelchair" v="limited"/>
+ </node>
+ <node id="3590483499" lat="48.8448885" lon="2.2525142">
+ <tag k="addr:housenumber" v="13"/>
+ <tag k="addr:street" v="rue Nungesser et Coli"/>
+ <tag k="email" v="contact@mltr.fr"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="name" v="Molitor"/>
+ <tag k="phone" v="+33 1 56 07 08 50"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.mltr.fr/en/"/>
+ </node>
+ <node id="3603475713" lat="48.8387190" lon="2.2887410">
+ <tag k="name" v="Hôtel de la Paix"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3614120606" lat="48.8719098" lon="2.3260854">
+ <tag k="contact:housenumber" v="16"/>
+ <tag k="contact:phone" v="+33 1 47 42 71 22"/>
+ <tag k="contact:street" v="Rue Tronchet"/>
+ <tag k="name" v="Masséna"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3616984275" lat="48.8654958" lon="2.3602194">
+ <tag k="name" v="Hôtel des Fontaines"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3621409108" lat="48.8620490" lon="2.3855022">
+ <tag k="name" v="ibis"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3621414694" lat="48.8625965" lon="2.3867261">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3622876893" lat="48.8590356" lon="2.3074168">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue de Amelie"/>
+ <tag k="name" v="Hôtel Les Jardins d'Eiffel"/>
+ <tag k="toilets:wheelchair" v="yes"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="3623782994" lat="48.8811534" lon="2.3401795">
+ <tag k="name" v="Le Caravelle"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3633336514" lat="48.8853620" lon="2.3336077"/>
+ <node id="3644951278" lat="48.8548974" lon="2.3061456">
+ <tag k="name" v="Hôtel Royal Phare"/>
+ <tag k="source" v="Expedia"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3654530602" lat="48.8640715" lon="2.3719442">
+ <tag k="contact:housenumber" v="50"/>
+ <tag k="contact:street" v="Rue de la Folie Méricourt"/>
+ <tag k="email" v="contact@hoteldesmetallos.com"/>
+ <tag k="facebook" v="https://www.facebook.com/H%C3%B4tel-des-M%C3%A9tallos-395320123857951/"/>
+ <tag k="fax" v="+33 1 43 38 66 13"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="Hotel_des_Metallos"/>
+ <tag k="name" v="Hôtel des Métallos"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="phone" v="+33 1 43 38 73 63"/>
+ <tag k="rooms" v="30"/>
+ <tag k="smoking" v="no"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldesmetallos.com"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="3654530645" lat="48.8629730" lon="2.3725842">
+ <tag k="addr:housenumber" v="31"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue de la Folie-Méricourt"/>
+ <tag k="name" v="Hôtel Fabric"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3657807043" lat="48.8704435" lon="2.3261996">
+ <tag k="email" v="accueil@pinacotheque.com"/>
+ <tag k="end_date" v="15/02/2016"/>
+ <tag k="name" v="Pinacothèque de Paris 2"/>
+ <tag k="opening_hours" v="Mo-Su 10:30-18:30; We, Fr 10:30-20:30; Jan 01,May01,Jul 14, Dec 25 14:00-18:30"/>
+ <tag k="source" v="survey 2015"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.pinacotheque.com/"/>
+ <tag k="wikidata" v="Q774118"/>
+ <tag k="wikipedia" v="fr:Pinacothèque de Paris"/>
+ </node>
+ <node id="3659114783" lat="48.8690799" lon="2.3627798">
+ <tag k="name" v="Hôtel de l'Exposition"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3662316216" lat="48.8883324" lon="2.2507573"/>
+ <node id="3662316217" lat="48.8883337" lon="2.2507190"/>
+ <node id="3662316218" lat="48.8883377" lon="2.2507913"/>
+ <node id="3662316219" lat="48.8883395" lon="2.2506903"/>
+ <node id="3662316220" lat="48.8883450" lon="2.2509149"/>
+ <node id="3662316221" lat="48.8883470" lon="2.2508197"/>
+ <node id="3662316222" lat="48.8883660" lon="2.2508505"/>
+ <node id="3662316223" lat="48.8885410" lon="2.2500554"/>
+ <node id="3662316224" lat="48.8885729" lon="2.2502125"/>
+ <node id="3662324125" lat="48.8886072" lon="2.2501043"/>
+ <node id="3662324126" lat="48.8886394" lon="2.2507366"/>
+ <node id="3662324127" lat="48.8887617" lon="2.2503511"/>
+ <node id="3664530942" lat="48.8309620" lon="2.3306490">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue Sophie Germain"/>
+ <tag k="name" v="Hôtel Sophie Germain"/>
+ <tag k="phone" v="+33 1 43 21 43 75"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="user_defined_other" v="3 stars al 12"/>
+ <tag k="website" v="http://www.hotelsophiegermain.com/"/>
+ </node>
+ <node id="3668101887" lat="48.8550519" lon="2.3337134">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="36"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Bonaparte"/>
+ <tag k="name" v="Hôtel Saint-Germain-des-Prés"/>
+ <tag k="phone" v="+33 1 43 26 00 19"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-paris-saint-germain.com/"/>
+ </node>
+ <node id="3688015011" lat="48.8756218" lon="2.3002330">
+ <tag k="name" v="Royal Monceau – Raffles Pari"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3445992"/>
+ <tag k="wikipedia" v="fr:Royal Monceau"/>
+ </node>
+ <node id="3688065368" lat="48.8691727" lon="2.3575022">
+ <tag k="contact:website" v="http://www.hotelmoris.com/"/>
+ <tag k="name" v="Moris"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3689296465" lat="48.8480115" lon="2.3767847">
+ <tag k="name" v="Le Méditerranéen"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3694852424" lat="48.8596444" lon="2.3622064"/>
+ <node id="3694856526" lat="48.8596743" lon="2.3617887"/>
+ <node id="3708148416" lat="48.8582076" lon="2.3104628">
+ <tag k="name" v="Hôtel de Latour-Maubourg"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteltourmaubourgparis.com/"/>
+ </node>
+ <node id="3708580898" lat="48.8836701" lon="2.3426942">
+ <tag k="name" v="Hôtel Béarnais"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://hotelbearnais.e-monsite.com/"/>
+ </node>
+ <node id="3741340890" lat="48.8416436" lon="2.3023754">
+ <tag k="name" v="Hôtel Eiffel-Blomet"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3752928851" lat="48.8697369" lon="2.3561524">
+ <tag k="name" v="Hôtel Mimosa"/>
+ <tag k="phone" v="+33 1 42 39 20 01"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://hotel-mimosa.parishotelinn.com/"/>
+ </node>
+ <node id="3758220722" lat="48.8433684" lon="2.3067399">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="5"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Rue des Volontaires"/>
+ <tag k="name" v="Nouvel Hôtel Eiffel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3759536276" lat="48.8453062" lon="2.3098838">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="92"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Boulevard Garibaldi"/>
+ <tag k="name" v="Vic Eiffel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3768467670" lat="48.8487081" lon="2.2983306">
+ <tag k="name" v="Art Hotel Eiffel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3770664767" lat="48.8721186" lon="2.3280405">
+ <tag k="name" v="Saint-Pétersbourg"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3778549266" lat="48.8631266" lon="2.3493066">
+ <tag k="name" v="Hôtel du Cygne"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3779176380" lat="48.8820964" lon="2.2821515">
+ <tag k="alt_name" v="AC Hotel"/>
+ <tag k="name" v="AC Hotel by Marriott"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3780939659" lat="48.8721229" lon="2.3033103">
+ <tag k="name" v="Hôtel Warwick"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3780939661" lat="48.8723588" lon="2.3088888">
+ <tag k="name" v="Hôtel des Champs Élysée"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3780950260" lat="48.8742260" lon="2.3045270">
+ <tag k="name" v="Hôtel Arc Élysée"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3780950461" lat="48.8722300" lon="2.3035311">
+ <tag k="name" v="Hôtel Lancaster"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3145545"/>
+ </node>
+ <node id="3780950462" lat="48.8723468" lon="2.3092947">
+ <tag k="name" v="Hôtel Rochester"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3781110497" lat="48.8583520" lon="2.3817005">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue Pétion"/>
+ <tag k="name" v="New Hotel Candide"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.new-hotel.com/fr/hotels-paris/candide"/>
+ </node>
+ <node id="3787532339" lat="48.8622099" lon="2.2873776">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="75116"/>
+ <tag k="addr:street" v="Place du Trocadéro et du 11 Novembre 1918"/>
+ <tag k="email" v="contact.mdh@mnhn.fr"/>
+ <tag k="name" v="Musée de l'Homme"/>
+ <tag k="opening_hours" v="We-Mo,PH 10:00-18:00"/>
+ <tag k="phone" v="+33144057272"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.museedelhomme.fr/"/>
+ <tag k="wikidata" v="Q670268"/>
+ <tag k="wikipedia" v="fr:Musée de l'Homme"/>
+ </node>
+ <node id="3791145768" lat="48.8727104" lon="2.3366864">
+ <tag k="name" v="Marriott Opera Ambassador"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3802242727" lat="48.8928553" lon="2.3410634">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="131"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Ordener"/>
+ <tag k="name" v="Les Jardins de Montmartre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3803549262" lat="48.8720938" lon="2.3452475">
+ <tag k="email" v="hotelrougemont@orange.fr"/>
+ <tag k="name" v="Hôtel de la cité Rougemont"/>
+ <tag k="phone" v="+33 1 47 70 25 95"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://hotel-paris-rougemont.com"/>
+ </node>
+ <node id="3803565857" lat="48.8723737" lon="2.3447919">
+ <tag k="email" v="reservation@hotel-bresil-opera.com"/>
+ <tag k="name" v="Hôtel Brésil Opéra"/>
+ <tag k="phone" v="+33 1 47 70 21 73"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.hotel-bresil-opera.com"/>
+ </node>
+ <node id="3812680963" lat="48.8905029" lon="2.3176430">
+ <tag k="name" v="Hôtel Abrial"/>
+ <tag k="stars" v="3"/>
+ <tag k="survey:date" v="2017-07-05"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3817358927" lat="48.8655229" lon="2.3528371">
+ <tag k="name" v="Hôtel de Roubaix"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hdroubaix.fr/"/>
+ </node>
+ <node id="3823569677" lat="48.8586618" lon="2.3548945">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="38"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Rue Sainte-Croix de la Bretonnerie"/>
+ <tag k="level" v="1"/>
+ <tag k="name" v="Hôtel 1er Etage"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://1eretage.com"/>
+ </node>
+ <node id="3837272095" lat="48.8929314" lon="2.3215623">
+ <tag k="addr:housenumber" v="44"/>
+ </node>
+ <node id="3859011291" lat="48.8340326" lon="2.2872987">
+ <tag k="addr:housenumber" v="36"/>
+ <tag k="name" v="Appart'Tourisme Paris Porte de Versailles"/>
+ <tag k="operator" v="Guillaume VIDAL"/>
+ <tag k="phone" v="+33 6 09 26 80 44"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.votreappartaparis.fr"/>
+ </node>
+ <node id="3871882409" lat="48.8943261" lon="2.2486706">
+ <tag k="addr:housenumber" v="73"/>
+ <tag k="brand" v="Adagio Aparthote"/>
+ <tag k="contact:website" v="http://www.adagio-city.com/fr/hotel-6788-aparthotel-adagio-la-defense-kleber/index.shtml"/>
+ <tag k="name" v="Adagio Aparthotel La Défense Kleber"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3878790331" lat="48.8852894" lon="2.3358999">
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housename" v="7"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Audran"/>
+ <tag k="contact:fax" v="+33 1 42 58 78 16"/>
+ <tag k="contact:phone" v="+33 1 42 58 79 59"/>
+ <tag k="name" v="Audran"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3882655722" lat="48.8961521" lon="2.3880996">
+ <tag k="level" v="0"/>
+ <tag k="name" v="Cité des Enfants (2-7 ans)"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.cite-sciences.fr/fr/au-programme/expos-permanentes/la-cite-des-enfants/lexposition-2-7-ans/"/>
+ </node>
+ <node id="3895164337" lat="48.8549686" lon="2.3166709"/>
+ <node id="3918059357" lat="48.8487885" lon="2.3340279">
+ <tag k="entrance" v="yes"/>
+ <tag k="source" v="survey"/>
+ </node>
+ <node id="3921018457" lat="48.8391660" lon="2.3065800">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue La Quintinie"/>
+ <tag k="name" v="Hôtel Résidence Quintinie Square"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3946292821" lat="48.8704132" lon="2.2938813">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="30"/>
+ <tag k="addr:postcode" v="75116"/>
+ <tag k="addr:street" v="Rue La Pérouse"/>
+ <tag k="name" v="Majestic Hotel - Spa"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.leshotelsbaverez.com/en/home/majestic-hotel-spa"/>
+ </node>
+ <node id="3960011710" lat="48.8235903" lon="2.3715242">
+ <tag k="name" v="ibis style Paris - Masséna - Olympiades"/>
+ <tag k="network" v="ibis"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3964479160" lat="48.8160404" lon="2.3108901">
+ <tag k="addr:housenumber" v="16"/>
+ <tag k="addr:street" v="Place Jean Jaurès"/>
+ <tag k="source" v="survey"/>
+ </node>
+ <node id="3964479162" lat="48.8159516" lon="2.3107894">
+ <tag k="addr:housenumber" v="68"/>
+ <tag k="addr:street" v="Avenue Jean Jaurès"/>
+ <tag k="source" v="survey"/>
+ </node>
+ <node id="3974816593" lat="48.8605485" lon="2.3680184">
+ <tag k="name" v="Les Jardins du Marais"/>
+ <tag k="name:zh" v="巴黎马莱公园酒店"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3980224345" lat="48.8620471" lon="2.3377348">
+ <tag k="name" v="Gregoire"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3980442979" lat="48.8565162" lon="2.3562063">
+ <tag k="email" v="hotel@francelouvre.com"/>
+ <tag k="fax" v="+ 33 1 42 71 04 74"/>
+ <tag k="name" v="Hôtel France Louvre"/>
+ <tag k="phone" v="+33 1 42 71 29 28"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.francelouvre.com"/>
+ </node>
+ <node id="3980577966" lat="48.8677577" lon="2.3225218">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue Royale"/>
+ <tag k="name" v="Galerie Royale"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="3980826544" lat="48.8652331" lon="2.3316246">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="308"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Rue Saint-Honoré"/>
+ <tag k="name" v="Le relais Saint-Honoré"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3980828272" lat="48.8668934" lon="2.3282048">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="360"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Rue Saint-Honoré"/>
+ <tag k="name" v="Hôtel de Vendôme"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3981531089" lat="48.8691472" lon="2.3031344">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="52"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue François 1er"/>
+ <tag k="name" v="Hôtel Powers"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3981588788" lat="48.8690680" lon="2.3028063">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="47"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue François 1er"/>
+ <tag k="name" v="Hôtel Château Frontenac"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3981588791" lat="48.8684900" lon="2.3037301">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue François 1er"/>
+ <tag k="name" v="Hôtel Claridge"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3985131774" lat="48.8757133" lon="2.3039016">
+ <tag k="name" v="Hôtel Royal Garden"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="3986015557" lat="48.8546038" lon="2.3356026"/>
+ <node id="3986016080" lat="48.8545562" lon="2.3355770"/>
+ <node id="3986016081" lat="48.8546934" lon="2.3356523"/>
+ <node id="3986016082" lat="48.8546128" lon="2.3353906"/>
+ <node id="4004469364" lat="48.8828076" lon="2.3449500">
+ <tag k="contact:email" v="info@hotel-avenir.com"/>
+ <tag k="contact:phone" v="+33 1 48 78 21 37"/>
+ <tag k="contact:website" v="http://www.hotel-avenir.com/"/>
+ <tag k="name" v="Hôtel Avenir Montmartre"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4006941007" lat="48.8741949" lon="2.3310874">
+ <tag k="name" v="Prince Albert Opéra"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelprincealbert.com"/>
+ </node>
+ <node id="4008046674" lat="48.8337425" lon="2.3229695">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="160"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue du Château"/>
+ <tag k="name" v="Ibis Paris Maine Montparnasse 14ème"/>
+ <tag k="operator" v="Ibis"/>
+ <tag k="phone" v="+33 1 43 22 00 09"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4016900394" lat="48.8766211" lon="2.3574597">
+ <tag k="name" v="Hôtel Lorraine"/>
+ <tag k="source" v="survey 11/2017"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4019279815" lat="48.8536222" lon="2.3390655">
+ <tag k="addr:housenumber" v="66"/>
+ <tag k="addr:street" v="Rue Saint-André des Arts"/>
+ <tag k="name" v="Hôtel Saint-André des Arts"/>
+ <tag k="phone" v="+33 1 43 26 96 16"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-saintandredesarts.fr/en/"/>
+ </node>
+ <node id="4022941189" lat="48.8798130" lon="2.3338444"/>
+ <node id="4022941190" lat="48.8798185" lon="2.3339336"/>
+ <node id="4022941191" lat="48.8798341" lon="2.3338565"/>
+ <node id="4040162393" lat="48.8452572" lon="2.3424357">
+ <tag k="name" v="Le Petit Paris"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4045868712" lat="48.8743941" lon="2.3420115"/>
+ <node id="4054750955" lat="48.8253008" lon="2.3939313">
+ <tag k="addr:city" v="Charenton-le-Pont"/>
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:postcode" v="94220"/>
+ <tag k="addr:street" v="Place de l'Europe"/>
+ <tag k="name" v="Hôtel Ibis Budget"/>
+ <tag k="operator" v="Accor Hotels"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="4068127168" lat="48.8327676" lon="2.3037156">
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Home Moderne"/>
+ <tag k="rooms" v="62"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.homemoderne.com/"/>
+ </node>
+ <node id="4070085115" lat="48.8527990" lon="2.3303323">
+ <tag k="name" v="Hôtel du Dragon"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4073510815" lat="48.8846255" lon="2.3273259">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4077865326" lat="48.8972940" lon="2.3441067">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="67"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Letort"/>
+ <tag k="name" v="Hôtel de la Terrasse"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://laterrassehotel.fr/fr/hotel_accueil.htm"/>
+ </node>
+ <node id="4077886166" lat="48.8940208" lon="2.3367511">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="110"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Damrémont"/>
+ <tag k="name" v="Hôtel Lumières"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="hotel-lumieres.com"/>
+ </node>
+ <node id="4078014606" lat="48.8912097" lon="2.3389786">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="147"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue Marcadet"/>
+ <tag k="operator" v="Comfort Hotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4086252102" lat="48.8800971" lon="2.3023711"/>
+ <node id="4105299897" lat="48.8788762" lon="2.3620116"/>
+ <node id="4105299902" lat="48.8789355" lon="2.3620472"/>
+ <node id="4105299903" lat="48.8789530" lon="2.3619750"/>
+ <node id="4105299909" lat="48.8790609" lon="2.3621220"/>
+ <node id="4108991392" lat="48.8370132" lon="2.2954937">
+ <tag k="name" v="Quality Abaca Messidor"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4109038889" lat="48.8368815" lon="2.2954373">
+ <tag k="name" v="Quality Abaca Messidor"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4110680890" lat="48.8420646" lon="2.3254153">
+ <tag k="addr:housenumber" v="56"/>
+ <tag k="addr:street" v="Rue du Montparnasse"/>
+ <tag k="name" v="Hôtel Suites Unic Renoir Saint-Germain"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.suites-unic.renoir-hotel.com/index.html"/>
+ </node>
+ <node id="4110737989" lat="48.8423892" lon="2.3632324">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Boulevard de l'Hôpital"/>
+ <tag k="name" v="L’hôtel Libertel Austerlitz Jardin des Plantes"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotels-libertel.com/fr/austerlitz-jardin-des-plantes/"/>
+ </node>
+ <node id="4119084200" lat="48.8728329" lon="2.3281715">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="43"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Aparthotel Adagio Paris Opera"/>
+ <tag k="name:zh" v="巴黎阿德吉奥巴黎歌剧院酒店"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="phone" v="+33158180820"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.adagio-city.com/gb/home/index.shtml"/>
+ </node>
+ <node id="4124777089" lat="48.8603935" lon="2.3231363">
+ <tag k="addr:housenumber" v="93"/>
+ <tag k="addr:street" v="Rue de Lille"/>
+ <tag k="name" v="Hôtel d'Orsay"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4126040796" lat="48.8475455" lon="2.3225306">
+ <tag k="name" v="La belle Juliette"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4129777157" lat="48.8874847" lon="2.3079821">
+ <tag k="addr:street" v="Boulevard Pereire"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Gastón"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4140065902" lat="48.8357853" lon="2.3188911">
+ <tag k="name" v="Hôtel de l'orchidée"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4147009990" lat="48.8721430" lon="2.3236860">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="17"/>
+ <tag k="contact:postcode" v="75008"/>
+ <tag k="contact:street" v="Rue de l'Arcade"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Bedford"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4157000491" lat="48.8416295" lon="2.3279899">
+ <tag k="addr:housenumber" v="15"/>
+ <tag k="name" v="Lenox Montparnasse"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4172965892" lat="48.8749039" lon="2.3601546">
+ <tag k="addr:housenumber" v="27"/>
+ <tag k="addr:street" v="Rue des Récollets"/>
+ <tag k="name" v="Timhotel Paris Gare de l'Est"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4180885042" lat="48.8453571" lon="2.3832807">
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="name" v="Hôtel du Mistral"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4180888294" lat="48.8454571" lon="2.3833065">
+ <tag k="name" v="Hôtel Chaligny"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4191791890" lat="48.8231804" lon="2.3164735">
+ <tag k="name" v="Hôtel F1 porte de Chatillon"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4192674489" lat="48.8657379" lon="2.2863778">
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="addr:street" v="Avenue Raymond Poincaré"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Palais"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4194066289" lat="48.8553038" lon="2.3390643">
+ <tag k="name" v="Hôtel de Nesle"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4195729290" lat="48.8598552" lon="2.3470928">
+ <tag k="contact:website" v="http://hotelducsdanjou.fr/"/>
+ <tag k="name" v="Ducs d'Anjou"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4198872508" lat="48.8713585" lon="2.3239438">
+ <tag k="contact:website" v="http://new-hotel.com/fr/hotels-paris/roblin"/>
+ <tag k="name" v="Newhotel Roblin"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4198872602" lat="48.8731469" lon="2.3273110">
+ <tag k="addr:housenumber" v="26"/>
+ <tag k="addr:street" v="Rue des Mathurins"/>
+ </node>
+ <node id="4198884492" lat="48.8952792" lon="2.3409236">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="77"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Rue du Ruisseau"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Ibis Styles"/>
+ <tag k="phone" v="+33 1 42 62 53 00"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.accorhotels.com/gb/hotel-7941-ibis-styles-paris-montmartre-north/index.shtml"/>
+ </node>
+ <node id="4203604790" lat="48.8725553" lon="2.3581131">
+ <tag k="contact:website" v="http://libertyhotel.net/"/>
+ <tag k="name" v="Liberty"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4206112089" lat="48.8553966" lon="2.3612413">
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:street" v="Rue Malher"/>
+ <tag k="name" v="Hôtel Emile"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4209117792" lat="48.8601782" lon="2.3060335">
+ <tag k="name" v="Hôtel Malar"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4212981364" lat="48.8799808" lon="2.4076719"/>
+ <node id="4212981365" lat="48.8800144" lon="2.4076742"/>
+ <node id="4212981368" lat="48.8800832" lon="2.4080851"/>
+ <node id="4212981369" lat="48.8800992" lon="2.4076819"/>
+ <node id="4212981370" lat="48.8801092" lon="2.4076615"/>
+ <node id="4212981371" lat="48.8801467" lon="2.4077034"/>
+ <node id="4212981372" lat="48.8801900" lon="2.4073056"/>
+ <node id="4212981373" lat="48.8802859" lon="2.4074098"/>
+ <node id="4222179994" lat="48.8574584" lon="2.3503014">
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Rue Neuve Saint-Pierre"/>
+ <tag k="name" v="Hôtel de Neuve"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4225805790" lat="48.8511641" lon="2.3394821">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="19"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Monsieur le Prince"/>
+ <tag k="name" v="Villa des Princes"/>
+ <tag k="phone" v="+33 1 46 33 31 69"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="villa-des-princes.com"/>
+ </node>
+ <node id="4241451892" lat="48.8965796" lon="2.3436026">
+ <tag k="addr:housenumber" v="51"/>
+ <tag k="addr:street" v="rue Letort"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Best Western Le 18"/>
+ <tag k="phone" v="+33.1.42.57.20.00"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.18hotel.paris"/>
+ </node>
+ <node id="4242124692" lat="48.8594792" lon="2.3894780">
+ <tag k="name" v="Hôtel L'ami Justin"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4247157091" lat="48.8610188" lon="2.3805892">
+ <tag k="name" v="Hôtel du Chemin Vert"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4249899936" lat="48.8601457" lon="2.3421021">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Rue de l'Arbre Sec"/>
+ <tag k="name" v="Musée en Herbe"/>
+ <tag k="operator" v="Mo-We 10:00-19:00;Th 10:00-21:00;Fr-Su 10:00-19:00"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4252058692" lat="48.8684253" lon="2.3609072">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="40"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue René Boulanger"/>
+ <tag k="contact:housenumber" v="40"/>
+ <tag k="contact:street" v="Rue René Boulanger"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Renaissance Paris Republique Hotel"/>
+ <tag k="operator" v="Marriott"/>
+ <tag k="phone" v="+33 1 71 18 20 95"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.marriott.com/hotels/travel/parpr-renaissance-paris-republique-hotel/"/>
+ </node>
+ <node id="4252364889" lat="48.8514439" lon="2.3387903">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="3"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue de l'Odéon"/>
+ <tag k="name" v="Odeon Sant Germaine"/>
+ <tag k="phone" v="+33 1 43 25 90 67"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="odeonhotel.fr"/>
+ </node>
+ <node id="4257200156" lat="48.8676605" lon="2.3665758">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4257560397" lat="48.8733059" lon="2.3599503">
+ <tag k="contact:housenumber" v="52 bis"/>
+ <tag k="contact:street" v="Rue des Vinaigriers"/>
+ <tag k="contact:website" v="http://hotelsoftparis.com/"/>
+ <tag k="name" v="Soft"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4265690991" lat="48.8791209" lon="2.3555893">
+ <tag k="brand" v="Hôtel Ibis"/>
+ <tag k="name" v="Hôtel Ibis Paris Gare du Nord"/>
+ <tag k="rooms" v="70"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4277341090" lat="48.8146485" lon="2.3968272">
+ <tag k="name" v="Adagio Access Paris Quai d'Ivry"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4280390397" lat="48.8425947" lon="2.3287639">
+ <tag k="addr:housenumber" v="49"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Vavin"/>
+ <tag k="name" v="Hôtel Atelier Saint-Germain"/>
+ <tag k="name:zh" v="阿特利亚圣德国酒店"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4293179091" lat="48.8467990" lon="2.3263221">
+ <tag k="contact:website" v="http://www.hotel-aramis.com/"/>
+ <tag k="name" v="Best Western Aramis Saint-Germain"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4295462390" lat="48.8719027" lon="2.3445716">
+ <tag k="name" v="Hôtel des Arts"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4328272489" lat="48.8362665" lon="2.3602008">
+ <tag k="addr:housenumber" v="52"/>
+ <tag k="addr:street" v="Rue Jenner"/>
+ <tag k="name" v="Nosso Hotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4330530692" lat="48.8472569" lon="2.4132994">
+ <tag k="name" v="Porte Vincennes"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4334304909" lat="48.8379538" lon="2.3492377">
+ <tag k="name" v="Cardinal Rive Gauche"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4342302189" lat="48.8663108" lon="2.2945414">
+ <tag k="name" v="Panthéon bouddhique"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q7131845"/>
+ </node>
+ <node id="4348351589" lat="48.8295061" lon="2.3715534">
+ <tag k="name" v="BNF hotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4349419679" lat="48.8497536" lon="2.3392540">
+ <tag k="name" v="Le Relais Medici"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="relaismedicis.com"/>
+ </node>
+ <node id="4353891358" lat="48.8799651" lon="2.4080741"/>
+ <node id="4354057204" lat="48.8414445" lon="2.3566148"/>
+ <node id="4354057205" lat="48.8414471" lon="2.3566132"/>
+ <node id="4354057206" lat="48.8414533" lon="2.3566609"/>
+ <node id="4354057207" lat="48.8414585" lon="2.3566578"/>
+ <node id="4354057208" lat="48.8415577" lon="2.3565320"/>
+ <node id="4354057209" lat="48.8415579" lon="2.3565326"/>
+ <node id="4356553693" lat="48.8657785" lon="2.3274056">
+ <tag k="name" v="The Westin Paris"/>
+ <tag k="phone" v="+33 1 44 77 11 11"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.thewestinparis.fr/"/>
+ </node>
+ <node id="4357155192" lat="48.8815452" lon="2.3243883">
+ <tag k="name" v="Elysées Opéra"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4357309680" lat="48.8417745" lon="2.3573188"/>
+ <node id="4357760395" lat="48.8837848" lon="2.3225994">
+ <tag k="name" v="B Square"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4360374397" lat="48.8556889" lon="2.3384129">
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Guénégaud"/>
+ <tag k="name" v="Hôtel prince de Conti"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.prince-de-Conti.com"/>
+ </node>
+ <node id="4363308090" lat="48.8641172" lon="2.3632367">
+ <tag k="contact:housenumber" v="26"/>
+ <tag k="contact:street" v="Rue de Picardie"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Picard"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4371775093" lat="48.9006968" lon="2.3151232">
+ <tag k="name" v="Le Morillon"/>
+ <tag k="name:fr" v="Le Morillon"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4376626489" lat="48.8663399" lon="2.2945413">
+ <tag k="name" v="Jardin Japonais du Panthéon"/>
+ <tag k="name:fr" v="Jardin Japonais du Panthéon"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4380485990" lat="48.8389383" lon="2.3225902">
+ <tag k="name" v="Arcadi hôtel"/>
+ <tag k="name:fr" v="Arcadi hôtel"/>
+ <tag k="name:ja" v="アルカディホテル"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4385367991" lat="48.8663096" lon="2.3368382">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4393160291" lat="48.8292157" lon="2.3565367">
+ <tag k="addr:housenumber" v="13E"/>
+ <tag k="addr:street" v="Avenue d'Italie"/>
+ <tag k="name" v="Ibis Hotel"/>
+ <tag k="name:en" v="Ibis Hotel"/>
+ <tag k="name:fr" v="Ibis Hotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4403583092" lat="48.8523702" lon="2.3455169">
+ <tag k="addr:housenumber" v="16"/>
+ <tag k="addr:street" v="Rue Saint-Séverin"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4405705302" lat="48.8287566" lon="2.3508793">
+ <tag k="name" v="Hôtel Jonas"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4405772104" lat="48.8274058" lon="2.3720167">
+ <tag k="name" v="Green Hotel"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4407036592" lat="48.8254973" lon="2.3414844">
+ <tag k="name" v="Hôtel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4414438091" lat="48.8868487" lon="2.3182527">
+ <tag k="name" v="Hôtel du Roi René"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4416040935" lat="48.8640180" lon="2.3361228">
+ <tag k="name" v="La Clef Louvre"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4418123204" lat="48.8847127" lon="2.3272706">
+ <tag k="name" v="Hôtel de l'Avenue"/>
+ <tag k="source" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4418418790" lat="48.8714577" lon="2.2922243">
+ <tag k="addr:street" v="Rue Lauriston"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="20 rue Lauriston,  Paris"/>
+ <tag k="name:fr" v="20 rue Lauriston,  Paris"/>
+ <tag k="phone" v="+33 6 77 93 24 22"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4420337390" lat="48.8755483" lon="2.3187058">
+ <tag k="name" v="Quality Hotel Malesherbes"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4425553391" lat="48.8588610" lon="2.3910950">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:postcode" v="75020"/>
+ <tag k="addr:street" v="Rue Pierre Bayle"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Adagio Access Paris Philippe Auguste"/>
+ <tag k="source" v="Survey"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.adagio-city.com"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="4426824237" lat="48.8525655" lon="2.3192356">
+ <tag k="name" v="Hôtel de Suède"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4427928825" lat="48.8347633" lon="2.3170341">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="91"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue de l'Ouest"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Apollon Montparnasse"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q41302960"/>
+ </node>
+ <node id="4431322568" lat="48.8714698" lon="2.3251124"/>
+ <node id="4438336442" lat="48.8794957" lon="2.3334918">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="35"/>
+ <tag k="addr:postcode" v="75009"/>
+ <tag k="addr:street" v="Rue La Bruyère"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Timhotel Opera Grands Magasins"/>
+ <tag k="operator" v="Timhotel"/>
+ <tag k="phone" v="+33 1 48 74 03 69"/>
+ <tag k="smoking" v="no"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.timhotel.com/en/timhotel-opera-grands-magasins-4_15"/>
+ </node>
+ <node id="4440260838" lat="48.8711797" lon="2.3385427">
+ <tag k="name" v="Hôtel Lautrec Opera"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.paris-hotel-lautrec.com"/>
+ </node>
+ <node id="4448274792" lat="48.8581562" lon="2.3709968">
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Boulevard Richard Lenoir"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="L'hôtel Citadines Bastille Marais"/>
+ <tag k="name:fr" v="L'hôtel Citadines Bastille Marais"/>
+ <tag k="phone" v="+33153369000"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.citadines.com/en/france/paris/bastille_marais.html"/>
+ </node>
+ <node id="4448519360" lat="48.8753484" lon="2.3579637">
+ <tag k="addr:housenumber" v="72"/>
+ <tag k="addr:street" v="Boulevard de Strasbourg"/>
+ </node>
+ <node id="4448519361" lat="48.8718211" lon="2.3448795">
+ <tag k="name" v="Hôtel Aston"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4448519362" lat="48.8789211" lon="2.3448903">
+ <tag k="name" v="Hôtel La Tour d'Auvergne"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4450060096" lat="48.8519755" lon="2.3466014">
+ <tag k="addr:housenumber" v="73"/>
+ <tag k="addr:street" v="Rue Galande"/>
+ <tag k="name" v="Paris Best Lodge"/>
+ <tag k="name:en" v="Paris Best Lodge"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.parisbestlodges.com/"/>
+ </node>
+ <node id="4458061195" lat="48.8733993" lon="2.3023131">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue de Chateaubriand"/>
+ <tag k="email" v="hotel@hotel-atala.com"/>
+ <tag k="facebook" v="https://www.facebook.com/hotel.atala"/>
+ <tag k="name" v="Atala"/>
+ <tag k="name:ar" v="فندق اتالا باريس الشانزليزية"/>
+ <tag k="phone" v="+33 145 62 01 62"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-atala.com/"/>
+ </node>
+ <node id="4459257298" lat="48.9007749" lon="2.3923322">
+ <tag k="addr:city" v="Pantin"/>
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="93500"/>
+ <tag k="addr:street" v="Rue Magenta"/>
+ <tag k="name" v="Hôtel Le Magistral"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4459257299" lat="48.9007654" lon="2.3924331">
+ <tag k="addr:city" v="Pantin"/>
+ <tag k="addr:housenumber" v="19"/>
+ <tag k="addr:postcode" v="93500"/>
+ <tag k="addr:street" v="Rue Magenta"/>
+ <tag k="name" v="Hôtel du Périgord"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4459257300" lat="48.9007930" lon="2.3921918">
+ <tag k="addr:city" v="Pantin"/>
+ <tag k="addr:housenumber" v="15"/>
+ <tag k="addr:postcode" v="93500"/>
+ <tag k="addr:street" v="Rue Magenta"/>
+ <tag k="name" v="Hôtel La Géode Bleue"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4464142191" lat="48.8322205" lon="2.3504285">
+ <tag k="email" v="contact@vertgalant.com"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Le Vert Galant"/>
+ <tag k="phone" v="+33 1 44 08 83 50"/>
+ <tag k="rooms" v="17"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://vertgalant.hotel-restaurant-paris.com/"/>
+ </node>
+ <node id="4464345994" lat="48.8714509" lon="2.3353028">
+ <tag k="addr:housenumber" v="32"/>
+ <tag k="addr:street" v="Boulevard des Italiens"/>
+ <tag k="name" v="Hôtel London"/>
+ <tag k="name:en" v="Hotel London"/>
+ <tag k="name:ja" v="ホテル ロンドン"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="no"/>
+ </node>
+ <node id="4469841864" lat="48.8839884" lon="2.3254083">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="13"/>
+ <tag k="addr:street" v="Rue Lécluse"/>
+ <tag k="name" v="Hôtel Jean Gabriel Montmartre"/>
+ <tag k="phone" v="+33 1 42 93 41 48"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4512162051" lat="48.8785498" lon="2.3379614">
+ <tag k="name" v="Fondation Dosne-Thiers"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q3075435"/>
+ </node>
+ <node id="4513925093" lat="48.8726330" lon="2.3021016">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue Washington"/>
+ <tag k="email" v="contact@hotel-le-cristal.com"/>
+ <tag k="facebook" v="https://www.facebook.com/Hotel-Cristal-Champs-Elysees-175064569245326/"/>
+ <tag k="name" v="Cristal"/>
+ <tag k="name:ar" v="فندق كريستال باريس بالشانزليزية"/>
+ <tag k="phone" v="+33 1 45 63 27 33"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-le-cristal.com/"/>
+ </node>
+ <node id="4514257589" lat="48.8697495" lon="2.3323881">
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:street" v="Rue Daunou"/>
+ <tag k="name" v="Hôtel Daunou"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4518793199" lat="48.8419540" lon="2.3586169"/>
+ <node id="4518793202" lat="48.8419188" lon="2.3586378"/>
+ <node id="4523851130" lat="48.8854027" lon="2.3351526">
+ <tag k="name" v="Pavillon de Montmartre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4527150299" lat="48.8720297" lon="2.2970194">
+ <tag k="name" v="Radisson Blu"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4532470956" lat="48.8681108" lon="2.3499370">
+ <tag k="contact:website" v="http://www.edgarparis.com/accueil.html#hotel"/>
+ <tag k="name" v="Edgar"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4532598861" lat="48.8461218" lon="2.3630905"/>
+ <node id="4532598862" lat="48.8461792" lon="2.3630744"/>
+ <node id="4532598863" lat="48.8465894" lon="2.3625791">
+ <tag k="amenity" v="ferry_terminal"/>
+ <tag k="harbour" v="yes"/>
+ <tag k="harbour:operator" v="Batobus"/>
+ <tag k="name" v="Jardin des Plantes"/>
+ <tag k="operator" v="Batobus"/>
+ <tag k="port_of_entry" v="no"/>
+ <tag k="tourism" v="yes"/>
+ <tag k="website" v="http://www.batobus.com/"/>
+ <tag k="wikidata" v="Q2891586"/>
+ <tag k="wikipedia" v="fr:Batobus"/>
+ </node>
+ <node id="4534696805" lat="48.8373081" lon="2.2625640">
+ <tag k="name" v="Hos Carro"/>
+ <tag k="name:fr" v="Hos Carro"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4534854799" lat="48.8678113" lon="2.3565505">
+ <tag k="addr:housenumber" v="66"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue Notre-Dame de Nazareth"/>
+ <tag k="email" v="info@micheledidier.com"/>
+ <tag k="name" v="MFC-Michèle Didier"/>
+ <tag k="opening_hours" v="Tu-Sa 12:00-19:00"/>
+ <tag k="phone" v="+33171273441"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.micheledidier.com"/>
+ </node>
+ <node id="4536397848" lat="48.8679659" lon="2.3258303">
+ <tag k="name" v="Burgundy Paris"/>
+ <tag k="rooms" v="51"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q2928464"/>
+ </node>
+ <node id="4536678242" lat="48.8698912" lon="2.3291888">
+ <tag k="name" v="Théâtre-musée des Capucines"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q3527406"/>
+ </node>
+ <node id="4536678249" lat="48.8683632" lon="2.3268257">
+ <tag k="name" v="Castille Paris"/>
+ <tag k="operator" v="Starhotel"/>
+ <tag k="rooms" v="108"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q23274"/>
+ </node>
+ <node id="4539907091" lat="48.8846270" lon="2.3637061">
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="addr:postcode" v="75018"/>
+ <tag k="addr:street" v="Boulevard de la Chapelle"/>
+ <tag k="email" v="galerie@insituparis.fr"/>
+ <tag k="name" v="In Situ | Fabienne Leclerc"/>
+ <tag k="phone" v="+33153790612"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.insituparis.fr"/>
+ </node>
+ <node id="4541289079" lat="48.8432951" lon="2.3071231">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="24"/>
+ <tag k="contact:postcode" v="75015"/>
+ <tag k="contact:street" v="Rue Blomet"/>
+ <tag k="name" v="Aberotel Montparnasse"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4546526365" lat="48.8482577" lon="2.3593035"/>
+ <node id="4565379989" lat="48.8536490" lon="2.3477840">
+ <tag k="entrance" v="main"/>
+ </node>
+ <node id="4580960201" lat="48.8718005" lon="2.3292337">
+ <tag k="name" v="Musée du Parfum Fragonard"/>
+ <tag k="phone" v="+33140061009"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="https://fragonard.com"/>
+ </node>
+ <node id="4590972325" lat="48.8974077" lon="2.2470964">
+ <tag k="entrance" v="main"/>
+ </node>
+ <node id="4590972326" lat="48.8974173" lon="2.2469021"/>
+ <node id="4590972327" lat="48.8975217" lon="2.2471496"/>
+ <node id="4617139289" lat="48.8535957" lon="2.3368725">
+ <tag k="name" v="Hôtel La Louisiane"/>
+ <tag k="name:fr" v="Hôtel La Louisiane"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4623425191" lat="48.8988047" lon="2.3059223">
+ <tag k="name" v="Oksar"/>
+ <tag k="name:fr" v="Oksar"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4653570041" lat="48.8158928" lon="2.3645084">
+ <tag k="addr:housenumber" v="12"/>
+ </node>
+ <node id="4653570042" lat="48.8159457" lon="2.3644693">
+ <tag k="addr:housenumber" v="10"/>
+ </node>
+ <node id="4653570043" lat="48.8160366" lon="2.3644028">
+ <tag k="addr:housenumber" v="8"/>
+ </node>
+ <node id="4655692190" lat="48.8363265" lon="2.2896923">
+ <tag k="name" v="vice versa"/>
+ <tag k="name:en" v="vice versa"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4655962859" lat="48.8659219" lon="2.3235853">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription:fr:1" v="De l'automne 1940 à l'été 1944, le bâtiment du Jeu de Paume fut réquisitionné par les forces d'occupation"/>
+ <tag k="inscription:fr:2" v="pour entreposer, trier et expédier en Allemagne des œuvres volées à des collectionneurs, des marchands d'art, des artistes et de simples particuliers de confession juive."/>
+ <tag k="inscription:fr:3" v="Sur l'ordre de Jacques Jaujard, directeur des musées nationaux, Rose Valland, attachée de conservation au musée du Jeu de Paume, suivit et enregistra quotidiennement ces opérations à l'insu de l'occupant, malgré les risques encourus."/>
+ <tag k="inscription:fr:4" v="Cette mission permit ensuite la localisation et la restitution de plus de 45 000 œuvres d'art."/>
+ <tag k="inscription:fr:5" v="La présente plaque a été dévoilée le 27 avril 2005 par Renaud Donnedieu de Vabres, ministre de la culture et de la communication, en hommage à cet acte de courage et de résistance."/>
+ <tag k="memorial" v="plaque"/>
+ </node>
+ <node id="4664509356" lat="48.8598523" lon="2.3596128">
+ <tag k="name" v="Musée des Archives Nationales"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q3330111"/>
+ </node>
+ <node id="4677240389" lat="48.8906872" lon="2.3832243">
+ <tag k="name" v="Ibi hotel Gillette, París"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4679772363" lat="48.8513131" lon="2.3556200">
+ <tag k="addr:street" v="Rue d'Arcole"/>
+ <tag k="name" v="Musée Boleslas Biegas"/>
+ <tag k="phone" v="+33143543561"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="www.bibliotheque-polonaise-paris-shlp.fr"/>
+ <tag k="wikidata" v="Q2383302"/>
+ </node>
+ <node id="4684728472" lat="48.8476107" lon="2.3517393">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue des Écoles"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Quartier Latin"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelquartierlatin.com/en/"/>
+ </node>
+ <node id="4691027113" lat="48.8470030" lon="2.3973957">
+ <tag k="addr:housenumber" v="24"/>
+ <tag k="addr:street" v="Avenue du Bel Air"/>
+ <tag k="name" v="Nouvel Hôtel"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4701887067" lat="48.8761547" lon="2.3575803">
+ <tag k="entrance" v="main"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="4701887070" lat="48.8760199" lon="2.3574544">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="91"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Boulevard de Strasbourg"/>
+ <tag k="contact:phone" v="+33 1 40 37 77 20"/>
+ <tag k="contact:website" v="http://www.hotel-modernest-paris.com"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="HOTEL MODERN EST"/>
+ <tag k="name" v="Modern' Est"/>
+ <tag k="payment:cash" v="yes"/>
+ <tag k="payment:mastercard" v="yes"/>
+ <tag k="payment:visa" v="yes"/>
+ <tag k="rooms" v="30"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4704790293" lat="48.8476476" lon="2.3267192">
+ <tag k="name" v="ouevre d'orient"/>
+ <tag k="name:fr" v="ouevre d'orient"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4705028420" lat="48.8943374" lon="2.3114483">
+ <tag k="addr:housenumber" v="8"/>
+ </node>
+ <node id="4705028421" lat="48.8946696" lon="2.3116930">
+ <tag k="addr:housenumber" v="14"/>
+ </node>
+ <node id="4705028422" lat="48.8948102" lon="2.3118187">
+ <tag k="addr:housenumber" v="18"/>
+ </node>
+ <node id="4705028423" lat="48.8949394" lon="2.3119123">
+ <tag k="addr:housenumber" v="22"/>
+ </node>
+ <node id="4705028424" lat="48.8949347" lon="2.3119900">
+ <tag k="addr:housenumber" v="9"/>
+ </node>
+ <node id="4745608521" lat="48.8613515" lon="2.3198335">
+ <tag k="name" v="Fondation Custodia"/>
+ <tag k="name:fr" v="Fondation Custodia"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4748913525" lat="48.8882930" lon="2.3488617">
+ <tag k="name" v="Hôtel Le Grillon"/>
+ <tag k="name:fr" v="Hôtel Le Grillon"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4760380583" lat="48.8325517" lon="2.3169083">
+ <tag k="name" v="La Maison Montparnasse"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4760479044" lat="48.8209088" lon="2.3756693"/>
+ <node id="4760479045" lat="48.8207451" lon="2.3757593"/>
+ <node id="4760479047" lat="48.8207956" lon="2.3759711"/>
+ <node id="4760479049" lat="48.8209593" lon="2.3758811"/>
+ <node id="4762807873" lat="48.8942833" lon="2.2482065">
+ <tag k="entrance" v="main"/>
+ <tag k="name" v="La Régence"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4763491530" lat="48.8474057" lon="2.3514697">
+ <tag k="name" v="Hôtel Vendôme Saint-Germain"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4792350123" lat="48.8531417" lon="2.3368887">
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Welcome Hotel"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4793339179" lat="48.8485834" lon="2.4079466">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="addr:postcode" v="75020"/>
+ <tag k="addr:street" v="Rue des Maraîchers"/>
+ <tag k="email" v="http://hotel-tamaris.fr"/>
+ <tag k="name" v="Hôtel Tamaris"/>
+ <tag k="phone" v="+33143728548"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://hotel-tamaris.fr"/>
+ </node>
+ <node id="4793387113" lat="48.8524194" lon="2.3743229">
+ <tag k="name" v="L'Antoine"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4794130221" lat="48.8472043" lon="2.3777459">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="108"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Rue de Charenton"/>
+ <tag k="name" v="Prince Albert Lyon Bercy"/>
+ <tag k="name:fr" v="Prince Albert Lyon Bercy"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4794315124" lat="48.8877066" lon="2.3262986">
+ <tag k="addr:street" v="7 Rue Aristide Bruant, 75018 Paris"/>
+ <tag k="name" v="hote plug in Montmartre hostel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4810326726" lat="48.8484352" lon="2.2970475">
+ <tag k="name" v="Hôtel Saphir"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4811306459" lat="48.8791905" lon="2.3430826">
+ <tag k="name" v="Hôtel Marena"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4816418121" lat="48.8295176" lon="2.3345127">
+ <tag k="addr:housenumber" v="21 bis"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Avenue René Coty"/>
+ <tag k="name" v="Sortie des Catacombes"/>
+ <tag k="name:en" v="Catacombs exit"/>
+ <tag k="name:fr" v="Catacombes"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4818368321" lat="48.8415192" lon="2.3559879">
+ <tag k="addr:housenumber" v="36"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue Geoffroy Saint-Hilaire"/>
+ <tag k="name" v="Muséum national d'histoire naturelle"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4823803081" lat="48.8786817" lon="2.3555464">
+ <tag k="name" v="Hôtel Saint-Quentin"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4828705432" lat="48.8434128" lon="2.3207920">
+ <tag k="alt_name" v="L'Adresse Musée de la Poste"/>
+ <tag k="contact:phone" v="+33 1 53 719849"/>
+ <tag k="contact:website" v="museedelaposte.fr"/>
+ <tag k="description" v="travaux 2017 boutique 21 avenue du Maine"/>
+ <tag k="name" v="Boutique du Musée de la Poste"/>
+ <tag k="opening_hours" v="Mo-Fr 10:00-18:00"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.ladressemuseedelaposte.fr"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2445818"/>
+ <tag k="wikipedia" v="fr:L'Adresse Musée de La Poste"/>
+ </node>
+ <node id="4829548204" lat="48.8802371" lon="2.3521519">
+ <tag k="name" v="Hôtel Bonne Nouvelle"/>
+ <tag k="source" v="survey 2017"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4831650290" lat="48.8781063" lon="2.3547295">
+ <tag k="name" v="Libertel gare-du-Nord Suède"/>
+ <tag k="source" v="survey 2017"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4831650312" lat="48.8793279" lon="2.3566260">
+ <tag k="name" v="La vielle France"/>
+ <tag k="source" v="survey 2017"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4831650316" lat="48.8795283" lon="2.3561164">
+ <tag k="name" v="New Hotel"/>
+ <tag k="source" v="survey 2017"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4835248778" lat="48.8168309" lon="2.3660653"/>
+ <node id="4835248779" lat="48.8168391" lon="2.3660851"/>
+ <node id="4835248780" lat="48.8168368" lon="2.3660873"/>
+ <node id="4835248781" lat="48.8168647" lon="2.3661563"/>
+ <node id="4835248782" lat="48.8168670" lon="2.3661540"/>
+ <node id="4835248783" lat="48.8169946" lon="2.3664817"/>
+ <node id="4835248784" lat="48.8171033" lon="2.3667794"/>
+ <node id="4835248785" lat="48.8170806" lon="2.3668870"/>
+ <node id="4835248788" lat="48.8169327" lon="2.3665872"/>
+ <node id="4835248789" lat="48.8168630" lon="2.3666407"/>
+ <node id="4835248790" lat="48.8168471" lon="2.3665931"/>
+ <node id="4835248791" lat="48.8168615" lon="2.3665820"/>
+ <node id="4835248792" lat="48.8168359" lon="2.3665054"/>
+ <node id="4835248793" lat="48.8169022" lon="2.3664546"/>
+ <node id="4835248794" lat="48.8168779" lon="2.3663817"/>
+ <node id="4835248795" lat="48.8168116" lon="2.3664326"/>
+ <node id="4835248796" lat="48.8167706" lon="2.3663097"/>
+ <node id="4835248797" lat="48.8167962" lon="2.3662859"/>
+ <node id="4835248798" lat="48.8168086" lon="2.3660811"/>
+ <node id="4835248799" lat="48.8167654" lon="2.3661125"/>
+ <node id="4835248800" lat="48.8167351" lon="2.3661349"/>
+ <node id="4836436224" lat="48.8801392" lon="2.3520999">
+ <tag k="name" v="Hôtel bonne nouvelle"/>
+ <tag k="name:fr" v="Hôtel bonne nouvelle"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4838250473" lat="48.8803284" lon="2.4217508">
+ <tag k="name" v="Hôtel du Parc"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4838651398" lat="48.8562947" lon="2.3319575">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="58"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue Jacob"/>
+ <tag k="email" v="info@hoteldanube.fr"/>
+ <tag k="name" v="Hôtel du Danube"/>
+ <tag k="phone" v="+331 42 60 34 70"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldanube.fr"/>
+ </node>
+ <node id="4838651406" lat="48.8570330" lon="2.3300206">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="22"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue de l'Université"/>
+ <tag k="email" v="hoteluniversite@wanadoo.fr"/>
+ <tag k="name" v="Hôtel de l'Université"/>
+ <tag k="phone" v="+331 42 61 09 39"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.universitehotel.com"/>
+ </node>
+ <node id="4839182067" lat="48.8724632" lon="2.3377919">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="boulevard Haussmann"/>
+ <tag k="name" v="Millennium Hotel Paris Opera"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.millenniumhotels.com/en/neighbourhoods/europe/france/paris/opera-neighborhood/"/>
+ </node>
+ <node id="4848933195" lat="48.8714770" lon="2.3148463">
+ <tag k="name" v="Le Grand Musée du Parfum"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.grandmuseeduparfum.fr/"/>
+ </node>
+ <node id="4874131225" lat="48.8265361" lon="2.3829991">
+ <tag k="addr:housenumber" v="24 bis"/>
+ <tag k="addr:street" v="Boulevard du Général Jean Simon"/>
+ <tag k="name" v="Galerie Itinerrance"/>
+ <tag k="name:fr" v="Galerie Itinerrance"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4876879722" lat="48.8607626" lon="2.3426122">
+ <tag k="name" v="L'Empire Paris"/>
+ <tag k="phone" v="+33 1 40 15 06 06"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.lempire-paris.com/"/>
+ </node>
+ <node id="4899766623" lat="48.8486706" lon="2.2918816">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4905284807" lat="48.8495595" lon="2.2982166">
+ <tag k="name" v="Tourisme avenue hotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4905285023" lat="48.8624366" lon="2.3394344">
+ <tag k="name" v="Timhotel"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4906469725" lat="48.8808205" lon="2.3517253">
+ <tag k="name" v="Grand Hotel Magenta"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4908819676" lat="48.8351177" lon="2.4095330">
+ <tag k="name" v="Musée National de l'Histoire de l'Immigration"/>
+ <tag k="phone" v="+33 1 53 59 58 60"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.histoire-immigration.fr/"/>
+ <tag k="wikidata" v="Q1094332"/>
+ <tag k="wikipedia" v="fr:Musée de l’histoire de l’immigration"/>
+ </node>
+ <node id="4935628431" lat="48.8875906" lon="2.3110704">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4935628436" lat="48.8603405" lon="2.3441330">
+ <tag k="name" v="Hôtel Best Western Ducs de Bourgogne"/>
+ <tag k="phone" v="+33 1 42 33 95 64"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.bestwestern-bourgogne.com/"/>
+ </node>
+ <node id="4935890796" lat="48.8274015" lon="2.3046854"/>
+ <node id="4935890797" lat="48.8276257" lon="2.3048222"/>
+ <node id="4935890798" lat="48.8276981" lon="2.3045701"/>
+ <node id="4946643430" lat="48.8472162" lon="2.3675288">
+ <tag k="name" v="La Maison Rouge"/>
+ <tag k="opening_hours" v="We-Mo 11:00-19:00"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://lamaisonrouge.org"/>
+ <tag k="wikidata" v="Q6463620"/>
+ <tag k="wikipedia" v="fr:La Maison rouge, fondation Antoine-de-Galbert"/>
+ </node>
+ <node id="4947723045" lat="48.8455615" lon="2.3408828">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription:fr" v="Au cours de son premier séjour à Paris en 1885, Sigmund Freud résida dans cet hôtel alors appelé Hôtel de la Paix"/>
+ <tag k="memorial" v="plaque"/>
+ <tag k="source" v="survey 2017"/>
+ <tag k="tourism" v="information"/>
+ </node>
+ <node id="4950713551" lat="48.8638935" lon="2.3412116">
+ <tag k="name" v="Crayon"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4962418051" lat="48.8300343" lon="2.2840829">
+ <tag k="email" v="oceania.paris@oceaniahotels.com"/>
+ <tag k="name" v="Hôtel Océania ***"/>
+ <tag k="phone" v="+33 1 56 09 09 09"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.oceaniahotels.com"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="4962418053" lat="48.8301242" lon="2.2837915">
+ <tag k="email" v="hprs@wanadoo.fr"/>
+ <tag k="name" v="Hôtel de la porte de Versailles"/>
+ <tag k="phone" v="+33 1 46 48 76 76"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4966817511" lat="48.8754201" lon="2.3435036">
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:fax" v="+33 1 53 34 50 60"/>
+ <tag k="contact:housenumber" v="24"/>
+ <tag k="contact:phone" v="+33 1 53 34 50 50"/>
+ <tag k="contact:postcode" v="75009"/>
+ <tag k="contact:street" v="Rue Cadet"/>
+ <tag k="contact:website" v="http://www.operacadet.com"/>
+ <tag k="name" v="Hôtel Opéra Cadet"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4967539466" lat="48.8471194" lon="2.3720509">
+ <tag k="name" v="Adriatic"/>
+ <tag k="phone" v="+331 43 43 28 72"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.adriatic-paris-hotel.com"/>
+ </node>
+ <node id="4978365622" lat="48.8534335" lon="2.4029452">
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4986475021" lat="48.8499887" lon="2.3992553">
+ <tag k="name" v="Le Cantal"/>
+ <tag k="name:fr" v="Le Cantal"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="4988195239" lat="48.8866660" lon="2.3537812">
+ <tag k="name" v="Echomusee Goutte d'or"/>
+ <tag k="name:fr" v="Echomusee Goutte d'or"/>
+ <tag k="shop" v="art"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="4990198421" lat="48.8767046" lon="2.2633499">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75116"/>
+ <tag k="addr:street" v="Avenue du Mahatma Gandhi"/>
+ <tag k="name" v="Fondation Louis Vitton"/>
+ <tag k="phone" v="+33 1 40 69 96 00"/>
+ <tag k="toilets:wheelchair" v="yes"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.fondationlouisvuitton.fr"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="5001825471" lat="48.8515509" lon="2.3330460">
+ <tag k="name" v="Bonaparte"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003426296" lat="48.8587676" lon="2.3311495">
+ <tag k="name" v="Quai Voltaire"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003426306" lat="48.8549834" lon="2.3344397">
+ <tag k="addr:housenumber" v="21"/>
+ <tag k="addr:street" v="Rue Jacob"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel des Marronniers"/>
+ <tag k="phone" v="+331 43 25 30 60"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://m.hotellesmarronniers.com"/>
+ </node>
+ <node id="5003429375" lat="48.8585295" lon="2.3299131">
+ <tag k="name" v="De la rue de Lille"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003429377" lat="48.8582452" lon="2.3309004">
+ <tag k="name" v="Bersoly's"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003429380" lat="48.8573599" lon="2.3314491">
+ <tag k="name" v="Verneuil"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003432649" lat="48.8558560" lon="2.3332916">
+ <tag k="name" v="Hôtel d'Angleterre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5003433654" lat="48.8565400" lon="2.3303533">
+ <tag k="name" v="Le saint"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5026913248" lat="48.8924700" lon="2.3745337">
+ <tag k="addr:housenumber" v="219"/>
+ <tag k="addr:street" v="Rue de Crimée"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="IBIS STYLES"/>
+ <tag k="name" v="Hôtel Ibis Styles Paris Crimée La Villette"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5050724471" lat="48.8871508" lon="2.3478667">
+ <tag k="addr:housenumber" v="44"/>
+ <tag k="addr:street" v="Rue de Clignancourt"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Villa Montmartre"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5063848187" lat="48.8845647" lon="2.3793207">
+ <tag k="addr:housenumber" v="4"/>
+ </node>
+ <node id="5066109921" lat="48.8857350" lon="2.3409110">
+ <tag k="name" v="Atelier Gabrielle"/>
+ <tag k="name:fr" v="Atelier Gabrielle"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="5067055623" lat="48.8714929" lon="2.3077096">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="97"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Rue La Boétie"/>
+ <tag k="name" v="Hôtel Le Monna Lisa"/>
+ <tag k="operator" v="Inwood Hotels"/>
+ <tag k="phone" v="+33 1 56 43 38 38"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://hotelmonnalisa.com/fr"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="5073615278" lat="48.8755174" lon="2.3233590">
+ <tag k="name" v="L'Ouest Hôtel"/>
+ <tag k="source" v="survey 09/2017"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5074472340" lat="48.8328451" lon="2.2779248"/>
+ <node id="5074472341" lat="48.8326138" lon="2.2785552"/>
+ <node id="5074472342" lat="48.8324867" lon="2.2782118"/>
+ <node id="5077321899" lat="48.8525679" lon="2.3361968">
+ <tag k="name" v="Le Clément"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5094920523" lat="48.8437090" lon="2.3718170">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75012"/>
+ <tag k="addr:street" v="Rue van Gogh"/>
+ <tag k="name" v="CitizenM Gare de Lyon"/>
+ <tag k="toilets:wheelchair" v="yes"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.citizenm.com/destinations/paris/paris-gare-de-lyon-hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="5101320813" lat="48.8929621" lon="2.3730783">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="56"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Rue Curial"/>
+ <tag k="email" v="hotel@parisvillette.com"/>
+ <tag k="fax" v="+33140370225"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:ssid" v="ParisVilletteFreebox"/>
+ <tag k="name" v="Hôtel Paris Villette"/>
+ <tag k="opening_hours" v="Mo-Su 00:00-00:00"/>
+ <tag k="phone" v="+33140375074"/>
+ <tag k="rooms" v="44"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="parisvillette.com"/>
+ </node>
+ <node id="5105934721" lat="48.8642262" lon="2.3322852">
+ <tag k="name:es" v="Hotel Rejina"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5113544716" lat="48.8838071" lon="2.3185182">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="99 bis"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="rue de Rome"/>
+ <tag k="description" v="Hôtel Mercure - Paris Saint Lazare Monceau"/>
+ <tag k="name" v="Mercure"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5113762371" lat="48.8667767" lon="2.3385682">
+ <tag k="name" v="Hôtel Tubeuf"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5114647323" lat="48.8690492" lon="2.2972802">
+ <tag k="name" v="bassano"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5129327990" lat="48.8864332" lon="2.3126315">
+ <tag k="addr:housenumber" v="129"/>
+ <tag k="addr:street" v="rue Cardinet"/>
+ <tag k="name" v="Malesherbes Hôtel"/>
+ <tag k="phone" v="+33-1-4415-8500"/>
+ <tag k="smoking" v="no"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5129329159" lat="48.8864935" lon="2.3123404">
+ <tag k="addr:housenumber" v="28"/>
+ <tag k="addr:street" v="passage Cardinet"/>
+ <tag k="name" v="Hôtel Prince Albert Wagram"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5129457406" lat="48.8849934" lon="2.3211007">
+ <tag k="addr:housenumber" v="26-28"/>
+ <tag k="addr:street" v="rue des Batignolles"/>
+ <tag k="name" v="Hôtel des Batignolles"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5129459256" lat="48.8837106" lon="2.3227163">
+ <tag k="name" v="Hôtel du Mont Doré"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5132410922" lat="48.8970526" lon="2.3453979">
+ <tag k="name" v="Hôtel Kyriad"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5141182421" lat="48.8696083" lon="2.3593124">
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Rue Taylor"/>
+ <tag k="name" v="Galerie Treize-Dix"/>
+ <tag k="phone" v="+33 7 87 80 00 41"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="5141182422" lat="48.8533956" lon="2.3753719">
+ <tag k="addr:housenumber" v="27"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue de Charonne"/>
+ <tag k="name" v="Arts Factory"/>
+ <tag k="opening_hours" v="Mo-Sa 12:30-19:30"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="5141182521" lat="48.8609483" lon="2.3628853">
+ <tag k="addr:housenumber" v="108"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue Vieille du Temple"/>
+ <tag k="name" v="Galerie Yvon Lambert"/>
+ <tag k="name:en" v="Galery Yvon Lambert"/>
+ <tag k="opening_hours" v="Tu-Sa 10:00-19:00"/>
+ <tag k="tourism" v="museum"/>
+ </node>
+ <node id="5152198335" lat="48.8933636" lon="2.3798952">
+ <tag k="fax" v="paris.lavillette@campanile.fr"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Hôtel Restaurant Campanile Paris La Villette"/>
+ <tag k="operator" v="Campanile"/>
+ <tag k="phone" v="+33144724646"/>
+ <tag k="rooms" v="208"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.campanile.com/fr/hotels/campanile-paris-19-la-villette"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="5153526848" lat="48.8847956" lon="2.3447662"/>
+ <node id="5153526849" lat="48.8848203" lon="2.3442729"/>
+ <node id="5153526850" lat="48.8845363" lon="2.3446637"/>
+ <node id="5153526851" lat="48.8844781" lon="2.3444451"/>
+ <node id="5153526852" lat="48.8845028" lon="2.3443700"/>
+ <node id="5153526853" lat="48.8846025" lon="2.3443057"/>
+ <node id="5162623916" lat="48.8604366" lon="2.3261482">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription:1" v="Entre avril et août 1945, un grand nombre de rescapés des camps de prisonniers, des camps de concentrations, des camps de travail forcé, tous victimes du nazisme, furent à leur retour acceuillis dans la gare d'Orsay,"/>
+ <tag k="inscription:2" v="le plus important centre français de rapatriement."/>
+ <tag k="memorial" v="plaque"/>
+ </node>
+ <node id="5162650466" lat="48.8599540" lon="2.3253135">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription:1" v="LA COUR DES COMPTES SIÉGEA EN CES LIEUX DE 1842 À 1871"/>
+ <tag k="inscription:2" v="La présente plaque fut apposée à l'occasion du bicentenaire de la Cour des comptes 1807-2007"/>
+ <tag k="memorial" v="plaque"/>
+ </node>
+ <node id="5167232723" lat="48.8735973" lon="2.3440859">
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Rue Geoffroy Marie"/>
+ <tag k="name" v="Geoffroy Marie Opera"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5171736137" lat="48.8498183" lon="2.3854344">
+ <tag k="name" v="Hôtel des Pyrénées"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5180365678" lat="48.8664917" lon="2.3467620">
+ <tag k="name" v="Zora"/>
+ <tag k="source" v="survey 10/2017"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5180365682" lat="48.8666655" lon="2.3457501">
+ <tag k="contact:phone" v="+33 1 40 26 69 90"/>
+ <tag k="contact:website" v="http://hotel-bellan.com/fr/"/>
+ <tag k="name" v="Hôtel Bellan"/>
+ <tag k="source" v="survey 10/2017"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5201026073" lat="48.8550439" lon="2.3560228">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription" v="Dominique de Villepin, Premier ministre – Ehud Olmer, Premier ministre de l’État d’Israël – Bertand Delanoë, Maire de Paris – Eric de Rothschild, Président du Mémorial de la Shoah – ont inauguré le Mur des Justes le 14 juin 2006."/>
+ <tag k="memorial" v="plaque"/>
+ </node>
+ <node id="5201026074" lat="48.8549013" lon="2.3563703">
+ <tag k="board_type" v="history"/>
+ <tag k="historic" v="memorial"/>
+ <tag k="information" v="board"/>
+ <tag k="inscription:1" v="Sur ce mur sont gravés les noms des justes de France qui ont sauvé des juifs pendant la seconde guerre mondiale, parfois au péril de leur vie. Le titre de juste est conféré par l’État d’Israël et décerné par le mémorial Yad Vashem à Jérusalem en hommage"/>
+ <tag k="inscription:2" v="à ces non-juifs qui ont agi avec courage et abnégation. Bravant l’indifférence qui semblait régner dans notre pays, individuellement ou au sein de réseaux, ces femmes et ces hommes de toutes conditions politiques, sociales et religieuses avaient en"/>
+ <tag k="inscription:3" v="commun le refus de la barbarie, le sens de la solidarité et des responsabilités. Caches, faux-papiers, nourriture, passage de frontières, les justes ont apporté une aide matérielle et morale essentielle contribuant au sauvetage des trois quarts des"/>
+ <tag k="inscription:4" v="juifs de France alors persécutés par le régime de Vichy et l’occupant nazi. Il faut également rappeler la mémoire des juifs qui seuls ou dans des réseaux de résistance se sont battus pour sauver leur communauté. Ce mur marque notre reconnaissance envers"/>
+ <tag k="inscription:5" v="toutes ces femmes et ces hommes connus, mais aussi envers les milliers d’inconnus qui ont œuvré de façon discrète et efficace pendant ces temps dramatiques. Leur comportement constitue un modèle pour toutes les générations à venir."/>
+ <tag k="inscription:6" v="Les noms qui figurent sur ce mur sont présentés par année d’attribution du titre, par ordre alphabétique et avec la mention du lieu où le sauvetage s’est déroulé."/>
+ <tag k="memorial" v="plaque"/>
+ </node>
+ <node id="5201048721" lat="48.8352707" lon="2.3266007">
+ <tag k="addr:housenumber" v="19"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Rue Roger"/>
+ <tag k="name" v="Hôtel Telemaque"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5207272223" lat="48.8182877" lon="2.3084570">
+ <tag k="name" v="Hôtel Atlantide"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5220780046" lat="48.8531911" lon="2.3386874">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Rue de l'Ancienne Comédie"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Left Bank Saint-Germain"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5231350621" lat="48.8702010" lon="2.3465060">
+ <tag k="name" v="The Hoxton"/>
+ <tag k="toilets:wheelchair" v="yes"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="5234595935" lat="48.8948216" lon="2.3119871"/>
+ <node id="5234595936" lat="48.8948472" lon="2.3119425"/>
+ <node id="5234595937" lat="48.8948008" lon="2.3119244"/>
+ <node id="5234595938" lat="48.8948021" lon="2.3119201"/>
+ <node id="5234595939" lat="48.8947940" lon="2.3119124"/>
+ <node id="5234595940" lat="48.8947800" lon="2.3119469"/>
+ <node id="5234595941" lat="48.8947765" lon="2.3119498"/>
+ <node id="5234595942" lat="48.8947737" lon="2.3119520"/>
+ <node id="5234595943" lat="48.8947673" lon="2.3119532"/>
+ <node id="5234595944" lat="48.8947615" lon="2.3119506"/>
+ <node id="5234595945" lat="48.8947579" lon="2.3119465"/>
+ <node id="5234595946" lat="48.8947550" lon="2.3119407"/>
+ <node id="5234595947" lat="48.8947535" lon="2.3119339"/>
+ <node id="5234595948" lat="48.8947535" lon="2.3119250"/>
+ <node id="5234595949" lat="48.8947420" lon="2.3119150"/>
+ <node id="5234595950" lat="48.8947381" lon="2.3119253"/>
+ <node id="5234595951" lat="48.8947158" lon="2.3118961"/>
+ <node id="5234595952" lat="48.8947262" lon="2.3118687"/>
+ <node id="5234595953" lat="48.8947490" lon="2.3118906"/>
+ <node id="5234595954" lat="48.8947567" lon="2.3118711"/>
+ <node id="5234595955" lat="48.8946303" lon="2.3117578"/>
+ <node id="5234595956" lat="48.8945789" lon="2.3118459"/>
+ <node id="5234595957" lat="48.8945906" lon="2.3118556"/>
+ <node id="5234595958" lat="48.8945735" lon="2.3118601"/>
+ <node id="5234595959" lat="48.8945014" lon="2.3117169"/>
+ <node id="5234595960" lat="48.8944827" lon="2.3116995"/>
+ <node id="5234595961" lat="48.8944787" lon="2.3117757"/>
+ <node id="5234595962" lat="48.8943457" lon="2.3114989"/>
+ <node id="5234595963" lat="48.8943566" lon="2.3115086"/>
+ <node id="5234595964" lat="48.8943616" lon="2.3114957"/>
+ <node id="5234595965" lat="48.8943399" lon="2.3114937"/>
+ <node id="5234595966" lat="48.8943507" lon="2.3114860"/>
+ <node id="5234595967" lat="48.8943266" lon="2.3115084"/>
+ <node id="5234595968" lat="48.8943908" lon="2.3114668"/>
+ <node id="5234595969" lat="48.8944066" lon="2.3114810"/>
+ <node id="5234595970" lat="48.8943979" lon="2.3114484"/>
+ <node id="5234595971" lat="48.8945143" lon="2.3115299"/>
+ <node id="5234595973" lat="48.8944213" lon="2.3114465"/>
+ <node id="5234595974" lat="48.8945082" lon="2.3115478"/>
+ <node id="5234595975" lat="48.8946950" lon="2.3117151"/>
+ <node id="5234595976" lat="48.8947006" lon="2.3116988"/>
+ <node id="5234595977" lat="48.8947888" lon="2.3117985"/>
+ <node id="5234595978" lat="48.8947947" lon="2.3117820"/>
+ <node id="5234595979" lat="48.8948628" lon="2.3118442">
+ <tag k="addr:housenumber" v="20"/>
+ </node>
+ <node id="5234595980" lat="48.8948339" lon="2.3118391"/>
+ <node id="5234595981" lat="48.8948398" lon="2.3118237"/>
+ <node id="5234595982" lat="48.8945251" lon="2.3125476"/>
+ <node id="5234595983" lat="48.8945628" lon="2.3125802"/>
+ <node id="5234595984" lat="48.8945696" lon="2.3125894"/>
+ <node id="5234595985" lat="48.8945809" lon="2.3125973"/>
+ <node id="5234595986" lat="48.8945933" lon="2.3125960"/>
+ <node id="5234595987" lat="48.8946088" lon="2.3125822"/>
+ <node id="5234595988" lat="48.8946122" lon="2.3125719"/>
+ <node id="5234595989" lat="48.8946140" lon="2.3125579"/>
+ <node id="5234595990" lat="48.8946129" lon="2.3125410"/>
+ <node id="5234595991" lat="48.8946030" lon="2.3125894"/>
+ <node id="5234595992" lat="48.8945592" lon="2.3125678"/>
+ <node id="5234595995" lat="48.8946084" lon="2.3125287"/>
+ <node id="5234595996" lat="48.8946788" lon="2.3124382"/>
+ <node id="5234595997" lat="48.8947297" lon="2.3123488"/>
+ <node id="5234595998" lat="48.8946858" lon="2.3124480"/>
+ <node id="5234595999" lat="48.8947368" lon="2.3123593"/>
+ <node id="5234596000" lat="48.8947500" lon="2.3123114"/>
+ <node id="5234596001" lat="48.8947764" lon="2.3122649"/>
+ <node id="5234596002" lat="48.8947850" lon="2.3122756"/>
+ <node id="5234596003" lat="48.8947586" lon="2.3123226"/>
+ <node id="5234596004" lat="48.8948458" lon="2.3121439"/>
+ <node id="5234596005" lat="48.8948720" lon="2.3120981"/>
+ <node id="5234596006" lat="48.8948804" lon="2.3121087"/>
+ <node id="5234596007" lat="48.8948940" lon="2.3120613"/>
+ <node id="5234596008" lat="48.8949015" lon="2.3120715"/>
+ <node id="5234596009" lat="48.8948541" lon="2.3121553"/>
+ <node id="5234596010" lat="48.8949417" lon="2.3119778"/>
+ <node id="5234596011" lat="48.8949485" lon="2.3119876"/>
+ <node id="5234596012" lat="48.8946287" lon="2.3124954"/>
+ <node id="5234596013" lat="48.8946461" lon="2.3125166"/>
+ <node id="5234596014" lat="48.8941534" lon="2.3122958"/>
+ <node id="5234596015" lat="48.8941581" lon="2.3122874"/>
+ <node id="5234596016" lat="48.8941508" lon="2.3123106"/>
+ <node id="5234596017" lat="48.8941519" lon="2.3123252"/>
+ <node id="5234596018" lat="48.8941626" lon="2.3123475"/>
+ <node id="5234596019" lat="48.8941706" lon="2.3123516"/>
+ <node id="5234596020" lat="48.8941775" lon="2.3123521"/>
+ <node id="5234596021" lat="48.8941841" lon="2.3123497"/>
+ <node id="5234596022" lat="48.8941551" lon="2.3123361"/>
+ <node id="5234596023" lat="48.8942243" lon="2.3123658"/>
+ <node id="5234596024" lat="48.8941906" lon="2.3123447"/>
+ <node id="5234596025" lat="48.8941648" lon="2.3122783"/>
+ <node id="5234596026" lat="48.8941451" lon="2.3122369"/>
+ <node id="5234596027" lat="48.8941202" lon="2.3122658"/>
+ <node id="5234596028" lat="48.8942147" lon="2.3124034"/>
+ <node id="5234596029" lat="48.8945152" lon="2.3125855"/>
+ <node id="5234596031" lat="48.8943096" lon="2.3121042"/>
+ <node id="5234596032" lat="48.8943639" lon="2.3114190"/>
+ <node id="5234596033" lat="48.8940843" lon="2.3117316"/>
+ <node id="5234596034" lat="48.8943242" lon="2.3114621"/>
+ <node id="5234596035" lat="48.8941000" lon="2.3117630"/>
+ <node id="5234596036" lat="48.8941230" lon="2.3117358"/>
+ <node id="5234596037" lat="48.8942855" lon="2.3120686"/>
+ <node id="5234596038" lat="48.8942995" lon="2.3120991"/>
+ <node id="5236279374" lat="48.8949730" lon="2.3119438"/>
+ <node id="5236279377" lat="48.8939394" lon="2.3118938"/>
+ <node id="5238672751" lat="48.8398907" lon="2.3374089">
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="43"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Avenue Georges Bernanos"/>
+ <tag k="contact:email" v="contact@hotel-beauvoir-paris.com"/>
+ <tag k="contact:facebook" v="https://www.facebook.com/Hotel-Beauvoir-Paris-240062326197403/"/>
+ <tag k="contact:google_plus" v="https://plus.google.com/117719051652636087926"/>
+ <tag k="contact:phone" v="+33 1 43 25 57 10"/>
+ <tag k="contact:website" v="http://www.hotel-beauvoir.fr"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Beauvoir"/>
+ <tag k="rooms" v="29"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5242329381" lat="48.8758126" lon="2.3574144">
+ <tag k="name" v="Ibis Styles - Paris Gare de l'Est TGV"/>
+ <tag k="operator" v="Accord"/>
+ <tag k="source" v="survey 11/2017"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5242329383" lat="48.8757417" lon="2.3573843">
+ <tag k="name" v="Hôtel d'Alsace"/>
+ <tag k="source" v="survey 11/2017"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5245308747" lat="48.8783634" lon="2.3570275">
+ <tag k="name" v="Hôtel Appia"/>
+ <tag k="source" v="survey 11/2017"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelappia.com/"/>
+ </node>
+ <node id="5245794449" lat="48.8494874" lon="2.3853534">
+ <tag k="name" v="L'Aigle"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
+ <node id="5245794547" lat="48.8494019" lon="2.3853786">
+ <tag k="name" v="Ibis"/>
+ <tag k="tourism" v="hotel"/>
+ </node>
<way id="17954721">
<nd ref="185881594"/>
<nd ref="185881595"/>
@@ -12270,9 +15008,13 @@
<nd ref="828584146"/>
<nd ref="828583803"/>
<nd ref="185881594"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="37"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Quai Branly"/>
<tag k="alt_name" v="Musée des Arts Premiers"/>
<tag k="architect" v="Jean Nouvel"/>
- <tag k="name" v="Musée du quai Branly"/>
+ <tag k="name" v="Musée du quai Branly - Jacques Chirac"/>
<tag k="name:ar" v="متحف برانلي"/>
<tag k="name:cs" v="Muzeum na nábřeží Branly"/>
<tag k="name:en" v="Quai Branly Museum"/>
@@ -12288,10 +15030,11 @@
<tag k="name:uk" v="Музей на набережній Бранлі"/>
<tag k="name:vi" v="Bảo tàng Quai Branly"/>
<tag k="opening_hours" v="Tu,We,Su 11:00-19:00; Th,Fr,Sa 11:00-21:00"/>
- <tag k="phone" v="01.56.61.70.00"/>
+ <tag k="phone" v="+33156617000"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.quaibranly.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q167863"/>
<tag k="wikipedia" v="fr:Musée du quai Branly"/>
</way>
<way id="18592415">
@@ -12312,21 +15055,33 @@
<nd ref="191770987"/>
<tag k="building:height" v="116"/>
<tag k="building:levels" v="30"/>
+ <tag k="building:part" v="commercial"/>
+ <tag k="email" v="h8189@accor.com"/>
+ <tag k="fax" v="0033144364700"/>
+ <tag k="layer" v="2"/>
<tag k="name" v="Hôtel Pullman Montparnasse"/>
<tag k="old_name" v="Hôtel Méridien Montparnasse"/>
+ <tag k="phone" v="+33144364436"/>
+ <tag k="rooms" v="957"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q749558"/>
</way>
<way id="21999357">
<nd ref="707237124"/>
+ <nd ref="4354057204"/>
+ <nd ref="4354057205"/>
+ <nd ref="4354057207"/>
+ <nd ref="4354057206"/>
<nd ref="338547035"/>
<nd ref="338547033"/>
<nd ref="338546998"/>
<nd ref="338547031"/>
<nd ref="338546979"/>
<nd ref="338546977"/>
- <nd ref="338546955"/>
- <nd ref="338546953"/>
+ <nd ref="4518793202"/>
+ <nd ref="4518793199"/>
<nd ref="237016931"/>
<nd ref="237016932"/>
<nd ref="338546951"/>
@@ -12338,21 +15093,30 @@
<nd ref="707237117"/>
<nd ref="707237071"/>
<nd ref="707236992"/>
+ <nd ref="4357309680"/>
<nd ref="338546618"/>
<nd ref="338546616"/>
<nd ref="1125740179"/>
<nd ref="338546614"/>
<nd ref="338546592"/>
<nd ref="1125739737"/>
+ <nd ref="4354057208"/>
+ <nd ref="4354057209"/>
<nd ref="707237124"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
<tag k="name" v="Galerie de Minéralogie et de Géologie"/>
+ <tag k="name:de" v="Galerie für Mineralogie und Geologie"/>
+ <tag k="name:en" v="Gallery of Mineralogy and Geology"/>
+ <tag k="name:fr" v="Galerie de Minéralogie et de Géologie"/>
<tag k="name:uk" v="Галерея мінералогії та геології"/>
<tag k="opening_hours" v="Mo-Su off"/>
<tag k="operator" v="Muséum National d'Histoire Naturelle"/>
- <tag k="phone" v="01.40.79.54.79"/>
+ <tag k="phone" v="+33140795479"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museum-mineral.fr/"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1995733"/>
<tag k="wikipedia" v="fr:Galerie de minéralogie et de géologie du Muséum national d'histoire naturelle"/>
</way>
<way id="21999454">
@@ -12383,16 +15147,18 @@
<nd ref="237018226"/>
<nd ref="237018217"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="fee" v="full:7;discount:5;free: under 26, disabled public, press, unemployment, ICOM"/>
<tag k="fee:currency" v="euro"/>
<tag k="name" v="Galeries de Paléontologie et d'Anatomie comparée"/>
<tag k="name:uk" v="Палеонтологічний музей"/>
- <tag k="opening_hours" v="Mo 10:00-17:00;We-Su 10:00-17:00;PH 10:00-17:00;May 1 : off"/>
+ <tag k="opening_hours" v="Mo 10:00-17:00; We-Su 10:00-17:00; PH 10:00-17:00; May 1 : off"/>
<tag k="operator" v="Muséum National d'Histoire Naturelle"/>
- <tag k="phone" v="+331 40 79 54 79, +331 40 79 56 01"/>
+ <tag k="phone" v="+33 1 40 79 54 79;+33 1 40 79 56 01"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.mnhn.fr/fr/visitez/lieux/galeries-anatomie-comparee-paleontologie"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1457391"/>
<tag k="wikipedia" v="fr:Galerie de paléontologie et d'anatomie comparée du Muséum national d'histoire naturelle"/>
</way>
<way id="22870791">
@@ -12414,14 +15180,19 @@
<nd ref="261576902"/>
<nd ref="261576903"/>
<nd ref="549792487"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Rue des Fossés Saint-Bernard"/>
<tag k="building" v="yes"/>
<tag k="building:facade:material" v="glass"/>
<tag k="name" v="Institut du Monde Arabe"/>
- <tag k="phone" v="01.40.51.38.38"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="phone" v="+33140513838"/>
+ <tag k="short_name" v="IMA"/>
+ <tag k="source" v="Cadastre. Mise à jour : 2010;knowledge;survey"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.imarabe.org/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q860166"/>
</way>
<way id="23644147">
<nd ref="256148606"/>
@@ -12429,9 +15200,10 @@
<nd ref="256148608"/>
<nd ref="256147849"/>
<nd ref="21662512"/>
- <nd ref="21662511"/>
+ <nd ref="4532598861"/>
+ <nd ref="4532598862"/>
+ <nd ref="4532598863"/>
<nd ref="21662510"/>
- <nd ref="21662491"/>
<nd ref="21662047"/>
<nd ref="21662048"/>
<nd ref="21662049"/>
@@ -12447,6 +15219,7 @@
<nd ref="256148619"/>
<nd ref="256148621"/>
<nd ref="256148622"/>
+ <nd ref="4546526365"/>
<nd ref="256148623"/>
<nd ref="256148624"/>
<nd ref="2399833080"/>
@@ -12454,8 +15227,10 @@
<nd ref="256148606"/>
<tag k="leisure" v="park"/>
<tag k="name" v="Jardin Tino Rossi - Musée de la Sculpture en Plein Air"/>
+ <tag k="opening_hours" v="Mo-Su,PH 00:00-24:00"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="equipement.paris.fr/JARDIN_TINO_ROSSI"/>
+ <tag k="wikidata" v="Q947877"/>
</way>
<way id="42111180">
<nd ref="523358764"/>
@@ -12479,13 +15254,19 @@
<way id="45073393">
<nd ref="571518050"/>
<nd ref="2405532185"/>
+ <nd ref="5153526849"/>
<nd ref="571518042"/>
+ <nd ref="5153526853"/>
<nd ref="571518044"/>
+ <nd ref="5153526852"/>
+ <nd ref="5153526851"/>
<nd ref="571518046"/>
<nd ref="817974720"/>
+ <nd ref="5153526850"/>
<nd ref="571518047"/>
<nd ref="817976111"/>
<nd ref="2405531933"/>
+ <nd ref="5153526848"/>
<nd ref="571518052"/>
<nd ref="571518054"/>
<nd ref="571518057"/>
@@ -12499,10 +15280,12 @@
<tag k="alt_name:es" v="Museo_Art_Naif"/>
<tag k="building" v="yes"/>
<tag k="name" v="Halle Saint-Pierre"/>
- <tag k="phone" v="01.42.58.72.89"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2009"/>
+ <tag k="opening_hours" v="Mo-Fr 11:00-18:00; Sa 11:00-19:00; Su 12:00-18:00"/>
+ <tag k="phone" v="+33 1 42 58 72 89"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre;mise à jour : 2009"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="www.hallesaintpierre.org"/>
+ <tag k="website" v="http://www.hallesaintpierre.org"/>
+ <tag k="wikidata" v="Q3126070"/>
<tag k="wikipedia" v="fr:Halle Saint Pierre, musée d'Art Brut et d'Art Singulier"/>
</way>
<way id="48433594">
@@ -12523,47 +15306,6 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="49734503">
- <nd ref="632026022"/>
- <nd ref="632026017"/>
- <nd ref="632026018"/>
- <nd ref="632026009"/>
- <nd ref="632026007"/>
- <nd ref="703870928"/>
- <nd ref="632026005"/>
- <nd ref="632026006"/>
- <nd ref="632026010"/>
- <nd ref="632026037"/>
- <nd ref="632026039"/>
- <nd ref="632026045"/>
- <nd ref="632026052"/>
- <nd ref="632026049"/>
- <nd ref="632026044"/>
- <nd ref="632026051"/>
- <nd ref="632026050"/>
- <nd ref="632026042"/>
- <nd ref="632026196"/>
- <nd ref="632026199"/>
- <nd ref="632026198"/>
- <nd ref="632026197"/>
- <nd ref="632026193"/>
- <nd ref="632026208"/>
- <nd ref="632026043"/>
- <nd ref="632026058"/>
- <nd ref="632026023"/>
- <nd ref="632026016"/>
- <nd ref="632026022"/>
- <tag k="building" v="yes"/>
- <tag k="heritage" v="2"/>
- <tag k="heritage:operator" v="mhs"/>
- <tag k="historic" v="monument"/>
- <tag k="mhs:inscription_date" v="1953"/>
- <tag k="name" v="Hôtel de Sully"/>
- <tag k="ref:mhs" v="PA00086278"/>
- <tag k="source" v="Direction générales des finances publiques - année 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="wikipedia" v="fr:Hôtel de Sully"/>
- </way>
<way id="49734611">
<nd ref="632026546"/>
<nd ref="703870882"/>
@@ -12586,7 +15328,7 @@
<nd ref="635373725"/>
<nd ref="635373726"/>
<nd ref="635373735"/>
- <nd ref="635373729"/>
+ <nd ref="330252493"/>
<nd ref="635373723"/>
<nd ref="635373777"/>
<nd ref="635373779"/>
@@ -12638,7 +15380,7 @@
<nd ref="635373681"/>
<nd ref="635373683"/>
<nd ref="635373686"/>
- <nd ref="635373687"/>
+ <nd ref="330252484"/>
<nd ref="635373690"/>
<nd ref="3102734940"/>
<nd ref="635373657"/>
@@ -12654,7 +15396,7 @@
<nd ref="635373705"/>
<nd ref="635373706"/>
<nd ref="635373722"/>
- <nd ref="635373695"/>
+ <nd ref="330252489"/>
<nd ref="635373696"/>
<nd ref="635373693"/>
<tag k="addr:housename" v="Accacia"/>
@@ -12662,11 +15404,37 @@
<tag k="building" v="yes"/>
<tag k="building:levels" v="8"/>
<tag k="height" v="69"/>
+ <tag k="layer" v="4"/>
<tag k="level" v="0"/>
<tag k="name" v="Hôtel Sofitel Paris La Défense"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="50308880">
+ <nd ref="639179788"/>
+ <nd ref="639179796"/>
+ <nd ref="639179797"/>
+ <nd ref="639179799"/>
+ <nd ref="639179847"/>
+ <nd ref="639179844"/>
+ <nd ref="1234196764"/>
+ <nd ref="639179842"/>
+ <nd ref="639179786"/>
+ <nd ref="4022941190"/>
+ <nd ref="4022941191"/>
+ <nd ref="4022941189"/>
+ <nd ref="639179788"/>
+ <tag k="addr:housenumber" v="35"/>
+ <tag k="addr:street" v="Rue Jean-Baptiste Pigalle"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Eden Opéra"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-eden-opera.com/"/>
+ </way>
<way id="51224026">
<nd ref="653735985"/>
<nd ref="653735989"/>
@@ -12683,6 +15451,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</way>
<way id="51229199">
<nd ref="653802736"/>
@@ -12706,6 +15475,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</way>
<way id="52130668">
<nd ref="664266485"/>
@@ -12731,6 +15501,7 @@
<nd ref="673944878"/>
<nd ref="673947708"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Splendid Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -12764,6 +15535,7 @@
<tag k="addr:postcode" v="75015"/>
<tag k="addr:street" v="Rue Fondary"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel Amiral Fondary"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="stars" v="3"/>
@@ -12773,9 +15545,12 @@
<nd ref="673950992"/>
<nd ref="1918222443"/>
<nd ref="673947487"/>
- <nd ref="673947899"/>
+ <nd ref="3581994094"/>
+ <nd ref="3581994095"/>
<nd ref="673945057"/>
+ <nd ref="3581994097"/>
<nd ref="673951313"/>
+ <nd ref="3581994096"/>
<nd ref="673948171"/>
<nd ref="673946006"/>
<nd ref="673945810"/>
@@ -12784,6 +15559,7 @@
<nd ref="673949024"/>
<nd ref="673950992"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Best Western Eiffel Cambronne"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -12806,6 +15582,46 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelalyss.fr/"/>
</way>
+ <way id="53309211">
+ <nd ref="674399738"/>
+ <nd ref="674397413"/>
+ <nd ref="674400668"/>
+ <nd ref="674395891"/>
+ <nd ref="674395515"/>
+ <nd ref="674400728"/>
+ <nd ref="674395329"/>
+ <nd ref="674400794"/>
+ <nd ref="674400853"/>
+ <nd ref="674399999"/>
+ <nd ref="674399738"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://hotelamiral.com/"/>
+ <tag k="name" v="Hôtel Amiral"/>
+ <tag k="phone" v="+33148285386"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="53447042">
+ <nd ref="675558994"/>
+ <nd ref="675558948"/>
+ <nd ref="675558718"/>
+ <nd ref="675558327"/>
+ <nd ref="675559053"/>
+ <nd ref="675558710"/>
+ <nd ref="675558566"/>
+ <nd ref="675558589"/>
+ <nd ref="675558884"/>
+ <nd ref="683081708"/>
+ <nd ref="675558994"/>
+ <tag k="addr:street" v="Avenue Émile Zola"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="9"/>
+ <tag k="name" v="Mercure"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="53671213">
<nd ref="677772473"/>
<nd ref="677771701"/>
@@ -12820,112 +15636,40 @@
<nd ref="677772473"/>
<tag k="addr:housenumber" v="37"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="4"/>
<tag k="name" v="Pavillon Porte de Versailles"/>
<tag k="operator" v="Les hôtels de Paris"/>
+ <tag k="roof:levels" v="1"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre - mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="53672217">
- <nd ref="677805573"/>
- <nd ref="677805574"/>
- <nd ref="677805571"/>
- <nd ref="677805576"/>
- <nd ref="677805577"/>
- <nd ref="677805566"/>
- <nd ref="677805567"/>
- <nd ref="677805568"/>
- <nd ref="677805569"/>
- <nd ref="677805570"/>
- <nd ref="677805454"/>
- <nd ref="677805455"/>
- <nd ref="677805457"/>
- <nd ref="677805462"/>
- <nd ref="677805463"/>
- <nd ref="677805464"/>
- <nd ref="677805465"/>
- <nd ref="677805466"/>
- <nd ref="677805468"/>
- <nd ref="677805483"/>
- <nd ref="677805485"/>
- <nd ref="677805487"/>
- <nd ref="677805489"/>
- <nd ref="677967765"/>
- <nd ref="677805475"/>
- <nd ref="677805477"/>
- <nd ref="677805478"/>
- <nd ref="677805480"/>
- <nd ref="677805412"/>
- <nd ref="677805417"/>
- <nd ref="677805413"/>
- <nd ref="677805420"/>
- <nd ref="677805421"/>
- <nd ref="677805423"/>
- <nd ref="677805424"/>
- <nd ref="677805425"/>
- <nd ref="677805427"/>
- <nd ref="677805429"/>
- <nd ref="677805521"/>
- <nd ref="677805522"/>
- <nd ref="677805523"/>
- <nd ref="677805524"/>
- <nd ref="677805526"/>
- <nd ref="677805527"/>
- <nd ref="677805530"/>
- <nd ref="677805528"/>
- <nd ref="677805531"/>
- <nd ref="677805533"/>
- <nd ref="677805534"/>
- <nd ref="677805536"/>
- <nd ref="677805538"/>
- <nd ref="677805540"/>
- <nd ref="677805542"/>
- <nd ref="677805544"/>
- <nd ref="677805548"/>
- <nd ref="677805550"/>
- <nd ref="677805552"/>
- <nd ref="677805553"/>
- <nd ref="677805555"/>
- <nd ref="677805562"/>
- <nd ref="677805557"/>
- <nd ref="677805564"/>
- <nd ref="677805565"/>
- <nd ref="677805559"/>
- <nd ref="677805560"/>
- <nd ref="677805611"/>
- <nd ref="677805612"/>
- <nd ref="677805613"/>
- <nd ref="677805614"/>
- <nd ref="677805615"/>
- <nd ref="677805616"/>
- <nd ref="677805617"/>
- <nd ref="677805618"/>
- <nd ref="677805619"/>
- <nd ref="677805602"/>
- <nd ref="677805620"/>
- <nd ref="677805621"/>
- <nd ref="677805603"/>
- <nd ref="677805604"/>
- <nd ref="677805605"/>
- <nd ref="677805606"/>
- <nd ref="677805607"/>
- <nd ref="677805608"/>
- <nd ref="677805609"/>
- <nd ref="677805610"/>
- <nd ref="677805579"/>
- <nd ref="677805581"/>
- <nd ref="677805583"/>
- <nd ref="677805585"/>
- <nd ref="677805573"/>
- <tag k="addr:housenumber" v="8"/>
- <tag k="addr:street" v="Place Marguerite de Navarre"/>
+ <way id="53697850">
+ <nd ref="678029677"/>
+ <nd ref="678029683"/>
+ <nd ref="678029686"/>
+ <nd ref="678029679"/>
+ <nd ref="678029680"/>
+ <nd ref="678029677"/>
<tag k="building" v="yes"/>
- <tag k="height" v="24"/>
- <tag k="name" v="Hôtel Novotel"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel du Pont Neuf"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="novotelparis.com"/>
+ </way>
+ <way id="53697856">
+ <nd ref="678029634"/>
+ <nd ref="678029635"/>
+ <nd ref="678029652"/>
+ <nd ref="678029641"/>
+ <nd ref="678029640"/>
+ <nd ref="678029634"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Tonic Hotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="53727248">
<nd ref="678321892"/>
@@ -12950,1109 +15694,39 @@
<nd ref="678321092"/>
<nd ref="678321892"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Lutèce Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="53813362">
- <nd ref="679339304"/>
- <nd ref="679339312"/>
- <nd ref="679339328"/>
- <nd ref="679339326"/>
- <nd ref="679339323"/>
- <nd ref="679339343"/>
- <nd ref="679339346"/>
- <nd ref="679339339"/>
- <nd ref="679339341"/>
- <nd ref="679339349"/>
- <nd ref="679339351"/>
- <nd ref="679339347"/>
- <nd ref="679339348"/>
- <nd ref="679339335"/>
- <nd ref="679339337"/>
- <nd ref="679339330"/>
- <nd ref="679339333"/>
- <nd ref="679339390"/>
- <nd ref="679339391"/>
- <nd ref="679339387"/>
- <nd ref="679339389"/>
- <nd ref="679339383"/>
- <nd ref="679339382"/>
- <nd ref="679339386"/>
- <nd ref="679339385"/>
- <nd ref="679339379"/>
- <nd ref="679339377"/>
- <nd ref="679339381"/>
- <nd ref="679339380"/>
- <nd ref="679339393"/>
- <nd ref="679339394"/>
- <nd ref="679407811"/>
- <nd ref="1202442146"/>
- <nd ref="679339448"/>
- <nd ref="679339427"/>
- <nd ref="679407813"/>
- <nd ref="679339430"/>
- <nd ref="679339428"/>
- <nd ref="679339431"/>
- <nd ref="1510032020"/>
- <nd ref="1510032019"/>
- <nd ref="679339433"/>
- <nd ref="1510032017"/>
- <nd ref="679339434"/>
- <nd ref="1510032016"/>
- <nd ref="679339435"/>
- <nd ref="1202444485"/>
- <nd ref="679339414"/>
- <nd ref="679339415"/>
- <nd ref="679339417"/>
- <nd ref="679339418"/>
- <nd ref="679339419"/>
- <nd ref="679339420"/>
- <nd ref="679339421"/>
- <nd ref="679339422"/>
- <nd ref="679339423"/>
- <nd ref="679339424"/>
- <nd ref="25554287"/>
- <nd ref="679339425"/>
- <nd ref="679339426"/>
- <nd ref="679339404"/>
- <nd ref="679339403"/>
- <nd ref="1510032028"/>
- <nd ref="1510032032"/>
- <nd ref="1202448528"/>
- <nd ref="679448927"/>
- <nd ref="679339402"/>
- <nd ref="679339401"/>
- <nd ref="679448925"/>
- <nd ref="679339400"/>
- <nd ref="679339399"/>
- <nd ref="679339396"/>
- <nd ref="679339395"/>
- <nd ref="679448928"/>
- <nd ref="679339411"/>
- <nd ref="679339410"/>
- <nd ref="679339409"/>
- <nd ref="679339408"/>
- <nd ref="679339406"/>
- <nd ref="679339405"/>
- <nd ref="679339186"/>
- <nd ref="679339185"/>
- <nd ref="679339199"/>
- <nd ref="679339200"/>
- <nd ref="679339196"/>
- <nd ref="679339198"/>
- <nd ref="679448906"/>
- <nd ref="679339194"/>
- <nd ref="679339195"/>
- <nd ref="679339192"/>
- <nd ref="679339193"/>
- <nd ref="679448900"/>
- <nd ref="679339189"/>
- <nd ref="679339190"/>
- <nd ref="679339187"/>
- <nd ref="679339188"/>
- <nd ref="679339203"/>
- <nd ref="679339204"/>
- <nd ref="679339201"/>
- <nd ref="679339202"/>
- <nd ref="679339205"/>
- <nd ref="679339206"/>
- <nd ref="679339207"/>
- <nd ref="679339208"/>
- <nd ref="679339209"/>
- <nd ref="679339210"/>
- <nd ref="679339211"/>
- <nd ref="679339212"/>
- <nd ref="679339170"/>
- <nd ref="679339171"/>
- <nd ref="679339172"/>
- <nd ref="679339173"/>
- <nd ref="679339174"/>
- <nd ref="679339175"/>
- <nd ref="679339176"/>
- <nd ref="679339177"/>
- <nd ref="679339178"/>
- <nd ref="679339180"/>
- <nd ref="679339182"/>
- <nd ref="679339183"/>
- <nd ref="679339184"/>
- <nd ref="679339179"/>
- <nd ref="679448897"/>
- <nd ref="679339147"/>
- <nd ref="679339149"/>
- <nd ref="679339151"/>
- <nd ref="679339150"/>
- <nd ref="679339153"/>
- <nd ref="679339152"/>
- <nd ref="679339155"/>
- <nd ref="679339154"/>
- <nd ref="679339158"/>
- <nd ref="679339160"/>
- <nd ref="679339156"/>
- <nd ref="679339157"/>
- <nd ref="679448896"/>
- <nd ref="679339163"/>
- <nd ref="679339164"/>
- <nd ref="679339161"/>
- <nd ref="679339162"/>
- <nd ref="679448895"/>
- <nd ref="679339168"/>
- <nd ref="679339169"/>
- <nd ref="679339166"/>
- <nd ref="679339167"/>
- <nd ref="679339139"/>
- <nd ref="679339140"/>
- <nd ref="679339137"/>
- <nd ref="679339138"/>
- <nd ref="679339144"/>
- <nd ref="679339143"/>
- <nd ref="679339142"/>
- <nd ref="679339141"/>
- <nd ref="679339146"/>
- <nd ref="679339145"/>
- <nd ref="679339128"/>
- <nd ref="679339126"/>
- <nd ref="679339133"/>
- <nd ref="679339131"/>
- <nd ref="679339130"/>
- <nd ref="679339129"/>
- <nd ref="679339136"/>
- <nd ref="679339135"/>
- <nd ref="679339293"/>
- <nd ref="679339134"/>
- <nd ref="679339281"/>
- <nd ref="679339283"/>
- <nd ref="679339285"/>
- <nd ref="679339287"/>
- <nd ref="679339276"/>
- <nd ref="679339277"/>
- <nd ref="679339279"/>
- <nd ref="679339280"/>
- <nd ref="679339289"/>
- <nd ref="679339291"/>
- <nd ref="679339261"/>
- <nd ref="679339262"/>
- <nd ref="679339260"/>
- <nd ref="679339263"/>
- <nd ref="679339264"/>
- <nd ref="679339265"/>
- <nd ref="679339271"/>
- <nd ref="679339270"/>
- <nd ref="679339267"/>
- <nd ref="679339266"/>
- <nd ref="679339269"/>
- <nd ref="679339268"/>
- <nd ref="679339275"/>
- <nd ref="679339274"/>
- <nd ref="679339238"/>
- <nd ref="679339237"/>
- <nd ref="679339234"/>
- <nd ref="679339233"/>
- <nd ref="679339236"/>
- <nd ref="679339235"/>
- <nd ref="679339230"/>
- <nd ref="679339232"/>
- <nd ref="679339228"/>
- <nd ref="679339229"/>
- <nd ref="679339226"/>
- <nd ref="679339227"/>
- <nd ref="679339239"/>
- <nd ref="679339240"/>
- <nd ref="679339248"/>
- <nd ref="679339251"/>
- <nd ref="679339245"/>
- <nd ref="679339247"/>
- <nd ref="679339243"/>
- <nd ref="679339244"/>
- <nd ref="679339241"/>
- <nd ref="679339242"/>
- <nd ref="679339221"/>
- <nd ref="679339220"/>
- <nd ref="679339219"/>
- <nd ref="679339218"/>
- <nd ref="679339217"/>
- <nd ref="679339216"/>
- <nd ref="679339215"/>
- <nd ref="679339214"/>
- <nd ref="679339222"/>
- <nd ref="679339223"/>
- <nd ref="679339225"/>
- <nd ref="679339252"/>
- <nd ref="679339253"/>
- <nd ref="679339259"/>
- <nd ref="679339258"/>
- <nd ref="679339257"/>
- <nd ref="679339255"/>
- <nd ref="679339254"/>
- <nd ref="679339298"/>
- <nd ref="679339295"/>
- <nd ref="679339447"/>
- <nd ref="679339446"/>
- <nd ref="679339413"/>
- <nd ref="679339412"/>
- <nd ref="1510032040"/>
- <nd ref="679402862"/>
- <nd ref="679339441"/>
- <nd ref="679339440"/>
- <nd ref="679339439"/>
- <nd ref="679339438"/>
- <nd ref="679339437"/>
- <nd ref="679339436"/>
- <nd ref="1510032038"/>
- <nd ref="679339442"/>
- <nd ref="679339443"/>
- <nd ref="679339445"/>
- <nd ref="679339449"/>
- <nd ref="679339450"/>
- <nd ref="679402863"/>
- <nd ref="2360188639"/>
- <nd ref="1510032036"/>
- <nd ref="1510032026"/>
- <nd ref="1510032030"/>
- <nd ref="679339451"/>
- <nd ref="679339452"/>
- <nd ref="679339468"/>
- <nd ref="679339466"/>
- <nd ref="679339467"/>
- <nd ref="679339464"/>
- <nd ref="679339465"/>
- <nd ref="679339462"/>
- <nd ref="679339463"/>
- <nd ref="679339457"/>
- <nd ref="693661163"/>
- <nd ref="679339456"/>
- <nd ref="679339461"/>
- <nd ref="679339459"/>
- <nd ref="679339454"/>
- <nd ref="679339453"/>
- <nd ref="679339455"/>
- <nd ref="679339469"/>
- <nd ref="679339470"/>
- <nd ref="679339471"/>
- <nd ref="679339474"/>
- <nd ref="679339473"/>
- <nd ref="679339088"/>
- <nd ref="679339089"/>
- <nd ref="679339090"/>
- <nd ref="679339091"/>
- <nd ref="679339092"/>
- <nd ref="679339094"/>
- <nd ref="679339095"/>
- <nd ref="679339097"/>
- <nd ref="679339098"/>
- <nd ref="679339101"/>
- <nd ref="679339102"/>
- <nd ref="679339111"/>
- <nd ref="679339112"/>
- <nd ref="679339124"/>
- <nd ref="679339114"/>
- <nd ref="679339119"/>
- <nd ref="679339118"/>
- <nd ref="679480123"/>
- <nd ref="679339117"/>
- <nd ref="679339115"/>
- <nd ref="679339113"/>
- <nd ref="679339123"/>
- <nd ref="679339122"/>
- <nd ref="679339121"/>
- <nd ref="679339120"/>
- <nd ref="679339125"/>
- <nd ref="679339103"/>
- <nd ref="679339105"/>
- <nd ref="679339108"/>
- <nd ref="679339109"/>
- <nd ref="679339110"/>
- <nd ref="679339106"/>
- <nd ref="679339107"/>
- <nd ref="679339041"/>
- <nd ref="679339043"/>
- <nd ref="679339045"/>
- <nd ref="679339046"/>
- <nd ref="679339047"/>
- <nd ref="679339048"/>
- <nd ref="679339049"/>
- <nd ref="679339050"/>
- <nd ref="679339051"/>
- <nd ref="679339052"/>
- <nd ref="679398707"/>
- <nd ref="679339037"/>
- <nd ref="679339038"/>
- <nd ref="679339039"/>
- <nd ref="679339040"/>
- <nd ref="679325917"/>
- <nd ref="679325916"/>
- <nd ref="679325914"/>
- <nd ref="679325913"/>
- <nd ref="679325920"/>
- <nd ref="679325919"/>
- <nd ref="679325755"/>
- <nd ref="679325753"/>
- <nd ref="679325752"/>
- <nd ref="679325751"/>
- <nd ref="679325750"/>
- <nd ref="1869379716"/>
- <nd ref="679325532"/>
- <nd ref="679325535"/>
- <nd ref="679325534"/>
- <nd ref="679325533"/>
- <nd ref="679480119"/>
- <nd ref="679325669"/>
- <nd ref="679325671"/>
- <nd ref="679325539"/>
- <nd ref="679325670"/>
- <nd ref="679325536"/>
- <nd ref="679325538"/>
- <nd ref="679325365"/>
- <nd ref="679325364"/>
- <nd ref="679325363"/>
- <nd ref="679325360"/>
- <nd ref="679325366"/>
- <nd ref="1869379751"/>
- <nd ref="679325359"/>
- <nd ref="679325356"/>
- <nd ref="679325358"/>
- <nd ref="679325357"/>
- <nd ref="1869379719"/>
- <nd ref="679325323"/>
- <nd ref="679325315"/>
- <nd ref="679325317"/>
- <nd ref="679325320"/>
- <nd ref="679325318"/>
- <nd ref="679325321"/>
- <nd ref="679325322"/>
- <nd ref="679325314"/>
- <nd ref="679325310"/>
- <nd ref="679325312"/>
- <nd ref="679325311"/>
- <nd ref="679325308"/>
- <nd ref="679325307"/>
- <nd ref="679325309"/>
- <nd ref="679325313"/>
- <nd ref="679325077"/>
- <nd ref="679325075"/>
- <nd ref="679325076"/>
- <nd ref="679325069"/>
- <nd ref="1202449777"/>
- <nd ref="679325070"/>
- <nd ref="679325071"/>
- <nd ref="679325072"/>
- <nd ref="679325073"/>
- <nd ref="679402857"/>
- <nd ref="679325066"/>
- <nd ref="679325067"/>
- <nd ref="679325064"/>
- <nd ref="679325065"/>
- <nd ref="679398664"/>
- <nd ref="679398666"/>
- <nd ref="679402856"/>
- <nd ref="679398665"/>
- <nd ref="679398667"/>
- <nd ref="679325062"/>
- <nd ref="679325056"/>
- <nd ref="679325057"/>
- <nd ref="679325059"/>
- <nd ref="679325060"/>
- <nd ref="679325061"/>
- <nd ref="1202454263"/>
- <nd ref="679325063"/>
- <nd ref="679325172"/>
- <nd ref="679325173"/>
- <nd ref="679325175"/>
- <nd ref="679325160"/>
- <nd ref="679325161"/>
- <nd ref="679325162"/>
- <nd ref="679325163"/>
- <nd ref="679325013"/>
- <nd ref="679325014"/>
- <nd ref="679325016"/>
- <nd ref="679325017"/>
- <nd ref="679325018"/>
- <nd ref="679325019"/>
- <nd ref="679325020"/>
- <nd ref="679325021"/>
- <nd ref="679325022"/>
- <nd ref="679325023"/>
- <nd ref="679496134"/>
- <nd ref="679325024"/>
- <nd ref="679325025"/>
- <nd ref="679325035"/>
- <nd ref="679325036"/>
- <nd ref="679325037"/>
- <nd ref="679325039"/>
- <nd ref="679325040"/>
- <nd ref="679325041"/>
- <nd ref="679325042"/>
- <nd ref="679325044"/>
- <nd ref="679325002"/>
- <nd ref="679325003"/>
- <nd ref="679325004"/>
- <nd ref="679325005"/>
- <nd ref="679325006"/>
- <nd ref="679325007"/>
- <nd ref="679324992"/>
- <nd ref="679324994"/>
- <nd ref="679324995"/>
- <nd ref="679324996"/>
- <nd ref="679324997"/>
- <nd ref="679324998"/>
- <nd ref="679324999"/>
- <nd ref="679325049"/>
- <nd ref="679325050"/>
- <nd ref="679325051"/>
- <nd ref="679325052"/>
- <nd ref="679325053"/>
- <nd ref="679325054"/>
- <nd ref="679325008"/>
- <nd ref="679325009"/>
- <nd ref="679325010"/>
- <nd ref="679325012"/>
- <nd ref="679325026"/>
- <nd ref="679325027"/>
- <nd ref="679448814"/>
- <nd ref="679325028"/>
- <nd ref="679325030"/>
- <nd ref="679325031"/>
- <nd ref="679325032"/>
- <nd ref="679325033"/>
- <nd ref="679325034"/>
- <nd ref="679325047"/>
- <nd ref="679325048"/>
- <nd ref="679448821"/>
- <nd ref="573262998"/>
- <nd ref="679448816"/>
- <nd ref="679325045"/>
- <nd ref="679325046"/>
- <nd ref="679325115"/>
- <nd ref="679325116"/>
- <nd ref="679325118"/>
- <nd ref="679325119"/>
- <nd ref="679325120"/>
- <nd ref="679325121"/>
- <nd ref="679325123"/>
- <nd ref="679325125"/>
- <nd ref="679325126"/>
- <nd ref="679325127"/>
- <nd ref="679325128"/>
- <nd ref="679325129"/>
- <nd ref="679325130"/>
- <nd ref="679325131"/>
- <nd ref="679325132"/>
- <nd ref="679325139"/>
- <nd ref="679325136"/>
- <nd ref="679325135"/>
- <nd ref="679325134"/>
- <nd ref="679325133"/>
- <nd ref="679325138"/>
- <nd ref="679325157"/>
- <nd ref="679325156"/>
- <nd ref="679325155"/>
- <nd ref="679325159"/>
- <nd ref="679325158"/>
- <nd ref="679325142"/>
- <nd ref="679325141"/>
- <nd ref="679325145"/>
- <nd ref="679325144"/>
- <nd ref="679325143"/>
- <nd ref="679325146"/>
- <nd ref="679325147"/>
- <nd ref="679325148"/>
- <nd ref="679325149"/>
- <nd ref="679325150"/>
- <nd ref="679325151"/>
- <nd ref="679325153"/>
- <nd ref="679325154"/>
- <nd ref="679325217"/>
- <nd ref="679325218"/>
- <nd ref="679325219"/>
- <nd ref="679325221"/>
- <nd ref="679325222"/>
- <nd ref="679325223"/>
- <nd ref="679325224"/>
- <nd ref="679325216"/>
- <nd ref="679325213"/>
- <nd ref="679325211"/>
- <nd ref="679325215"/>
- <nd ref="679325214"/>
- <nd ref="679325226"/>
- <nd ref="679325225"/>
- <nd ref="679325228"/>
- <nd ref="679325227"/>
- <nd ref="679325230"/>
- <nd ref="679325229"/>
- <nd ref="679325233"/>
- <nd ref="679325231"/>
- <nd ref="679325240"/>
- <nd ref="679325239"/>
- <nd ref="679325242"/>
- <nd ref="679325241"/>
- <nd ref="679325236"/>
- <nd ref="679325235"/>
- <nd ref="679325238"/>
- <nd ref="679325243"/>
- <nd ref="679325244"/>
- <nd ref="679325245"/>
- <nd ref="679325246"/>
- <nd ref="679325197"/>
- <nd ref="679325198"/>
- <nd ref="679325199"/>
- <nd ref="679325200"/>
- <nd ref="679325201"/>
- <nd ref="679325202"/>
- <nd ref="679325203"/>
- <nd ref="679325205"/>
- <nd ref="679325206"/>
- <nd ref="679325164"/>
- <nd ref="679325165"/>
- <nd ref="679325166"/>
- <nd ref="679325168"/>
- <nd ref="679325169"/>
- <nd ref="679325171"/>
- <nd ref="679325207"/>
- <nd ref="679325208"/>
- <nd ref="679325209"/>
- <nd ref="679325210"/>
- <nd ref="679325176"/>
- <nd ref="679325177"/>
- <nd ref="679325178"/>
- <nd ref="679325179"/>
- <nd ref="679325180"/>
- <nd ref="679325181"/>
- <nd ref="679325182"/>
- <nd ref="679325183"/>
- <nd ref="679325185"/>
- <nd ref="679325186"/>
- <nd ref="679325187"/>
- <nd ref="679325188"/>
- <nd ref="679325189"/>
- <nd ref="679325191"/>
- <nd ref="679325192"/>
- <nd ref="679325193"/>
- <nd ref="679325194"/>
- <nd ref="1202446614"/>
- <nd ref="679325195"/>
- <nd ref="679325196"/>
- <nd ref="679325247"/>
- <nd ref="679325248"/>
- <nd ref="679325249"/>
- <nd ref="679325250"/>
- <nd ref="679325251"/>
- <nd ref="679325253"/>
- <nd ref="679448849"/>
- <nd ref="679402858"/>
- <nd ref="679402860"/>
- <nd ref="679407691"/>
- <nd ref="679325254"/>
- <nd ref="679325255"/>
- <nd ref="679325074"/>
- <nd ref="679325256"/>
- <nd ref="679325258"/>
- <nd ref="679325259"/>
- <nd ref="679325260"/>
- <nd ref="1202442824"/>
- <nd ref="679325078"/>
- <nd ref="679325079"/>
- <nd ref="679325080"/>
- <nd ref="679325089"/>
- <nd ref="679325082"/>
- <nd ref="679325081"/>
- <nd ref="679325085"/>
- <nd ref="679325083"/>
- <nd ref="679325087"/>
- <nd ref="679325086"/>
- <nd ref="679325088"/>
- <nd ref="679325098"/>
- <nd ref="679325091"/>
- <nd ref="679325090"/>
- <nd ref="679325093"/>
- <nd ref="679325092"/>
- <nd ref="679325096"/>
- <nd ref="679325094"/>
- <nd ref="679325097"/>
- <nd ref="679325100"/>
- <nd ref="679325101"/>
- <nd ref="679325102"/>
- <nd ref="679325103"/>
- <nd ref="679325104"/>
- <nd ref="679325110"/>
- <nd ref="679325111"/>
- <nd ref="679325112"/>
- <nd ref="679325114"/>
- <nd ref="679325105"/>
- <nd ref="679325107"/>
- <nd ref="679325108"/>
- <nd ref="679325109"/>
- <nd ref="679325261"/>
- <nd ref="679325262"/>
- <nd ref="679325263"/>
- <nd ref="679325264"/>
- <nd ref="679325269"/>
- <nd ref="679325268"/>
- <nd ref="679325266"/>
- <nd ref="679325265"/>
- <nd ref="679325273"/>
- <nd ref="679325272"/>
- <nd ref="679325271"/>
- <nd ref="679325270"/>
- <nd ref="679325277"/>
- <nd ref="679325276"/>
- <nd ref="679325275"/>
- <nd ref="679325274"/>
- <nd ref="679325282"/>
- <nd ref="679325280"/>
- <nd ref="679325279"/>
- <nd ref="679325278"/>
- <nd ref="679325285"/>
- <nd ref="679325286"/>
- <nd ref="679325283"/>
- <nd ref="679325284"/>
- <nd ref="679325287"/>
- <nd ref="679325288"/>
- <nd ref="679325293"/>
- <nd ref="679325294"/>
- <nd ref="679325291"/>
- <nd ref="679325292"/>
- <nd ref="679325289"/>
- <nd ref="679325290"/>
- <nd ref="679325305"/>
- <nd ref="679325306"/>
- <nd ref="679325302"/>
- <nd ref="679325303"/>
- <nd ref="679325299"/>
- <nd ref="679325300"/>
- <nd ref="679325301"/>
- <nd ref="679325295"/>
- <nd ref="679325298"/>
- <nd ref="679325478"/>
- <nd ref="679325479"/>
- <nd ref="679325480"/>
- <nd ref="679325481"/>
- <nd ref="679325474"/>
- <nd ref="679325475"/>
- <nd ref="679325476"/>
- <nd ref="679325477"/>
- <nd ref="679325448"/>
- <nd ref="679325447"/>
- <nd ref="679325450"/>
- <nd ref="679325449"/>
- <nd ref="679325444"/>
- <nd ref="679325443"/>
- <nd ref="679325446"/>
- <nd ref="679325445"/>
- <nd ref="679325452"/>
- <nd ref="679325451"/>
- <nd ref="679325461"/>
- <nd ref="679325453"/>
- <nd ref="679325458"/>
- <nd ref="679325457"/>
- <nd ref="679325460"/>
- <nd ref="679325459"/>
- <nd ref="679325456"/>
- <nd ref="679325463"/>
- <nd ref="679325462"/>
- <nd ref="679325455"/>
- <nd ref="679325467"/>
- <nd ref="679325468"/>
- <nd ref="679325464"/>
- <nd ref="679325465"/>
- <nd ref="679325472"/>
- <nd ref="679325473"/>
- <nd ref="679325470"/>
- <nd ref="679325471"/>
- <nd ref="679325492"/>
- <nd ref="679325493"/>
- <nd ref="679325490"/>
- <nd ref="679325491"/>
- <nd ref="679325500"/>
- <nd ref="679325499"/>
- <nd ref="679325498"/>
- <nd ref="679407774"/>
- <nd ref="679325497"/>
- <nd ref="679325496"/>
- <nd ref="679325495"/>
- <nd ref="679325483"/>
- <nd ref="679325494"/>
- <nd ref="679325502"/>
- <nd ref="679325487"/>
- <nd ref="679325486"/>
- <nd ref="679325485"/>
- <nd ref="679325508"/>
- <nd ref="679325484"/>
- <nd ref="679325507"/>
- <nd ref="679325506"/>
- <nd ref="679325504"/>
- <nd ref="679325505"/>
- <nd ref="679325509"/>
- <nd ref="679325511"/>
- <nd ref="679325503"/>
- <nd ref="679325512"/>
- <nd ref="679325513"/>
- <nd ref="679325514"/>
- <nd ref="679325515"/>
- <nd ref="679325516"/>
- <nd ref="679325517"/>
- <nd ref="679325518"/>
- <nd ref="679325519"/>
- <nd ref="679325520"/>
- <nd ref="679325522"/>
- <nd ref="679325521"/>
- <nd ref="679325524"/>
- <nd ref="679325523"/>
- <nd ref="679325527"/>
- <nd ref="679325525"/>
- <nd ref="679325529"/>
- <nd ref="679325528"/>
- <nd ref="679325531"/>
- <nd ref="679325530"/>
- <nd ref="679325325"/>
- <nd ref="679325324"/>
- <nd ref="679325327"/>
- <nd ref="679325326"/>
- <nd ref="679325329"/>
- <nd ref="679325328"/>
- <nd ref="679325332"/>
- <nd ref="679325333"/>
- <nd ref="679325331"/>
- <nd ref="679325334"/>
- <nd ref="679325337"/>
- <nd ref="679325338"/>
- <nd ref="679325335"/>
- <nd ref="679325336"/>
- <nd ref="679325342"/>
- <nd ref="679325343"/>
- <nd ref="679325340"/>
- <nd ref="679325341"/>
- <nd ref="679325345"/>
- <nd ref="679325355"/>
- <nd ref="679325353"/>
- <nd ref="679325344"/>
- <nd ref="679325350"/>
- <nd ref="679325349"/>
- <nd ref="679325348"/>
- <nd ref="679325347"/>
- <nd ref="679325352"/>
- <nd ref="679325351"/>
- <nd ref="679325378"/>
- <nd ref="679325377"/>
- <nd ref="679325382"/>
- <nd ref="679325381"/>
- <nd ref="679325380"/>
- <nd ref="679325379"/>
- <nd ref="679325386"/>
- <nd ref="679325385"/>
- <nd ref="679325384"/>
- <nd ref="679325383"/>
- <nd ref="679325369"/>
- <nd ref="679325387"/>
- <nd ref="679325368"/>
- <nd ref="679325367"/>
- <nd ref="679325371"/>
- <nd ref="679325370"/>
- <nd ref="679325372"/>
- <nd ref="679325373"/>
- <nd ref="679325374"/>
- <nd ref="679325376"/>
- <nd ref="679325388"/>
- <nd ref="679325390"/>
- <nd ref="679325392"/>
- <nd ref="679325393"/>
- <nd ref="679325394"/>
- <nd ref="679325395"/>
- <nd ref="679325396"/>
- <nd ref="679325402"/>
- <nd ref="679325432"/>
- <nd ref="679325403"/>
- <nd ref="679325404"/>
- <nd ref="679325406"/>
- <nd ref="679325407"/>
- <nd ref="679325408"/>
- <nd ref="679325409"/>
- <nd ref="679325410"/>
- <nd ref="679325411"/>
- <nd ref="679325397"/>
- <nd ref="679325400"/>
- <nd ref="679325398"/>
- <nd ref="679325399"/>
- <nd ref="679325401"/>
- <nd ref="679325412"/>
- <nd ref="679325413"/>
- <nd ref="679325415"/>
- <nd ref="679325414"/>
- <nd ref="679325417"/>
- <nd ref="679325416"/>
- <nd ref="679325420"/>
- <nd ref="679325419"/>
- <nd ref="679325422"/>
- <nd ref="679325421"/>
- <nd ref="679325426"/>
- <nd ref="679325423"/>
- <nd ref="679325428"/>
- <nd ref="679325427"/>
- <nd ref="679325429"/>
- <nd ref="679325430"/>
- <nd ref="679325431"/>
- <nd ref="679325433"/>
- <nd ref="679325434"/>
- <nd ref="679325435"/>
- <nd ref="679325442"/>
- <nd ref="679325436"/>
- <nd ref="679325437"/>
- <nd ref="679325438"/>
- <nd ref="679325440"/>
- <nd ref="679325636"/>
- <nd ref="679325637"/>
- <nd ref="679325638"/>
- <nd ref="679325639"/>
- <nd ref="679325937"/>
- <nd ref="679325935"/>
- <nd ref="679325934"/>
- <nd ref="679325932"/>
- <nd ref="679325930"/>
- <nd ref="679325928"/>
- <nd ref="679325925"/>
- <nd ref="679325922"/>
- <nd ref="679325954"/>
- <nd ref="679325952"/>
- <nd ref="679325950"/>
- <nd ref="679407783"/>
- <nd ref="679325946"/>
- <nd ref="679325944"/>
- <nd ref="679325942"/>
- <nd ref="679325941"/>
- <nd ref="679325939"/>
- <nd ref="679325993"/>
- <nd ref="679325990"/>
- <nd ref="679325992"/>
- <nd ref="679325985"/>
- <nd ref="679325987"/>
- <nd ref="679325982"/>
- <nd ref="679325983"/>
- <nd ref="679325998"/>
- <nd ref="679325999"/>
- <nd ref="679325996"/>
- <nd ref="679325997"/>
- <nd ref="679325995"/>
- <nd ref="679326057"/>
- <nd ref="679326056"/>
- <nd ref="679326059"/>
- <nd ref="679326058"/>
- <nd ref="679326053"/>
- <nd ref="679326052"/>
- <nd ref="679326055"/>
- <nd ref="679326054"/>
- <nd ref="679326048"/>
- <nd ref="679407784"/>
- <nd ref="679326047"/>
- <nd ref="679326051"/>
- <nd ref="679326050"/>
- <nd ref="679326044"/>
- <nd ref="679326043"/>
- <nd ref="679326046"/>
- <nd ref="679326045"/>
- <nd ref="679326065"/>
- <nd ref="679326066"/>
- <nd ref="679326067"/>
- <nd ref="679326068"/>
- <nd ref="679326060"/>
- <nd ref="679326062"/>
- <nd ref="679326063"/>
- <nd ref="679326116"/>
- <nd ref="679326112"/>
- <nd ref="679326113"/>
- <nd ref="679326114"/>
- <nd ref="679326115"/>
- <nd ref="679326242"/>
- <nd ref="679326243"/>
- <nd ref="679326244"/>
- <nd ref="679326245"/>
- <nd ref="679326249"/>
- <nd ref="679326251"/>
- <nd ref="679326246"/>
- <nd ref="679326247"/>
- <nd ref="679326255"/>
- <nd ref="679326256"/>
- <nd ref="679326252"/>
- <nd ref="679326254"/>
- <nd ref="679326257"/>
- <nd ref="679326259"/>
- <nd ref="679339086"/>
- <nd ref="679339087"/>
- <nd ref="679339085"/>
- <nd ref="679339057"/>
- <nd ref="679339055"/>
- <nd ref="679339054"/>
- <nd ref="679339053"/>
- <nd ref="679339071"/>
- <nd ref="679339063"/>
- <nd ref="679339062"/>
- <nd ref="679339066"/>
- <nd ref="679339065"/>
- <nd ref="679339064"/>
- <nd ref="679339070"/>
- <nd ref="679339069"/>
- <nd ref="679339068"/>
- <nd ref="679339074"/>
- <nd ref="679339058"/>
- <nd ref="679339059"/>
- <nd ref="679339072"/>
- <nd ref="679339073"/>
- <nd ref="679339075"/>
- <nd ref="679339076"/>
- <nd ref="679339077"/>
- <nd ref="679339078"/>
- <nd ref="679339079"/>
- <nd ref="679339080"/>
- <nd ref="679339082"/>
- <nd ref="679339084"/>
- <nd ref="679339008"/>
- <nd ref="679339009"/>
- <nd ref="679339010"/>
- <nd ref="679339011"/>
- <nd ref="679339012"/>
- <nd ref="679339013"/>
- <nd ref="679339014"/>
- <nd ref="679339018"/>
- <nd ref="679339015"/>
- <nd ref="679339020"/>
- <nd ref="679339021"/>
- <nd ref="679339019"/>
- <nd ref="679339000"/>
- <nd ref="679338999"/>
- <nd ref="679339002"/>
- <nd ref="679339001"/>
- <nd ref="679339005"/>
- <nd ref="679339003"/>
- <nd ref="679339006"/>
- <nd ref="679339007"/>
- <nd ref="679338996"/>
- <nd ref="679338997"/>
- <nd ref="679338994"/>
- <nd ref="679338995"/>
- <nd ref="679339028"/>
- <nd ref="679338993"/>
- <nd ref="679338998"/>
- <nd ref="679339036"/>
- <nd ref="679339034"/>
- <nd ref="679339035"/>
- <nd ref="679339032"/>
- <nd ref="679339033"/>
- <nd ref="679339030"/>
- <nd ref="679339031"/>
- <nd ref="679339027"/>
- <nd ref="679339026"/>
- <nd ref="679339025"/>
- <nd ref="679339024"/>
- <nd ref="679339023"/>
- <nd ref="679339022"/>
- <nd ref="679338981"/>
- <nd ref="679338980"/>
- <nd ref="679338984"/>
- <nd ref="679338983"/>
- <nd ref="679338990"/>
- <nd ref="679338988"/>
- <nd ref="679338987"/>
- <nd ref="679338986"/>
- <nd ref="679338978"/>
- <nd ref="679338977"/>
- <nd ref="679338971"/>
- <nd ref="679338973"/>
- <nd ref="679338974"/>
- <nd ref="679338975"/>
- <nd ref="679338966"/>
- <nd ref="679338967"/>
- <nd ref="679338968"/>
- <nd ref="679338970"/>
- <nd ref="679338951"/>
- <nd ref="679407782"/>
- <nd ref="679338952"/>
- <nd ref="679338954"/>
- <nd ref="679338955"/>
- <nd ref="679338947"/>
- <nd ref="679338948"/>
- <nd ref="679338949"/>
- <nd ref="679338950"/>
- <nd ref="693661161"/>
- <nd ref="679338961"/>
- <nd ref="679338960"/>
- <nd ref="679338963"/>
- <nd ref="679338962"/>
- <nd ref="679338957"/>
- <nd ref="679338956"/>
- <nd ref="679338959"/>
- <nd ref="679338958"/>
- <nd ref="679338965"/>
- <nd ref="679338964"/>
- <nd ref="679338942"/>
- <nd ref="679338941"/>
- <nd ref="679338940"/>
- <nd ref="679338939"/>
- <nd ref="679338946"/>
- <nd ref="679338945"/>
- <nd ref="679338944"/>
- <nd ref="679338943"/>
- <nd ref="679338933"/>
- <nd ref="679338932"/>
- <nd ref="679338935"/>
- <nd ref="679338934"/>
- <nd ref="679338937"/>
- <nd ref="679338936"/>
- <nd ref="679338928"/>
- <nd ref="679338927"/>
- <nd ref="679338930"/>
- <nd ref="679338929"/>
- <nd ref="679338924"/>
- <nd ref="679338931"/>
- <nd ref="679339368"/>
- <nd ref="679338926"/>
- <nd ref="679339369"/>
- <nd ref="679339371"/>
- <nd ref="679339373"/>
- <nd ref="679339374"/>
- <nd ref="679339375"/>
- <nd ref="679339376"/>
- <nd ref="679339364"/>
- <nd ref="679339366"/>
- <nd ref="679339352"/>
- <nd ref="679339353"/>
- <nd ref="679339355"/>
- <nd ref="679339357"/>
- <nd ref="679339358"/>
- <nd ref="679339360"/>
- <nd ref="679339361"/>
- <nd ref="679339363"/>
- <nd ref="679339302"/>
- <nd ref="679339300"/>
- <nd ref="679339316"/>
- <nd ref="679339314"/>
- <nd ref="679339320"/>
- <nd ref="679339318"/>
- <nd ref="679339310"/>
- <nd ref="679339308"/>
- <nd ref="679339306"/>
- <nd ref="679339304"/>
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:postcode" v="75001"/>
- <tag k="alt_name" v="Musée du Louvre"/>
- <tag k="historic" v="castle"/>
- <tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/6/66/Louvre_Museum_Wikimedia_Commons.jpg"/>
- <tag k="image:panorama" v="http://upload.wikimedia.org/wikipedia/commons/d/d2/Jardin_du_Carrousel.jpg"/>
- <tag k="importance" v="international"/>
- <tag k="layer" v="1"/>
- <tag k="name" v="Le Louvre"/>
- <tag k="name:en" v="The Louvre"/>
- <tag k="name:es" v="Museo del Louvre"/>
- <tag k="name:ja" v="ルーブル美術館"/>
- <tag k="name:pt" v="Museu do Louvre"/>
- <tag k="name:ru" v="Лувр"/>
- <tag k="name:zh" v="卢浮宫博物馆"/>
- <tag k="phone" v="33(0)140205229"/>
- <tag k="roof:material" v="metal"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.louvre.fr/"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Musée du Louvre"/>
- <tag k="wikipedia:en" v="The Louvre"/>
- <tag k="wikipedia:es" v="Museo del Louvre"/>
+ <way id="53916958">
+ <nd ref="680456458"/>
+ <nd ref="680456509"/>
+ <nd ref="680456505"/>
+ <nd ref="680456498"/>
+ <nd ref="680456503"/>
+ <nd ref="680456458"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Karraz"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="53921151">
+ <nd ref="680470839"/>
+ <nd ref="680470854"/>
+ <nd ref="680470846"/>
+ <nd ref="680470847"/>
+ <nd ref="680470848"/>
+ <nd ref="680470841"/>
+ <nd ref="680470839"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Le Relais des Halles"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="53943858">
<nd ref="680656065"/>
@@ -14098,10 +15772,28 @@
<tag k="addr:postcode" v="75015"/>
<tag k="addr:street" v="Rue du Général de Larminat"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Hôtel Ares Eiffel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="53943952">
+ <nd ref="680647246"/>
+ <nd ref="680656580"/>
+ <nd ref="1499641875"/>
+ <nd ref="680650899"/>
+ <nd ref="680650414"/>
+ <nd ref="680653440"/>
+ <nd ref="2543364042"/>
+ <nd ref="680646845"/>
+ <nd ref="680647246"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
+ <tag k="name" v="Europe Hotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="54031669">
<nd ref="681247237"/>
<nd ref="681246551"/>
@@ -14130,6 +15822,7 @@
<tag k="name" v="Hôtel Mercure"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</way>
<way id="54031681">
<nd ref="681245256"/>
@@ -14148,6 +15841,7 @@
<nd ref="681245807"/>
<nd ref="681245256"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Campanile Paris XV - Tour Eiffel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -14164,6 +15858,7 @@
<tag k="addr:housenumber" v="8"/>
<tag k="addr:street" v="Rue du Pélican"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
<tag k="name" v="Hôtel Lille-Louvre"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -14177,6 +15872,7 @@
<nd ref="681818409"/>
<nd ref="681818370"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Washington Opéra"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="4"/>
@@ -14202,14 +15898,40 @@
<nd ref="682267380"/>
<nd ref="682267336"/>
<nd ref="682267324"/>
- <nd ref="682267338"/>
<nd ref="682267333"/>
<nd ref="682267343"/>
- <nd ref="682267365"/>
+ <nd ref="3530680396"/>
<nd ref="682267340"/>
+ <nd ref="3530680394"/>
<nd ref="682267342"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="11"/>
+ <tag k="building:part" v="no"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Pullman Paris Tour Eiffel"/>
+ <tag k="name:zh" v="铂尔曼巴黎埃菲尔铁塔酒店"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="spa" v="yes"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.pullmanhotels.com/"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <way id="54177933">
+ <nd ref="683386998"/>
+ <nd ref="683387014"/>
+ <nd ref="683386995"/>
+ <nd ref="683386993"/>
+ <nd ref="683386991"/>
+ <nd ref="683387027"/>
+ <nd ref="683387012"/>
+ <nd ref="683387000"/>
+ <nd ref="683386998"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="name" v="Cambon Hôtel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="54188994">
@@ -14281,6 +16003,7 @@
<nd ref="683512942"/>
<nd ref="683512947"/>
<nd ref="683512945"/>
+ <nd ref="4655962859"/>
<nd ref="683512725"/>
<nd ref="683512724"/>
<nd ref="683512729"/>
@@ -14370,8 +16093,10 @@
<nd ref="683512856"/>
<nd ref="683512836"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="3"/>
<tag k="name" v="Jeu de Paume"/>
<tag k="name:ru" v="Жё-де-пом"/>
+ <tag k="opening_hours" v="Tu 11:00-21:00; We-Su 11:00-19:00"/>
<tag k="phone" v="+33 1 47031250"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
@@ -14474,12 +16199,20 @@
<nd ref="683512590"/>
<nd ref="683512591"/>
<nd ref="683512575"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="addr:street" v="Jardin Tuileries"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="3"/>
<tag k="name" v="Musée de l'Orangerie"/>
+ <tag k="name:de" v="Orangerie-Museum"/>
+ <tag k="name:en" v="Orangerie Museum"/>
+ <tag k="name:fr" v="Musée de l'Orangerie"/>
<tag k="name:he" v="מוזיאון האורנז'רי"/>
<tag k="name:ru" v="Оранжерея"/>
<tag k="name:uk" v="Музей Оранжері"/>
- <tag k="phone" v="01.44.50.43.00"/>
+ <tag k="opening_hours" v="Mo-Su 09:00-18:00; Tu off"/>
+ <tag k="phone" v="+33144504300"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.musee-orangerie.fr/"/>
@@ -14512,6 +16245,7 @@
<nd ref="687044655"/>
<nd ref="687044717"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
<tag k="name" v="Hôtel Malte Opéra - Astotel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -14533,6 +16267,34 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.timhotel.com/"/>
</way>
+ <way id="54730665">
+ <nd ref="689143296"/>
+ <nd ref="689143958"/>
+ <nd ref="689144467"/>
+ <nd ref="689143362"/>
+ <nd ref="689143497"/>
+ <nd ref="689143494"/>
+ <nd ref="689143296"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Volney Opéra"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="54730687">
+ <nd ref="689142883"/>
+ <nd ref="689144335"/>
+ <nd ref="689144575"/>
+ <nd ref="689142514"/>
+ <nd ref="689144275"/>
+ <nd ref="689144239"/>
+ <nd ref="689142402"/>
+ <nd ref="689142883"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Stendhal Paris Place Vendôme MGallery by Sofitel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q27832625"/>
+ </way>
<way id="54730816">
<nd ref="689144153"/>
<nd ref="689144129"/>
@@ -14545,8 +16307,57 @@
<tag k="addr:housenumber" v="1"/>
<tag k="addr:street" v="Rue Daunou"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel Choiseul Opera"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q27832644"/>
+ </way>
+ <way id="54730824">
+ <nd ref="689143534"/>
+ <nd ref="689143839"/>
+ <nd ref="689143039"/>
+ <nd ref="689143470"/>
+ <nd ref="689144403"/>
+ <nd ref="689143534"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://daunou-opera.com/"/>
+ <tag k="name" v="Daunou Opéra"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="54970407">
+ <nd ref="691614727"/>
+ <nd ref="691614626"/>
+ <nd ref="691614414"/>
+ <nd ref="691614148"/>
+ <nd ref="691614443"/>
+ <nd ref="691614090"/>
+ <nd ref="691614557"/>
+ <nd ref="691614271"/>
+ <nd ref="691614408"/>
+ <nd ref="691614264"/>
+ <nd ref="691614727"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel du Globe"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="54989436">
+ <nd ref="691775280"/>
+ <nd ref="691775932"/>
+ <nd ref="691774842"/>
+ <nd ref="691775336"/>
+ <nd ref="691775673"/>
+ <nd ref="691774898"/>
+ <nd ref="691775280"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://www.appihotel.com/"/>
+ <tag k="name" v="Appi"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="55356971">
<nd ref="695453331"/>
@@ -14560,6 +16371,7 @@
<tag k="addr:housenumber" v="42"/>
<tag k="addr:street" v="Rue des Bernardins"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Agora Saint-Germain"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -14572,11 +16384,12 @@
<nd ref="696626378"/>
<nd ref="696626377"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="email" v="hotel-diana@wanadoo.fr"/>
<tag k="internet_access" v="yes"/>
<tag k="internet_access:fee" v="yes"/>
<tag k="name" v="Hôtel Diana"/>
- <tag k="phone" v="+33 (0)1 43 54 92 55"/>
+ <tag k="phone" v="+33 1 43 54 92 55"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
@@ -14599,8 +16412,11 @@
<nd ref="696639438"/>
<nd ref="696639431"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Best Western"/>
+ <tag k="name" v="Mercure Notre-Dame"/>
+ <tag k="network" v="Mercure"/>
+ <tag k="operator" v="Accor"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="55465645">
@@ -14634,10 +16450,12 @@
<nd ref="1381936927"/>
<nd ref="697454622"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="1"/>
<tag k="name" v="Atelier Brancusi"/>
<tag k="opening_hours" v="Mo,We,Th,Fr,Sa,Su 14:00-18:00"/>
<tag k="source" v="Cadastre. Mise à jour : 2010; survey"/>
<tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q1895953"/>
<tag k="wikipedia" v="fr:Musée national d'art moderne#Atelier Brancusi"/>
</way>
<way id="55865819">
@@ -14675,10 +16493,52 @@
<nd ref="702306766"/>
<nd ref="702306824"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Villa Mazarin"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="55997043">
+ <nd ref="702915978"/>
+ <nd ref="702916088"/>
+ <nd ref="702916028"/>
+ <nd ref="702915438"/>
+ <nd ref="702916270"/>
+ <nd ref="702915717"/>
+ <nd ref="702916104"/>
+ <nd ref="702915187"/>
+ <nd ref="702915914"/>
+ <nd ref="702916254"/>
+ <nd ref="702915978"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="name" v="Le Compostelle"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="56043185">
+ <nd ref="703460832"/>
+ <nd ref="703460762"/>
+ <nd ref="703460893"/>
+ <nd ref="703461090"/>
+ <nd ref="703460951"/>
+ <nd ref="703461112"/>
+ <nd ref="703460832"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="9"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="Rue d'Ormesson"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="fax" v="+33 1 48 47 40 04"/>
+ <tag k="name" v="Hôtel Pratic"/>
+ <tag k="phone" v="+33 1 48 87 80 47"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelpratic.com"/>
+ <tag k="wheelchair" v="no"/>
+ </way>
<way id="56066139">
<nd ref="703723243"/>
<nd ref="703723337"/>
@@ -14694,30 +16554,16 @@
<nd ref="703723340"/>
<nd ref="703723243"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="3"/>
<tag k="name" v="Musée Curie"/>
- <tag k="phone" v="01.56.24.55.33"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="name:etymology:wikidata" v="Q7186;Q37463"/>
+ <tag k="opening_hours" v="We-Sa 13:00-17:00"/>
+ <tag k="phone" v="+33156245533"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="www.curie.fr/"/>
+ <tag k="website" v="http://musee.curie.fr"/>
+ <tag k="wikidata" v="Q589336"/>
<tag k="wikipedia" v="fr:Musée Curie"/>
</way>
- <way id="56092497">
- <nd ref="703988767"/>
- <nd ref="703988242"/>
- <nd ref="703988543"/>
- <nd ref="703987712"/>
- <nd ref="703987959"/>
- <nd ref="703988767"/>
- <tag k="addr:housenumber" v="1"/>
- <tag k="addr:postcode" v="75004"/>
- <tag k="addr:street" v="rue de la Bastille"/>
- <tag k="building" v="yes"/>
- <tag k="building:levels" v="6"/>
- <tag k="name" v="Hôtel Bastille Speria"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010; survey"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hotel-bastille-speria.com/"/>
- </way>
<way id="56185523">
<nd ref="705045957"/>
<nd ref="807213078"/>
@@ -14994,16 +16840,23 @@
<nd ref="705045861"/>
<nd ref="705045957"/>
<tag k="building" v="yes"/>
+ <tag k="email" v="webmaster@rmngp.fr"/>
<tag k="height" v="60"/>
+ <tag k="heritage" v="2"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="2000"/>
<tag k="name" v="Grand Palais"/>
- <tag k="name:de" v="Großer Palast"/>
<tag k="name:es" v="Gran Palacio"/>
<tag k="name:ru" v="Большой дворец"/>
<tag k="name:uk" v="Великий палац"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="phone" v="+33 1 44 13 17 17"/>
+ <tag k="ref:mhs" v="PA00088877"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre;mise à jour : 2010"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.grandpalais.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q457318"/>
<tag k="wikipedia" v="fr:Grand Palais (Paris)"/>
</way>
<way id="56186898">
@@ -15040,7 +16893,7 @@
<tag k="name:ru" v="Павильон Арсенала"/>
<tag k="note:fr" v="wheelchair pas vérifié pour les étages"/>
<tag k="opening_hours" v="Tu-Sa 10:30-18:30; Su 11:00-19:00"/>
- <tag k="phone" v="01.42.76.33.97; 01.42.76.26.32"/>
+ <tag k="phone" v="+33142763397;+33142762632"/>
<tag k="source" v="Cadastre. Mise à jour : 2010; survey 2014"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.pavillon-arsenal.com/"/>
@@ -15048,6 +16901,28 @@
<tag k="wikidata" v="Q2000339"/>
<tag k="wikipedia" v="fr:Pavillon de l'Arsenal"/>
</way>
+ <way id="56347066">
+ <nd ref="706744280"/>
+ <nd ref="706744292"/>
+ <nd ref="706744260"/>
+ <nd ref="706744107"/>
+ <nd ref="706744041"/>
+ <nd ref="706744144"/>
+ <nd ref="706744095"/>
+ <nd ref="706744241"/>
+ <nd ref="706744231"/>
+ <nd ref="706744306"/>
+ <nd ref="706744062"/>
+ <nd ref="706744136"/>
+ <nd ref="706744280"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Paris Bruxelles"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="start_date" v="1851...1914"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="56475685">
<nd ref="708188696"/>
<nd ref="708188925"/>
@@ -15058,6 +16933,7 @@
<nd ref="708188929"/>
<nd ref="708188696"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Nevers Hotel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -15094,13 +16970,19 @@
<nd ref="517939580"/>
<nd ref="517939581"/>
<nd ref="205271816"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="6"/>
+ <tag k="addr:postcode" v="75005"/>
+ <tag k="addr:street" v="Place Paul Painlevé"/>
<tag k="alt_name:es" v="Museo_Edad_Media"/>
<tag k="name" v="Musée National du Moyen Âge"/>
- <tag k="phone" v="01.53.73.78.13"/>
+ <tag k="opening_hours" v="Mo-Su 09:15-17:45; Tu off; Jan 01 off; May 01 off; Dec 25 off"/>
+ <tag k="phone" v="+33153737813"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2009"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.musee-moyenage.fr/"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1124095"/>
<tag k="wikipedia" v="fr:Musée de Cluny"/>
</way>
<way id="56651286">
@@ -15113,29 +16995,29 @@
<nd ref="708490404"/>
<nd ref="708490507"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
<tag k="name" v="Le Haut Marais"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="56659889">
+ <nd ref="708598689"/>
+ <nd ref="708598665"/>
+ <nd ref="708598705"/>
+ <nd ref="708598740"/>
+ <nd ref="708598678"/>
+ <nd ref="708598671"/>
+ <nd ref="708598761"/>
+ <nd ref="708598675"/>
+ <nd ref="708598689"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="contact:website" v="http://www.saintpierre-hotel.com/"/>
+ <tag k="name" v="Hôtel Saint-Pierre"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="56687783">
- <nd ref="708980873"/>
- <nd ref="708981018"/>
- <nd ref="708981076"/>
- <nd ref="708980897"/>
- <nd ref="708980809"/>
- <nd ref="708980793"/>
- <nd ref="708981041"/>
- <nd ref="708981305"/>
- <nd ref="708981329"/>
- <nd ref="708981286"/>
- <nd ref="708980893"/>
- <nd ref="708981133"/>
- <nd ref="708980750"/>
- <nd ref="708981113"/>
- <nd ref="708980733"/>
- <nd ref="708980981"/>
- <nd ref="708981222"/>
- <nd ref="708980832"/>
<nd ref="708981083"/>
<nd ref="708981334"/>
<nd ref="708980940"/>
@@ -15152,11 +17034,27 @@
<nd ref="708980738"/>
<nd ref="708981117"/>
<nd ref="708980873"/>
+ <nd ref="708981018"/>
+ <nd ref="708981076"/>
+ <nd ref="708980897"/>
+ <nd ref="708980809"/>
+ <nd ref="708980793"/>
+ <nd ref="708981041"/>
+ <nd ref="708981305"/>
+ <nd ref="708981329"/>
+ <nd ref="708981079"/>
+ <nd ref="708981107"/>
+ <nd ref="3523987383"/>
+ <nd ref="2435413101"/>
+ <nd ref="2435413103"/>
+ <nd ref="2435413099"/>
+ <nd ref="708981083"/>
<tag k="name" v="Musée d'Art et d'Histoire du Judaïsme"/>
- <tag k="phone" v="01.53.01.86.53"/>
+ <tag k="phone" v="+33153018653"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.mahj.org"/>
+ <tag k="wikidata" v="Q977732"/>
</way>
<way id="57380606">
<nd ref="713469131"/>
@@ -15170,144 +17068,6 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="57720409">
- <nd ref="2574260033"/>
- <nd ref="715636330"/>
- <nd ref="715636898"/>
- <nd ref="715636039"/>
- <nd ref="715636575"/>
- <nd ref="715637130"/>
- <nd ref="715636240"/>
- <nd ref="715636511"/>
- <nd ref="715637082"/>
- <nd ref="715636184"/>
- <nd ref="715636748"/>
- <nd ref="2574168713"/>
- <nd ref="715637256"/>
- <nd ref="715636385"/>
- <nd ref="715636981"/>
- <nd ref="715636923"/>
- <nd ref="715636069"/>
- <nd ref="715636599"/>
- <nd ref="715637152"/>
- <nd ref="715636265"/>
- <nd ref="715636811"/>
- <nd ref="715635960"/>
- <nd ref="715637198"/>
- <nd ref="715636486"/>
- <nd ref="715636776"/>
- <nd ref="715637286"/>
- <nd ref="715636447"/>
- <nd ref="715637034"/>
- <nd ref="715636148"/>
- <nd ref="715636684"/>
- <nd ref="715637242"/>
- <nd ref="715636356"/>
- <nd ref="715636648"/>
- <nd ref="715637209"/>
- <nd ref="715636307"/>
- <nd ref="715636862"/>
- <nd ref="715636003"/>
- <nd ref="715636830"/>
- <nd ref="715637094"/>
- <nd ref="715636751"/>
- <nd ref="715637277"/>
- <nd ref="715636425"/>
- <nd ref="715637006"/>
- <nd ref="715636125"/>
- <nd ref="715636663"/>
- <nd ref="715637225"/>
- <nd ref="715636332"/>
- <nd ref="715636620"/>
- <nd ref="715637180"/>
- <nd ref="715636282"/>
- <nd ref="715636837"/>
- <nd ref="715635976"/>
- <nd ref="715636514"/>
- <nd ref="715637085"/>
- <nd ref="715636186"/>
- <nd ref="715636466"/>
- <nd ref="715637040"/>
- <nd ref="715636154"/>
- <nd ref="715636700"/>
- <nd ref="715637253"/>
- <nd ref="715636630"/>
- <nd ref="2574265512"/>
- <nd ref="715636098"/>
- <nd ref="715637042"/>
- <nd ref="715636765"/>
- <nd ref="715636481"/>
- <nd ref="715637178"/>
- <nd ref="715636542"/>
- <nd ref="715635996"/>
- <nd ref="1028569362"/>
- <nd ref="1028572726"/>
- <nd ref="715637017"/>
- <nd ref="715636494"/>
- <nd ref="715636597"/>
- <nd ref="715637190"/>
- <nd ref="715636067"/>
- <nd ref="715636921"/>
- <nd ref="715636693"/>
- <nd ref="715637136"/>
- <nd ref="715636774"/>
- <nd ref="715636210"/>
- <nd ref="715637103"/>
- <nd ref="715637285"/>
- <nd ref="715636446"/>
- <nd ref="715637031"/>
- <nd ref="715636339"/>
- <nd ref="715636913"/>
- <nd ref="715636051"/>
- <nd ref="715636584"/>
- <nd ref="715637139"/>
- <nd ref="715635991"/>
- <nd ref="715636527"/>
- <nd ref="715637093"/>
- <nd ref="715636201"/>
- <nd ref="715636768"/>
- <nd ref="715637281"/>
- <nd ref="715636438"/>
- <nd ref="715637013"/>
- <nd ref="715636659"/>
- <nd ref="2574260031"/>
- <nd ref="715637224"/>
- <nd ref="2574260032"/>
- <nd ref="2574260033"/>
- <tag k="name" v="Archives Nationales"/>
- <tag k="phone" v="01.40.27.60.96"/>
- <tag k="source" v="extrapolation"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.archivesnationales.culture.gouv.fr/"/>
- <tag k="wikipedia" v="fr:Archives nationales (France)"/>
- </way>
- <way id="57727912">
- <nd ref="715744237"/>
- <nd ref="715744451"/>
- <nd ref="715744341"/>
- <nd ref="715744232"/>
- <nd ref="715744390"/>
- <nd ref="715744449"/>
- <nd ref="715744284"/>
- <nd ref="715744378"/>
- <nd ref="715744490"/>
- <nd ref="715744274"/>
- <nd ref="715744382"/>
- <nd ref="715744219"/>
- <nd ref="715744434"/>
- <nd ref="715744289"/>
- <nd ref="715744277"/>
- <nd ref="715744410"/>
- <nd ref="715744461"/>
- <nd ref="715744305"/>
- <nd ref="715744246"/>
- <nd ref="715744370"/>
- <nd ref="715744260"/>
- <nd ref="715744237"/>
- <tag k="name" v="Musée de la Serrure"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- </way>
<way id="57745741">
<nd ref="715963565"/>
<nd ref="715963606"/>
@@ -15316,6 +17076,7 @@
<nd ref="715963651"/>
<nd ref="715963700"/>
<nd ref="715963544"/>
+ <nd ref="3694852424"/>
<nd ref="715963597"/>
<nd ref="715963648"/>
<nd ref="715963536"/>
@@ -15326,6 +17087,7 @@
<nd ref="715963674"/>
<nd ref="715963590"/>
<nd ref="715963711"/>
+ <nd ref="3694856526"/>
<nd ref="715963664"/>
<nd ref="715963614"/>
<nd ref="715963653"/>
@@ -15345,13 +17107,17 @@
<nd ref="715963621"/>
<nd ref="715963641"/>
<nd ref="715963565"/>
- <tag k="alt_name" v="Hôtel Aubert de Fontenay; Hôtel Salé"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue de Thorigny"/>
+ <tag k="alt_name" v="Hôtel Aubert de Fontenay;Hôtel Salé"/>
<tag k="name" v="Musée Picasso"/>
<tag k="name:be" v="Музей Пікаса"/>
<tag k="name:ru" v="Музей Пикассо"/>
<tag k="name:uk" v="Музей Пікассо"/>
<tag k="opening_hours" v="Tu-Fr 11:30-18:00; Sa,Su 09:30-18:00"/>
- <tag k="phone" v="01.85.56.00.36"/>
+ <tag k="phone" v="+33185560036"/>
<tag k="source" v="Cadastre. Mise à jour : 2010;knowledge"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.museepicassoparis.fr/"/>
@@ -15372,17 +17138,22 @@
<nd ref="716912922"/>
<nd ref="716912868"/>
<nd ref="716912671"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue Elzévir"/>
<tag k="building" v="yes"/>
- <tag k="fax" v="01.43.29.72.88"/>
+ <tag k="fax" v="+33143297288"/>
<tag k="name" v="Musée Cognacq-Jay"/>
<tag k="name:ru" v="Музей Коньяк-Жэ"/>
<tag k="official_name" v="Hôtel de Donon"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
- <tag k="phone" v="01.40.27.07.21"/>
+ <tag k="phone" v="+33140270721"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.paris.fr/loisirs/musees-expos/musee-cognacq-jay/p6466"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1572452"/>
<tag k="wikipedia" v="fr:Musée Cognacq-Jay"/>
</way>
<way id="58551606">
@@ -15410,7 +17181,7 @@
<tag k="email" v="hoteldesenlis@wanadoo.fr"/>
<tag k="internet_access" v="wlan"/>
<tag k="name" v="Hôtel de Senlis"/>
- <tag k="phone" v="+33 (0)1 43 29 93 10"/>
+ <tag k="phone" v="+33 1 43 29 93 10"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
@@ -15438,6 +17209,33 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="60542619">
+ <nd ref="755853189"/>
+ <nd ref="755853121"/>
+ <nd ref="755853176"/>
+ <nd ref="755853051"/>
+ <nd ref="755853133"/>
+ <nd ref="755853112"/>
+ <nd ref="755853178"/>
+ <nd ref="4947723045"/>
+ <nd ref="755853069"/>
+ <nd ref="755853049"/>
+ <nd ref="755853151"/>
+ <nd ref="755853031"/>
+ <nd ref="755853080"/>
+ <nd ref="755853149"/>
+ <nd ref="755853095"/>
+ <nd ref="755853164"/>
+ <nd ref="755853045"/>
+ <nd ref="755853117"/>
+ <nd ref="755853189"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel des Jardins du Luxembourg"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="60809008">
<nd ref="761250062"/>
<nd ref="761250093"/>
@@ -15460,78 +17258,6 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="62288069">
- <nd ref="778228894"/>
- <nd ref="778228264"/>
- <nd ref="806897882"/>
- <nd ref="778228434"/>
- <nd ref="778229598"/>
- <nd ref="778228209"/>
- <nd ref="778228962"/>
- <nd ref="778229154"/>
- <nd ref="778229333"/>
- <nd ref="778228570"/>
- <nd ref="778228402"/>
- <nd ref="778227840"/>
- <nd ref="778228529"/>
- <nd ref="778227958"/>
- <nd ref="778229776"/>
- <nd ref="1615799968"/>
- <nd ref="778228894"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Musée national Eugène Delacroix"/>
- <tag k="phone" v="01.44.41.86.50"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.musee-delacroix.fr"/>
- </way>
- <way id="62819702">
- <nd ref="782261039"/>
- <nd ref="782262225"/>
- <nd ref="782256060"/>
- <nd ref="782254066"/>
- <nd ref="782260813"/>
- <nd ref="782256825"/>
- <nd ref="782259100"/>
- <nd ref="782264853"/>
- <nd ref="782254679"/>
- <nd ref="782253229"/>
- <nd ref="782261242"/>
- <nd ref="782262510"/>
- <nd ref="782255124"/>
- <nd ref="782251472"/>
- <nd ref="782259443"/>
- <nd ref="782253794"/>
- <nd ref="782260533"/>
- <nd ref="782263390"/>
- <nd ref="782263947"/>
- <nd ref="782261025"/>
- <nd ref="782264816"/>
- <nd ref="782265746"/>
- <nd ref="782249947"/>
- <nd ref="782270343"/>
- <nd ref="782267844"/>
- <nd ref="782266667"/>
- <nd ref="782260932"/>
- <nd ref="782251973"/>
- <nd ref="782260755"/>
- <nd ref="782253443"/>
- <nd ref="1244401754"/>
- <nd ref="782270170"/>
- <nd ref="782265019"/>
- <nd ref="782261039"/>
- <tag k="alt_name" v="Palais de la Porte Dorée"/>
- <tag k="architect" v="Albert Laprade;Léon Jaussely"/>
- <tag k="architect:wikipedia" v="fr:Albert Laprade"/>
- <tag k="building" v="civic"/>
- <tag k="name" v="Cité Nationale de l'Histoire de l'Immigration"/>
- <tag k="phone" v="01 53 59 58 60"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="start_date" v="1931"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.histoire-immigration.fr/"/>
- <tag k="wikipedia" v="fr:Cité nationale de l'histoire de l'immigration"/>
- </way>
<way id="62848404">
<nd ref="782602289"/>
<nd ref="782603026"/>
@@ -15560,6 +17286,7 @@
<nd ref="782602289"/>
<tag k="alt_name" v="Orangerie"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="2"/>
<tag k="name" v="Orangerie du Sénat"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
@@ -15580,6 +17307,7 @@
<nd ref="784437800"/>
<nd ref="784437488"/>
<nd ref="784437277"/>
+ <nd ref="5162650466"/>
<nd ref="784437951"/>
<nd ref="784437192"/>
<nd ref="784437783"/>
@@ -15667,25 +17395,53 @@
<nd ref="784437732"/>
<nd ref="784437812"/>
<nd ref="784437475"/>
+ <nd ref="5162623916"/>
<nd ref="784437358"/>
<nd ref="784437234"/>
<nd ref="784437109"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Rue de la Légion d'Honneur"/>
<tag k="building" v="yes"/>
<tag k="description:fr" v="Collections : Art français et européen de 1848 à 1914"/>
<tag k="height" v="35"/>
<tag k="importance" v="international"/>
<tag k="name" v="Musée d'Orsay"/>
+ <tag k="name:en" v="Musee d'Orsay"/>
<tag k="name:es" v="Museo de Orsay"/>
+ <tag k="name:fr" v="Musée d'Orsay"/>
+ <tag k="name:it" v="Museo d'Orsay"/>
<tag k="name:ja" v="オルセー美術館"/>
+ <tag k="name:ko" v="오르세 미술관"/>
<tag k="name:ru" v="Музей Орсе"/>
+ <tag k="name:zh" v="奧賽博物館"/>
<tag k="old_name" v="Gare d'Orsay"/>
+ <tag k="opening_hours" v="Tu-Su 09:30-18:00; Th 09:30-21:45"/>
+ <tag k="phone" v="+33140494814"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="tourism:visitors" v="3500000"/>
<tag k="website" v="http://www.musee-orsay.fr"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q23402"/>
<tag k="wikipedia" v="fr:Musée d'Orsay"/>
</way>
+ <way id="63195522">
+ <nd ref="784431758"/>
+ <nd ref="784485624"/>
+ <nd ref="1272516684"/>
+ <nd ref="784451381"/>
+ <nd ref="784397826"/>
+ <nd ref="784495481"/>
+ <nd ref="784431758"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel des Alpes"/>
+ <tag k="operator" v="Megdoud Ali"/>
+ <tag k="phone" v="+33 1 47 70 44 95"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:16-01-28"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="63195815">
<nd ref="784449056"/>
<nd ref="784317543"/>
@@ -15698,9 +17454,56 @@
<nd ref="1282180311"/>
<nd ref="784449056"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
+ <tag k="contact:website" v="http://hoteldemilan.com/"/>
<tag k="name" v="Hôtel de Milan"/>
+ <tag k="rooms" v="49"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63195893">
+ <nd ref="784387031"/>
+ <nd ref="784312948"/>
+ <nd ref="880598177"/>
+ <nd ref="784392149"/>
+ <nd ref="784471168"/>
+ <nd ref="784325867"/>
+ <nd ref="784478526"/>
+ <nd ref="784320727"/>
+ <nd ref="784385860"/>
+ <nd ref="784412474"/>
+ <nd ref="784486836"/>
+ <nd ref="784387031"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Paris-Nord"/>
+ <tag k="operator" v="Albouy Abel"/>
+ <tag k="phone" v="+33 1 40 35 81 70"/>
+ <tag k="smoking" v="outside"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63195921">
+ <nd ref="784507675"/>
+ <nd ref="784463721"/>
+ <nd ref="1271556301"/>
+ <nd ref="1271556337"/>
+ <nd ref="784401623"/>
+ <nd ref="784509620"/>
+ <nd ref="784349964"/>
+ <nd ref="1271556552"/>
+ <nd ref="784507675"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Pavillon Opéra"/>
+ <tag k="phone" v="+33 1 42 46 92 75"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/local_knowledge"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.facebook.com/pages/H%C3%B4tel-Pavillon-Op%C3%A9ra/196645590444280"/>
</way>
<way id="63195932">
<nd ref="784380704"/>
@@ -15716,6 +17519,7 @@
<nd ref="784317546"/>
<nd ref="784318799"/>
<nd ref="784444605"/>
+ <nd ref="4105299903"/>
<nd ref="784320067"/>
<nd ref="784339383"/>
<nd ref="784428707"/>
@@ -15723,8 +17527,11 @@
<nd ref="784354261"/>
<nd ref="784457336"/>
<nd ref="1281900647"/>
+ <nd ref="4105299897"/>
<nd ref="264775551"/>
+ <nd ref="4105299902"/>
<nd ref="1281900498"/>
+ <nd ref="4105299909"/>
<nd ref="1281900585"/>
<nd ref="1281900611"/>
<nd ref="784369152"/>
@@ -15738,9 +17545,519 @@
<nd ref="784416890"/>
<nd ref="784380704"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel All Seasons"/>
+ <tag k="name" v="Ibis Style"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <way id="63196349">
+ <nd ref="784372734"/>
+ <nd ref="784451787"/>
+ <nd ref="784489454"/>
+ <nd ref="784339355"/>
+ <nd ref="1272516617"/>
+ <nd ref="784475879"/>
+ <nd ref="784315127"/>
+ <nd ref="4701887067"/>
+ <nd ref="1280690325"/>
+ <nd ref="784372734"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Grand Hôtel des Voyageurs"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre;mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63197085">
+ <nd ref="784447754"/>
+ <nd ref="784362425"/>
+ <nd ref="784376759"/>
+ <nd ref="784491196"/>
+ <nd ref="784495437"/>
+ <nd ref="1272453524"/>
+ <nd ref="784321277"/>
+ <nd ref="784436386"/>
+ <nd ref="784466119"/>
+ <nd ref="784429491"/>
+ <nd ref="784304548"/>
+ <nd ref="784396528"/>
+ <nd ref="784452738"/>
+ <nd ref="784385331"/>
+ <nd ref="784447754"/>
+ <tag k="name" v="Regina"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.reginaopera.com"/>
+ </way>
+ <way id="63197482">
+ <nd ref="784440572"/>
+ <nd ref="784466401"/>
+ <nd ref="784356769"/>
+ <nd ref="784299612"/>
+ <nd ref="784459933"/>
+ <nd ref="784488540"/>
+ <nd ref="784355290"/>
+ <nd ref="784382881"/>
+ <nd ref="784383976"/>
+ <nd ref="784409682"/>
+ <nd ref="784440572"/>
+ <tag k="addr:housenumber" v="88"/>
+ <tag k="addr:street" v="Rue de Maubeuge"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="email" v="maison@duprehotels.com"/>
+ <tag k="fax" v="+33 1 48 78 25 14"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Maison du Pré"/>
+ <tag k="operator" v="Les Hôtels du Pré"/>
+ <tag k="phone" v="+33 1 48 78 36 22"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://maison.leshotelsdupre.com/"/>
+ </way>
+ <way id="63197918">
+ <nd ref="784389066"/>
+ <nd ref="784349536"/>
+ <nd ref="784307480"/>
+ <nd ref="784336624"/>
+ <nd ref="1280690413"/>
+ <nd ref="784389066"/>
+ <tag k="architect" v="Louis Heuzé"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="13"/>
+ <tag k="contact:postcode" v="75010"/>
+ <tag k="contact:street" v="Rue du 8 Mai 1945"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Libertel Gare De L'Est Français"/>
+ <tag k="operator" v="Libertel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="source:architect" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="start_date" v="1882"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63198051">
+ <nd ref="784451859"/>
+ <nd ref="877959414"/>
+ <nd ref="784416706"/>
+ <nd ref="784485453"/>
+ <nd ref="784482258"/>
+ <nd ref="784341261"/>
+ <nd ref="784379099"/>
+ <nd ref="784386447"/>
+ <nd ref="784315052"/>
+ <nd ref="784508888"/>
+ <nd ref="784331107"/>
+ <nd ref="784451859"/>
+ <tag k="building" v="hotel"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://www.hotel-faubourg-216-214-paris.federal-hotel.com/"/>
+ <tag k="name" v="Faubourg 216-224"/>
+ <tag k="roof:levels" v="1"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63198089">
+ <nd ref="784385293"/>
+ <nd ref="784348666"/>
+ <nd ref="784338169"/>
+ <nd ref="784506864"/>
+ <nd ref="795606518"/>
+ <nd ref="795606623"/>
+ <nd ref="784510490"/>
+ <nd ref="784403247"/>
+ <nd ref="1272516798"/>
+ <nd ref="784317253"/>
+ <nd ref="784317530"/>
+ <nd ref="784466936"/>
+ <nd ref="784314262"/>
+ <nd ref="784364136"/>
+ <nd ref="784306417"/>
+ <nd ref="784311602"/>
+ <nd ref="784385293"/>
+ <tag k="building" v="yes"/>
+ <tag k="fax" v="+33 1 40 22 09 64"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Central"/>
+ <tag k="operator" v="Attia Suzanne"/>
+ <tag k="phone" v="+33 1 47 70 12 12"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:16-01-28"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="https://www.facebook.com/pages/central-hotel/"/>
+ </way>
+ <way id="63198136">
+ <nd ref="784376161"/>
+ <nd ref="784451101"/>
+ <nd ref="784333654"/>
+ <nd ref="784471168"/>
+ <nd ref="784392149"/>
+ <nd ref="880598200"/>
+ <nd ref="784474132"/>
+ <nd ref="784348082"/>
+ <nd ref="1282180279"/>
+ <nd ref="784376161"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Bristol Nord"/>
+ <tag k="operator" v="Ruelle Geneviève"/>
+ <tag k="phone" v="+33 1 46 07 90 24"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.bristolnord.fr/"/>
+ </way>
+ <way id="63198495">
+ <nd ref="784349599"/>
+ <nd ref="784331295"/>
+ <nd ref="784345206"/>
+ <nd ref="784323198"/>
+ <nd ref="784423519"/>
+ <nd ref="784389462"/>
+ <nd ref="784463529"/>
+ <nd ref="784312916"/>
+ <nd ref="1272516944"/>
+ <nd ref="784485262"/>
+ <nd ref="1271556477"/>
+ <nd ref="784349599"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Hôtel Marclau"/>
+ <tag k="phone" v="+33 1 47 70 73 50"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63198724">
+ <nd ref="784427191"/>
+ <nd ref="877959334"/>
+ <nd ref="784467252"/>
+ <nd ref="784454453"/>
+ <nd ref="784493286"/>
+ <nd ref="784378707"/>
+ <nd ref="784321125"/>
+ <nd ref="784503655"/>
+ <nd ref="784387419"/>
+ <nd ref="784502176"/>
+ <nd ref="784460210"/>
+ <nd ref="784335105"/>
+ <nd ref="784368314"/>
+ <nd ref="784365419"/>
+ <nd ref="784478757"/>
+ <nd ref="784355434"/>
+ <nd ref="784386044"/>
+ <nd ref="784404216"/>
+ <nd ref="784304573"/>
+ <nd ref="784427191"/>
+ <tag k="building" v="hotel"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://www.hotel-faubourg-216-214-paris.federal-hotel.com/"/>
+ <tag k="name" v="Faubourg 216-224"/>
+ <tag k="roof:levels" v="1"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63199034">
+ <nd ref="784509620"/>
+ <nd ref="784401623"/>
+ <nd ref="1271556471"/>
+ <nd ref="784297701"/>
+ <nd ref="784345976"/>
+ <nd ref="1271556440"/>
+ <nd ref="1271556404"/>
+ <nd ref="784397577"/>
+ <nd ref="784422314"/>
+ <nd ref="784314982"/>
+ <nd ref="784368326"/>
+ <nd ref="784351390"/>
+ <nd ref="784483296"/>
+ <nd ref="784509620"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Provinces Opéra"/>
+ <tag k="phone" v="+33 1 45 23 24 01"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/local_knowledge"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-provinces-opera.com/fr/hotel-provinces-opera-paris/index/index"/>
+ </way>
+ <way id="63200381">
+ <nd ref="784328063"/>
+ <nd ref="784461245"/>
+ <nd ref="795606473"/>
+ <nd ref="784508536"/>
+ <nd ref="784375322"/>
+ <nd ref="784422300"/>
+ <nd ref="784443328"/>
+ <nd ref="784413869"/>
+ <nd ref="784372611"/>
+ <nd ref="784328063"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Pacific"/>
+ <tag k="operator" v="Gabouze Adlane"/>
+ <tag k="phone" v="+33 1 47 70 07 91"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:16-01-28"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201283">
+ <nd ref="784457747"/>
+ <nd ref="784397531"/>
+ <nd ref="784313326"/>
+ <nd ref="784446142"/>
+ <nd ref="784345112"/>
+ <nd ref="784389705"/>
+ <nd ref="784481891"/>
+ <nd ref="784453040"/>
+ <nd ref="784482025"/>
+ <nd ref="784502897"/>
+ <nd ref="784439301"/>
+ <nd ref="784489599"/>
+ <nd ref="784423807"/>
+ <nd ref="784425996"/>
+ <nd ref="784378860"/>
+ <nd ref="784305775"/>
+ <nd ref="784395579"/>
+ <nd ref="784453867"/>
+ <nd ref="784452844"/>
+ <nd ref="784354704"/>
+ <nd ref="784507619"/>
+ <nd ref="1273681592"/>
+ <nd ref="784457747"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Hôtel Metropol"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201292">
+ <nd ref="784453771"/>
+ <nd ref="784366556"/>
+ <nd ref="784339898"/>
+ <nd ref="784354326"/>
+ <nd ref="1272516969"/>
+ <nd ref="784462302"/>
+ <nd ref="1271556296"/>
+ <nd ref="784453771"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Hauteville Opéra"/>
+ <tag k="operator" v="Bessa Hider"/>
+ <tag k="phone" v="+33 1 47 70 41 39"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/local_knowledge"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201324">
+ <nd ref="784446871"/>
+ <nd ref="784317436"/>
+ <nd ref="784470564"/>
+ <nd ref="784350326"/>
+ <nd ref="784492683"/>
+ <nd ref="784502680"/>
+ <nd ref="784464576"/>
+ <nd ref="784327994"/>
+ <nd ref="784391385"/>
+ <nd ref="784342694"/>
+ <nd ref="784467894"/>
+ <nd ref="784379231"/>
+ <nd ref="784350251"/>
+ <nd ref="784502872"/>
+ <nd ref="794585933"/>
+ <nd ref="784421311"/>
+ <nd ref="784392566"/>
+ <nd ref="784446871"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Palace"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201411">
+ <nd ref="784336624"/>
+ <nd ref="784307480"/>
+ <nd ref="784451787"/>
+ <nd ref="784372734"/>
+ <nd ref="784339245"/>
+ <nd ref="1280690290"/>
+ <nd ref="784336624"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Le Marcel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201418">
+ <nd ref="784438408"/>
+ <nd ref="784332213"/>
+ <nd ref="784360650"/>
+ <nd ref="784317764"/>
+ <nd ref="784374768"/>
+ <nd ref="784459941"/>
+ <nd ref="784350593"/>
+ <nd ref="784485764"/>
+ <nd ref="912270814"/>
+ <nd ref="784438408"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://www.hotelparisiana.com/"/>
+ <tag k="name" v="Parisiana"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201542">
+ <nd ref="784328398"/>
+ <nd ref="784413276"/>
+ <nd ref="784398020"/>
+ <nd ref="784438272"/>
+ <nd ref="4448519360"/>
+ <nd ref="784298864"/>
+ <nd ref="784339692"/>
+ <nd ref="784299283"/>
+ <nd ref="784470839"/>
+ <nd ref="784328398"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Grand Hotel de Paris"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63201922">
+ <nd ref="784470653"/>
+ <nd ref="784302701"/>
+ <nd ref="784387031"/>
+ <nd ref="784486836"/>
+ <nd ref="784502180"/>
+ <nd ref="784441241"/>
+ <nd ref="880598255"/>
+ <nd ref="784470653"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Montana"/>
+ <tag k="operator" v="Merabet Dalila"/>
+ <tag k="phone" v="+33 1 40 35 80 80"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelmontanalafayette.com/"/>
+ </way>
+ <way id="63202826">
+ <nd ref="784402570"/>
+ <nd ref="784315105"/>
+ <nd ref="784485322"/>
+ <nd ref="772945980"/>
+ <nd ref="784360384"/>
+ <nd ref="784392545"/>
+ <nd ref="784441252"/>
+ <nd ref="784451122"/>
+ <nd ref="784452011"/>
+ <nd ref="784452485"/>
+ <nd ref="784385703"/>
+ <nd ref="784302762"/>
+ <nd ref="784477725"/>
+ <nd ref="784402570"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://belta-hotel-residence.fr/"/>
+ <tag k="name" v="Belta"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="63202831">
+ <nd ref="784450504"/>
+ <nd ref="784445171"/>
+ <nd ref="784488628"/>
+ <nd ref="784306790"/>
+ <nd ref="784511979"/>
+ <nd ref="784298868"/>
+ <nd ref="784353132"/>
+ <nd ref="784477718"/>
+ <nd ref="1289533540"/>
+ <nd ref="784319451"/>
+ <nd ref="784476536"/>
+ <nd ref="1273548320"/>
+ <nd ref="784450504"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Hôtel d'Amiens"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldamiens.com/"/>
+ </way>
+ <way id="63203093">
+ <nd ref="784408372"/>
+ <nd ref="784312376"/>
+ <nd ref="784324182"/>
+ <nd ref="784353426"/>
+ <nd ref="784503169"/>
+ <nd ref="784505754"/>
+ <nd ref="1272516645"/>
+ <nd ref="784392168"/>
+ <nd ref="784321732"/>
+ <nd ref="784343265"/>
+ <nd ref="784386472"/>
+ <nd ref="784408372"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Mercure Paris Opera Grands Boulevards"/>
+ <tag k="operator" v="Roblin Fançoise Annie"/>
+ <tag k="phone" v="+33 1 42 46 91 86"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <way id="63203239">
+ <nd ref="784391752"/>
+ <nd ref="784345658"/>
+ <nd ref="784474637"/>
+ <nd ref="784317644"/>
+ <nd ref="1272453434"/>
+ <nd ref="784485514"/>
+ <nd ref="784391752"/>
+ <tag k="building" v="yes"/>
+ <tag k="fax" v="+33 1 48 24 00 36"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Belfort Hôtel"/>
+ <tag k="operator" v="Ali Ayad"/>
+ <tag k="phone" v="+33 1 48 24 72 69"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:16-01-26"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldebelfort.com/"/>
+ </way>
+ <way id="63203318">
+ <nd ref="784318309"/>
+ <nd ref="784473280"/>
+ <nd ref="784332591"/>
+ <nd ref="1271556338"/>
+ <nd ref="784393702"/>
+ <nd ref="784397013"/>
+ <nd ref="784486368"/>
+ <nd ref="784318309"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel des comédies"/>
+ <tag k="operator" v="Nebout Bruno"/>
+ <tag k="phone" v="+33 1 47 70 19 49"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hoteldescomedies.com/"/>
</way>
<way id="63203368">
<nd ref="784499599"/>
@@ -15752,11 +18069,58 @@
<nd ref="784444257"/>
<nd ref="784499599"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel de Bordeaux"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="63203469">
+ <nd ref="784441337"/>
+ <nd ref="784300157"/>
+ <nd ref="784306858"/>
+ <nd ref="784298784"/>
+ <nd ref="784356961"/>
+ <nd ref="784346648"/>
+ <nd ref="784319853"/>
+ <nd ref="784386875"/>
+ <nd ref="784421327"/>
+ <nd ref="784504987"/>
+ <nd ref="784465315"/>
+ <nd ref="1273548195"/>
+ <nd ref="784441337"/>
+ <tag k="architect" v="E. J. Hart"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Saint-Christopher's Inns, Gare du Nord"/>
+ <tag k="phone" v="+33 1 70 08 52 22"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.st-christophers.co.uk"/>
+ </way>
+ <way id="63203648">
+ <nd ref="784387031"/>
+ <nd ref="784302701"/>
+ <nd ref="784470653"/>
+ <nd ref="880598254"/>
+ <nd ref="784335408"/>
+ <nd ref="784470795"/>
+ <nd ref="1278464602"/>
+ <nd ref="784312948"/>
+ <nd ref="784387031"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Albert 1er"/>
+ <tag k="operator" v="Best Western"/>
+ <tag k="phone" v="+33 1 40 36 82 40"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.albert1erhotel.com/"/>
+ </way>
<way id="63212808">
<nd ref="784592286"/>
<nd ref="784631517"/>
@@ -15780,6 +18144,26 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="63237481">
+ <nd ref="784685669"/>
+ <nd ref="784618300"/>
+ <nd ref="784560879"/>
+ <nd ref="784675854"/>
+ <nd ref="784625301"/>
+ <nd ref="784579064"/>
+ <nd ref="5063848187"/>
+ <nd ref="784687393"/>
+ <nd ref="784569088"/>
+ <nd ref="784589636"/>
+ <nd ref="784593802"/>
+ <nd ref="2499815561"/>
+ <nd ref="784685669"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="name" v="Ibis Styles Paris Buttes Chaumont"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="63454000">
<nd ref="786145911"/>
<nd ref="786142770"/>
@@ -15815,15 +18199,78 @@
<nd ref="786146555"/>
<nd ref="786143383"/>
<nd ref="786145911"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="45"/>
+ <tag k="addr:postcode" v="75006"/>
+ <tag k="addr:street" v="Boulevard Raspail"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="heritage" v="3"/>
<tag k="heritage:operator" v="mhs"/>
<tag k="mhs:inscription_date" v="2007"/>
- <tag k="name" v="Hôtel Lutetia"/>
+ <tag k="name" v="Hôtel Lutétia"/>
<tag k="ref:mhs" v="PA75060007"/>
+ <tag k="rooms" v="231"/>
<tag k="source" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q1515595"/>
<tag k="wikipedia" v="fr:Hôtel Lutetia"/>
</way>
+ <way id="63638217">
+ <nd ref="787320196"/>
+ <nd ref="787330397"/>
+ <nd ref="787356977"/>
+ <nd ref="787378212"/>
+ <nd ref="787334118"/>
+ <nd ref="1298778047"/>
+ <nd ref="787344375"/>
+ <nd ref="787363356"/>
+ <nd ref="787341659"/>
+ <nd ref="787334300"/>
+ <nd ref="787358500"/>
+ <nd ref="787360572"/>
+ <nd ref="787373553"/>
+ <nd ref="787381775"/>
+ <nd ref="787321354"/>
+ <nd ref="787368008"/>
+ <nd ref="787369807"/>
+ <nd ref="787320196"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel de l'Horloge"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotelhorloge.fr/"/>
+ </way>
+ <way id="63638362">
+ <nd ref="787359859"/>
+ <nd ref="787352346"/>
+ <nd ref="787320394"/>
+ <nd ref="787361051"/>
+ <nd ref="787345773"/>
+ <nd ref="787370807"/>
+ <nd ref="787320959"/>
+ <nd ref="787339222"/>
+ <nd ref="787379260"/>
+ <nd ref="787320518"/>
+ <nd ref="787331101"/>
+ <nd ref="787374426"/>
+ <nd ref="787383819"/>
+ <nd ref="787345489"/>
+ <nd ref="787356612"/>
+ <nd ref="787362321"/>
+ <nd ref="1292143812"/>
+ <nd ref="787332784"/>
+ <nd ref="787359859"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Voltaire République"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="start_date" v="1851...1914"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="63638587">
<nd ref="787348825"/>
<nd ref="787360855"/>
@@ -15834,31 +18281,11 @@
<nd ref="787380784"/>
<nd ref="787348825"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="63639857">
- <nd ref="787378181"/>
- <nd ref="787355717"/>
- <nd ref="1301073488"/>
- <nd ref="787334181"/>
- <nd ref="787352233"/>
- <nd ref="787322003"/>
- <nd ref="787404953"/>
- <nd ref="787407060"/>
- <nd ref="787378181"/>
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="7"/>
- <tag k="addr:postcode" v="75011"/>
- <tag k="addr:street" v="Rue Pache"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Le Musée du Fumeur"/>
- <tag k="phone" v="01.46.59.05.51"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.museedufumeur.net"/>
- </way>
<way id="63641010">
<nd ref="787349691"/>
<nd ref="787344051"/>
@@ -15902,6 +18329,29 @@
<tag k="website" v="http://www.ibishotel.com/gb/hotel-1399-ibis-paris-bastille-opera-11eme/index.shtml"/>
<tag k="wheelchair" v="yes"/>
</way>
+ <way id="63643450">
+ <nd ref="787341922"/>
+ <nd ref="787388380"/>
+ <nd ref="787317772"/>
+ <nd ref="1326932213"/>
+ <nd ref="1326932089"/>
+ <nd ref="787363260"/>
+ <nd ref="787386299"/>
+ <nd ref="787337717"/>
+ <nd ref="787367520"/>
+ <nd ref="787409481"/>
+ <nd ref="787360070"/>
+ <nd ref="787352217"/>
+ <nd ref="787368888"/>
+ <nd ref="787376645"/>
+ <nd ref="787341922"/>
+ <tag k="architect" v="A. Champy"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Paris Bastille Boutet MGallery by Sofitel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q18981063"/>
+ </way>
<way id="63648762">
<nd ref="787370976"/>
<nd ref="787352860"/>
@@ -15913,11 +18363,15 @@
<nd ref="787352249"/>
<nd ref="787355679"/>
<nd ref="787370976"/>
+ <tag k="addr:housenumber" v="12"/>
+ <tag k="addr:street" v="Rue Léon Frot"/>
<tag k="building" v="yes"/>
- <tag k="fax" v="(33) 1 43 71 88 44"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="fax" v="+33 1 43 71 88 44"/>
+ <tag k="internet_access" v="wlan"/>
<tag k="name" v="Comfort Hotel Nation - Paris 11"/>
<tag k="operator" v="Comfort"/>
- <tag k="phone" v="(33) 1 43 71 66 00"/>
+ <tag k="phone" v="+33 1 43 71 66 00"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.choicehotels.fr/fr/comfort-hotel-fr260"/>
@@ -16031,6 +18485,27 @@
<tag k="website" v="http://www.ibishotel.com/fr/hotel-1401-ibis-paris-la-villette-cite-des-sciences-19eme/location.shtml"/>
<tag k="wheelchair" v="yes"/>
</way>
+ <way id="64308687">
+ <nd ref="791793968"/>
+ <nd ref="791793734"/>
+ <nd ref="791793989"/>
+ <nd ref="791793704"/>
+ <nd ref="791793938"/>
+ <nd ref="791794004"/>
+ <nd ref="791793322"/>
+ <nd ref="791793999"/>
+ <nd ref="791793753"/>
+ <nd ref="791793074"/>
+ <nd ref="804245725"/>
+ <nd ref="791793197"/>
+ <nd ref="791793968"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://www.louison-hotel.com/"/>
+ <tag k="name" v="Louison"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="64308718">
<nd ref="791793877"/>
<nd ref="791793630"/>
@@ -16049,6 +18524,24 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="64308728">
+ <nd ref="791793083"/>
+ <nd ref="804285885"/>
+ <nd ref="791793270"/>
+ <nd ref="791793665"/>
+ <nd ref="791793312"/>
+ <nd ref="791793542"/>
+ <nd ref="791793109"/>
+ <nd ref="791793000"/>
+ <nd ref="791793905"/>
+ <nd ref="791793993"/>
+ <nd ref="791793083"/>
+ <tag k="building" v="hotel"/>
+ <tag k="name" v="Hôtel La Parizienne"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="64314872">
<nd ref="791852737"/>
<nd ref="791851223"/>
@@ -16064,28 +18557,16 @@
<nd ref="801262240"/>
<nd ref="801263060"/>
<nd ref="791852737"/>
+ <tag k="alt_name" v="Hôtel de Montmorency-Bours"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Musée national Ernest-Hébert"/>
+ <tag k="name" v="Musée Ernest-Hébert (en travaux)"/>
+ <tag k="opening_hours" v="off"/>
+ <tag k="operator" v="Établissement Public du Musée d’Orsay"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
- </way>
- <way id="64315504">
- <nd ref="791864575"/>
- <nd ref="791863982"/>
- <nd ref="976978222"/>
- <nd ref="791862842"/>
- <nd ref="791862979"/>
- <nd ref="791861911"/>
- <nd ref="791862523"/>
- <nd ref="791861522"/>
- <nd ref="791862635"/>
- <nd ref="791865615"/>
- <nd ref="976978257"/>
- <nd ref="791864575"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Printania"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.musee-orsay.fr/fr/info/musee-hebert.html"/>
+ <tag k="wikidata" v="Q3329213"/>
+ <tag k="wikipedia" v="fr:Musée Hébert (Paris)"/>
</way>
<way id="64315513">
<nd ref="791865670"/>
@@ -16131,6 +18612,38 @@
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="64860692">
+ <nd ref="795101338"/>
+ <nd ref="795101701"/>
+ <nd ref="795088260"/>
+ <nd ref="795096011"/>
+ <nd ref="795068840"/>
+ <nd ref="795078040"/>
+ <nd ref="795084768"/>
+ <nd ref="795070482"/>
+ <nd ref="795091378"/>
+ <nd ref="795090591"/>
+ <nd ref="795065596"/>
+ <nd ref="795082427"/>
+ <nd ref="795079145"/>
+ <nd ref="795101338"/>
+ <tag k="addr:housenumber" v="73"/>
+ <tag k="addr:street" v="Rue Louise Michel"/>
+ <tag k="building" v="yes"/>
+ <tag k="email" v="contact@borisv-hotel.com"/>
+ <tag k="fax" v="+33 147375001"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Boris V. Hotel"/>
+ <tag k="operator" v="HappyCulture"/>
+ <tag k="phone" v="+33 147374703"/>
+ <tag k="rooms" v="47"/>
+ <tag k="smoking" v="no"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.borisv-hotel.com"/>
+ </way>
<way id="65089499">
<nd ref="796867052"/>
<nd ref="1193609324"/>
@@ -16143,54 +18656,13 @@
<nd ref="796866336"/>
<nd ref="796867052"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
<tag k="name" v="Institut Néerlandais"/>
- <tag k="phone" v="01.53.59.12.40"/>
+ <tag k="phone" v="+33153591240"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.institutneerlandais.com/"/>
- </way>
- <way id="67109766">
- <nd ref="810628518"/>
- <nd ref="810629365"/>
- <nd ref="810629174"/>
- <nd ref="810628967"/>
- <nd ref="810628748"/>
- <nd ref="810628611"/>
- <nd ref="842152748"/>
- <nd ref="810629503"/>
- <nd ref="810629304"/>
- <nd ref="810629065"/>
- <nd ref="810628860"/>
- <nd ref="810629294"/>
- <nd ref="810628840"/>
- <nd ref="810629040"/>
- <nd ref="810629308"/>
- <nd ref="810629512"/>
- <nd ref="810629733"/>
- <nd ref="810629462"/>
- <nd ref="810629258"/>
- <nd ref="810629021"/>
- <nd ref="810628823"/>
- <nd ref="810628677"/>
- <nd ref="842127826"/>
- <nd ref="810628508"/>
- <nd ref="810629608"/>
- <nd ref="810629357"/>
- <nd ref="810628518"/>
- <tag k="addr:housename" v="Hôtel le Crillon"/>
- <tag k="addr:housenumber" v="10"/>
- <tag k="addr:postcode" v="75008"/>
- <tag k="addr:street" v="place de la Concorde"/>
- <tag k="alt_name" v="Hôtel des Monnaies"/>
- <tag k="architect" v="Jacques-Ange Gabriel"/>
- <tag k="building" v="yes"/>
- <tag k="closed" v="yes"/>
- <tag k="name" v="Hôtel de Crillon (fermé)"/>
- <tag k="old_name" v="Hôtel d’Aumont; Hôtel de Courlande"/>
- <tag k="source" v="Cadastre. Mise à jour : 2010; survey"/>
- <tag k="start_date" v="1909-03-01..1909-03-31"/>
- <tag k="tourism" v="hotel"/>
- <tag k="wikidata" v="Q692768"/>
+ <tag k="wikidata" v="Q2180254"/>
</way>
<way id="67282955">
<nd ref="812637253"/>
@@ -16198,7 +18670,10 @@
<nd ref="812627276"/>
<nd ref="812632183"/>
<nd ref="812633849"/>
+ <nd ref="4653570041"/>
+ <nd ref="4653570042"/>
<nd ref="812610078"/>
+ <nd ref="4653570043"/>
<nd ref="812621449"/>
<nd ref="812633518"/>
<nd ref="812635520"/>
@@ -16216,7 +18691,7 @@
<tag k="building" v="yes"/>
<tag k="name" v="Novotel"/>
<tag k="phone" v="+33145211909"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise �� jour : 2010"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.novotel.com/"/>
</way>
@@ -16269,7 +18744,32 @@
<tag k="name" v="Ibis Budget"/>
<tag k="old_name" v="Etap Hotel"/>
<tag k="operator" v="Ibis Budget"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise �� jour : 2010"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="67283374">
+ <nd ref="812629592"/>
+ <nd ref="812630690"/>
+ <nd ref="812629964"/>
+ <nd ref="812607301"/>
+ <nd ref="812622412"/>
+ <nd ref="812615718"/>
+ <nd ref="812622658"/>
+ <nd ref="812608084"/>
+ <nd ref="812623858"/>
+ <nd ref="812616636"/>
+ <nd ref="812621343"/>
+ <nd ref="812621332"/>
+ <nd ref="812627821"/>
+ <nd ref="812637349"/>
+ <nd ref="812611740"/>
+ <nd ref="812613212"/>
+ <nd ref="812629592"/>
+ <tag k="building" v="hotel"/>
+ <tag k="name" v="Ibis Budget"/>
+ <tag k="operator" v="Ibis Budget"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="67353067">
@@ -16298,6 +18798,7 @@
<nd ref="813927504"/>
<nd ref="813927224"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
@@ -16326,11 +18827,26 @@
<nd ref="814099047"/>
<nd ref="814098761"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Paix Madeleine"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="67411583">
+ <nd ref="814099188"/>
+ <nd ref="814099017"/>
+ <nd ref="814098887"/>
+ <nd ref="842075693"/>
+ <nd ref="814099102"/>
+ <nd ref="814099188"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Le Petit Madeleine"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="67503044">
<nd ref="814834058"/>
<nd ref="814834020"/>
@@ -16347,17 +18863,24 @@
<nd ref="814834058"/>
<tag k="addr:city" v="Boulogne-Billancourt"/>
<tag k="addr:housenumber" v="24"/>
- <tag k="addr:postcode" v="92100"/>
+ <tag k="addr:postcode" v="75016"/>
<tag k="addr:street" v="Rue Nungesser et Coli"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="email" v="reservation@fondationlecorbusier.fr"/>
<tag k="heritage" v="2"/>
<tag k="heritage:operator" v="mhs"/>
<tag k="historic" v="building"/>
<tag k="mhs:inscription_date" v="1990"/>
<tag k="name" v="Immeuble Molitor"/>
+ <tag k="opening_hours" v="Sa 10:00-13:00, 13:30-17:00"/>
+ <tag k="phone" v="+33 1 42 88 75 72"/>
<tag k="ref:mhs" v="PA00088075"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.fondationlecorbusier.fr"/>
+ <tag k="wikidata" v="Q3796698"/>
+ <tag k="wikipedia" v="fr:Immeuble Molitor"/>
</way>
<way id="67543381">
<nd ref="815514295"/>
@@ -16397,6 +18920,45 @@
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="67557308">
+ <nd ref="815716500"/>
+ <nd ref="815716793"/>
+ <nd ref="815716565"/>
+ <nd ref="815716629"/>
+ <nd ref="815716584"/>
+ <nd ref="842075629"/>
+ <nd ref="815716500"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://www.hotellavoisier.com/"/>
+ <tag k="name" v="Le Lavoisier"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="67559032">
+ <nd ref="815777505"/>
+ <nd ref="815777341"/>
+ <nd ref="815777467"/>
+ <nd ref="815777480"/>
+ <nd ref="815777381"/>
+ <nd ref="815777265"/>
+ <nd ref="815777433"/>
+ <nd ref="815777306"/>
+ <nd ref="815777285"/>
+ <nd ref="815777513"/>
+ <nd ref="815777345"/>
+ <nd ref="815777209"/>
+ <nd ref="815777168"/>
+ <nd ref="815777469"/>
+ <nd ref="842076118"/>
+ <nd ref="815777505"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://le-mathurin.com/"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="67559067">
<nd ref="815777295"/>
<nd ref="815777404"/>
@@ -16404,12 +18966,12 @@
<nd ref="815777509"/>
<nd ref="842075919"/>
<nd ref="815777295"/>
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housename" v="Hôtel Opéra Marigny"/>
- <tag k="addr:housenumber" v="11"/>
- <tag k="addr:postcode" v="75011"/>
- <tag k="addr:street" v="Rue de l'Arcade"/>
<tag k="building" v="yes"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housename" v="Hôtel Opéra Marigny"/>
+ <tag k="contact:housenumber" v="11"/>
+ <tag k="contact:postcode" v="75011"/>
+ <tag k="contact:street" v="Rue de l'Arcade"/>
<tag k="name" v="Hôtel Opéra Marigny"/>
<tag k="operator" v="SAS MAJAREL"/>
<tag k="phone" v="+33 1 42 66 42 71"/>
@@ -16417,6 +18979,86 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hoteloperamarignyparis.com"/>
</way>
+ <way id="67559068">
+ <nd ref="815777404"/>
+ <nd ref="815777352"/>
+ <nd ref="842076016"/>
+ <nd ref="815777472"/>
+ <nd ref="815777279"/>
+ <nd ref="815777404"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="contact:website" v="http://www.hotels-emeraude.com/hotel/hotel-madeleine-haussmann/"/>
+ <tag k="name" v="Émeraude Madeleine Haussmann"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="67559195">
+ <nd ref="815786319"/>
+ <nd ref="815786901"/>
+ <nd ref="815786457"/>
+ <nd ref="815787051"/>
+ <nd ref="815786974"/>
+ <nd ref="815786731"/>
+ <nd ref="815787133"/>
+ <nd ref="815786849"/>
+ <nd ref="815786790"/>
+ <nd ref="842075955"/>
+ <nd ref="842075792"/>
+ <nd ref="815786531"/>
+ <nd ref="815786932"/>
+ <nd ref="815786319"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://www.concortel-paris-hotel.com/"/>
+ <tag k="name" v="Hôtel Concortel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="67561484">
+ <nd ref="815842582"/>
+ <nd ref="815842620"/>
+ <nd ref="815842779"/>
+ <nd ref="815842627"/>
+ <nd ref="815842866"/>
+ <nd ref="815842715"/>
+ <nd ref="815842673"/>
+ <nd ref="4431322568"/>
+ <nd ref="815842556"/>
+ <nd ref="815842905"/>
+ <nd ref="815842862"/>
+ <nd ref="815842713"/>
+ <nd ref="842128903"/>
+ <nd ref="815842786"/>
+ <nd ref="815842582"/>
+ <tag k="alt_name" v="No Address Hotel"/>
+ <tag k="building" v="yes"/>
+ <tag k="email" v="jaayme@groupe-allard.com"/>
+ <tag k="name" v="Hôtel de Pourtalès"/>
+ <tag k="phone" v="+33 6 38 65 93 79"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://noaddresshotels.com/"/>
+ <tag k="wikidata" v="Q3145934"/>
+ <tag k="wikipedia" v="fr:Hôtel de Pourtalès"/>
+ </way>
+ <way id="67561493">
+ <nd ref="815842586"/>
+ <nd ref="815842745"/>
+ <nd ref="815842821"/>
+ <nd ref="815842669"/>
+ <nd ref="842128458"/>
+ <nd ref="815842586"/>
+ <tag k="building" v="hotel"/>
+ <tag k="building:levels" v="5"/>
+ <tag k="name" v="Royal Opéra"/>
+ <tag k="phone" v="+33 1 42 66 14 44"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.paris-hotel-royalopera.com"/>
+ </way>
<way id="67561793">
<nd ref="815866494"/>
<nd ref="842128066"/>
@@ -16427,40 +19069,28 @@
<nd ref="815866817"/>
<nd ref="815866494"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Chavanel hôtel"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </way>
- <way id="67561797">
- <nd ref="815866542"/>
- <nd ref="842128691"/>
- <nd ref="815866889"/>
- <nd ref="815866851"/>
- <nd ref="842128547"/>
- <nd ref="815866688"/>
- <nd ref="815866722"/>
- <nd ref="815866575"/>
- <nd ref="815866537"/>
- <nd ref="815866616"/>
- <nd ref="815866443"/>
- <nd ref="815866767"/>
- <nd ref="815866492"/>
- <nd ref="815866856"/>
- <nd ref="815866814"/>
- <nd ref="815866651"/>
- <nd ref="815866892"/>
- <nd ref="815866732"/>
- <nd ref="815866690"/>
- <nd ref="815866545"/>
- <nd ref="815866771"/>
- <nd ref="815866623"/>
- <nd ref="815866542"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Chavanel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="67637716">
+ <nd ref="817222692"/>
+ <nd ref="817223065"/>
+ <nd ref="817222627"/>
+ <nd ref="817222415"/>
+ <nd ref="817223147"/>
+ <nd ref="817222767"/>
+ <nd ref="817222688"/>
+ <nd ref="841989440"/>
+ <nd ref="817222692"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Pinacothèque de Paris"/>
- <tag k="phone" v="01.42.68.02.01"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://www.hoteloceanic.fr/"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="www.pinacotheque.com/"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="67725920">
<nd ref="817809009"/>
@@ -16494,8 +19124,9 @@
<nd ref="841915376"/>
<nd ref="819030723"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Cervantes Paris"/>
- <tag k="phone" v="33-143-875-577"/>
+ <tag k="phone" v="+33143875577"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -16525,10 +19156,13 @@
<nd ref="822953634"/>
<nd ref="822953163"/>
<tag k="name" v="Musée Nissim de Camondo"/>
- <tag k="phone" v="01.44.55.57.50"/>
+ <tag k="opening_hours" v="We-Su 10:00-17:30"/>
+ <tag k="phone" v="+33144555750"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.lesartsdecoratifs.fr/"/>
+ <tag k="wikidata" v="Q1954498"/>
+ <tag k="wikipedia" v="fr:Musée Nissim-de-Camondo"/>
</way>
<way id="68353920">
<nd ref="822953165"/>
@@ -16543,7 +19177,9 @@
<nd ref="822951627"/>
<nd ref="841953241"/>
<nd ref="822953165"/>
- <tag k="fax" v="01.53.96.21.96"/>
+ <tag k="addr:housenumber" v="7"/>
+ <tag k="fax" v="+33153962196"/>
+ <tag k="fee" v="no"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
<tag k="internet_access:operator" v="Mairie de Paris"/>
@@ -16551,78 +19187,47 @@
<tag k="name:ru" v="Музей Чернуски"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
<tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.53.96.21.50"/>
+ <tag k="phone" v="+33153962150"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="source:internet_access" v="Paris Open Data"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://cernuschi.paris.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1667022"/>
<tag k="wikipedia" v="fr:Musée Cernuschi"/>
</way>
- <way id="68568682">
- <nd ref="824424248"/>
- <nd ref="824421823"/>
- <nd ref="824421894"/>
- <nd ref="824422845"/>
- <nd ref="824422022"/>
- <nd ref="824425869"/>
- <nd ref="824424779"/>
- <nd ref="824423831"/>
- <nd ref="824425142"/>
- <nd ref="824425840"/>
- <nd ref="824424342"/>
- <nd ref="824422318"/>
- <nd ref="824425489"/>
- <nd ref="824425093"/>
- <nd ref="824424176"/>
- <nd ref="824424306"/>
- <nd ref="824421691"/>
- <nd ref="824425154"/>
- <nd ref="824425510"/>
- <nd ref="824424418"/>
- <nd ref="824422915"/>
- <nd ref="824422998"/>
- <nd ref="824424087"/>
- <nd ref="824423248"/>
- <nd ref="824424294"/>
- <nd ref="824424650"/>
- <nd ref="824424742"/>
- <nd ref="824423575"/>
- <nd ref="824423115"/>
- <nd ref="824422441"/>
- <nd ref="824423034"/>
- <nd ref="824422433"/>
- <nd ref="824422824"/>
- <nd ref="824423778"/>
- <nd ref="824424503"/>
- <nd ref="824423520"/>
- <nd ref="824425633"/>
- <nd ref="824425341"/>
- <nd ref="824425485"/>
- <nd ref="824424812"/>
- <nd ref="824424520"/>
- <nd ref="824421619"/>
- <nd ref="2830984499"/>
- <nd ref="824423158"/>
- <nd ref="824422380"/>
- <nd ref="824421735"/>
- <nd ref="824421579"/>
- <nd ref="824425555"/>
- <nd ref="824421665"/>
- <nd ref="824424566"/>
- <nd ref="824422602"/>
- <nd ref="824421442"/>
- <nd ref="824424600"/>
- <nd ref="824424248"/>
- <tag k="alt_name:es" v="Museo_Rodin"/>
+ <way id="68353939">
+ <nd ref="822953933"/>
+ <nd ref="822952402"/>
+ <nd ref="822952966"/>
+ <nd ref="822951437"/>
+ <nd ref="841786410"/>
+ <nd ref="822951895"/>
+ <nd ref="822953702"/>
+ <nd ref="822951000"/>
+ <nd ref="822950984"/>
+ <nd ref="822951401"/>
+ <nd ref="822953197"/>
+ <nd ref="822953674"/>
+ <nd ref="822952119"/>
+ <nd ref="822952663"/>
+ <nd ref="822951217"/>
+ <nd ref="822951662"/>
+ <nd ref="822953642"/>
+ <nd ref="822950961"/>
+ <nd ref="822952625"/>
+ <nd ref="822953165"/>
+ <nd ref="841953241"/>
+ <nd ref="822951627"/>
+ <nd ref="822952087"/>
+ <nd ref="822953933"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Musée Rodin"/>
- <tag k="phone" v="01.44.18.61.10"/>
+ <tag k="name" v="Musée Cernuschi"/>
+ <tag k="name:en" v="Cernuschi Museum"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="www.musee-rodin.fr/"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Musée Rodin"/>
+ <tag k="wikidata" v="Q1667022"/>
+ <tag k="wikipedia" v="en:Musée Cernuschi"/>
</way>
<way id="68804399">
<nd ref="826680813"/>
@@ -16631,19 +19236,14 @@
<nd ref="826681465"/>
<nd ref="826682050"/>
<nd ref="826680783"/>
- <nd ref="826681325"/>
<nd ref="826681853"/>
- <nd ref="826680619"/>
<nd ref="826681195"/>
<nd ref="826681709"/>
- <nd ref="826682142"/>
<nd ref="826680875"/>
<nd ref="826681402"/>
<nd ref="826681955"/>
<nd ref="826680692"/>
- <nd ref="826681275"/>
<nd ref="826680569"/>
- <nd ref="826681304"/>
<nd ref="826681820"/>
<nd ref="826680591"/>
<nd ref="826681679"/>
@@ -16656,27 +19256,20 @@
<nd ref="826681249"/>
<nd ref="826681763"/>
<nd ref="826680542"/>
- <nd ref="826681099"/>
<nd ref="826681625"/>
<nd ref="826681132"/>
<nd ref="826681652"/>
<nd ref="826680985"/>
- <nd ref="826681513"/>
<nd ref="826682108"/>
- <nd ref="826680841"/>
<nd ref="826681373"/>
<nd ref="826681367"/>
<nd ref="3174271868"/>
<nd ref="826681901"/>
<nd ref="826680658"/>
<nd ref="826681238"/>
- <nd ref="826681756"/>
<nd ref="826680536"/>
- <nd ref="826681096"/>
<nd ref="826681623"/>
- <nd ref="826680567"/>
<nd ref="826681121"/>
- <nd ref="826681645"/>
<nd ref="826680983"/>
<nd ref="826681510"/>
<nd ref="826682102"/>
@@ -16685,10 +19278,8 @@
<nd ref="826681720"/>
<nd ref="826680499"/>
<nd ref="826681479"/>
- <nd ref="826682081"/>
<nd ref="826680801"/>
<nd ref="826681352"/>
- <nd ref="826681878"/>
<nd ref="3174271870"/>
<nd ref="826681596"/>
<nd ref="826682191"/>
@@ -16700,16 +19291,44 @@
<nd ref="826680773"/>
<nd ref="826682083"/>
<nd ref="826680813"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="158"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Boulevard Haussmann"/>
<tag k="building" v="yes"/>
<tag k="ele" v="36.0"/>
<tag k="name" v="Musée Jacquemart-André"/>
<tag k="opening_hours" v="10:00-18:00 &quot;Nocturnes les lundis et samedis jusqu’à 20h30 durant les périodes d’exposition&quot;"/>
- <tag k="phone" v="01.45.42.11.59"/>
+ <tag k="phone" v="+33145421159"/>
<tag k="source" v="Cadastre. Mise à jour : 2010;knowledge;survey"/>
<tag k="tourism" v="museum"/>
- <tag k="type" v="multipolygon"/>
<tag k="website" v="http://www.musee-jacquemart-andre.com/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1165526"/>
+ </way>
+ <way id="68828954">
+ <nd ref="826835642"/>
+ <nd ref="826835709"/>
+ <nd ref="826835773"/>
+ <nd ref="826835839"/>
+ <nd ref="826835537"/>
+ <nd ref="826835605"/>
+ <nd ref="841000760"/>
+ <nd ref="826835473"/>
+ <nd ref="826835540"/>
+ <nd ref="826835642"/>
+ <tag k="architect" v="Fernand Bloch"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:city" v="Paris"/>
+ <tag k="contact:housenumber" v="48"/>
+ <tag k="contact:postcode" v="75008"/>
+ <tag k="contact:street" v="Rue de Courcelles"/>
+ <tag k="name" v="La Maison Loo, Pagoda Paris"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="source:architect" v="data.gouv.fr:Ministère de la culture et de la communication - 05/2016"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.pagodaparis.com/"/>
+ <tag k="wikidata" v="Q22980254"/>
</way>
<way id="68910472">
<nd ref="827590655"/>
@@ -16734,35 +19353,6 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="68991438">
- <nd ref="2871998976"/>
- <nd ref="2484652757"/>
- <nd ref="2484635811"/>
- <nd ref="2484635809"/>
- <nd ref="828090923"/>
- <nd ref="2484635805"/>
- <nd ref="828091057"/>
- <nd ref="2484635813"/>
- <nd ref="828090109"/>
- <nd ref="828090231"/>
- <nd ref="828090372"/>
- <nd ref="828090567"/>
- <nd ref="2484635817"/>
- <nd ref="2484635821"/>
- <nd ref="2484635825"/>
- <nd ref="2484635827"/>
- <nd ref="2484696525"/>
- <nd ref="2484652755"/>
- <nd ref="2871998976"/>
- <tag k="addr:housenumber" v="51-57"/>
- <tag k="addr:street" v="Rue de Courcelles"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="L'Hôtel du Collectionneur Arc de Triomphe"/>
- <tag k="phone" v="+33 1 58366700"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.hotelducollectionneur.com/"/>
- </way>
<way id="68995839">
<nd ref="828134228"/>
<nd ref="828134083"/>
@@ -16778,30 +19368,113 @@
<nd ref="828134415"/>
<nd ref="828134228"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Sofitel Arc de Triomphe"/>
<tag k="operator" v="Accor"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="5"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="69220460">
- <nd ref="829896384"/>
- <nd ref="829898056"/>
- <nd ref="829896468"/>
- <nd ref="829899811"/>
- <nd ref="829897740"/>
- <nd ref="1242530189"/>
- <nd ref="829893930"/>
- <nd ref="829899610"/>
- <nd ref="829900109"/>
- <nd ref="829900157"/>
- <nd ref="829896384"/>
+ <way id="69220146">
+ <nd ref="829896522"/>
+ <nd ref="829895583"/>
+ <nd ref="829895474"/>
+ <nd ref="829893570"/>
+ <nd ref="829899647"/>
+ <nd ref="829894314"/>
+ <nd ref="829902978"/>
+ <nd ref="829897719"/>
+ <nd ref="829896759"/>
+ <nd ref="1242438817"/>
+ <nd ref="829896522"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Axel Opéra"/>
- <tag k="source" v="survey; Cadastre. Mise à jour : 2010"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Ibis Styles"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69220302">
+ <nd ref="829897879"/>
+ <nd ref="829902626"/>
+ <nd ref="829891756"/>
+ <nd ref="4045868712"/>
+ <nd ref="1242504746"/>
+ <nd ref="829897403"/>
+ <nd ref="829900571"/>
+ <nd ref="829899506"/>
+ <nd ref="829899015"/>
+ <nd ref="829899819"/>
+ <nd ref="829897879"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Ibis Paris Grands Boulevards Opéra"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69220793">
+ <nd ref="829899922"/>
+ <nd ref="829892857"/>
+ <nd ref="1242439641"/>
+ <nd ref="829900660"/>
+ <nd ref="829901992"/>
+ <nd ref="829902536"/>
+ <nd ref="829899922"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel du Leman"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="69220924">
+ <nd ref="829901830"/>
+ <nd ref="829892992"/>
+ <nd ref="829896483"/>
+ <nd ref="1242530236"/>
+ <nd ref="829902324"/>
+ <nd ref="3564245508"/>
+ <nd ref="829901074"/>
+ <nd ref="1242530793"/>
+ <nd ref="829894486"/>
+ <nd ref="829893740"/>
+ <nd ref="829899940"/>
+ <nd ref="829893558"/>
+ <nd ref="829896165"/>
+ <nd ref="829896659"/>
+ <nd ref="829902791"/>
+ <nd ref="829899624"/>
+ <nd ref="829891962"/>
+ <nd ref="829901830"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Villa Opéra Drouot"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69221071">
+ <nd ref="829895297"/>
+ <nd ref="829896740"/>
+ <nd ref="829891768"/>
+ <nd ref="829900621"/>
+ <nd ref="829900013"/>
+ <nd ref="829902835"/>
+ <nd ref="829892937"/>
+ <nd ref="829899730"/>
+ <nd ref="829897516"/>
+ <nd ref="829897917"/>
+ <nd ref="829900364"/>
+ <nd ref="829891833"/>
+ <nd ref="829895434"/>
+ <nd ref="1242530848"/>
+ <nd ref="829895297"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="name" v="Mercure Paris Monty Opéra"/>
+ <tag k="operator" v="Accor"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="69221132">
<nd ref="829902761"/>
<nd ref="829896141"/>
@@ -16809,11 +19482,110 @@
<nd ref="1242530305"/>
<nd ref="829902761"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Royal-Bergère"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="69224139">
+ <nd ref="829928792"/>
+ <nd ref="829922799"/>
+ <nd ref="829922459"/>
+ <nd ref="829925464"/>
+ <nd ref="829921842"/>
+ <nd ref="4198872602"/>
+ <nd ref="829928495"/>
+ <nd ref="829921858"/>
+ <nd ref="829929073"/>
+ <nd ref="829928792"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://www.hotelgeorgesand.com/"/>
+ <tag k="name" v="George Sand"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69224150">
+ <nd ref="829923475"/>
+ <nd ref="829922026"/>
+ <nd ref="829923020"/>
+ <nd ref="829927362"/>
+ <nd ref="829922088"/>
+ <nd ref="829922090"/>
+ <nd ref="1227307529"/>
+ <nd ref="829926478"/>
+ <nd ref="829923475"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="17"/>
+ <tag k="addr:postcode" v="75009"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="building" v="yes"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Le Péra"/>
+ <tag k="rooms" v="3"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotellepera.com/"/>
+ </way>
+ <way id="69226491">
+ <nd ref="829925419"/>
+ <nd ref="829928902"/>
+ <nd ref="829929384"/>
+ <nd ref="829928564"/>
+ <nd ref="1227307403"/>
+ <nd ref="829927127"/>
+ <nd ref="829925419"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Astra"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69226757">
+ <nd ref="829929384"/>
+ <nd ref="829921567"/>
+ <nd ref="829923105"/>
+ <nd ref="829922377"/>
+ <nd ref="1227307658"/>
+ <nd ref="829928564"/>
+ <nd ref="829929384"/>
+ <tag k="addr:housenumber" v="27"/>
+ <tag k="addr:postcode" v="75009"/>
+ <tag k="addr:street" v="Rue de Caumartin"/>
+ <tag k="award:hotelstars" v="3"/>
+ <tag k="brand" v="Astotel"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel Caumartin Opéra"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="phone" v="+33 147429595"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.astotel.com/hotel/hotel-caumartin-opera/"/>
+ </way>
+ <way id="69257244">
+ <nd ref="830145635"/>
+ <nd ref="830143931"/>
+ <nd ref="830150645"/>
+ <nd ref="830147009"/>
+ <nd ref="830142349"/>
+ <nd ref="830145558"/>
+ <nd ref="830148281"/>
+ <nd ref="830149264"/>
+ <nd ref="830153156"/>
+ <nd ref="830151167"/>
+ <nd ref="1234196582"/>
+ <nd ref="830145635"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Pavillon de Paris"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010 + survey"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.pavillonparis.com/"/>
+ </way>
<way id="69257260">
<nd ref="830142557"/>
<nd ref="830142872"/>
@@ -16824,17 +19596,72 @@
<nd ref="1234207276"/>
<nd ref="830142557"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="email" v="hotel.rotary@free.fr"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="yes"/>
<tag k="name" v="Hôtel Rotary"/>
- <tag k="phone" v="+33-1-48742639"/>
+ <tag k="phone" v="+33 1 48 74 26 39"/>
<tag k="smoking" v="no"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotel-rotary.fr/"/>
</way>
+ <way id="69257395">
+ <nd ref="830142356"/>
+ <nd ref="830144291"/>
+ <nd ref="830143433"/>
+ <nd ref="830144793"/>
+ <nd ref="830146855"/>
+ <nd ref="830143245"/>
+ <nd ref="1234174861"/>
+ <nd ref="830142356"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Villathéna"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69257423">
+ <nd ref="830146199"/>
+ <nd ref="830147953"/>
+ <nd ref="830150299"/>
+ <nd ref="1234196629"/>
+ <nd ref="830145289"/>
+ <nd ref="830142545"/>
+ <nd ref="830149445"/>
+ <nd ref="830147491"/>
+ <nd ref="830141710"/>
+ <nd ref="830151970"/>
+ <nd ref="830152530"/>
+ <nd ref="830146199"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Le Cardinal"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.lecardinal.fr/"/>
+ </way>
+ <way id="69257474">
+ <nd ref="830147878"/>
+ <nd ref="830150666"/>
+ <nd ref="830147157"/>
+ <nd ref="830147977"/>
+ <nd ref="1234196557"/>
+ <nd ref="830141934"/>
+ <nd ref="830146469"/>
+ <nd ref="830148138"/>
+ <nd ref="830148858"/>
+ <nd ref="830151781"/>
+ <nd ref="830147878"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="New Hotel Opera"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="69257501">
<nd ref="830146604"/>
<nd ref="830142556"/>
@@ -16848,6 +19675,64 @@
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="69257697">
+ <nd ref="830143245"/>
+ <nd ref="830146855"/>
+ <nd ref="830150417"/>
+ <nd ref="830150275"/>
+ <nd ref="830148547"/>
+ <nd ref="830142641"/>
+ <nd ref="830148025"/>
+ <nd ref="830152164"/>
+ <nd ref="830147443"/>
+ <nd ref="1234174567"/>
+ <nd ref="830143245"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="ATN Hôtel"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69257755">
+ <nd ref="830149011"/>
+ <nd ref="830151486"/>
+ <nd ref="830143315"/>
+ <nd ref="1234207374"/>
+ <nd ref="830145847"/>
+ <nd ref="1234207177"/>
+ <nd ref="830150483"/>
+ <nd ref="1234207128"/>
+ <nd ref="830149011"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Vintimille"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69257775">
+ <nd ref="830143507"/>
+ <nd ref="830142606"/>
+ <nd ref="830145493"/>
+ <nd ref="830149265"/>
+ <nd ref="830144321"/>
+ <nd ref="1234196730"/>
+ <nd ref="830142669"/>
+ <nd ref="830146267"/>
+ <nd ref="830147597"/>
+ <nd ref="830143673"/>
+ <nd ref="830142107"/>
+ <nd ref="830151691"/>
+ <nd ref="830143722"/>
+ <nd ref="830143507"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Le Grey Hôtel"/>
+ <tag k="source" v="survey"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="69257877">
<nd ref="830143077"/>
<nd ref="830153158"/>
@@ -16857,11 +19742,52 @@
<nd ref="830147159"/>
<nd ref="830143077"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Le Secret de Paris"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="69363886">
+ <nd ref="831124850"/>
+ <nd ref="1232773167"/>
+ <nd ref="831123958"/>
+ <nd ref="831123313"/>
+ <nd ref="831123421"/>
+ <nd ref="831124333"/>
+ <nd ref="1232773667"/>
+ <nd ref="831125335"/>
+ <nd ref="831122553"/>
+ <nd ref="831126214"/>
+ <nd ref="831126716"/>
+ <nd ref="831121948"/>
+ <nd ref="831124287"/>
+ <nd ref="831124502"/>
+ <nd ref="831124850"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Excelsior"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="69417387">
+ <nd ref="831437877"/>
+ <nd ref="831433895"/>
+ <nd ref="831451708"/>
+ <nd ref="831435996"/>
+ <nd ref="831439332"/>
+ <nd ref="831451857"/>
+ <nd ref="831437555"/>
+ <nd ref="831448464"/>
+ <nd ref="1236409647"/>
+ <nd ref="831437877"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Carlton's"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q3145445"/>
+ </way>
<way id="69417517">
<nd ref="831440340"/>
<nd ref="831433218"/>
@@ -16885,26 +19811,13 @@
<tag k="addr:postcode" v="75009"/>
<tag k="addr:street" v="Rue Buffault"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel Touring"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotel-touring.fr/"/>
</way>
- <way id="69549161">
- <nd ref="832376333"/>
- <nd ref="832378174"/>
- <nd ref="1235164449"/>
- <nd ref="832377416"/>
- <nd ref="832376949"/>
- <nd ref="832376624"/>
- <nd ref="832378067"/>
- <nd ref="832376333"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Hôtel France Albion"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </way>
<way id="69549207">
<nd ref="832378324"/>
<nd ref="832378830"/>
@@ -16918,10 +19831,11 @@
<nd ref="832376582"/>
<nd ref="832378324"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
- <tag k="name" v="Hôtelp Chateaudun Opéra"/>
- <tag k="phone" v="+33-1-57323616"/>
+ <tag k="name" v="Hôtel Chateaudun Opéra"/>
+ <tag k="phone" v="+33 1 57 32 36 16"/>
<tag k="smoking" v="no"/>
<tag k="source" v="survey"/>
<tag k="stars" v="3"/>
@@ -16963,6 +19877,7 @@
<nd ref="1232995919"/>
<nd ref="832530811"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
<tag k="name" v="Hôtel Touraine Opera"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
@@ -16985,6 +19900,7 @@
<tag k="addr:postcode" v="75008"/>
<tag k="addr:street" v="Rue Vernet"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Vernet"/>
<tag k="phone" v="+33 1 44319800"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -16992,6 +19908,46 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.hotelvernet.com/"/>
</way>
+ <way id="69883469">
+ <nd ref="835351891"/>
+ <nd ref="835352056"/>
+ <nd ref="835351526"/>
+ <nd ref="3435006726"/>
+ <nd ref="835351862"/>
+ <nd ref="835351849"/>
+ <nd ref="835351951"/>
+ <nd ref="835351916"/>
+ <nd ref="835351913"/>
+ <nd ref="835351891"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="20"/>
+ <tag k="addr:postcode" v="75007"/>
+ <tag k="addr:street" v="Avenue de Tourville"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Eiffel Turenne"/>
+ <tag k="rooms" v="34"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="70002966">
+ <nd ref="836339545"/>
+ <nd ref="836358123"/>
+ <nd ref="836345705"/>
+ <nd ref="836380675"/>
+ <nd ref="836332619"/>
+ <nd ref="836397452"/>
+ <nd ref="836402784"/>
+ <nd ref="836385123"/>
+ <nd ref="1991021939"/>
+ <nd ref="836396429"/>
+ <nd ref="836339545"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Levert"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="70003066">
<nd ref="836337364"/>
<nd ref="836411857"/>
@@ -17026,13 +19982,66 @@
<nd ref="1701052265"/>
<nd ref="836341968"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel Lilas-Gambetta"/>
- <tag k="phone" v="33 (0) 1 40 31 85 60"/>
+ <tag k="phone" v="+33 1 40 31 85 60"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.lilas-gambetta.com/"/>
</way>
+ <way id="70150405">
+ <nd ref="837798969"/>
+ <nd ref="837800679"/>
+ <nd ref="837777761"/>
+ <nd ref="837775711"/>
+ <nd ref="837815624"/>
+ <nd ref="837797462"/>
+ <nd ref="837789356"/>
+ <nd ref="837827602"/>
+ <nd ref="837849438"/>
+ <nd ref="837848433"/>
+ <nd ref="837816382"/>
+ <nd ref="837795469"/>
+ <nd ref="837794818"/>
+ <nd ref="837765070"/>
+ <nd ref="837838533"/>
+ <nd ref="837822469"/>
+ <nd ref="837820471"/>
+ <nd ref="837798969"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
+ <tag k="name" v="Résidence Internationale de Paris"/>
+ <tag k="operator" v="Fédération Française Handisport"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <way id="70192510">
+ <nd ref="838122261"/>
+ <nd ref="838122610"/>
+ <nd ref="838122940"/>
+ <nd ref="838123070"/>
+ <nd ref="839872616"/>
+ <nd ref="838122270"/>
+ <nd ref="838121799"/>
+ <nd ref="838122664"/>
+ <nd ref="838122211"/>
+ <nd ref="838122086"/>
+ <nd ref="838123098"/>
+ <nd ref="838122335"/>
+ <nd ref="838121863"/>
+ <nd ref="838123211"/>
+ <nd ref="838122774"/>
+ <nd ref="838121830"/>
+ <nd ref="838122261"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Napoléon"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q2915167"/>
+ </way>
<way id="73119871">
<nd ref="867532520"/>
<nd ref="867525384"/>
@@ -17137,6 +20146,44 @@
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="75748017">
+ <nd ref="894264889"/>
+ <nd ref="894273835"/>
+ <nd ref="3837272095"/>
+ <nd ref="894237410"/>
+ <nd ref="894258634"/>
+ <nd ref="894256748"/>
+ <nd ref="894264889"/>
+ <tag k="beds" v="41"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Art Hôtel Congrès"/>
+ <tag k="operator" v="Amar Albert"/>
+ <tag k="phone" v="+33 1 53 11 40 00"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="75748340">
+ <nd ref="894232926"/>
+ <nd ref="894264966"/>
+ <nd ref="2904917169"/>
+ <nd ref="894274106"/>
+ <nd ref="894244090"/>
+ <nd ref="894246062"/>
+ <nd ref="894232926"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Kimotel"/>
+ <tag k="operator" v="M Khamari"/>
+ <tag k="phone" v="+33 1 46 27 64 67"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="75748357">
<nd ref="894250356"/>
<nd ref="894246371"/>
@@ -17156,11 +20203,59 @@
<tag k="addr:country" v="FR"/>
<tag k="addr:street" v="Rue des Moines"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Viator"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="1"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="75748710">
+ <nd ref="894271235"/>
+ <nd ref="894230737"/>
+ <nd ref="894232239"/>
+ <nd ref="3423948685"/>
+ <nd ref="894230901"/>
+ <nd ref="894252566"/>
+ <nd ref="894239468"/>
+ <nd ref="894253277"/>
+ <nd ref="894264873"/>
+ <nd ref="894248303"/>
+ <nd ref="894253458"/>
+ <nd ref="894250633"/>
+ <nd ref="894232714"/>
+ <nd ref="894237613"/>
+ <nd ref="894230778"/>
+ <nd ref="894271235"/>
+ <tag k="addr:street" v="Rue Darcet"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Darcet"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:15-03-28"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="75749013">
+ <nd ref="894231843"/>
+ <nd ref="894250939"/>
+ <nd ref="894258115"/>
+ <nd ref="894246668"/>
+ <nd ref="894266919"/>
+ <nd ref="894232856"/>
+ <nd ref="2179075889"/>
+ <nd ref="894234483"/>
+ <nd ref="894231843"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="5"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue du Mont-Dore"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Hôtel de Cabourg"/>
+ <tag k="phone" v="+33145224123"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="75749542">
<nd ref="894247632"/>
<nd ref="894253879"/>
@@ -17170,19 +20265,42 @@
<nd ref="894242231"/>
<nd ref="894264636"/>
<nd ref="894239984"/>
+ <nd ref="3423948686"/>
<nd ref="1343714770"/>
<nd ref="894247632"/>
<tag k="addr:city" v="Paris"/>
<tag k="addr:country" v="FR"/>
- <tag k="addr:housenumber" v="17"/>
<tag k="addr:postcode" v="75017"/>
<tag k="addr:street" v="Rue Darcet"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Camélia International"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:15-03-28"/>
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="75749652">
+ <nd ref="894246803"/>
+ <nd ref="894239398"/>
+ <nd ref="894273337"/>
+ <nd ref="894246252"/>
+ <nd ref="894233954"/>
+ <nd ref="894273649"/>
+ <nd ref="894232892"/>
+ <nd ref="894237935"/>
+ <nd ref="894244422"/>
+ <nd ref="3012899073"/>
+ <nd ref="894246803"/>
+ <tag k="building" v="yes"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Hôtel De L'Avenir Jonquière"/>
+ <tag k="operator" v="Hadjiat Latifa"/>
+ <tag k="phone" v="+33 9 67 47 88 08"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="1"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="75750127">
<nd ref="894233838"/>
<nd ref="894240220"/>
@@ -17234,22 +20352,109 @@
<nd ref="894239665"/>
<nd ref="894256129"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="77916138">
- <nd ref="915736822"/>
- <nd ref="915739306"/>
- <nd ref="915740086"/>
- <nd ref="915736182"/>
- <nd ref="915735700"/>
- <nd ref="915739125"/>
- <nd ref="915736744"/>
- <nd ref="915735832"/>
- <nd ref="915736822"/>
+ <way id="75751059">
+ <nd ref="894234535"/>
+ <nd ref="894258978"/>
+ <nd ref="894268127"/>
+ <nd ref="2736349158"/>
+ <nd ref="894240843"/>
+ <nd ref="894241363"/>
+ <nd ref="894275104"/>
+ <nd ref="894258225"/>
+ <nd ref="894265537"/>
+ <nd ref="894234535"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Timhotel Montmartre"/>
- <tag k="source" v="extraction vectorielle v1 cadastre-dgi-fr source : Direction Générale des Impôts - Cadas. Mise à jour : 2010"/>
+ <tag k="name" v="Azur Hotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="75751347">
+ <nd ref="894236980"/>
+ <nd ref="894243227"/>
+ <nd ref="894235034"/>
+ <nd ref="894252718"/>
+ <nd ref="894262313"/>
+ <nd ref="894239280"/>
+ <nd ref="894249669"/>
+ <nd ref="2473600711"/>
+ <nd ref="894236980"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Eldorado"/>
+ <tag k="phone" v="+33 1 45 22 35 21"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010/survey:15-04-03"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://eldoradohotel.fr/notre-hotel/"/>
+ </way>
+ <way id="77678280">
+ <nd ref="913747321"/>
+ <nd ref="913746903"/>
+ <nd ref="913743828"/>
+ <nd ref="913733209"/>
+ <nd ref="913743363"/>
+ <nd ref="913734751"/>
+ <nd ref="913748024"/>
+ <nd ref="913741141"/>
+ <nd ref="913734550"/>
+ <nd ref="913743217"/>
+ <nd ref="913744220"/>
+ <nd ref="913742213"/>
+ <nd ref="913733653"/>
+ <nd ref="913737497"/>
+ <nd ref="913745053"/>
+ <nd ref="913739925"/>
+ <nd ref="913747321"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Best Western Prince Montmartre"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="77806950">
+ <nd ref="914767269"/>
+ <nd ref="914767960"/>
+ <nd ref="914767089"/>
+ <nd ref="914797585"/>
+ <nd ref="1920885240"/>
+ <nd ref="914789644"/>
+ <nd ref="914779119"/>
+ <nd ref="914785457"/>
+ <nd ref="914792498"/>
+ <nd ref="914793372"/>
+ <nd ref="914763777"/>
+ <nd ref="914776362"/>
+ <nd ref="914767269"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:street" v="Rue Seveste"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Luxia"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="77937761">
+ <nd ref="915962448"/>
+ <nd ref="915958931"/>
+ <nd ref="915956618"/>
+ <nd ref="915957918"/>
+ <nd ref="915963730"/>
+ <nd ref="915960462"/>
+ <nd ref="915968281"/>
+ <nd ref="1919226981"/>
+ <nd ref="3633336514"/>
+ <nd ref="915964080"/>
+ <nd ref="915960811"/>
+ <nd ref="915967877"/>
+ <nd ref="915955503"/>
+ <nd ref="915959866"/>
+ <nd ref="915962448"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Le Relais Montmartre"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2015"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="78145240">
@@ -17336,6 +20541,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
</way>
<way id="78271385">
<nd ref="919129132"/>
@@ -17380,32 +20586,20 @@
<nd ref="919129449"/>
<nd ref="919127668"/>
<nd ref="919129132"/>
+ <tag k="architect" v="Frank Gehry"/>
+ <tag k="architect:wikidata" v="Q180374"/>
+ <tag k="architect:wikipedia" v="fr:Frank Gehry"/>
<tag k="building" v="yes"/>
<tag k="name" v="Cinémathèque Française"/>
<tag k="name:uk" v="Французька сінематека"/>
- <tag k="phone" v="01.71.19.33.33"/>
+ <tag k="phone" v="+33 1 71193333"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="www.cinematheque.fr/"/>
+ <tag k="website" v="http://www.cinematheque.fr/"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q174274"/>
<tag k="wikipedia" v="fr:Cinémathèque française"/>
</way>
- <way id="78407176">
- <nd ref="920181375"/>
- <nd ref="920170308"/>
- <nd ref="920172913"/>
- <nd ref="2503986737"/>
- <nd ref="920184896"/>
- <nd ref="920178471"/>
- <nd ref="920175462"/>
- <nd ref="920181336"/>
- <nd ref="920169182"/>
- <nd ref="920181375"/>
- <tag k="addr:housenumber" v="14"/>
- <tag k="name" v="Aladin"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </way>
<way id="78469891">
<nd ref="920920112"/>
<nd ref="920921494"/>
@@ -17428,6 +20622,7 @@
<nd ref="2268836756"/>
<nd ref="920920112"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
<tag k="name" v="Hôtel du Roussillon"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -17456,6 +20651,7 @@
<nd ref="920919672"/>
<nd ref="920913388"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
<tag k="name" v="Hôtel Verlaine"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -17479,6 +20675,7 @@
<nd ref="920914950"/>
<nd ref="920923779"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Mercure Blanqui Place d'Italie"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -17574,7 +20771,8 @@
<nd ref="2272081569"/>
<nd ref="921516280"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Manet"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Coq Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
@@ -17594,30 +20792,14 @@
<nd ref="921523793"/>
<tag k="building" v="yes"/>
<tag k="email" v="H0934@accor.com"/>
- <tag k="fax" v="(+33)1/45821916"/>
+ <tag k="fax" v="+33 1 45 82 19 16"/>
<tag k="name" v="Hôtel Mercure"/>
<tag k="operator" v="Mercure"/>
- <tag k="phone" v="(+33)1/45824800"/>
+ <tag k="phone" v="+33 1 45 82 48 00"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.mercure.com/fr/hotel-0934-mercure-paris-austerlitz-bibliotheque/index.shtml"/>
</way>
- <way id="78535908">
- <nd ref="921516528"/>
- <nd ref="921531036"/>
- <nd ref="921543513"/>
- <nd ref="921512214"/>
- <nd ref="921529367"/>
- <nd ref="921530905"/>
- <nd ref="2255903819"/>
- <nd ref="921516528"/>
- <tag k="building" v="yes"/>
- <tag k="internet_access:fee" v="yes"/>
- <tag k="name" v="Hôtel Rubens"/>
- <tag k="phone" v="0143317330"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="hotel"/>
- </way>
<way id="79083291">
<nd ref="924144981"/>
<nd ref="924135512"/>
@@ -17686,6 +20868,32 @@
<tag k="tourism" v="hotel"/>
<tag k="website" v="hotelroyalfromentin.com"/>
</way>
+ <way id="79107129">
+ <nd ref="924400226"/>
+ <nd ref="924400961"/>
+ <nd ref="924401086"/>
+ <nd ref="924404830"/>
+ <nd ref="924406416"/>
+ <nd ref="924403501"/>
+ <nd ref="924400010"/>
+ <nd ref="924402616"/>
+ <nd ref="924402960"/>
+ <nd ref="924400949"/>
+ <nd ref="924400124"/>
+ <nd ref="1234207448"/>
+ <nd ref="924402848"/>
+ <nd ref="924400478"/>
+ <nd ref="924406521"/>
+ <nd ref="924406472"/>
+ <nd ref="924400226"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Fiat"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadas. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="79219238">
<nd ref="925427738"/>
<nd ref="925427539"/>
@@ -17709,6 +20917,7 @@
<tag k="source" v="Cadastre. Mise à jour : 2010; survey"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.fondation-pb-ysl.net"/>
+ <tag k="wikidata" v="Q3075540"/>
<tag k="wikipedia" v="fr:Fondation Pierre Bergé - Yves Saint-Laurent"/>
</way>
<way id="79219308">
@@ -17802,7 +21011,7 @@
<tag k="name:ru" v="Музей современного искусства"/>
<tag k="name:zh" v="巴黎现代艺术博物馆"/>
<tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.53.67.40.00"/>
+ <tag k="phone" v="+33153674000"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="source:internet_access" v="Paris Open Data"/>
<tag k="tourism" v="museum"/>
@@ -17889,12 +21098,42 @@
<tag k="name:fr" v="Palais de Tokyo"/>
<tag k="name:ja" v="パレ・ド・トーキョー"/>
<tag k="name:uk" v="Токійський палац"/>
- <tag k="phone" v="01.47.23.54.01"/>
+ <tag k="opening_hours" v="Mo-Su 12:00-24:00; Tu off; Jan 01 off; May 01 off; Dec 25 off; Dec 24 12:00- 18:00; Dec 31 12:00- 18:00"/>
+ <tag k="phone" v="+33147235401"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.palaisdetokyo.com/"/>
+ <tag k="wikidata" v="Q1535247"/>
<tag k="wikipedia" v="fr:Palais de Tokyo"/>
</way>
+ <way id="79273507">
+ <nd ref="925860666"/>
+ <nd ref="925860655"/>
+ <nd ref="925860341"/>
+ <nd ref="925860101"/>
+ <nd ref="925860723"/>
+ <nd ref="925860403"/>
+ <nd ref="925860164"/>
+ <nd ref="925860804"/>
+ <nd ref="925860811"/>
+ <nd ref="925860485"/>
+ <nd ref="925860231"/>
+ <nd ref="925859982"/>
+ <nd ref="925860576"/>
+ <nd ref="925860292"/>
+ <nd ref="925860047"/>
+ <nd ref="925860669"/>
+ <nd ref="925860280"/>
+ <nd ref="925860034"/>
+ <nd ref="925860083"/>
+ <nd ref="925860666"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="3"/>
+ <tag k="name" v="Mona Bismarck American Center"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="wikidata" v="Q13674616"/>
+ </way>
<way id="79616736">
<nd ref="929099140"/>
<nd ref="929096547"/>
@@ -17904,11 +21143,12 @@
<tag k="building" v="yes"/>
<tag k="name" v="Fondation Cartier"/>
<tag k="opening_hours" v="Tu 11:00-22:00; We-Su 11:00-21:00"/>
- <tag k="phone" v="01.42.18.56.50"/>
+ <tag k="phone" v="+33142185650"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="fondation.cartier.com/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1284688"/>
</way>
<way id="79616745">
<nd ref="929096880"/>
@@ -17926,26 +21166,185 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="79621541">
- <nd ref="929144851"/>
- <nd ref="929141613"/>
- <nd ref="929141589"/>
- <nd ref="929144822"/>
- <nd ref="929143120"/>
- <nd ref="929146475"/>
- <nd ref="929144988"/>
- <nd ref="929145393"/>
- <nd ref="929141077"/>
- <nd ref="2986694413"/>
- <nd ref="929146804"/>
- <nd ref="929143072"/>
- <nd ref="929141649"/>
- <nd ref="929140369"/>
- <nd ref="929144851"/>
+ <way id="79621192">
+ <nd ref="929147105"/>
+ <nd ref="929142922"/>
+ <nd ref="929146498"/>
+ <nd ref="929146481"/>
+ <nd ref="929138974"/>
+ <nd ref="929139221"/>
+ <nd ref="929144216"/>
+ <nd ref="929147119"/>
+ <nd ref="929139573"/>
+ <nd ref="929144599"/>
+ <nd ref="929145338"/>
+ <nd ref="929147105"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Apollinaire"/>
+ <tag k="name" v="Hôtel Montparnasse - Saint-Germain"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="limited"/>
+ </way>
+ <way id="79621300">
+ <nd ref="929143570"/>
+ <nd ref="929142824"/>
+ <nd ref="929143048"/>
+ <nd ref="929143174"/>
+ <nd ref="929143279"/>
+ <nd ref="929142004"/>
+ <nd ref="929142532"/>
+ <nd ref="929143570"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="10"/>
+ <tag k="name" v="Hôtel Arotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621387">
+ <nd ref="929141061"/>
+ <nd ref="929145324"/>
+ <nd ref="929140632"/>
+ <nd ref="929140607"/>
+ <nd ref="929145939"/>
+ <nd ref="929140871"/>
+ <nd ref="929141061"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="L'Espérance"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621695">
+ <nd ref="929142145"/>
+ <nd ref="929142245"/>
+ <nd ref="929141013"/>
+ <nd ref="929142176"/>
+ <nd ref="929141823"/>
+ <nd ref="929140875"/>
+ <nd ref="929146410"/>
+ <nd ref="929142145"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
+ <tag k="contact:website" v="http://edgarquinethotel.com/"/>
+ <tag k="name" v="Hôtel Edgard Quinet"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621733">
+ <nd ref="929144020"/>
+ <nd ref="929139508"/>
+ <nd ref="929146198"/>
+ <nd ref="929142183"/>
+ <nd ref="929139886"/>
+ <nd ref="929143805"/>
+ <nd ref="929144020"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://hotelparismaine.com/"/>
+ <tag k="name" v="Hôtel de Paris"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621747">
+ <nd ref="929142310"/>
+ <nd ref="929143280"/>
+ <nd ref="929141741"/>
+ <nd ref="929144229"/>
+ <nd ref="929143164"/>
+ <nd ref="929145228"/>
+ <nd ref="929142245"/>
+ <nd ref="929142145"/>
+ <nd ref="929146264"/>
+ <nd ref="929143457"/>
+ <nd ref="929142310"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://www.hoteldelatourparis.fr/"/>
+ <tag k="name" v="Hôtel de la Tour"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621765">
+ <nd ref="929146295"/>
+ <nd ref="929139408"/>
+ <nd ref="929142666"/>
+ <nd ref="929145748"/>
+ <nd ref="929142369"/>
+ <nd ref="929140777"/>
+ <nd ref="929146933"/>
+ <nd ref="929144201"/>
+ <nd ref="929139521"/>
+ <nd ref="1795595261"/>
+ <nd ref="929144053"/>
+ <nd ref="929145119"/>
+ <nd ref="2986694408"/>
+ <nd ref="929146295"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://www.hotel-odessa.com/"/>
+ <tag k="name" v="Hôtel Odessa"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621799">
+ <nd ref="929143378"/>
+ <nd ref="929146741"/>
+ <nd ref="929140449"/>
+ <nd ref="929145918"/>
+ <nd ref="929143658"/>
+ <nd ref="929142803"/>
+ <nd ref="929142511"/>
+ <nd ref="929144847"/>
+ <nd ref="929141459"/>
+ <nd ref="929143609"/>
+ <nd ref="929143689"/>
+ <nd ref="929140509"/>
+ <nd ref="929143675"/>
+ <nd ref="929145479"/>
+ <nd ref="929143874"/>
+ <nd ref="929140686"/>
+ <nd ref="929142862"/>
+ <nd ref="929141027"/>
+ <nd ref="929143378"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://www.central-hotel-paris.com/"/>
+ <tag k="name" v="Hôtel Central"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621832">
+ <nd ref="929142922"/>
+ <nd ref="929147105"/>
+ <nd ref="929145235"/>
+ <nd ref="929140892"/>
+ <nd ref="929138892"/>
+ <nd ref="929142922"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Waldorf"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79621979">
+ <nd ref="929142559"/>
+ <nd ref="929139947"/>
+ <nd ref="929146979"/>
+ <nd ref="929144184"/>
+ <nd ref="929144543"/>
+ <nd ref="929146899"/>
+ <nd ref="929141606"/>
+ <nd ref="929144039"/>
+ <nd ref="929143767"/>
+ <nd ref="929146968"/>
+ <nd ref="929144826"/>
+ <nd ref="929142559"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:website" v="http://hotelduparcparis.com/"/>
+ <tag k="name" v="Hôtel du Parc"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="79626702">
<nd ref="929180851"/>
@@ -17965,6 +21364,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q16508304"/>
</way>
<way id="79633603">
<nd ref="929241950"/>
@@ -17972,17 +21372,41 @@
<nd ref="929241620"/>
<nd ref="929242203"/>
<nd ref="929241950"/>
+ <tag k="addr:city" v="Paris"/>
<tag k="addr:housenumber" v="22"/>
<tag k="addr:postcode" v="75014"/>
<tag k="addr:street" v="Rue Boulard"/>
<tag k="building" v="yes"/>
- <tag k="contact:fax" v="+33-0143210821"/>
- <tag k="contact:phone" v="+33-0143210820"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="contact:fax" v="+33 1 43 21 08 21"/>
+ <tag k="contact:phone" v="+33 1 43 21 08 20"/>
+ <tag k="diet:organic" v="only"/>
+ <tag k="email" v="contact@solarhotel.fr"/>
<tag k="name" v="Solar Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.solarhotel.fr/"/>
</way>
+ <way id="79633690">
+ <nd ref="929238940"/>
+ <nd ref="929242981"/>
+ <nd ref="929243041"/>
+ <nd ref="2990855806"/>
+ <nd ref="929242631"/>
+ <nd ref="929238360"/>
+ <nd ref="929238210"/>
+ <nd ref="929245122"/>
+ <nd ref="929238757"/>
+ <nd ref="929238710"/>
+ <nd ref="929238940"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="contact:website" v="http://www.hotelmontparnassedaguerre.com/"/>
+ <tag k="name" v="Daguerre Montparnasse"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="79634330">
<nd ref="929244286"/>
<nd ref="2461576465"/>
@@ -17992,24 +21416,11 @@
<nd ref="929237325"/>
<nd ref="929244286"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Mistral Hotel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="79634337">
- <nd ref="929237312"/>
- <nd ref="2461576464"/>
- <nd ref="929236683"/>
- <nd ref="929236773"/>
- <nd ref="929241318"/>
- <nd ref="929242218"/>
- <nd ref="929237312"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Agenor"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="stars" v="2"/>
- <tag k="tourism" v="hotel"/>
- </way>
<way id="79641993">
<nd ref="929367309"/>
<nd ref="929366832"/>
@@ -18091,10 +21502,12 @@
<nd ref="929367309"/>
<tag k="building" v="yes"/>
<tag k="name" v="Musée Guimet"/>
- <tag k="phone" v="01.58.52.53.00"/>
+ <tag k="opening_hours" v="Mo-Su 10:00-18:00; Tu off; Dec 25 off; Jan 01 off; May 01 off; Dec 24 10:00-16:45; Dec 31 10:00-16:45; easter -1 day 10:00-16:45; easter +49 days 10:00-16:45"/>
+ <tag k="phone" v="+33158525300"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.guimet.fr/"/>
+ <tag k="wikidata" v="Q860994"/>
</way>
<way id="79687338">
<nd ref="929970233"/>
@@ -18114,8 +21527,10 @@
<tag k="addr:postcode" v="75015"/>
<tag k="addr:street" v="Rue Saint-Lambert"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="12"/>
<tag k="name" v="Hôtel Mercure Paris XV"/>
<tag k="operator" v="Mercure"/>
+ <tag k="roof:levels" v="0"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
@@ -18134,6 +21549,59 @@
<tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="79688857">
+ <nd ref="929967647"/>
+ <nd ref="929948735"/>
+ <nd ref="929948074"/>
+ <nd ref="929958903"/>
+ <nd ref="929964146"/>
+ <nd ref="929966915"/>
+ <nd ref="929966950"/>
+ <nd ref="929955795"/>
+ <nd ref="929967647"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
+ <tag k="contact:website" v="http://www.hotel-paris-laperle.com/"/>
+ <tag k="name" v="La Perle Montparnasse"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="79688992">
+ <nd ref="929974384"/>
+ <nd ref="929974788"/>
+ <nd ref="929974466"/>
+ <nd ref="929974767"/>
+ <nd ref="929974747"/>
+ <nd ref="929974572"/>
+ <nd ref="929974716"/>
+ <nd ref="929974698"/>
+ <nd ref="929974808"/>
+ <nd ref="929974406"/>
+ <nd ref="929974292"/>
+ <nd ref="929974463"/>
+ <nd ref="929974849"/>
+ <nd ref="929974590"/>
+ <nd ref="929974775"/>
+ <nd ref="929974283"/>
+ <nd ref="929974809"/>
+ <nd ref="1215369814"/>
+ <nd ref="929974649"/>
+ <nd ref="929974562"/>
+ <nd ref="929974188"/>
+ <nd ref="929974299"/>
+ <nd ref="929974285"/>
+ <nd ref="929974624"/>
+ <nd ref="929974384"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="28"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue Lecourbe"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Lecourbe"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="79717550">
<nd ref="930336771"/>
<nd ref="930319208"/>
@@ -18168,12 +21636,42 @@
<nd ref="930314792"/>
<nd ref="930325376"/>
<nd ref="930342217"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="185"/>
+ <tag k="addr:place" v="Mercure Paris Alesia"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Boulevard Brune"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Paris Orléans"/>
+ <tag k="building:levels" v="9"/>
+ <tag k="name" v="Mercure Paris Alesia"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
- <tag k="website" v="http://www.paris-orleans-hotel.com"/>
+ <tag k="website" v="http://www.mercure.com/de/hotel-9734-hotel-mercure-paris-alesia-/index.shtml"/>
+ </way>
+ <way id="79718440">
+ <nd ref="930297570"/>
+ <nd ref="930338359"/>
+ <nd ref="930328553"/>
+ <nd ref="930298388"/>
+ <nd ref="930322421"/>
+ <nd ref="930312030"/>
+ <nd ref="930327641"/>
+ <nd ref="930334028"/>
+ <nd ref="930320080"/>
+ <nd ref="930337256"/>
+ <nd ref="930323456"/>
+ <nd ref="930323606"/>
+ <nd ref="1256171067"/>
+ <nd ref="1256170882"/>
+ <nd ref="930297570"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="8"/>
+ <tag k="name" v="Hôtel Montparnasse Alésia"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="79718691">
<nd ref="930307959"/>
@@ -18184,6 +21682,7 @@
<nd ref="930331759"/>
<nd ref="930307959"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
<tag k="name" v="Hôtel - Villa du Maine"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -18224,40 +21723,43 @@
<tag k="tourism" v="museum"/>
<tag k="website:structurae" v="http://structurae.info/structures/data/index.cfm?id=s0044573"/>
</way>
- <way id="80292644">
- <nd ref="937127073"/>
- <nd ref="937132369"/>
- <nd ref="1461630605"/>
- <nd ref="937122099"/>
- <nd ref="937119546"/>
- <nd ref="937132675"/>
- <nd ref="937131021"/>
- <nd ref="937114035"/>
- <nd ref="937109817"/>
- <nd ref="937118286"/>
- <nd ref="937129960"/>
- <nd ref="937128685"/>
- <nd ref="937121871"/>
- <nd ref="937130638"/>
- <nd ref="937128515"/>
- <nd ref="937121206"/>
- <nd ref="937118006"/>
- <nd ref="937127073"/>
- <tag k="building" v="yes"/>
- <tag k="fax" v="01.45.44.21.65"/>
- <tag k="internet_access" v="wlan"/>
- <tag k="internet_access:fee" v="no"/>
- <tag k="internet_access:operator" v="Mairie de Paris"/>
- <tag k="name" v="Musée Bourdelle"/>
- <tag k="name:es" v="Museo Antoine Bourdelle"/>
- <tag k="name:ru" v="Дом-музей Бурделя"/>
- <tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.49.54.73.73"/>
+ <way id="80291864">
+ <nd ref="937115760"/>
+ <nd ref="937127070"/>
+ <nd ref="937116201"/>
+ <nd ref="937115978"/>
+ <nd ref="937118560"/>
+ <nd ref="937116230"/>
+ <nd ref="937126715"/>
+ <nd ref="937133183"/>
+ <nd ref="937114778"/>
+ <nd ref="937111942"/>
+ <nd ref="937133999"/>
+ <nd ref="1474889088"/>
+ <nd ref="937115760"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://mobile.bestwestern.fr/fr/hotel-paris-15eme,Best-Western-Sevres-Montparnasse,93740?track=true"/>
+ <tag k="name" v="Best Western Sèvres Montparnasse"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="website" v="paris.fr/loisirs/musees-expos/musee-bourdelle/p6408"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Musée Bourdelle"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="80292626">
+ <nd ref="937108395"/>
+ <nd ref="937132090"/>
+ <nd ref="937115596"/>
+ <nd ref="937124734"/>
+ <nd ref="937123555"/>
+ <nd ref="937113069"/>
+ <nd ref="937116711"/>
+ <nd ref="1474889110"/>
+ <nd ref="937108395"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="http://www.saphirhotel.fr/"/>
+ <tag k="name" v="Avia Saphir Montparnasse"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
</way>
<way id="80378536">
<nd ref="938012165"/>
@@ -18268,6 +21770,7 @@
<nd ref="938011490"/>
<nd ref="938012165"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Duret"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
@@ -18305,10 +21808,12 @@
<nd ref="942553138"/>
<nd ref="942553243"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="5"/>
<tag k="name" v="Saint-James"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q22922223"/>
</way>
<way id="80848762">
<nd ref="942610130"/>
@@ -18344,6 +21849,7 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.guimet.fr/fr/musee-dennery/informations-pratiques"/>
+ <tag k="wikidata" v="Q1579504"/>
</way>
<way id="80853592">
<nd ref="942636033"/>
@@ -18366,6 +21872,7 @@
<nd ref="942636015"/>
<nd ref="942636033"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Alexander"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -18392,6 +21899,31 @@
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="81203969">
+ <nd ref="946149196"/>
+ <nd ref="946148872"/>
+ <nd ref="3221640324"/>
+ <nd ref="946146931"/>
+ <nd ref="946147771"/>
+ <nd ref="946145159"/>
+ <nd ref="946146469"/>
+ <nd ref="946149742"/>
+ <nd ref="3220735808"/>
+ <nd ref="946144777"/>
+ <nd ref="946148580"/>
+ <nd ref="946149385"/>
+ <nd ref="946147466"/>
+ <nd ref="946148247"/>
+ <nd ref="946145876"/>
+ <nd ref="946144302"/>
+ <nd ref="946144057"/>
+ <nd ref="946149196"/>
+ <tag k="alt_name" v="Movenpick"/>
+ <tag k="building" v="hotel"/>
+ <tag k="name" v="Mövenpick"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="81234511">
<nd ref="946416887"/>
<nd ref="946415543"/>
@@ -18445,6 +21977,27 @@
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="81292780">
+ <nd ref="947020216"/>
+ <nd ref="947013729"/>
+ <nd ref="947013432"/>
+ <nd ref="947016041"/>
+ <nd ref="947020216"/>
+ <tag k="addr:city" v="Neuilly-sur-Seine"/>
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:postcode" v="92200"/>
+ <tag k="addr:street" v="Rue Madeleine Michelis"/>
+ <tag k="building" v="yes"/>
+ <tag k="fax" v="+33 1 46 40 14 78"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Neuilly Park Hotel"/>
+ <tag k="phone" v="+33 1 46 40 11 15"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel@neuillypark.com"/>
+ </way>
<way id="81297861">
<nd ref="947057672"/>
<nd ref="947057719"/>
@@ -18461,6 +22014,37 @@
<tag k="source:tourism" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="81613499">
+ <nd ref="951288502"/>
+ <nd ref="951298447"/>
+ <nd ref="951303881"/>
+ <nd ref="951307948"/>
+ <nd ref="951275926"/>
+ <nd ref="951282039"/>
+ <nd ref="951284209"/>
+ <nd ref="951292579"/>
+ <nd ref="951291002"/>
+ <nd ref="951286448"/>
+ <nd ref="951287833"/>
+ <nd ref="951258798"/>
+ <nd ref="951302847"/>
+ <nd ref="951282019"/>
+ <nd ref="951263535"/>
+ <nd ref="951263703"/>
+ <nd ref="951290885"/>
+ <nd ref="951273274"/>
+ <nd ref="951281852"/>
+ <nd ref="951294365"/>
+ <nd ref="951261660"/>
+ <nd ref="951269266"/>
+ <nd ref="951300146"/>
+ <nd ref="951267805"/>
+ <nd ref="951288502"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Mister Bed City"/>
+ <tag k="source" v="extraction vectorielle v1 cadastre-dgi-fr source : Direction Générale des Impôts - Cadas. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="81614189">
<nd ref="951289758"/>
<nd ref="951287904"/>
@@ -18498,6 +22082,37 @@
<tag k="tourism" v="hotel"/>
<tag k="wheelchair" v="limited"/>
</way>
+ <way id="81614697">
+ <nd ref="951293732"/>
+ <nd ref="951299252"/>
+ <nd ref="951270086"/>
+ <nd ref="951275222"/>
+ <nd ref="951270783"/>
+ <nd ref="951289994"/>
+ <nd ref="951269653"/>
+ <nd ref="951269700"/>
+ <nd ref="951307430"/>
+ <nd ref="951259153"/>
+ <nd ref="951302043"/>
+ <nd ref="951275455"/>
+ <nd ref="951286850"/>
+ <nd ref="951265710"/>
+ <nd ref="951305935"/>
+ <nd ref="951299614"/>
+ <nd ref="951271616"/>
+ <nd ref="951261056"/>
+ <nd ref="951275785"/>
+ <nd ref="951269419"/>
+ <nd ref="951283016"/>
+ <nd ref="951259966"/>
+ <nd ref="951309277"/>
+ <nd ref="951293137"/>
+ <nd ref="951293732"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Novotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="81767364">
<nd ref="952537097"/>
<nd ref="951826458"/>
@@ -18538,13 +22153,43 @@
<nd ref="957610701"/>
<nd ref="957609628"/>
<nd ref="957609005"/>
+ <tag k="addr:housenumber" v="178"/>
+ <tag k="alt_name" v="Pavillon de la Suède et de la Norvège"/>
<tag k="building" v="yes"/>
+ <tag k="contact:phone" v="+33 1 71 05 77 92"/>
+ <tag k="fee" v="no"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1987"/>
<tag k="name" v="Musée Roybet Fould"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="opening_hours" v="Mo-Su 10:30-18:00; Tu off"/>
+ <tag k="operator" v="Ville de Courbevoie"/>
+ <tag k="ref:mhs" v="PA00088106"/>
+ <tag k="source" v="data.gouv.fr:Ministère de l'Éducation nationale, de la Jeunesse et de la Vie associative - 05/2012"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="tourism" v="museum"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q22924332"/>
<tag k="wikipedia" v="fr:Musée Roybet Fould"/>
</way>
+ <way id="82322734">
+ <nd ref="958756048"/>
+ <nd ref="958758680"/>
+ <nd ref="958755333"/>
+ <nd ref="958756810"/>
+ <nd ref="958762449"/>
+ <nd ref="958760290"/>
+ <nd ref="958757643"/>
+ <nd ref="958758742"/>
+ <nd ref="958764716"/>
+ <nd ref="958758083"/>
+ <nd ref="958761329"/>
+ <nd ref="958756048"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Adagio Aparthotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="83233811">
<nd ref="968472204"/>
<nd ref="968475389"/>
@@ -18598,9 +22243,10 @@
<nd ref="968497699"/>
<nd ref="968494985"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Ibis Paris Porte d'Orléans"/>
+ <tag k="name" v="Hôtel Ibis París Porte d'Orléans"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
</way>
<way id="83237117">
<nd ref="968492219"/>
@@ -18609,14 +22255,18 @@
<nd ref="968485847"/>
<nd ref="968493255"/>
<nd ref="968494434"/>
+ <nd ref="3964479162"/>
<nd ref="968473830"/>
+ <nd ref="3964479160"/>
<nd ref="968478882"/>
<nd ref="968492219"/>
- <tag k="addr:housenumber" v="16"/>
- <tag k="addr:street" v="Place Jean Jaurès"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel-résidence Montrouge"/>
+ <tag k="name" v="Hôtel Sixteen"/>
+ <tag k="network" v="Comfort Hotel"/>
+ <tag k="rooms" v="34"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="source:hotel" v="Montrouge Magazin 2016;survey"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="83422695">
@@ -18635,11 +22285,13 @@
<nd ref="971088469"/>
<nd ref="971088320"/>
<nd ref="971088506"/>
- <tag k="name" v="Musée Marmottan"/>
- <tag k="phone" v="01.44.96.50.33"/>
+ <tag k="name" v="Musée Marmottan Monet"/>
+ <tag k="phone" v="+33 1 44965033"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="www.marmottan.com"/>
+ <tag k="website" v="http://www.marmottan.fr/"/>
+ <tag k="wikidata" v="Q1327886"/>
+ <tag k="wikipedia" v="fr:Musée Marmottan Monet"/>
</way>
<way id="83790233">
<nd ref="975592949"/>
@@ -18712,8 +22364,9 @@
<nd ref="975578998"/>
<nd ref="975603701"/>
<tag k="building" v="yes"/>
- <tag k="name" v="B&amp;B Hotels Paris Malakoff"/>
+ <tag k="name" v="B&amp;B Hôtel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="83913793">
@@ -18765,15 +22418,19 @@
<tag k="building" v="yes"/>
<tag k="building:levels" v="8"/>
<tag k="email" v="valhuber@mnhn.fr"/>
- <tag k="fax" v="01.40.79.54.48"/>
+ <tag k="fax" v="+33140795448"/>
<tag k="fee" v="full:7;discount:5;free: under 26, handicap, press, unemployment"/>
<tag k="fee:currency" v="euro"/>
<tag k="name" v="Grande Galerie de l'Évolution"/>
- <tag k="opening_hours" v="Mo 10:00-18:00;We-Su 10:00-18:00;May 1 off"/>
+ <tag k="name:de" v="Große Galerie der Evolution"/>
+ <tag k="name:en" v="Grand Gallery of Evolution"/>
+ <tag k="name:fr" v="Grande Galerie de l'Évolution"/>
+ <tag k="opening_hours" v="Mo 10:00-18:00; We-Su 10:00-18:00; May 1 off"/>
<tag k="operator" v="Muséum National d'Histoire Naturelle"/>
- <tag k="phone" v="01.40.79.54.79, 01.40.79.56.01"/>
+ <tag k="phone" v="+33 1 40 79 54 79;+33 1 40 79 56 01"/>
<tag k="tourism" v="museum"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2372049"/>
<tag k="wikipedia" v="fr:Grande galerie de l'évolution"/>
</way>
<way id="83948788">
@@ -18791,6 +22448,29 @@
<tag k="source" v="survey"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="84171144">
+ <nd ref="979143691"/>
+ <nd ref="979138707"/>
+ <nd ref="979142858"/>
+ <nd ref="979140812"/>
+ <nd ref="979138115"/>
+ <nd ref="979135664"/>
+ <nd ref="979135906"/>
+ <nd ref="979133332"/>
+ <nd ref="979143912"/>
+ <nd ref="979137022"/>
+ <nd ref="979141383"/>
+ <nd ref="979137892"/>
+ <nd ref="979143691"/>
+ <tag k="addr:city" v="Levallois-Perret"/>
+ <tag k="addr:housenumber" v="48"/>
+ <tag k="addr:postcode" v="92300"/>
+ <tag k="addr:street" v="Rue Chaptal"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Mercure Levallois-Perret"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="84194390">
<nd ref="979336655"/>
<nd ref="979337159"/>
@@ -18823,7 +22503,6 @@
<nd ref="979336509"/>
<nd ref="979336202"/>
<nd ref="979335596"/>
- <nd ref="979336458"/>
<nd ref="979337080"/>
<nd ref="979336852"/>
<nd ref="1004347575"/>
@@ -18852,6 +22531,7 @@
<nd ref="1004347053"/>
<nd ref="979338205"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
@@ -18872,6 +22552,27 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</way>
+ <way id="84321478">
+ <nd ref="980469640"/>
+ <nd ref="2034381483"/>
+ <nd ref="4086252102"/>
+ <nd ref="980368227"/>
+ <nd ref="993549837"/>
+ <nd ref="980475410"/>
+ <nd ref="980299369"/>
+ <nd ref="980481550"/>
+ <nd ref="980345508"/>
+ <nd ref="980469640"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="108"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Rue de Courcelles"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Monceau Elysées"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
<way id="84322150">
<nd ref="980370675"/>
<nd ref="980410368"/>
@@ -18920,72 +22621,6 @@
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="84325480">
- <nd ref="980418691"/>
- <nd ref="980319437"/>
- <nd ref="980281195"/>
- <nd ref="980481252"/>
- <nd ref="980349251"/>
- <nd ref="980381632"/>
- <nd ref="980308870"/>
- <nd ref="980355344"/>
- <nd ref="980282612"/>
- <nd ref="980339325"/>
- <nd ref="980326963"/>
- <nd ref="980491498"/>
- <nd ref="1986580819"/>
- <nd ref="1986580825"/>
- <nd ref="980320020"/>
- <nd ref="1986580832"/>
- <nd ref="980383983"/>
- <nd ref="980331943"/>
- <nd ref="980500693"/>
- <nd ref="980474482"/>
- <nd ref="980480298"/>
- <nd ref="980470908"/>
- <nd ref="980328977"/>
- <nd ref="980463562"/>
- <nd ref="980290824"/>
- <nd ref="980299624"/>
- <nd ref="980309821"/>
- <nd ref="980305872"/>
- <nd ref="980405321"/>
- <nd ref="980493280"/>
- <nd ref="980352666"/>
- <nd ref="980391920"/>
- <nd ref="980452983"/>
- <nd ref="980392056"/>
- <nd ref="980492467"/>
- <nd ref="980372889"/>
- <nd ref="980281114"/>
- <nd ref="980401889"/>
- <nd ref="980502399"/>
- <nd ref="980354971"/>
- <nd ref="980435874"/>
- <nd ref="980346507"/>
- <nd ref="980462839"/>
- <nd ref="980354145"/>
- <nd ref="980490266"/>
- <nd ref="980333254"/>
- <nd ref="980287610"/>
- <nd ref="980294416"/>
- <nd ref="980310450"/>
- <nd ref="980287120"/>
- <nd ref="980279578"/>
- <nd ref="980457650"/>
- <nd ref="980419413"/>
- <nd ref="980447767"/>
- <nd ref="980460904"/>
- <nd ref="980312132"/>
- <nd ref="980319815"/>
- <nd ref="980418691"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Méridien"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="source:tourism" v="survey"/>
- <tag k="tourism" v="hotel"/>
- <tag k="wheelchair" v="yes"/>
- </way>
<way id="84325974">
<nd ref="980319760"/>
<nd ref="980499996"/>
@@ -19009,23 +22644,50 @@
<nd ref="980485535"/>
<nd ref="980319760"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Balmoral"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
- <way id="84327331">
- <nd ref="980295054"/>
- <nd ref="980278066"/>
- <nd ref="980326724"/>
- <nd ref="980340746"/>
- <nd ref="2485092695"/>
- <nd ref="980421732"/>
- <nd ref="980295054"/>
+ <way id="84326105">
+ <nd ref="980315505"/>
+ <nd ref="980287924"/>
+ <nd ref="980289377"/>
+ <nd ref="980471123"/>
+ <nd ref="980320217"/>
+ <nd ref="980482146"/>
+ <nd ref="980314023"/>
+ <nd ref="2121960027"/>
+ <nd ref="980315505"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Hôtel Le Villiers"/>
+ <tag k="name" v="Musée national Jean-Jacques Henner"/>
+ <tag k="phone" v="+33 1 47 63 42 73"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.musee-henner.fr/"/>
+ <tag k="wikidata" v="Q1955698"/>
+ <tag k="wikipedia" v="fr:Musée national Jean-Jacques Henner"/>
+ </way>
+ <way id="84326483">
+ <nd ref="980498813"/>
+ <nd ref="2119688436"/>
+ <nd ref="980305415"/>
+ <nd ref="980419056"/>
+ <nd ref="980287034"/>
+ <nd ref="980297520"/>
+ <nd ref="2119679002"/>
+ <nd ref="980498813"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Villa Eugénie"/>
+ <tag k="phone" v="+33 1 44 29 06 06"/>
+ <tag k="smoking" v="outside"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.leshotelsdeparis.com/fr/hotel/paris-batignolles-villa-eugenie.8.html"/>
</way>
<way id="84328148">
<nd ref="980330001"/>
@@ -19056,6 +22718,7 @@
<nd ref="980299863"/>
<nd ref="980321439"/>
<tag k="building" v="hotel"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel La Régence"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
@@ -19106,6 +22769,7 @@
<nd ref="980468706"/>
<nd ref="980294715"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Villa Brunel"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -19124,6 +22788,7 @@
<nd ref="1986522140"/>
<nd ref="980324539"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="name" v="Hôtel Stella Etoile"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="stars" v="3"/>
@@ -19138,6 +22803,7 @@
<nd ref="2123933908"/>
<nd ref="980387313"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
</way>
@@ -19176,11 +22842,12 @@
<tag k="name:es" v="Museo Via Romantica"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00, Mo off"/>
<tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.55.31.95.67"/>
+ <tag k="phone" v="+33155319567"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://vie-romantique.paris.fr"/>
<tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Musée de la Vie romantique"/>
+ <tag k="wikidata" v="Q2714932"/>
+ <tag k="wikipedia" v="fr:Musée de la vie romantique"/>
</way>
<way id="84511129">
<nd ref="976165185"/>
@@ -19221,6 +22888,7 @@
<tag k="source:internet_access" v="Paris Open Data"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://balzac.paris.fr"/>
+ <tag k="wikidata" v="Q547789"/>
<tag k="wikipedia" v="fr:Maison de Balzac"/>
</way>
<way id="86428524">
@@ -19237,14 +22905,16 @@
<nd ref="1004245183"/>
<nd ref="1004244680"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="1"/>
<tag k="email" v="pavillondeleau@eaudeparis.fr"/>
<tag k="fee" v="free"/>
<tag k="name" v="Pavillon de l'eau"/>
<tag k="opening_hours" v="Mo-Fr 10:00-18:00; Sa 11:00-19:00"/>
- <tag k="phone" v="01.42.24.54.02"/>
+ <tag k="phone" v="+33142245402"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://eaudeparis.fr/lespace-culture/pavillon-de-leau/"/>
+ <tag k="wikidata" v="Q3471001"/>
</way>
<way id="87141480">
<nd ref="1013337396"/>
@@ -19335,7 +23005,7 @@
<tag k="breakfast" v="07:30-09:00"/>
<tag k="building" v="yes"/>
<tag k="car_park" v="yes"/>
- <tag k="contact:phone" v="(+33)1/58071111"/>
+ <tag k="contact:phone" v="+33 1 58 07 11 11"/>
<tag k="name" v="Hôtel Mercure Porte d'Orléans"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
<tag k="tourism" v="hotel"/>
@@ -19473,10 +23143,19 @@
<nd ref="1298215032"/>
<nd ref="1298214907"/>
<nd ref="1298214974"/>
+ <tag k="addr:city" v="Issy-les-Moulineaux"/>
+ <tag k="addr:housenumber" v="15"/>
+ <tag k="addr:postcode" v="92130"/>
+ <tag k="addr:street" v="Avenue Jean Jaurès"/>
<tag k="building" v="yes"/>
+ <tag k="email" v="h1402@accor.com"/>
<tag k="name" v="Ibis"/>
+ <tag k="operator" v="Accor"/>
+ <tag k="phone" v="+33 1 46 38 30 00"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="stars" v="2"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="accorhotels.com"/>
</way>
<way id="114654277">
<nd ref="1298214530"/>
@@ -19490,9 +23169,53 @@
<nd ref="1298214355"/>
<nd ref="1298214746"/>
<nd ref="1298214530"/>
+ <tag k="addr:city" v="Issy-les-Moulineaux"/>
+ <tag k="addr:housenumber" v="11bis"/>
+ <tag k="addr:postcode" v="92130"/>
+ <tag k="addr:street" v="Avenue Jean Jaurès"/>
<tag k="building" v="yes"/>
+ <tag k="email" v="contacts@bwportedeversailles.com"/>
+ <tag k="name" v="Best Western Paris Porte de Versailles***"/>
+ <tag k="phone" v="+33 1 42 99 67 67"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.bestwestern.fr"/>
+ </way>
+ <way id="115878632">
+ <nd ref="1307927541"/>
+ <nd ref="1307926184"/>
+ <nd ref="1307927039"/>
+ <nd ref="1307927468"/>
+ <nd ref="1307927868"/>
+ <nd ref="1307926574"/>
+ <nd ref="1307927353"/>
+ <nd ref="1307927261"/>
+ <nd ref="1307926570"/>
+ <nd ref="1307927035"/>
+ <nd ref="1307927100"/>
+ <nd ref="1307927865"/>
+ <nd ref="1307926820"/>
+ <nd ref="1307927144"/>
+ <nd ref="1307927329"/>
+ <nd ref="1307927409"/>
+ <nd ref="1307927123"/>
+ <nd ref="1307927105"/>
+ <nd ref="1307927008"/>
+ <nd ref="1307927073"/>
+ <nd ref="1307927541"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="51"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Quai de Grenelle"/>
+ <tag k="building" v="yes"/>
+ <tag k="layer" v="3"/>
+ <tag k="name" v="Yooma Urban Lodge"/>
+ <tag k="operator" v="YOOMA"/>
+ <tag k="phone" v="+33 1 44 09 00 13"/>
+ <tag k="source" v="opendataparis"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.yooma-hotels.com/"/>
</way>
<way id="115878663">
<nd ref="1307927548"/>
@@ -19512,11 +23235,16 @@
<tag k="layer" v="3"/>
<tag k="name" v="Hôtel Novotel Paris Tour Eiffel"/>
<tag k="old_name" v="Hôtel Nikko"/>
+ <tag k="ref:structurae" v="20011605"/>
+ <tag k="roof:shape" v="flat"/>
<tag k="source" v="opendataparis"/>
+ <tag k="stars" v="4"/>
<tag k="start_date" v="1976"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.accorhotels.com/fr/hotel-3546-novotel-paris-tour-eiffel/"/>
<tag k="website:emporis" v="http://www.emporis.com/application/?nav=building&amp;lng=3&amp;id=110342"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3145613"/>
</way>
<way id="115878705">
<nd ref="1307927102"/>
@@ -19582,13 +23310,16 @@
<tag k="architect" v="Laurenti, Pecaud"/>
<tag k="building" v="yes"/>
<tag k="building:height" v="98"/>
+ <tag k="building:levels" v="32"/>
<tag k="layer" v="3"/>
<tag k="name" v="Adagio Paris Tour Eiffel"/>
+ <tag k="ref" v="H8"/>
<tag k="source" v="cadastre-dgi-fr Cadastre ; mise à jour : 2011, opendataparis"/>
<tag k="start_date" v="1977"/>
<tag k="tourism" v="hotel"/>
<tag k="website" v="http://www.accorhotels.com/fr/hotel-6790-adagio-paris-tour-eiffel/"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q3533151"/>
<tag k="wikipedia" v="fr:Tour Paris Côté Seine"/>
</way>
<way id="124052479">
@@ -19601,7 +23332,9 @@
<nd ref="699045741"/>
<nd ref="699046039"/>
<nd ref="699045962"/>
+ <nd ref="5201026073"/>
<nd ref="699045933"/>
+ <nd ref="5201026074"/>
<nd ref="699045840"/>
<nd ref="1528113319"/>
<nd ref="699046037"/>
@@ -19609,6 +23342,7 @@
<tag k="phone" v="+33 1 42 77 44 72"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.memorialdelashoah.org/"/>
+ <tag k="wikidata" v="Q479218"/>
</way>
<way id="130908998">
<nd ref="1440883150"/>
@@ -19684,11 +23418,12 @@
<tag k="mhs:inscription_date" v="1972"/>
<tag k="name" v="Musée Rodin - Villa des Brillants"/>
<tag k="operator" v="public"/>
- <tag k="phone" v="01 41 14 35 00"/>
+ <tag k="phone" v="+33 1 41 14 35 00"/>
<tag k="ref:mhs" v="PA00088123"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.musee-rodin.fr"/>
+ <tag k="wikidata" v="Q3558853"/>
<tag k="wikipedia" v="fr:Villa des Brillants"/>
</way>
<way id="141199757">
@@ -19713,6 +23448,7 @@
<nd ref="683362165"/>
<tag k="name" v="Le Ritz"/>
<tag k="tourism" v="hotel"/>
+ <tag k="wikidata" v="Q656054"/>
</way>
<way id="149387303">
<nd ref="1623726930"/>
@@ -19761,11 +23497,11 @@
<tag k="alt_name" v="Appart'Hôtel Saint-Maurice"/>
<tag k="building" v="yes"/>
<tag k="contact:email" v="saint-maurice@appartcity.com"/>
- <tag k="contact:fax" v="+ 33 (0) 1 49 77 23 41"/>
- <tag k="contact:phone" v="+ 33 (0) 1 49 77 23 40"/>
- <tag k="contact:website" v="http://de.appartcity.com/de/s04_residences/s04p03_accueil_residences.php?res=47"/>
+ <tag k="contact:fax" v="+ 33 1 49 77 23 41"/>
+ <tag k="contact:phone" v="+ 33 1 49 77 23 40"/>
+ <tag k="contact:website" v="http://de.appartcity.com/de/s04_residences/s04p03_accueil_residences.php?res"/>
<tag k="name" v="Appart'City Saint-Maurice"/>
- <tag k="room" v="220"/>
+ <tag k="rooms" v="220"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
<tag k="tourism" v="hotel"/>
</way>
@@ -19781,19 +23517,8 @@
<nd ref="2543953832"/>
<nd ref="2543953156"/>
<nd ref="2543951905"/>
- <nd ref="1639118150"/>
- <nd ref="1639118159"/>
<nd ref="1639118167"/>
- <nd ref="1639118177"/>
- <nd ref="1639118187"/>
- <nd ref="1639118195"/>
- <nd ref="1639118222"/>
- <nd ref="1639118233"/>
- <nd ref="1639118278"/>
<nd ref="1639118286"/>
- <nd ref="1639118240"/>
- <nd ref="1639118235"/>
- <nd ref="1639118225"/>
<nd ref="1639118213"/>
<nd ref="1639118129"/>
<nd ref="1639118136"/>
@@ -19816,10 +23541,11 @@
<tag k="building" v="yes"/>
<tag k="name" v="Maison de la Culture du Japon"/>
<tag k="opening_hours" v="Tu-Sa 12:00-19:00; Th 12:00-20:00; Aug off"/>
- <tag k="phone" v="01.44.37.95 .01"/>
+ <tag k="phone" v="+33144379501"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2012"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.mcjp.fr/"/>
+ <tag k="wikidata" v="Q2744339"/>
<tag k="wikipedia" v="fr:Maison de la culture du Japon à Paris"/>
</way>
<way id="153776401">
@@ -19840,14 +23566,15 @@
<nd ref="790435749"/>
<nd ref="790434303"/>
<tag k="email" v="musee.zadkine@paris.fr"/>
- <tag k="fax" v="01.55.42.77.20"/>
+ <tag k="fax" v="+33155427720"/>
<tag k="name" v="Musée Zadkine"/>
<tag k="name:bg" v="Музей_Цадкин"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
- <tag k="phone" v="01.55.42.77.20"/>
+ <tag k="phone" v="+33155427720"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://zadkine.paris.fr"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q2613771"/>
<tag k="wikipedia" v="fr:Musée Zadkine"/>
</way>
<way id="154679327">
@@ -19862,9 +23589,10 @@
<nd ref="914219257"/>
<tag k="name" v="Musée de Montmartre"/>
<tag k="name:ru" v="Музей Монмартра"/>
- <tag k="phone" v="01.49.25.89.39"/>
+ <tag k="phone" v="+33149258939"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museedemontmartre.fr/"/>
+ <tag k="wikidata" v="Q2919066"/>
<tag k="wikipedia" v="fr:Musée de Montmartre"/>
</way>
<way id="156973373">
@@ -19875,12 +23603,51 @@
<nd ref="714137645"/>
<nd ref="714137432"/>
<nd ref="714137665"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="62"/>
+ <tag k="addr:postcode" v="75003"/>
+ <tag k="addr:street" v="Rue des Archives"/>
<tag k="name" v="Musée de la chasse et de la nature"/>
- <tag k="phone" v="01.53.01.92.40"/>
+ <tag k="opening_hours" v="Tu,Th-Su 11:00-18:00, We 11:00-21:30"/>
+ <tag k="phone" v="+33153019240"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.chassenature.org"/>
+ <tag k="wikidata" v="Q1128657"/>
<tag k="wikipedia" v="fr:Musée de la chasse et de la nature"/>
</way>
+ <way id="159896046">
+ <nd ref="1719691301"/>
+ <nd ref="1719691305"/>
+ <nd ref="1719691307"/>
+ <nd ref="1719691309"/>
+ <nd ref="1719691308"/>
+ <nd ref="1719691306"/>
+ <nd ref="1719691304"/>
+ <nd ref="1719691303"/>
+ <nd ref="4565379989"/>
+ <nd ref="342882449"/>
+ <nd ref="1719691300"/>
+ <nd ref="1719691299"/>
+ <nd ref="1719691298"/>
+ <nd ref="1719691297"/>
+ <nd ref="1719691301"/>
+ <tag k="fare" v="full:7; discount:5; free: under 14"/>
+ <tag k="fax" v="+33143293055"/>
+ <tag k="historic" v="archaeological_site"/>
+ <tag k="location" v="underground"/>
+ <tag k="name" v="Crypte Archéologique du Parvis Notre-Dame"/>
+ <tag k="name:ko" v="노트르담"/>
+ <tag k="note:fr" v="Crypte Archéologique du Parvis Notre-Dame"/>
+ <tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
+ <tag k="operator" v="Musée Carnavalet"/>
+ <tag k="phone" v="+33155425010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="crypte.paris.fr/"/>
+ <tag k="website:en" v="http://crypte.paris.fr/en/crypt"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q3005760"/>
+ <tag k="wikipedia" v="fr:Crypte archéologique du parvis Notre-Dame"/>
+ </way>
<way id="161119956">
<nd ref="920178442"/>
<nd ref="920168162"/>
@@ -19952,11 +23719,16 @@
<nd ref="920181200"/>
<nd ref="920178442"/>
<tag k="alt_name" v="Manufacture Nationale des Gobelins"/>
+ <tag k="landuse" v="industrial"/>
+ <tag k="man_made" v="works"/>
<tag k="name" v="Manufacture des Gobelins"/>
+ <tag k="opening_hours" v="Tu-Su 11:00-18:00; Dec 25 off; Jan 01 off; May 01 off; Dec 31 11:00-17:00"/>
+ <tag k="product" v="tapestry"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
<tag k="tourism" v="museum"/>
- <tag k="website" v="http://www.mobiliernational.culture.gouv.fr/"/>
+ <tag k="website" v="http://manufacturedesgobelins.fr/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q732312"/>
<tag k="wikipedia" v="fr:Manufacture des Gobelins"/>
</way>
<way id="170226810">
@@ -19971,16 +23743,8 @@
<nd ref="782602834"/>
<nd ref="3099188152"/>
<nd ref="782602058"/>
- <nd ref="782601870"/>
+ <nd ref="3918059357"/>
<nd ref="782603044"/>
- <nd ref="782603465"/>
- <nd ref="782602262"/>
- <nd ref="782602657"/>
- <nd ref="782602031"/>
- <nd ref="782602427"/>
- <nd ref="782601299"/>
- <nd ref="782601675"/>
- <nd ref="782601113"/>
<nd ref="782601507"/>
<nd ref="782602809"/>
<nd ref="782603236"/>
@@ -19989,11 +23753,15 @@
<nd ref="782602289"/>
<tag k="alt_name:es" v="Museo_Luxemburgo"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="2"/>
<tag k="name" v="Musée du Luxembourg"/>
- <tag k="phone" v="01.40.13.62.00"/>
+ <tag k="name:de" v="Luxemburgmuseum"/>
+ <tag k="opening_hours" v="Mo-Su 10:00-19:00; Mo, Fr 10:00-21:30; Dec 24 10:00-18:00; Dec 31 10:00-18:00; Jan 01 10:00-18:00; Dec 25 off"/>
+ <tag k="phone" v="+33140136200"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.museeduluxembourg.fr/"/>
+ <tag k="wikidata" v="Q1411180"/>
<tag k="wikipedia" v="fr:Musée du Luxembourg"/>
</way>
<way id="188108997">
@@ -20096,12 +23864,18 @@
<nd ref="705045956"/>
<nd ref="705045957"/>
<nd ref="705045861"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Avenue Franklin Delano Roosevelt"/>
<tag k="building" v="yes"/>
+ <tag k="building:levels" v="3"/>
<tag k="name" v="Palais de la Découverte"/>
- <tag k="opening_hours" v="Tu-Sa 09:30-18:30; Sa 10:00-19:00; PH 10:00-19:00"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="name:de" v="Palast der Entdeckungen"/>
+ <tag k="opening_hours" v="Tu-Sa 09:30-18:00; Su,PH 10:00-19:00; Jan 01,May 01,Dec 25 off"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre;mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.palais-decouverte.fr/"/>
+ <tag k="wikidata" v="Q614450"/>
<tag k="wikipedia" v="fr:Palais de la découverte"/>
</way>
<way id="197647980">
@@ -20120,27 +23894,137 @@
<tag k="former_name" v="Orangerie"/>
<tag k="name" v="Hôtel Kyriad"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2010"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="225761583">
- <nd ref="2345158236"/>
- <nd ref="2345158233"/>
- <nd ref="2345158222"/>
- <nd ref="2345158218"/>
- <nd ref="2345158219"/>
- <nd ref="2345158221"/>
+ <nd ref="2345158235"/>
+ <nd ref="5234595935"/>
+ <nd ref="5234595936"/>
+ <nd ref="5234595937"/>
+ <nd ref="5234595938"/>
+ <nd ref="5234595939"/>
+ <nd ref="5234595940"/>
+ <nd ref="5234595941"/>
+ <nd ref="5234595942"/>
+ <nd ref="5234595943"/>
+ <nd ref="5234595944"/>
+ <nd ref="5234595945"/>
+ <nd ref="5234595946"/>
+ <nd ref="5234595947"/>
+ <nd ref="5234595948"/>
+ <nd ref="5234595949"/>
+ <nd ref="5234595950"/>
+ <nd ref="5234595951"/>
+ <nd ref="5234595952"/>
+ <nd ref="5234595953"/>
+ <nd ref="5234595954"/>
+ <nd ref="5234595955"/>
+ <nd ref="5234595957"/>
+ <nd ref="5234595956"/>
+ <nd ref="5234595958"/>
+ <nd ref="5234595961"/>
+ <nd ref="5234595959"/>
+ <nd ref="5234595960"/>
+ <nd ref="2345158230"/>
+ <nd ref="5234595967"/>
+ <nd ref="5234595965"/>
+ <nd ref="5234595962"/>
+ <nd ref="5234595963"/>
+ <nd ref="5234595964"/>
+ <nd ref="5234595966"/>
+ <nd ref="5234596034"/>
+ <nd ref="4705028420"/>
+ <nd ref="5234596032"/>
+ <nd ref="5234595970"/>
+ <nd ref="5234595968"/>
+ <nd ref="5234595969"/>
+ <nd ref="5234595973"/>
+ <nd ref="5234595971"/>
+ <nd ref="5234595974"/>
+ <nd ref="4705028421"/>
+ <nd ref="5234595975"/>
+ <nd ref="5234595976"/>
+ <nd ref="5234595978"/>
+ <nd ref="5234595977"/>
+ <nd ref="4705028422"/>
+ <nd ref="5234595980"/>
+ <nd ref="5234595981"/>
+ <nd ref="5234595979"/>
+ <nd ref="4705028423"/>
+ <nd ref="5236279374"/>
+ <nd ref="5234596011"/>
+ <nd ref="5234596010"/>
+ <nd ref="4705028424"/>
+ <nd ref="5234596007"/>
+ <nd ref="5234596008"/>
+ <nd ref="5234596006"/>
+ <nd ref="5234596005"/>
+ <nd ref="5234596004"/>
+ <nd ref="5234596009"/>
+ <nd ref="5234596002"/>
+ <nd ref="5234596001"/>
+ <nd ref="5234596000"/>
+ <nd ref="5234596003"/>
+ <nd ref="5234595999"/>
+ <nd ref="5234595997"/>
+ <nd ref="5234595996"/>
+ <nd ref="5234595998"/>
+ <nd ref="5234596013"/>
+ <nd ref="5234596012"/>
+ <nd ref="5234595995"/>
+ <nd ref="5234595990"/>
+ <nd ref="5234595989"/>
+ <nd ref="5234595988"/>
+ <nd ref="5234595987"/>
+ <nd ref="5234595991"/>
+ <nd ref="5234595986"/>
+ <nd ref="5234595985"/>
+ <nd ref="5234595984"/>
+ <nd ref="5234595983"/>
+ <nd ref="5234595992"/>
+ <nd ref="5234595982"/>
+ <nd ref="5234596029"/>
+ <nd ref="5234596028"/>
+ <nd ref="5234596023"/>
+ <nd ref="5234596024"/>
+ <nd ref="5234596021"/>
+ <nd ref="5234596020"/>
+ <nd ref="5234596019"/>
+ <nd ref="5234596018"/>
+ <nd ref="5234596022"/>
+ <nd ref="5234596017"/>
+ <nd ref="5234596016"/>
+ <nd ref="5234596014"/>
+ <nd ref="5234596015"/>
+ <nd ref="5234596025"/>
+ <nd ref="5234596026"/>
+ <nd ref="5234596027"/>
+ <nd ref="5236279377"/>
+ <nd ref="5234596033"/>
+ <nd ref="5234596035"/>
+ <nd ref="5234596036"/>
+ <nd ref="5234596037"/>
<nd ref="2345158223"/>
- <nd ref="2345158226"/>
+ <nd ref="5234596038"/>
+ <nd ref="5234596031"/>
<nd ref="2345158231"/>
<nd ref="2345158235"/>
- <nd ref="2345158230"/>
- <nd ref="2345158225"/>
- <nd ref="2345158228"/>
- <nd ref="2345158236"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:postcode" v="75017"/>
+ <tag k="addr:street" v="Boulevard Berthier"/>
<tag k="building" v="yes"/>
- <tag k="name" v="Timhotel Berthier Paris XVII"/>
- <tag k="source" v="bing"/>
+ <tag k="building:levels" v="10"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Timhotel Berthier Paris 17"/>
+ <tag k="operator" v="Timhotel"/>
+ <tag k="phone" v="+33 1 46 27 10 00"/>
+ <tag k="rooms" v="252"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre ; mise à jour : 2016"/>
+ <tag k="stars" v="3"/>
<tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://timhotel-berthier-paris-17.fr"/>
</way>
<way id="243973065">
<nd ref="716912755"/>
@@ -20161,10 +24045,11 @@
<tag k="amenity" v="arts_centre"/>
<tag k="area" v="yes"/>
<tag k="name" v="Centre Culturel Suédois"/>
- <tag k="phone" v="01.44.78.80.20"/>
+ <tag k="phone" v="+33144788020"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="www.si.se/Paris/"/>
+ <tag k="wikidata" v="Q927844"/>
<tag k="wikipedia" v="fr:Centre culturel suédois"/>
</way>
<way id="265200180">
@@ -20174,12 +24059,11 @@
<nd ref="2708634859"/>
<nd ref="2733282388"/>
<nd ref="2708634864"/>
- <tag k="addr:city" v="Paris"/>
- <tag k="addr:housenumber" v="11"/>
- <tag k="addr:postcode" v="75004"/>
- <tag k="addr:street" v="Rue Saint-Paul"/>
<tag k="name" v="Musée de la magie"/>
<tag k="tourism" v="museum"/>
+ <tag k="website" v="http://www.museedelamagie.com/"/>
+ <tag k="wikidata" v="Q3329918"/>
+ <tag k="wikipedia" v="fr:Musée de la Magie"/>
</way>
<way id="277554250">
<nd ref="975599564"/>
@@ -20194,10 +24078,15 @@
<nd ref="975543344"/>
<nd ref="975602566"/>
<nd ref="975599564"/>
+ <tag k="addr:city" v="Malakoff"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="62"/>
+ <tag k="addr:postcode" v="92240"/>
+ <tag k="addr:street" v="Avenue Pierre Brossolette"/>
<tag k="building" v="yes"/>
- <tag k="fixme" v="shape to be verified against cadastre"/>
- <tag k="name" v="Suite~Home"/>
- <tag k="source" v="survey"/>
+ <tag k="name" v="adagio aparthotel"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Generale des Impots - Cadastre. Mise a jour : 2014"/>
+ <tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
</way>
<way id="292982744">
@@ -20249,7 +24138,7 @@
<nd ref="635373705"/>
<nd ref="635373706"/>
<nd ref="635373722"/>
- <nd ref="635373695"/>
+ <nd ref="330252489"/>
<nd ref="635373696"/>
<nd ref="635373693"/>
<nd ref="635373732"/>
@@ -20320,13 +24209,295 @@
<tag k="fee" v="full:14;discount: under 26: 10, under 18: 5;free: under 3, journalist, ICOM, ICOMOS, COTOREP, ONAC, MDPH, CDAPH"/>
<tag k="name" v="Fondation Louis Vuitton"/>
<tag k="opening_hours" v="Mo-Th 12:00-19:00;Tu off;Fr 12:00-23:00;Sa,Su 11:00-20:00"/>
- <tag k="phone" v="01.40.69.96.00"/>
+ <tag k="phone" v="+33140699600"/>
+ <tag k="ref:structurae" v="20023362"/>
<tag k="source" v="knowledge;extrapolation;bing"/>
<tag k="start_date" v="2014-10-24"/>
<tag k="tourism" v="museum"/>
<tag k="website" v="http://www.fondationlouisvuitton.fr/"/>
<tag k="wikidata" v="Q3075489"/>
</way>
+ <way id="336983049">
+ <nd ref="784366161"/>
+ <nd ref="784463203"/>
+ <nd ref="784454671"/>
+ <nd ref="784390007"/>
+ <nd ref="784399077"/>
+ <nd ref="784438511"/>
+ <nd ref="784361412"/>
+ <nd ref="784454982"/>
+ <nd ref="784506818"/>
+ <nd ref="784459223"/>
+ <nd ref="784335294"/>
+ <nd ref="784454761"/>
+ <nd ref="912270695"/>
+ <nd ref="784382472"/>
+ <nd ref="784366161"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:country" v="FR"/>
+ <tag k="addr:housenumber" v="49"/>
+ <tag k="addr:postcode" v="75010"/>
+ <tag k="addr:street" v="Boulevard de Magenta"/>
+ <tag k="contact:website" v="http://www.est-hotel-paris.com/"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Est Hôtel Paris"/>
+ <tag k="name:en" v="Est Hotel Paris"/>
+ <tag k="opening_hours" v="24/7"/>
+ <tag k="rooms" v="83"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="361806048">
+ <nd ref="3662316223"/>
+ <nd ref="3662316219"/>
+ <nd ref="3662316217"/>
+ <nd ref="3662316216"/>
+ <nd ref="3662316218"/>
+ <nd ref="3662316221"/>
+ <nd ref="3662316222"/>
+ <nd ref="3662316220"/>
+ <nd ref="3662324126"/>
+ <nd ref="3662324127"/>
+ <nd ref="3662316224"/>
+ <nd ref="3662324125"/>
+ <nd ref="3662316223"/>
+ <tag k="building" v="yes"/>
+ <tag k="contact:website" v="https://www.melia.com/en/hotels/france/paris/melia-paris-la-defense/index.html"/>
+ <tag k="name" v="Meliá Paris La Défense"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2015"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="395785603">
+ <nd ref="3986016080"/>
+ <nd ref="3986015557"/>
+ <nd ref="778228133"/>
+ <nd ref="3986016081"/>
+ <nd ref="778228209"/>
+ <nd ref="778228962"/>
+ <nd ref="778229678"/>
+ <nd ref="778229117"/>
+ <nd ref="778228313"/>
+ <nd ref="778228555"/>
+ <nd ref="778229288"/>
+ <nd ref="778229555"/>
+ <nd ref="778229154"/>
+ <nd ref="3986016082"/>
+ <nd ref="3986016080"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1991"/>
+ <tag k="name" v="Musée national Eugène Delacroix"/>
+ <tag k="opening_hours" v="Mo-Su 09:30-17:30; Tu off; Jan 01 off; May 01 off; Dec 25 off"/>
+ <tag k="phone" v="+33144418650"/>
+ <tag k="ref:mhs" v="PA00088668"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="www.musee-delacroix.fr"/>
+ <tag k="wikidata" v="Q1782606"/>
+ <tag k="wikipedia" v="fr:musée Delacroix"/>
+ </way>
+ <way id="421546149">
+ <nd ref="4212981368"/>
+ <nd ref="4212981369"/>
+ <nd ref="4212981370"/>
+ <nd ref="4212981371"/>
+ <nd ref="4212981373"/>
+ <nd ref="4212981372"/>
+ <nd ref="4212981365"/>
+ <nd ref="4212981364"/>
+ <nd ref="4353891358"/>
+ <nd ref="4212981368"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="23"/>
+ <tag k="addr:postcode" v="75019"/>
+ <tag k="addr:street" v="Avenue René Fonck"/>
+ <tag k="air_conditioning" v="yes"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="10"/>
+ <tag k="contact:phone" v="+33 8 92701880"/>
+ <tag k="name" v="B&amp;B Hôtel"/>
+ <tag k="operator" v="B&amp;B Hotels"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2014"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="http://www.hotel-bb.com/fr/hotels/paris-porte-des-lilas.htm"/>
+ </way>
+ <way id="463892924">
+ <nd ref="4590972327"/>
+ <nd ref="4590972326"/>
+ <nd ref="958758697"/>
+ <nd ref="4590972325"/>
+ <nd ref="958759535"/>
+ <nd ref="4590972327"/>
+ <tag k="addr:city" v="Courbevoie"/>
+ <tag k="addr:housenumber" v="99"/>
+ <tag k="addr:postcode" v="92400"/>
+ <tag k="addr:street" v="Rue du Capitaine Guynemer"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Ibis Styles Paris La Défense Courbevoie"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="472159547">
+ <nd ref="824424516"/>
+ <nd ref="824421974"/>
+ <nd ref="824423326"/>
+ <nd ref="824421550"/>
+ <nd ref="824421799"/>
+ <nd ref="824423274"/>
+ <nd ref="824422634"/>
+ <nd ref="824425524"/>
+ <nd ref="824421798"/>
+ <nd ref="824422009"/>
+ <nd ref="824421871"/>
+ <nd ref="824422617"/>
+ <nd ref="824422438"/>
+ <nd ref="824423818"/>
+ <nd ref="824425748"/>
+ <nd ref="824421842"/>
+ <nd ref="824422925"/>
+ <nd ref="824421838"/>
+ <nd ref="824424139"/>
+ <nd ref="824425675"/>
+ <nd ref="824425546"/>
+ <nd ref="824424712"/>
+ <nd ref="824424699"/>
+ <nd ref="824422714"/>
+ <nd ref="824423518"/>
+ <nd ref="824423709"/>
+ <nd ref="824424229"/>
+ <nd ref="824425287"/>
+ <nd ref="824425846"/>
+ <nd ref="2830985322"/>
+ <nd ref="2830985323"/>
+ <nd ref="2833641435"/>
+ <nd ref="2833641440"/>
+ <nd ref="2833641432"/>
+ <nd ref="3895164337"/>
+ <nd ref="256624370"/>
+ <nd ref="824424026"/>
+ <nd ref="2668326773"/>
+ <nd ref="824425793"/>
+ <nd ref="824423027"/>
+ <nd ref="824422891"/>
+ <nd ref="824422938"/>
+ <nd ref="824422484"/>
+ <nd ref="824424516"/>
+ <tag k="alt_name:es" v="Museo_Rodin"/>
+ <tag k="name" v="Musée Rodin"/>
+ <tag k="name:ko" v="로댕 미술관"/>
+ <tag k="opening_hours" v="Tu-Su 10:00-17:45; We 10:00-20:45"/>
+ <tag k="phone" v="+33144186110"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="website" v="www.musee-rodin.fr/"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q650519"/>
+ <tag k="wikipedia" v="fr:Musée Rodin"/>
+ </way>
+ <way id="483292588">
+ <nd ref="4760479044"/>
+ <nd ref="4760479045"/>
+ <nd ref="4760479047"/>
+ <nd ref="4760479049"/>
+ <nd ref="4760479044"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="491406145">
+ <nd ref="4835248798"/>
+ <nd ref="924751755"/>
+ <nd ref="924705364"/>
+ <nd ref="4835248799"/>
+ <nd ref="4835248800"/>
+ <nd ref="4835248797"/>
+ <nd ref="4835248796"/>
+ <nd ref="4835248795"/>
+ <nd ref="4835248794"/>
+ <nd ref="4835248793"/>
+ <nd ref="4835248792"/>
+ <nd ref="4835248791"/>
+ <nd ref="4835248790"/>
+ <nd ref="4835248789"/>
+ <nd ref="4835248788"/>
+ <nd ref="924745721"/>
+ <nd ref="924714775"/>
+ <nd ref="4835248785"/>
+ <nd ref="4835248784"/>
+ <nd ref="4835248783"/>
+ <nd ref="4835248782"/>
+ <nd ref="4835248781"/>
+ <nd ref="4835248780"/>
+ <nd ref="4835248779"/>
+ <nd ref="4835248778"/>
+ <nd ref="4835248798"/>
+ <tag k="addr:housenumber" v="3-15"/>
+ <tag k="addr:street" v="Rue Charles Leroy"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="B&amp;B Hôtel Paris Italie Porte de Choisy"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2017"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="website" v="www.hotel-bb.com/fr/hotels/paris-italie-porte-de-choisy.htm"/>
+ </way>
+ <way id="503243582">
+ <nd ref="4935890796"/>
+ <nd ref="4935890797"/>
+ <nd ref="4935890798"/>
+ <nd ref="930326750"/>
+ <nd ref="4935890796"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="4"/>
+ <tag k="addr:postcode" v="75014"/>
+ <tag k="addr:street" v="Boulevard Brune"/>
+ <tag k="building" v="hotel"/>
+ <tag k="name" v="Novotel Suites"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ </way>
+ <way id="520665759">
+ <nd ref="5074472340"/>
+ <nd ref="5074472341"/>
+ <nd ref="5074472342"/>
+ <nd ref="5074472340"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="2"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue du Colonel Pierre Avia"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Okko"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="wheelchair" v="yes"/>
+ </way>
+ <relation id="403146">
+ <member type="way" ref="49734532" role="inner"/>
+ <member type="way" ref="49734503" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="heritage" v="2"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1862"/>
+ <tag k="name" v="Hôtel de Sully"/>
+ <tag k="ref:mhs" v="PA00086278"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 04/2015"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wikidata" v="Q1643144"/>
+ <tag k="wikipedia" v="fr:Hôtel de Sully"/>
+ </relation>
+ <relation id="538237">
+ <member type="way" ref="53672217" role="outer"/>
+ <member type="way" ref="53672216" role="inner"/>
+ <tag k="addr:housenumber" v="8"/>
+ <tag k="addr:street" v="Place Marguerite de Navarre"/>
+ <tag k="building" v="yes"/>
+ <tag k="height" v="24"/>
+ <tag k="name" v="Hôtel Novotel"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="novotelparis.com"/>
+ </relation>
<relation id="540571">
<member type="way" ref="53944155" role="inner"/>
<member type="way" ref="53944228" role="outer"/>
@@ -20339,6 +24510,19 @@
<tag k="type" v="multipolygon"/>
<tag k="website" v="http://www.hotel-lilas-blanc-paris.fr/"/>
</relation>
+ <relation id="571849">
+ <member type="way" ref="56092429" role="inner"/>
+ <member type="way" ref="56092497" role="outer"/>
+ <tag k="addr:housenumber" v="1"/>
+ <tag k="addr:postcode" v="75004"/>
+ <tag k="addr:street" v="rue de la Bastille"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Hôtel Bastille Speria"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www.hotel-bastille-speria.com/"/>
+ </relation>
<relation id="967664">
<member type="way" ref="62235550" role="inner"/>
<member type="way" ref="62235595" role="inner"/>
@@ -20346,6 +24530,7 @@
<tag k="amenity" v="public_building"/>
<tag k="building" v="yes"/>
<tag k="name" v="Hôtel des Monnaies"/>
+ <tag k="opening_hours" v="Mo-Su 11:00-19:00; Th 11:00-22:00; Dec 25 off; Jan 01 off; May 01 off"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="tourism" v="museum"/>
<tag k="type" v="multipolygon"/>
@@ -20353,6 +24538,201 @@
<tag k="wikidata" v="Q2411384"/>
<tag k="wikipedia" v="fr:Hôtel de la Monnaie (Paris)"/>
</relation>
+ <relation id="983690">
+ <member type="way" ref="63199260" role="outer"/>
+ <member type="way" ref="63202819" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
+ <tag k="email" v="aulivia@book-inn-france.com"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Aulivia Opéra"/>
+ <tag k="phone" v="+33 1 45 23 88 88"/>
+ <tag k="rooms" v="24"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www.bookinnfrance.com/hotel-aulivia-opera-paris.html"/>
+ </relation>
+ <relation id="983746">
+ <member type="way" ref="63196382" role="outer"/>
+ <member type="way" ref="63201589" role="inner"/>
+ <tag k="beds" v="47"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Hôtel Hor"/>
+ <tag k="operator" v="Debecque Jacques"/>
+ <tag k="phone" v="+33 1 40 05 18 05"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www.hotel-hor.com/"/>
+ </relation>
+ <relation id="1002636">
+ <member type="way" ref="63640242" role="outer"/>
+ <member type="way" ref="63643442" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
+ <tag k="contact:website" v="http://www.standard-design-hotel-paris.com"/>
+ <tag k="name" v="Standard Design"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1002793">
+ <member type="way" ref="63639857" role="outer"/>
+ <member type="way" ref="63648099" role="inner"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="7"/>
+ <tag k="addr:postcode" v="75011"/>
+ <tag k="addr:street" v="Rue Pache"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Le Musée du Fumeur"/>
+ <tag k="phone" v="+33146590551"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="www.museedufumeur.net"/>
+ <tag k="wikidata" v="Q3330353"/>
+ </relation>
+ <relation id="1015647">
+ <member type="way" ref="64315567" role="inner"/>
+ <member type="way" ref="64315504" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Printania"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1060804">
+ <member type="way" ref="67109736" role="inner"/>
+ <member type="way" ref="67109767" role="inner"/>
+ <member type="way" ref="67109773" role="inner"/>
+ <member type="way" ref="67109766" role="outer"/>
+ <tag k="addr:housename" v="Hôtel le Crillon"/>
+ <tag k="addr:housenumber" v="10"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="place de la Concorde"/>
+ <tag k="alt_name" v="Hôtel des Monnaies"/>
+ <tag k="architect" v="Jacques-Ange Gabriel"/>
+ <tag k="building" v="yes"/>
+ <tag k="closed" v="yes"/>
+ <tag k="name" v="Hôtel de Crillon (fermé)"/>
+ <tag k="old_name" v="Hôtel d’Aumont; Hôtel de Courlande"/>
+ <tag k="start_date" v="1909-03-01..1909-03-31"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wikidata" v="Q692768"/>
+ </relation>
+ <relation id="1067208">
+ <member type="way" ref="67396382" role="inner"/>
+ <member type="way" ref="67396391" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="name" v="Le Bristol"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wikidata" v="Q3145551"/>
+ </relation>
+ <relation id="1068075">
+ <member type="way" ref="67561804" role="inner"/>
+ <member type="way" ref="67561797" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="email" v="accueil@pinacotheque.com"/>
+ <tag k="end_date" v="15/02/2016"/>
+ <tag k="name" v="Pinacothèque de Paris"/>
+ <tag k="phone" v="+33142680201"/>
+ <tag k="start_date" v="07/06/2007"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www.pinacotheque.com/"/>
+ <tag k="wikidata" v="Q774118"/>
+ <tag k="wikipedia" v="fr:Pinacothèque de Paris"/>
+ </relation>
+ <relation id="1069737">
+ <member type="way" ref="409561911" role="outer"/>
+ <member type="way" ref="67644273" role="inner"/>
+ <tag k="addr:housenumber" v="108"/>
+ <tag k="addr:street" v="Rue Saint-Lazare"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="6"/>
+ <tag k="contact:facebook" v="https://www.facebook.com/hiltonparisopera"/>
+ <tag k="contact:google_plus" v="https://plus.google.com/+HiltonParisOpera"/>
+ <tag k="contact:twitter" v="https://twitter.com/hiltonparisoper"/>
+ <tag k="email" v="parisopera.sales@hilton.com"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="name" v="Hilton Paris Opera"/>
+ <tag k="operator" v="Hilton"/>
+ <tag k="rooms" v="268"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www3.hilton.com/en/hotels/france/hilton-paris-opera-PAROPHI/index.html?WT.mc_id=zELWAKN0EMEA1HI2DMH3LocalSearch4DGGenericx6PAROPHI"/>
+ <tag k="wikidata" v="Q2992084"/>
+ <tag k="wikipedia" v="fr:Hilton Paris Opéra"/>
+ </relation>
+ <relation id="1085276">
+ <member type="way" ref="69220460" role="outer"/>
+ <member type="way" ref="69220776" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Axel Opéra"/>
+ <tag k="stars" v="3"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1085292">
+ <member type="way" ref="69220717" role="outer"/>
+ <member type="way" ref="69221106" role="inner"/>
+ <tag k="beds" v="8"/>
+ <tag k="building" v="yes"/>
+ <tag k="fax" v="+33 1 45 23 59 83"/>
+ <tag k="internet_access" v="yes"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="name" v="Serotel Suites"/>
+ <tag k="phone" v="+33 1 42 65 90 73"/>
+ <tag k="rooms" v="3"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="http://www.serotelsuites.com"/>
+ <tag k="wheelchair" v="yes"/>
+ </relation>
+ <relation id="1085386">
+ <member type="way" ref="69224136" role="outer"/>
+ <member type="way" ref="69226735" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Maison Athénée"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1086180">
+ <member type="way" ref="69332501" role="inner"/>
+ <member type="way" ref="69332509" role="inner"/>
+ <member type="way" ref="69332440" role="inner"/>
+ <member type="way" ref="69332454" role="inner"/>
+ <member type="way" ref="69332470" role="inner"/>
+ <member type="way" ref="69332492" role="outer"/>
+ <tag k="addr:housenumber" v="25"/>
+ <tag k="addr:street" v="Avenue Montaigne"/>
+ <tag k="building" v="hotel"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Hôtel Plaza Athénée"/>
+ <tag k="operator" v="Dorchester Collection"/>
+ <tag k="stars" v="5"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wikidata" v="Q2375304"/>
+ </relation>
+ <relation id="1099706">
+ <member type="way" ref="69549161" role="outer"/>
+ <member type="way" ref="69549019" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="name" v="Hôtel France Albion"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
<relation id="1102275">
<member type="way" ref="69883460" role="outer"/>
<member type="way" ref="69883468" role="inner"/>
@@ -20363,7 +24743,7 @@
<tag k="building" v="yes"/>
<tag k="name" v="Hôtel Le Tourville"/>
<tag k="operator" v="Inwood Hotels"/>
- <tag k="phone" v="+33 (0)1 47 05 62 62"/>
+ <tag k="phone" v="+33 1 47 05 62 62"/>
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="type" v="multipolygon"/>
@@ -20382,7 +24762,7 @@
<tag k="name:fr" v="Musée Galliera"/>
<tag k="name:vi" v="Bảo tàng Galliera"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00; Th 10:00-21:00"/>
- <tag k="phone" v="01.56.52.86.00"/>
+ <tag k="phone" v="+33156528600"/>
<tag k="source" v="Cadastre. Mise à jour : 2010; survey; knowledge"/>
<tag k="tourism" v="museum"/>
<tag k="type" v="multipolygon"/>
@@ -20391,6 +24771,122 @@
<tag k="wikidata" v="Q1632912"/>
<tag k="wikipedia" v="fr:Musée Galliera"/>
</relation>
+ <relation id="1198705">
+ <member type="way" ref="79633957" role="inner"/>
+ <member type="way" ref="79634337" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Agenor"/>
+ <tag k="stars" v="2"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1211258">
+ <member type="way" ref="78534704" role="inner"/>
+ <member type="way" ref="78535908" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="internet_access:fee" v="yes"/>
+ <tag k="name" v="Hôtel Rubens"/>
+ <tag k="phone" v="+33143317330"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1211381">
+ <member type="way" ref="78407086" role="inner"/>
+ <member type="way" ref="78407176" role="outer"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="14"/>
+ <tag k="addr:postcode" v="75013"/>
+ <tag k="addr:street" v="Rue des Cordelières"/>
+ <tag k="building" v="hotel"/>
+ <tag k="name" v="Aladin"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1212876">
+ <member type="way" ref="80293048" role="inner"/>
+ <member type="way" ref="80292644" role="outer"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="16"/>
+ <tag k="addr:postcode" v="75015"/>
+ <tag k="addr:street" v="Rue Antoine Bourdelle"/>
+ <tag k="building" v="yes"/>
+ <tag k="fax" v="+33145442165"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="internet_access:fee" v="no"/>
+ <tag k="internet_access:operator" v="Mairie de Paris"/>
+ <tag k="name" v="Musée Bourdelle"/>
+ <tag k="name:es" v="Museo Antoine Bourdelle"/>
+ <tag k="name:ru" v="Дом-музей Бурделя"/>
+ <tag k="operator" v="Ville de Paris"/>
+ <tag k="phone" v="+33149547373"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="paris.fr/loisirs/musees-expos/musee-bourdelle/p6408"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2715373"/>
+ <tag k="wikipedia" v="fr:Musée Bourdelle"/>
+ </relation>
+ <relation id="1212990">
+ <member type="way" ref="79717943" role="inner"/>
+ <member type="way" ref="79717304" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel d'Alésia"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1213058">
+ <member type="way" ref="79621920" role="inner"/>
+ <member type="way" ref="79621541" role="outer"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Apollinaire"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1260880">
+ <member type="way" ref="84330260" role="outer"/>
+ <member type="way" ref="84324749" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="7"/>
+ <tag k="internet_access" v="wlan"/>
+ <tag k="name" v="Best Western Opera Batignolles"/>
+ <tag k="phone" v="+33 1 56 79 29 29"/>
+ <tag k="smoking" v="outside"/>
+ <tag k="stars" v="4"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="website" v="www.hotel-opera-batignolles-paris.com"/>
+ </relation>
+ <relation id="1260941">
+ <member type="way" ref="84325480" role="outer"/>
+ <member type="way" ref="84328448" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Hôtel Méridien"/>
+ <tag k="phone" v="+33 1 40 68 34 34"/>
+ <tag k="source:tourism" v="survey"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wheelchair" v="yes"/>
+ </relation>
+ <relation id="1261169">
+ <member type="way" ref="84327331" role="outer"/>
+ <member type="way" ref="84330864" role="inner"/>
+ <tag k="building" v="yes"/>
+ <tag k="building:levels" v="4"/>
+ <tag k="name" v="Hôtel Le Villiers"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
+ <relation id="1781558">
+ <member type="way" ref="77916138" role="outer"/>
+ <member type="way" ref="77915986" role="inner"/>
+ <tag k="addr:street" v="Place Émile Goudeau"/>
+ <tag k="building" v="yes"/>
+ <tag k="name" v="Timhotel Montmartre"/>
+ <tag k="operator" v="Timhotel"/>
+ <tag k="tourism" v="hotel"/>
+ <tag k="type" v="multipolygon"/>
+ </relation>
<relation id="2212695">
<member type="way" ref="64859664" role="outer"/>
<member type="way" ref="64860567" role="inner"/>
@@ -20403,7 +24899,7 @@
<member type="way" ref="57832950" role="outer"/>
<member type="way" ref="57832964" role="outer"/>
<tag k="alt_name:fr" v="Histoire de Paris"/>
- <tag k="fax" v="01.44.59.58.07"/>
+ <tag k="fax" v="+33144595807"/>
<tag k="fee" v="free"/>
<tag k="internet_access" v="wlan"/>
<tag k="internet_access:fee" v="no"/>
@@ -20416,7 +24912,7 @@
<tag k="note:fr" v="Fermeture des caisses à 17h30"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
<tag k="operator" v="Ville de Paris"/>
- <tag k="phone" v="01.44.59.58.58"/>
+ <tag k="phone" v="+33144595858"/>
<tag k="source:internet_access" v="Paris Open Data"/>
<tag k="tourism" v="museum"/>
<tag k="type" v="multipolygon"/>
@@ -20428,7 +24924,11 @@
<relation id="2778854">
<member type="way" ref="107810914" role="inner"/>
<member type="way" ref="107810913" role="outer"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75008"/>
+ <tag k="addr:street" v="Avenue Winston Churchill"/>
<tag k="alt_name" v="Petit Palais - Musée des Beaux-Arts de la Ville de Paris"/>
+ <tag k="architect" v="Charles Girault"/>
<tag k="building" v="yes"/>
<tag k="heritage" v="3"/>
<tag k="heritage:operator" v="mhs"/>
@@ -20436,13 +24936,13 @@
<tag k="internet_access:fee" v="no"/>
<tag k="internet_access:operator" v="Mairie de Paris"/>
<tag k="name" v="Petit Palais"/>
- <tag k="name:de" v="Kleiner Palast"/>
<tag k="name:ru" v="Малый дворец"/>
<tag k="opening_hours" v="Tu-Su 10:00-18:00"/>
- <tag k="phone" v="01.53.43.40.00"/>
+ <tag k="phone" v="+33 153 434 000"/>
<tag k="ref:mhs" v="PA00088878"/>
<tag k="source" v="Cadastre. Mise à jour : 2010;survey;knowledge"/>
<tag k="source:internet_access" v="Paris Open Data"/>
+ <tag k="start_date" v="1900"/>
<tag k="tourism" v="museum"/>
<tag k="type" v="multipolygon"/>
<tag k="website" v="http://www.petitpalais.paris.fr/"/>
@@ -20463,39 +24963,7 @@
<tag k="stars" v="4"/>
<tag k="tourism" v="hotel"/>
<tag k="type" v="multipolygon"/>
- </relation>
- <relation id="3262297">
- <member type="way" ref="53813362" role="outer"/>
- <member type="way" ref="53814916" role="inner"/>
- <member type="way" ref="53814914" role="inner"/>
- <member type="way" ref="53814919" role="inner"/>
- <member type="way" ref="53814915" role="inner"/>
- <member type="way" ref="53814917" role="inner"/>
- <member type="way" ref="53813363" role="inner"/>
- <tag k="alt_name" v="Musée du Louvre"/>
- <tag k="building" v="castle"/>
- <tag k="castle_type" v="stately"/>
- <tag k="historic" v="castle"/>
- <tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/6/66/Louvre_Museum_Wikimedia_Commons.jpg"/>
- <tag k="image:panorama" v="http://upload.wikimedia.org/wikipedia/commons/d/d2/Jardin_du_Carrousel.jpg"/>
- <tag k="importance" v="international"/>
- <tag k="layer" v="1"/>
- <tag k="name" v="Le Louvre"/>
- <tag k="name:es" v="Museo del Louvre"/>
- <tag k="name:ja" v="ルーブル美術館"/>
- <tag k="name:pt" v="Museu do Louvre"/>
- <tag k="name:ru" v="Лувр"/>
- <tag k="name:zh" v="卢浮宫博物馆"/>
- <tag k="roof:material" v="metal"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="tourism" v="museum"/>
- <tag k="tourism:visitors" v="9000000"/>
- <tag k="type" v="multipolygon"/>
- <tag k="website" v="http://www.louvre.fr/"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Musée du Louvre"/>
- <tag k="wikipedia:en" v="The Louvre"/>
- <tag k="wikipedia:es" v="Museo del Louvre"/>
+ <tag k="wikidata" v="Q3142395"/>
</relation>
<relation id="3344870">
<member type="way" ref="53567913" role="outer"/>
@@ -20543,16 +25011,18 @@
<tag k="building:facade:colour" v="#F2EBD8"/>
<tag k="building:part" v="no"/>
<tag k="building:roof:colour" v="#F2EBD8"/>
- <tag k="denomination" v="catholic"/>
- <tag k="fare" v="full:8,5; discount:5,5; group 6,5"/>
+ <tag k="denomination" v="roman_catholic"/>
+ <tag k="fare" v="full:8,5;discount:5,5;group 6,5"/>
<tag k="height" v="75"/>
<tag k="heritage" v="2"/>
<tag k="heritage:operator" v="mhs"/>
<tag k="mhs:inscription_date" v="1862"/>
<tag k="name" v="Sainte-Chapelle"/>
+ <tag k="name:ko" v="생트 샤펠 성당"/>
+ <tag k="name:ru" v="Святая Капелла"/>
<tag k="opening_hours" v="Mo-Fr 09:30-13:00,14:00-18:00; Sa,Su 09:30-18:00"/>
<tag k="operator" v="Centre des monuments nationaux"/>
- <tag k="phone" v="01.53.40.60.80"/>
+ <tag k="phone" v="+33153406080"/>
<tag k="ref:mhs" v="PA00086001"/>
<tag k="religion" v="christian"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
@@ -20562,5 +25032,37 @@
<tag k="wikidata" v="Q193193"/>
<tag k="wikipedia" v="fr:Sainte-Chapelle"/>
</relation>
+ <relation id="7515426">
+ <member type="way" ref="335265936" role="outer"/>
+ <member type="way" ref="53813363" role="inner"/>
+ <member type="way" ref="335265920" role="inner"/>
+ <member type="way" ref="335265921" role="inner"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:postcode" v="75001"/>
+ <tag k="contact:phone" v="+33 1 40 20 52 29"/>
+ <tag k="contact:website" v="http://www.louvre.fr"/>
+ <tag k="image" v="http://upload.wikimedia.org/wikipedia/commons/6/66/Louvre_Museum_Wikimedia_Commons.jpg"/>
+ <tag k="importance" v="international"/>
+ <tag k="int_name" v="Louvre"/>
+ <tag k="museum" v="art"/>
+ <tag k="name" v="Musée du Louvre"/>
+ <tag k="name:de" v="Museum des Louvre"/>
+ <tag k="name:en" v="Louvre Museum"/>
+ <tag k="name:es" v="Museo del Louvre"/>
+ <tag k="name:ja" v="ルーブル美術館"/>
+ <tag k="name:pt" v="Museu do Louvre"/>
+ <tag k="name:ru" v="Лувр"/>
+ <tag k="name:zh" v="卢浮宫博物馆"/>
+ <tag k="note" v="This is for the LOUVRE MUSEUM and includes some features that are outside the building/underground. DO NOT MIX IT UP WITH THE LOUVRE PALACE!"/>
+ <tag k="opening_hours" v="Mo,Th,Sa,Su 09:00-18:00; We,Fr 09:00-21:45; Tu off; Jan 1,May 1,Dec 25: off"/>
+ <tag k="opening_hours:lastcheck" v="2015-03"/>
+ <tag k="surveillance" v="indoor"/>
+ <tag k="tourism" v="museum"/>
+ <tag k="tourism:visitors" v="9000000"/>
+ <tag k="type" v="multipolygon"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q19675"/>
+ <tag k="wikipedia" v="fr:Musée du Louvre"/>
+ </relation>
</osm>
diff --git a/test/poi-service/script/paris/station.xml b/test/poi-service/script/paris/station.xml
index edcee4a..d9cea31 100755..100644
--- a/test/poi-service/script/paris/station.xml
+++ b/test/poi-service/script/paris/station.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
-<osm version="0.6" generator="Overpass API">
+<osm version="0.6" generator="Overpass API 0.7.54.12 054bb0bb">
<note>The data included in this document is from www.openstreetmap.org. The data is made available under ODbL.</note>
-<meta osm_base="2015-03-09T10:25:02Z"/>
+<meta osm_base="2017-12-11T17:04:02Z"/>
<node id="12388534" lat="48.8153367" lon="2.2970255">
<tag k="STIF:zone" v="1"/>
@@ -10,6 +10,7 @@
<tag k="ref:FR:RATP" v="22441"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1731762"/>
<tag k="wikipedia" v="fr:Malakoff - Rue Étienne Dolet (métro de Paris)"/>
</node>
<node id="21310914" lat="48.8330952" lon="2.3331622">
@@ -22,44 +23,56 @@
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775863"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q800660"/>
<tag k="wikipedia" v="fr:Gare de Denfert-Rochereau"/>
</node>
- <node id="26721276" lat="48.8880508" lon="2.3137804">
+ <node id="26721276" lat="48.8880500" lon="2.3137810">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pont Cardinet"/>
<tag k="official_name" v="PONT CARDINET"/>
<tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:STIF" v="411351"/>
<tag k="source" v="survey"/>
<tag k="uic_ref" v="8738111"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q3396323"/>
<tag k="wikipedia" v="fr:Pont-Cardinet (métro de Paris)"/>
</node>
- <node id="26824135" lat="48.8448369" lon="2.3734794">
+ <node id="26824135" lat="48.8448057" lon="2.3734794">
<tag k="SNCF:stop_name" v="Paris-Gare-de-Lyon"/>
+ <tag k="alt_name" v="Paris - Gare de Lyon"/>
<tag k="bench" v="yes"/>
- <tag k="name" v="Paris-Gare de Lyon"/>
+ <tag k="name" v="Gare de Lyon"/>
<tag k="name:ru" v="Лионский вокзал"/>
<tag k="name:uk" v="Ліонський вокзал"/>
<tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
+ <tag k="railway:ref" v="PLY"/>
+ <tag k="railway:ref:DB" v="XFPG"/>
<tag k="ref:SNCF" v="PLY"/>
<tag k="shelter" v="yes"/>
<tag k="train" v="yes"/>
<tag k="uic_ref" v="8768600"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q747541"/>
<tag k="wikipedia" v="fr:Paris-Gare de Lyon"/>
</node>
<node id="27233126" lat="48.8970901" lon="2.2981390">
<tag k="STIF:zone" v="2"/>
+ <tag k="alt_name" v="Clichy - Levallois-Perret"/>
<tag k="name" v="Clichy-Levallois"/>
<tag k="official_name" v="CLICHY LEVALLOIS"/>
<tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:STIF" v="41137"/>
<tag k="source" v="survey"/>
<tag k="uic_ref" v="8738112"/>
+ <tag k="wikidata" v="Q2533437"/>
<tag k="wikipedia" v="fr:Gare de Clichy - Levallois"/>
</node>
- <node id="27362238" lat="48.8812535" lon="2.2714648">
+ <node id="27362238" lat="48.8809077" lon="2.2720084">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Les Sablons (Jardin d'acclimatation)"/>
<tag k="layer" v="-2"/>
@@ -69,96 +82,83 @@
<tag k="ref:FR:RATP" v="1802"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q649160"/>
<tag k="wikipedia" v="fr:Les Sablons (métro de Paris)"/>
</node>
- <node id="27362240" lat="48.8756694" lon="2.2890915">
+ <node id="27362240" lat="48.8755728" lon="2.2893588">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Argentine"/>
<tag k="name:ru" v="Аржантин"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S012X"/>
<tag k="ref:FR:RATP" v="1986"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q645400"/>
<tag k="wikipedia" v="fr:Argentine (métro de Paris)"/>
</node>
- <node id="27362249" lat="48.8719944" lon="2.3006392">
+ <node id="27362249" lat="48.8720617" lon="2.3004148">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="George V"/>
<tag k="name:ru" v="Георг V"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S191F"/>
<tag k="ref:FR:RATP" v="1846"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q690975"/>
<tag k="wikipedia" v="fr:George V (métro de Paris)"/>
</node>
- <node id="27362251" lat="48.8689763" lon="2.3101131">
+ <node id="27362251" lat="48.8690339" lon="2.3099266">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Franklin D. Roosevelt"/>
<tag k="name:ru" v="Франклин Д. Рузвельт"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S169G"/>
<tag k="ref:FR:RATP" v="1924"/>
<tag k="source" v="survey"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1445234"/>
<tag k="wikipedia" v="fr:Franklin D. Roosevelt (métro de Paris)"/>
</node>
- <node id="27362256" lat="48.8664075" lon="2.3221380">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Concorde"/>
- <tag k="name:de" v="Eintracht"/>
- <tag k="name:es" v="Concordia"/>
- <tag k="name:it" v="Concorde"/>
- <tag k="name:pt" v="Concórdia"/>
- <tag k="name:ru" v="Конкорд"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1885"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Concorde (métro de Paris)"/>
- </node>
- <node id="27362258" lat="48.8643585" lon="2.3298436">
+ <node id="27362258" lat="48.8642440" lon="2.3304360">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Tuileries"/>
<tag k="name:de" v="Tuilerien"/>
<tag k="name:ru" v="Тюильри"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S567R"/>
<tag k="ref:FR:RATP" v="1640"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q666009"/>
<tag k="wikipedia" v="fr:Tuileries (métro de Paris)"/>
</node>
- <node id="27362259" lat="48.8623829" lon="2.3361468">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Palais Royal - Musée du Louvre"/>
- <tag k="name:ru" v="Пале-Руаяль — Мюзе-дю-Лувр"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1774"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Palais Royal - Musée du Louvre (métro de Paris)"/>
- </node>
- <node id="27362260" lat="48.8608572" lon="2.3409680">
+ <node id="27362260" lat="48.8608027" lon="2.3411235">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Louvre — Rivoli"/>
<tag k="name:ru" v="Лувр — Риволи"/>
+ <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S293T"/>
<tag k="ref:FR:RATP" v="1809"/>
+ <tag k="ref:FR:STIF" v="22081"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1461794"/>
<tag k="wikipedia" v="fr:Louvre - Rivoli (métro de Paris)"/>
</node>
<node id="27371862" lat="48.8587782" lon="2.3474106">
@@ -167,156 +167,121 @@
<tag k="name:ru" v="Шатле"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S090X;75104S090J"/>
<tag k="ref:FR:RATP" v="1964"/>
+ <tag k="ref:FR:STIF" v="21959"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q601484"/>
<tag k="wikipedia" v="fr:Châtelet (métro de Paris)"/>
</node>
- <node id="27371864" lat="48.8575436" lon="2.3515947">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Hôtel de Ville"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1855"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Hôtel de Ville (métro de Paris)"/>
- </node>
- <node id="27371867" lat="48.8552140" lon="2.3606657">
+ <node id="27371867" lat="48.8553789" lon="2.3603522">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Saint-Paul (Le Marais)"/>
<tag k="name" v="Saint-Paul"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75104S523E"/>
<tag k="ref:FR:RATP" v="1695"/>
+ <tag k="ref:FR:STIF" v="22074"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1535005"/>
<tag k="wikipedia" v="fr:Saint-Paul (métro de Paris)"/>
</node>
- <node id="27371876" lat="48.8520122" lon="2.3686542">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Bastille"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="2000"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Bastille (métro de Paris)"/>
- </node>
- <node id="27371889" lat="48.8457111" lon="2.3727163">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Gare de Lyon (métro 1)"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1839"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Gare de Lyon (métro de Paris)"/>
- </node>
- <node id="27371892" lat="48.8472696" lon="2.3866995">
+ <node id="27371892" lat="48.8473591" lon="2.3868055">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Reuilly — Diderot"/>
<tag k="name:ru" v="Рёйи — Дидро"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S486G"/>
<tag k="ref:FR:RATP" v="1662"/>
+ <tag k="ref:FR:STIF" v="22098"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q647271"/>
<tag k="wikipedia" v="fr:Reuilly - Diderot (métro de Paris)"/>
</node>
- <node id="27371900" lat="48.8472979" lon="2.4082630">
+ <node id="27371900" lat="48.8473335" lon="2.4080861">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Vincennes"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S450H;75112S450T"/>
<tag k="ref:FR:RATP" v="1733"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1576928"/>
<tag k="wikipedia" v="fr:Porte de Vincennes (métro de Paris)"/>
</node>
- <node id="27415772" lat="48.8853170" lon="2.2979765"/>
- <node id="27415776" lat="48.8779830" lon="2.2845160">
- <tag k="SNCF:hackess:completeness" v="4"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Neuilly - Porte Maillot"/>
- <tag k="note:fr" v="RER C"/>
- <tag k="pictogram" v="yes"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="5643"/>
- <tag k="signage" v="good"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87381020"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare de Neuilly - Porte Maillot"/>
- </node>
<node id="30248710" lat="48.8183175" lon="2.2920680">
+ <tag k="STIF:zone" v="2"/>
<tag k="name" v="Vanves Malakoff"/>
<tag k="name:ru" v="Ванв — Малакоф"/>
+ <tag k="network" v="Ligne N"/>
<tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
<tag k="uic_ref" v="8739153"/>
+ <tag k="wikidata" v="Q2782616"/>
<tag k="wikipedia" v="fr:Gare de Vanves - Malakoff"/>
</node>
- <node id="30738144" lat="48.8394108" lon="2.2709838">
- <tag k="SNCF:hackess:completeness" v="5"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Pont du Garigliano - Hôpital européen Georges-Pompidou"/>
- <tag k="official_name" v="PONT DU GARIGLIANO - HÔPITAL EUROPEEN GEORGES POMPIDOU"/>
- <tag k="old_name" v="Pont du Garigliano;Boulevard Victor"/>
- <tag k="opening_hours" v="Mo-Su 00:00-00:30,04:00-24:00"/>
- <tag k="operator" v="SNCF"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER C"/>
- <tag k="ref:FR:RATP" v="5598"/>
- <tag k="ref:SNCF" v="RER"/>
- <tag k="ref:SNCF:RER" v="C"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="8739332"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare du Pont du Garigliano"/>
- </node>
- <node id="34909170" lat="48.8487832" lon="2.2988351">
+ <node id="34909170" lat="48.8489809" lon="2.2981916">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="La Motte-Picquet - Grenelle"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S283C"/>
<tag k="ref:FR:RATP" v="1705;1874"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q1415143"/>
<tag k="wikipedia" v="fr:La Motte-Picquet - Grenelle (métro de Paris)"/>
</node>
<node id="34909171" lat="48.8475338" lon="2.3029524">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Cambronne"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S072Y"/>
<tag k="ref:FR:RATP" v="1940"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1028368"/>
<tag k="wikipedia" v="fr:Cambronne (métro de Paris)"/>
</node>
<node id="34909187" lat="48.8504212" lon="2.2936685">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Dupleix"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S126G"/>
<tag k="ref:FR:RATP" v="1907"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1266508"/>
<tag k="wikipedia" v="fr:Dupleix (métro de Paris)"/>
</node>
<node id="65331500" lat="48.8400624" lon="2.3191085">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Gare Montparnasse 1 &amp; 2"/>
<tag k="highspeed" v="yes"/>
<tag k="name" v="Gare Montparnasse"/>
- <tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="railway:ref:DB" v="XFPMP"/>
+ <tag k="train" v="yes"/>
+ <tag k="uic_ref" v="8739100"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q631114"/>
<tag k="wikipedia" v="fr:Gare de Paris-Montparnasse"/>
</node>
- <node id="134299001" lat="48.8242325" lon="2.2730847">
+ <node id="134299001" lat="48.8241474" lon="2.2731713">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Mairie d'Issy"/>
<tag k="name:ru" v="Мэри-д’Исси"/>
@@ -325,9 +290,10 @@
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1885858"/>
<tag k="wikipedia" v="fr:Mairie d'Issy (métro de Paris)"/>
</node>
- <node id="134299013" lat="48.8270162" lon="2.2794048">
+ <node id="134299013" lat="48.8270526" lon="2.2793746">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Corentin Celton"/>
<tag k="name:ru" v="Корентен Селтон"/>
@@ -336,164 +302,172 @@
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1132595"/>
<tag k="wikipedia" v="fr:Corentin Celton (métro de Paris)"/>
</node>
- <node id="134305192" lat="48.8326135" lon="2.2884024">
+ <node id="134305192" lat="48.8324292" lon="2.2879898">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Versailles"/>
<tag k="name:ru" v="Порт-де-Версай"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S448G"/>
<tag k="ref:FR:RATP" v="1732;1606"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969289"/>
<tag k="wikipedia" v="fr:Porte de Versailles (métro de Paris)"/>
</node>
- <node id="134305198" lat="48.8373212" lon="2.2966299">
+ <node id="134305198" lat="48.8373091" lon="2.2966292">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Convention"/>
<tag k="name:ru" v="Конвансьон"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S100D"/>
<tag k="ref:FR:RATP" v="1887;1605"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q630642"/>
<tag k="wikipedia" v="fr:Convention (métro de Paris)"/>
</node>
- <node id="154788912" lat="48.8628286" lon="2.3139670">
- <tag k="SNCF:hackess:completeness" v="5"/>
+ <node id="154788912" lat="48.8628261" lon="2.3138373">
<tag k="STIF:zone" v="1"/>
+ <tag k="bus" v="yes"/>
<tag k="name" v="Invalides"/>
<tag k="name:fr" v="Invalides"/>
<tag k="name:ru" v="Энвалид"/>
<tag k="operator" v="SNCF"/>
- <tag k="public_transport" v="stop_position"/>
+ <tag k="public_transport" v="platform"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="5602"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8739303"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2208443"/>
<tag k="wikipedia" v="fr:Gare des Invalides"/>
</node>
- <node id="154788920" lat="48.8568600" lon="2.2898539">
- <tag k="SNCF:hackess:completeness" v="5"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Champ de Mars - Tour Eiffel"/>
- <tag k="name:de" v="Marsfeld - Eiffelturm"/>
- <tag k="official_name" v="CHAMP DE MARS"/>
- <tag k="operator" v="SNCF"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER C"/>
- <tag k="ref:FR:RATP" v="5600"/>
- <tag k="ref:SNCF" v="RER"/>
- <tag k="ref:SNCF:RER" v="C"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="8739305"/>
- <tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Gare du Champ de Mars - Tour Eiffel"/>
- </node>
- <node id="191754163" lat="48.8395783" lon="2.3172588"/>
- <node id="220289379" lat="48.8228949" lon="2.3256303">
+ <node id="220289379" lat="48.8236371" lon="2.3256398">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Porte d'Orléans (Général Leclerc)"/>
<tag k="name" v="Porte d'Orléans"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S443H"/>
<tag k="ref:FR:RATP" v="1720"/>
+ <tag k="ref:FR:STIF" v="22140"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q119971"/>
<tag k="wikipedia" v="fr:Porte d'Orléans (métro de Paris)"/>
</node>
- <node id="220289382" lat="48.8280754" lon="2.3269270">
+ <node id="220289382" lat="48.8280318" lon="2.3270406">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Alésia"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S002D"/>
<tag k="ref:FR:RATP" v="1981"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q450976"/>
<tag k="wikipedia" v="fr:Alésia (métro de Paris)"/>
</node>
- <node id="220289385" lat="48.8314103" lon="2.3301279">
+ <node id="220289385" lat="48.8312847" lon="2.3298549">
<tag k="STIF:zone" v="1"/>
+ <tag k="heritage" v="3"/>
<tag k="heritage:operator" v="mhs"/>
<tag k="mhs:inscription_date" v="1978"/>
<tag k="name" v="Mouton-Duvernet"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S339V"/>
<tag k="ref:FR:RATP" v="1753"/>
<tag k="ref:mhs" v="PA00086631"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1406323"/>
<tag k="wikipedia" v="fr:Mouton-Duvernet (métro de Paris)"/>
</node>
- <node id="220289387" lat="48.8340353" lon="2.3325923">
+ <node id="220289387" lat="48.8342613" lon="2.3326258">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Denfert-Rochereau"/>
<tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1902"/>
<tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q1187054"/>
<tag k="wikipedia" v="fr:Denfert-Rochereau (métro de Paris)"/>
</node>
- <node id="220289389" lat="48.8389167" lon="2.3308053">
+ <node id="220289389" lat="48.8389619" lon="2.3307591">
<tag k="STIF:zone" v="1"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1978"/>
<tag k="name" v="Raspail"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S483B"/>
<tag k="ref:FR:RATP" v="1660"/>
+ <tag k="ref:mhs" v="PA00086632"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1578058"/>
<tag k="wikipedia" v="fr:Raspail (métro de Paris)"/>
</node>
<node id="235369898" lat="48.8330168" lon="2.3366295">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Jacques"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114P023C;75114P024D"/>
<tag k="ref:FR:RATP" v="1688"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1999538"/>
<tag k="wikipedia" v="fr:Saint-Jacques (métro de Paris)"/>
</node>
<node id="235370184" lat="48.8311288" lon="2.3434842">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Glacière"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S193R"/>
<tag k="ref:FR:RATP" v="1848"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1529016"/>
<tag k="wikipedia" v="fr:Glacière (métro de Paris)"/>
</node>
<node id="235370505" lat="48.8297785" lon="2.3504704">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Corvisart"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113P005M;75113P006N"/>
<tag k="ref:FR:RATP" v="1890"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q950314"/>
<tag k="wikipedia" v="fr:Corvisart (métro de Paris)"/>
</node>
- <node id="235371392" lat="48.8314217" lon="2.3555589">
+ <node id="235371392" lat="48.8308786" lon="2.3558807">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Place d'Italie"/>
<tag k="name:es" v="Plaza de Italia"/>
@@ -504,304 +478,341 @@
<tag k="type:RATP" v="metro"/>
<tag k="uic_ref" v="8705548"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1537246"/>
<tag k="wikipedia" v="fr:Place d'Italie (métro de Paris)"/>
</node>
<node id="235371394" lat="48.8331986" lon="2.3628553">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Nationale"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113P016Z;75113P015Y"/>
<tag k="ref:FR:RATP" v="1761"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q661846"/>
<tag k="wikipedia" v="fr:Nationale (métro de Paris)"/>
</node>
<node id="235371395" lat="48.8349549" lon="2.3680817">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Chevaleret"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S094H"/>
<tag k="ref:FR:RATP" v="1959"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q937680"/>
<tag k="wikipedia" v="fr:Chevaleret (métro de Paris)"/>
</node>
<node id="235374383" lat="48.8370762" lon="2.3729066">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Quai de la Gare"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S471T"/>
<tag k="ref:FR:RATP" v="1742"/>
+ <tag k="ref:FR:STIF" v="22161"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969659"/>
<tag k="wikipedia" v="fr:Quai de la Gare (métro de Paris)"/>
</node>
- <node id="235377792" lat="48.8842870" lon="2.3659442">
+ <node id="235377792" lat="48.8842416" lon="2.3670741">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Stalingrad"/>
<tag k="name:ru" v="Сталинград"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S536F"/>
<tag k="ref:FR:RATP" v="1627"/>
+ <tag k="ref:FR:STIF" v="22107"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1418821"/>
<tag k="wikipedia" v="fr:Stalingrad (métro de Paris)"/>
</node>
- <node id="241928557" lat="48.8480576" lon="2.3960523">
+ <node id="241928557" lat="48.8476110" lon="2.3955668">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Nation"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S361W"/>
<tag k="ref:FR:RATP" v="1758"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1418711"/>
<tag k="wikipedia" v="fr:Nation (métro de Paris)"/>
</node>
- <node id="241928758" lat="48.8454354" lon="2.4293269">
+ <node id="241928758" lat="48.8454473" lon="2.4292637">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bérault"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1938"/>
+ <tag k="ref:FR:STIF" v="22105"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1019487"/>
<tag k="wikipedia" v="fr:Bérault (métro de Paris)"/>
</node>
- <node id="243357000" lat="48.8782117" lon="2.3816608">
+ <node id="243357000" lat="48.8783952" lon="2.3811887">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Buttes Chaumont"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S055H"/>
<tag k="ref:FR:RATP" v="1936"/>
+ <tag k="ref:FR:STIF" v="24683"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1018164"/>
<tag k="wikipedia" v="fr:Buttes Chaumont (métro de Paris)"/>
</node>
- <node id="243358029" lat="48.8808997" lon="2.3738860">
+ <node id="243358029" lat="48.8809263" lon="2.3739077">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bolivar"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S046Y"/>
<tag k="ref:FR:RATP" v="2014"/>
+ <tag k="ref:FR:STIF" v="24685"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q891362"/>
<tag k="wikipedia" v="fr:Bolivar (métro de Paris)"/>
</node>
<node id="243486950" lat="48.8518166" lon="2.4013757">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Buzenval"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S057F"/>
<tag k="ref:FR:RATP" v="1937"/>
+ <tag k="ref:FR:STIF" v="25084"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1018331"/>
<tag k="wikipedia" v="fr:Buzenval (métro de Paris)"/>
</node>
- <node id="243487863" lat="48.8463309" lon="2.4190317">
+ <node id="243487863" lat="48.8464350" lon="2.4184422">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Mandé"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1690"/>
+ <tag k="ref:FR:STIF" v="22103"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1784678"/>
<tag k="wikipedia" v="fr:Saint-Mandé (métro de Paris)"/>
</node>
- <node id="243489718" lat="48.8514736" lon="2.3982446">
+ <node id="243489718" lat="48.8520027" lon="2.3979296">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Avron"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S017B"/>
<tag k="ref:FR:RATP" v="1995"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q517844"/>
<tag k="wikipedia" v="fr:Avron (métro de Paris)"/>
</node>
- <node id="243490761" lat="48.8664900" lon="2.3833323">
+ <node id="243490761" lat="48.8663246" lon="2.3836703">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ménilmontant"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S328P"/>
<tag k="ref:FR:RATP" v="1754"/>
+ <tag k="ref:FR:STIF" v="22116"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q119911"/>
<tag k="wikipedia" v="fr:Ménilmontant (métro de Paris)"/>
</node>
- <node id="243490762" lat="48.8629761" lon="2.3873271">
+ <node id="243490762" lat="48.8629496" lon="2.3874348">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Père Lachaise"/>
<tag k="name:ru" v="Пер-Лашез"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120P017N;75111P018D;75111P017C"/>
<tag k="ref:FR:RATP" v="1741"/>
+ <tag k="ref:FR:STIF" v="22112"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q176582"/>
<tag k="wikipedia" v="fr:Père Lachaise (métro de Paris)"/>
</node>
<node id="243490763" lat="48.8582563" lon="2.3901666">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Philippe Auguste"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S412F"/>
<tag k="ref:FR:RATP" v="1784"/>
+ <tag k="ref:FR:STIF" v="22113"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1785459"/>
<tag k="wikipedia" v="fr:Philippe Auguste (métro de Paris)"/>
</node>
- <node id="243490764" lat="48.8562640" lon="2.3945621">
+ <node id="243490764" lat="48.8559237" lon="2.3949195">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Alexandre Dumas"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S003L"/>
<tag k="ref:FR:RATP" v="1978"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1577219"/>
<tag k="wikipedia" v="fr:Alexandre Dumas (métro de Paris)"/>
</node>
- <node id="243493845" lat="48.8720463" lon="2.3769849">
+ <node id="243493845" lat="48.8719933" lon="2.3770318">
<tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Belleville-Commune de Paris 1871"/>
<tag k="name" v="Belleville"/>
- <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S038B"/>
<tag k="ref:FR:RATP" v="2004"/>
+ <tag k="ref:FR:STIF" v="21998"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q815946"/>
<tag k="wikipedia" v="fr:Belleville (métro de Paris)"/>
</node>
- <node id="243493846" lat="48.8690586" lon="2.3804560">
+ <node id="243493846" lat="48.8690435" lon="2.3805811">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Couronnes"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S106Y"/>
<tag k="ref:FR:RATP" v="1893"/>
+ <tag k="ref:FR:STIF" v="22126"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1137705"/>
<tag k="wikipedia" v="fr:Couronnes (métro de Paris)"/>
</node>
- <node id="243493916" lat="48.8774398" lon="2.3708174">
+ <node id="243493916" lat="48.8774215" lon="2.3710197">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Colonel Fabien"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S097R"/>
<tag k="ref:FR:RATP" v="1972"/>
+ <tag k="ref:FR:STIF" v="22120"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1110656"/>
<tag k="wikipedia" v="fr:Colonel Fabien (métro de Paris)"/>
</node>
- <node id="243494998" lat="48.8829026" lon="2.3443344">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Anvers"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1984"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Anvers (métro de Paris)"/>
- </node>
- <node id="243496024" lat="48.8823612" lon="2.3373703">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Pigalle"/>
- <tag k="name:ru" v="Пигаль"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1787"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Pigalle (métro de Paris)"/>
- </node>
- <node id="243496025" lat="48.8836162" lon="2.3330841">
+ <node id="243496025" lat="48.8834886" lon="2.3336343">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Blanche"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S043B"/>
<tag k="ref:FR:RATP" v="2009"/>
+ <tag k="ref:FR:STIF" v="22125"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q881406"/>
<tag k="wikipedia" v="fr:Blanche (métro de Paris)"/>
</node>
- <node id="243496027" lat="48.8835165" lon="2.3274515">
+ <node id="243496027" lat="48.8834316" lon="2.3272272">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Place de Clichy"/>
<tag k="name:ru" v="Пляс-де-Клиши"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S416L;75109S416S"/>
<tag k="ref:FR:RATP" v="1790"/>
+ <tag k="ref:FR:STIF" v="22115"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q610012"/>
<tag k="wikipedia" v="fr:Place de Clichy (métro de Paris)"/>
</node>
- <node id="243496028" lat="48.8824462" lon="2.3221220">
+ <node id="243496028" lat="48.8822428" lon="2.3213306">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Rome"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S492U"/>
<tag k="ref:FR:RATP" v="1670"/>
<tag k="station" v="subway"/>
+ <tag k="survey:date" v="2017-09-20"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q567806"/>
<tag k="wikipedia" v="fr:Rome (métro de Paris)"/>
</node>
- <node id="243496029" lat="48.8812626" lon="2.3155318">
+ <node id="243496029" lat="48.8811192" lon="2.3149051">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Villiers"/>
<tag k="name:ru" v="Вилье"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S589Z"/>
<tag k="ref:FR:RATP" v="1654"/>
+ <tag k="ref:FR:STIF" v="22027"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511335"/>
<tag k="wikipedia" v="fr:Villiers (métro de Paris)"/>
</node>
- <node id="243496030" lat="48.8805420" lon="2.3094230">
+ <node id="243496030" lat="48.8802919" lon="2.3085925">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Monceau"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S334L"/>
<tag k="ref:FR:RATP" v="1749"/>
+ <tag k="ref:FR:STIF" v="22117"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1717241"/>
<tag k="wikipedia" v="fr:Monceau (métro de Paris)"/>
</node>
- <node id="243496033" lat="48.8737784" lon="2.2950482">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Charles de Gaulle — Étoile (metro)"/>
- <tag k="name:ru" v="Шарль де Голль — Этуаль"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1953"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Charles de Gaulle - Étoile (métro de Paris)"/>
- </node>
- <node id="243496728" lat="48.8698038" lon="2.2854485">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Victor Hugo"/>
- <tag k="name:ru" v="Виктор Гюго"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1648"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Victor Hugo (métro de Paris)"/>
- </node>
- <node id="243496729" lat="48.8714638" lon="2.2768954">
+ <node id="243496729" lat="48.8713180" lon="2.2777713">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Porte Dauphine (Maréchal de Lattre de Tassigny)"/>
<tag k="name" v="Porte Dauphine"/>
<tag k="name:ru" v="Порт-Дофин"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S436P"/>
<tag k="ref:FR:RATP" v="1714"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1459245"/>
<tag k="wikipedia" v="fr:Porte Dauphine (métro de Paris)"/>
</node>
- <node id="243507233" lat="48.8652545" lon="2.4166605">
+ <node id="243507233" lat="48.8653357" lon="2.4166820">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Gallieni (Parc de Bagnolet)"/>
<tag k="name" v="Gallieni"/>
@@ -812,68 +823,70 @@
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q915581"/>
<tag k="wikipedia" v="fr:Gallieni (métro de Paris)"/>
</node>
- <node id="243507234" lat="48.8645515" lon="2.4088118">
+ <node id="243507234" lat="48.8645859" lon="2.4088090">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Bagnolet"/>
<tag k="name:ru" v="Порт-де-Баньоле"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S429K"/>
<tag k="ref:FR:RATP" v="1721"/>
+ <tag k="ref:FR:STIF" v="22022"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1672055"/>
<tag k="wikipedia" v="fr:Porte de Bagnolet (métro de Paris)"/>
</node>
- <node id="243507235" lat="48.8649326" lon="2.3984802">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Gambetta"/>
- <tag k="name:ru" v="Гамбетта"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1929"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Gambetta (métro de Paris)"/>
- </node>
- <node id="243507789" lat="48.8643020" lon="2.3794597">
+ <node id="243507789" lat="48.8643338" lon="2.3794812">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Rue Saint-Maur"/>
<tag k="name:ru" v="Рю-Сен-Мор"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S520Y"/>
<tag k="ref:FR:RATP" v="1693"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1315757"/>
<tag k="wikipedia" v="fr:Rue Saint-Maur (métro de Paris)"/>
</node>
- <node id="243507790" lat="48.8652193" lon="2.3747542">
+ <node id="243507790" lat="48.8653786" lon="2.3739112">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Parmentier"/>
<tag k="name:ru" v="Пармантье"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S404X"/>
<tag k="ref:FR:RATP" v="1779"/>
+ <tag k="ref:FR:STIF" v="22019"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1970334"/>
<tag k="wikipedia" v="fr:Parmentier (métro de Paris)"/>
</node>
- <node id="243507792" lat="48.8666345" lon="2.3614233">
+ <node id="243507792" lat="48.8664748" lon="2.3606333">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Temple"/>
<tag k="name:fr" v="Temple"/>
<tag k="name:ru" v="Тампль"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75103S562B"/>
<tag k="ref:FR:RATP" v="1634"/>
+ <tag k="ref:FR:STIF" v="22026"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1660212"/>
<tag k="wikipedia" v="fr:Temple (métro de Paris)"/>
</node>
- <node id="243507793" lat="48.8654878" lon="2.3563464">
+ <node id="243507793" lat="48.8654414" lon="2.3561316">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Arts et Métiers"/>
<tag k="name:ru" v="Ар-э-Метье"/>
@@ -883,132 +896,144 @@
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q713944"/>
<tag k="wikipedia" v="fr:Arts et Métiers (métro de Paris)"/>
</node>
- <node id="243507794" lat="48.8663169" lon="2.3524578">
+ <node id="243507794" lat="48.8662385" lon="2.3525513">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Réaumur - Sébastopol"/>
<tag k="name:ru" v="Реомюр — Себастополь"/>
<tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102S484W"/>
<tag k="ref:FR:RATP" v="1676"/>
+ <tag k="ref:FR:STIF" v="22018"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q669850"/>
<tag k="wikipedia" v="fr:Réaumur - Sébastopol (métro de Paris)"/>
</node>
- <node id="243507795" lat="48.8676419" lon="2.3463248">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Sentier"/>
- <tag k="name:ru" v="Сантье"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1702"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Sentier (métro de Paris)"/>
- </node>
- <node id="243510334" lat="48.8686692" lon="2.3412605">
+ <node id="243510334" lat="48.8686296" lon="2.3414739">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bourse"/>
<tag k="name:ru" v="Бурс"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102S052B"/>
<tag k="ref:FR:RATP" v="1930"/>
+ <tag k="ref:FR:STIF" v="22033"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q895259"/>
<tag k="wikipedia" v="fr:Bourse (métro de Paris)"/>
</node>
- <node id="243510335" lat="48.8695654" lon="2.3367072">
+ <node id="243510335" lat="48.8695001" lon="2.3366804">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Quatre Septembre"/>
<tag k="name:fr" v="Quatre Septembre"/>
<tag k="name:ru" v="Катр-Септамбр"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102S473J"/>
<tag k="ref:FR:RATP" v="1744"/>
+ <tag k="ref:FR:STIF" v="22024"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q945229"/>
<tag k="wikipedia" v="fr:Quatre-Septembre (métro de Paris)"/>
</node>
- <node id="243510336" lat="48.8707693" lon="2.3322643">
+ <node id="243510336" lat="48.8706446" lon="2.3323300">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Opéra"/>
<tag k="name:ru" v="Опера"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S383F"/>
<tag k="ref:FR:RATP" v="1771"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1392037"/>
<tag k="wikipedia" v="fr:Opéra (métro de Paris)"/>
</node>
- <node id="243510337" lat="48.8736019" lon="2.3276269">
+ <node id="243510337" lat="48.8736792" lon="2.3273189">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Havre - Caumartin"/>
<tag k="name:fr" v="Havre - Caumartin"/>
<tag k="name:ru" v="Гавр — Комартен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S223G"/>
<tag k="ref:FR:RATP" v="1852"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511406"/>
<tag k="wikipedia" v="fr:Havre - Caumartin (métro de Paris)"/>
</node>
- <node id="243510338" lat="48.8754132" lon="2.3255605">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Saint-Lazare"/>
- <tag k="name:ru" v="Сен-Лазар"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1689"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Saint-Lazare (métro de Paris)"/>
- </node>
- <node id="243510678" lat="48.8825292" lon="2.3110507">
+ <node id="243510678" lat="48.8828567" lon="2.3092267">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Malesherbes"/>
<tag k="name:ru" v="Мальзерб"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S319F"/>
<tag k="ref:FR:RATP" v="1826"/>
+ <tag k="ref:FR:STIF" v="22031"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1784153"/>
<tag k="wikipedia" v="fr:Malesherbes (métro de Paris)"/>
</node>
- <node id="243510679" lat="48.8839908" lon="2.3042907">
+ <node id="243510679" lat="48.8840050" lon="2.3037188">
<tag k="STIF:zone" v="1"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1978"/>
<tag k="name" v="Wagram"/>
<tag k="name:ru" v="Ваграм"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S601M"/>
<tag k="ref:FR:RATP" v="1658"/>
+ <tag k="ref:FR:STIF" v="22028"/>
+ <tag k="ref:mhs" v="PA00086728"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q944564"/>
<tag k="wikipedia" v="fr:Wagram (métro de Paris)"/>
</node>
- <node id="243510680" lat="48.8847948" lon="2.2982623">
+ <node id="243510680" lat="48.8847004" lon="2.2989827">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Péreire"/>
<tag k="name:ru" v="Перер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S409D"/>
<tag k="ref:FR:RATP" v="1740"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q670081"/>
<tag k="wikipedia" v="fr:Pereire (métro de Paris)"/>
</node>
- <node id="243510681" lat="48.8856871" lon="2.2926417">
+ <node id="243510681" lat="48.8859272" lon="2.2934906">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Champerret"/>
<tag k="name:ru" v="Порт-де-Шанперре"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S430B"/>
<tag k="ref:FR:RATP" v="1722"/>
+ <tag k="ref:FR:STIF" v="411230"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q167371"/>
<tag k="wikipedia" v="fr:Porte de Champerret (métro de Paris)"/>
</node>
<node id="244494486" lat="48.8395785" lon="2.3012923">
@@ -1018,108 +1043,132 @@
<tag k="name:fr" v="Vaugirard"/>
<tag k="name:ru" v="Вожирар"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S584E"/>
<tag k="ref:FR:RATP" v="1645;1604"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q769848"/>
<tag k="wikipedia" v="fr:Vaugirard (métro de Paris)"/>
</node>
- <node id="244494489" lat="48.8415118" lon="2.3080120">
+ <node id="244494489" lat="48.8415194" lon="2.3080031">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Volontaires"/>
<tag k="name:ru" v="Волонтер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S590L"/>
<tag k="ref:FR:RATP" v="1656;1603"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q238902"/>
<tag k="wikipedia" v="fr:Volontaires (métro de Paris)"/>
</node>
<node id="244494496" lat="48.8443954" lon="2.3175634">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Falguière"/>
<tag k="name:ru" v="Фальгьер"/>
- <tag k="operator" v="SNCF"/>
+ <tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S162W"/>
<tag k="ref:FR:RATP" v="1601;1918"/>
<tag k="source" v="SNCF - 06/2013"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
- <tag k="uic_ref" v="8739100"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q568013"/>
<tag k="wikipedia" v="fr:Falguière (métro de Paris)"/>
</node>
- <node id="245250755" lat="48.8468543" lon="2.3166512">
+ <node id="245250755" lat="48.8468544" lon="2.3166375">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Duroc"/>
<tag k="name:fr" v="Duroc"/>
<tag k="name:ru" v="Дюрок"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S127T"/>
<tag k="ref:FR:RATP" v="1908"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1267446"/>
<tag k="wikipedia" v="fr:Duroc (métro de Paris)"/>
</node>
- <node id="245250758" lat="48.8514000" lon="2.3143901">
+ <node id="245250758" lat="48.8513980" lon="2.3144012">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-François-Xavier"/>
<tag k="name:ru" v="Сэн-Франсуа-Ксавье"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S513M"/>
<tag k="ref:FR:RATP" v="1685"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1392295"/>
<tag k="wikipedia" v="fr:Saint-François-Xavier (métro de Paris)"/>
</node>
- <node id="245250759" lat="48.8568058" lon="2.3151577">
+ <node id="245250759" lat="48.8568023" lon="2.3150585">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Varenne"/>
<tag k="name:ru" v="Варен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S582M"/>
<tag k="ref:FR:RATP" v="1644"/>
+ <tag k="ref:FR:STIF" v="22226"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q614636"/>
<tag k="wikipedia" v="fr:Varenne (métro de Paris)"/>
</node>
<node id="245455187" lat="48.8413343" lon="2.4008998">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bel-Air"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S037U"/>
<tag k="ref:FR:RATP" v="2003"/>
+ <tag k="ref:FR:STIF" v="22177"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q815061"/>
<tag k="wikipedia" v="fr:Bel-Air (métro de Paris)"/>
</node>
- <node id="249335596" lat="48.8905035" lon="2.3598783">
+ <node id="249335596" lat="48.8905061" lon="2.3599967">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Marx Dormoy"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S324G"/>
<tag k="ref:FR:RATP" v="1831"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1622759"/>
<tag k="wikipedia" v="fr:Marx Dormoy (métro de Paris)"/>
</node>
- <node id="251387813" lat="48.8707855" lon="2.3611531">
+ <node id="251387813" lat="48.8711191" lon="2.3607546">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Jacques Bonsergent"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S251H"/>
<tag k="ref:FR:RATP" v="1859"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1677923"/>
<tag k="wikipedia" v="fr:Jacques Bonsergent (métro de Paris)"/>
</node>
- <node id="255000799" lat="48.8921077" lon="2.2852229">
+ <node id="255000799" lat="48.8920499" lon="2.2850318">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Anatole France"/>
<tag k="name:ru" v="Анатоль Франс"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1982"/>
+ <tag k="ref:FR:STIF" v="22036"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q487505"/>
<tag k="wikipedia" v="fr:Anatole France (métro de Paris)"/>
</node>
<node id="255161921" lat="48.8971408" lon="2.2803973">
@@ -1133,38 +1182,52 @@
<tag k="note" v="Métropolitain parisien ; ligne 3."/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1708"/>
+ <tag k="ref:FR:STIF" v="22035"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969462"/>
<tag k="wikipedia" v="fr:Pont de Levallois - Bécon (métro de Paris)"/>
</node>
- <node id="255162203" lat="48.8887892" lon="2.2878755">
+ <node id="255162203" lat="48.8882803" lon="2.2884734">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Louise Michel"/>
<tag k="name:ru" v="Луиз Мишель"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1807"/>
+ <tag k="ref:FR:STIF" v="22034"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1785287"/>
<tag k="wikipedia" v="fr:Louise Michel (métro de Paris)"/>
</node>
<node id="256441194" lat="48.8526992" lon="2.4061094">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Maraîchers"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S320S"/>
<tag k="ref:FR:RATP" v="55372"/>
+ <tag k="ref:FR:STIF" v="21936"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q631846"/>
<tag k="wikipedia" v="fr:Maraîchers (métro de Paris)"/>
</node>
<node id="256442276" lat="48.8534759" lon="2.4105242">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Montreuil"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S442Z"/>
<tag k="ref:FR:RATP" v="1727"/>
+ <tag k="ref:FR:STIF" v="21913"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q968336"/>
<tag k="wikipedia" v="fr:Porte de Montreuil (métro de Paris)"/>
</node>
<node id="256442845" lat="48.8558145" lon="2.4237108">
@@ -1176,16 +1239,21 @@
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1784141"/>
<tag k="wikipedia" v="fr:Robespierre (métro de Paris)"/>
</node>
<node id="256443205" lat="48.8525808" lon="2.3887914">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Rue des Boulets"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S050M"/>
<tag k="ref:FR:RATP" v="1673"/>
+ <tag k="ref:FR:STIF" v="22442"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969472"/>
<tag k="wikipedia" v="fr:Rue des Boulets (métro de Paris)"/>
</node>
<node id="256443438" lat="48.8547441" lon="2.3853565">
@@ -1193,10 +1261,14 @@
<tag k="alt_name" v="Charonne (place du 6-Février-1962)"/>
<tag k="name" v="Charonne"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S085A"/>
<tag k="ref:FR:RATP" v="1955"/>
+ <tag k="ref:FR:STIF" v="21934"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q948012"/>
<tag k="wikipedia" v="fr:Charonne (métro de Paris)"/>
</node>
<node id="256895321" lat="48.8581580" lon="2.3798044">
@@ -1204,57 +1276,59 @@
<tag k="alt_name" v="Voltaire (Léon Blum)"/>
<tag k="name" v="Voltaire"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S591A"/>
<tag k="ref:FR:RATP" v="1657"/>
+ <tag k="ref:FR:STIF" v="21916"/>
<tag k="source" v="survey 2013"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1789126"/>
<tag k="wikipedia" v="fr:Voltaire (métro de Paris)"/>
</node>
<node id="256895609" lat="48.8610516" lon="2.3747956">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Ambroise"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S510M"/>
<tag k="ref:FR:RATP" v="1680"/>
+ <tag k="ref:FR:STIF" v="21910"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1450538"/>
<tag k="wikipedia" v="fr:Saint-Ambroise (métro de Paris)"/>
</node>
- <node id="256896059" lat="48.8641314" lon="2.3695694">
+ <node id="256896059" lat="48.8640529" lon="2.3694165">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Oberkampf"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S381X"/>
<tag k="ref:FR:RATP" v="1769"/>
<tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Oberkampf (métro de Paris)"/>
- </node>
- <node id="256897077" lat="48.8694348" lon="2.3544699">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Strasbourg - Saint-Denis"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1628"/>
- <tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Strasbourg - Saint-Denis (métro de Paris)"/>
+ <tag k="wikidata" v="Q1578030"/>
+ <tag k="wikipedia" v="fr:Oberkampf (métro de Paris)"/>
</node>
- <node id="256897078" lat="48.8706004" lon="2.3487793">
+ <node id="256897078" lat="48.8706233" lon="2.3487498">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bonne Nouvelle"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102P003Z;75102P004A"/>
<tag k="ref:FR:RATP" v="2015"/>
+ <tag k="ref:FR:STIF" v="21933"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q892720"/>
<tag k="wikipedia" v="fr:Bonne-Nouvelle (métro de Paris)"/>
</node>
- <node id="256897079" lat="48.8715206" lon="2.3432861">
+ <node id="256897079" lat="48.8714412" lon="2.3434953">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Grands Boulevards"/>
<tag k="old_name" v="Montmartre; rue Montmartre"/>
@@ -1262,279 +1336,302 @@
<tag k="ref:FR:RATP" v="1671"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1543053"/>
<tag k="wikipedia" v="fr:Grands Boulevards (métro de Paris)"/>
</node>
- <node id="256897080" lat="48.8720176" lon="2.3395091">
+ <node id="256897080" lat="48.8718846" lon="2.3396056">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Richelieu Drouot"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S488V"/>
<tag k="ref:FR:RATP" v="1665"/>
+ <tag k="ref:FR:STIF" v="22196"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1412692"/>
<tag k="wikipedia" v="fr:Richelieu - Drouot (métro de Paris)"/>
</node>
- <node id="256897458" lat="48.8730612" lon="2.3333207">
+ <node id="256897458" lat="48.8729675" lon="2.3332567">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Chaussée d'Antin - La Fayette"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S092P"/>
<tag k="ref:FR:RATP" v="1957"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q951466"/>
<tag k="wikipedia" v="fr:Chaussée d'Antin - La Fayette (métro de Paris)"/>
</node>
- <node id="256897554" lat="48.8747030" lon="2.3197963">
+ <node id="256897554" lat="48.8746968" lon="2.3199277">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Augustin"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S511D"/>
<tag k="ref:FR:RATP" v="1681"/>
+ <tag k="ref:FR:STIF" v="21911"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q649273"/>
<tag k="wikipedia" v="fr:Saint-Augustin (métro de Paris)"/>
</node>
- <node id="258068724" lat="48.8464740" lon="2.3659107">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Quai de la Rapée"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1743"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Quai de la Rapée (métro de Paris)"/>
- </node>
- <node id="260040829" lat="48.8422880" lon="2.3653598">
- <tag k="SNCF:hackess:completeness" v="4"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Gare d'Austerlitz"/>
- <tag k="name:de" v="Austerlitzer Bahnhof"/>
- <tag k="name:ru" v="Гар д'Остерлиц"/>
- <tag k="official_name" v="PARIS AUSTERLITZ RER C"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER C; Métro 5"/>
- <tag k="ref:FR:RATP" v="5605;1838;226221"/>
- <tag k="ref:SNCF" v="RER"/>
- <tag k="ref:SNCF:RER" v="C"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro;rer"/>
- <tag k="uic_ref" v="87547026"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Gare d'Austerlitz (métro de Paris)"/>
- </node>
- <node id="260040968" lat="48.8460116" lon="2.3549579">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Jussieu"/>
- <tag k="name:fr" v="Jussieu"/>
- <tag k="name:ru" v="Жюссьё"/>
- <tag k="operator" v="RATP"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1866"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Jussieu (métro de Paris)"/>
- </node>
- <node id="260078615" lat="48.8465082" lon="2.3517283">
+ <node id="260078615" lat="48.8465283" lon="2.3517720">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Cardinal Lemoine"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S074W"/>
<tag k="ref:FR:RATP" v="1942"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q607342"/>
<tag k="wikipedia" v="fr:Cardinal Lemoine (métro de Paris)"/>
</node>
- <node id="260078619" lat="48.8499051" lon="2.3487460">
+ <node id="260078619" lat="48.8499484" lon="2.3487756">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Maubert Mutualité"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S327W"/>
<tag k="ref:FR:RATP" v="1834"/>
+ <tag k="ref:FR:STIF" v="21975"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1789145"/>
<tag k="wikipedia" v="fr:Maubert - Mutualité (métro de Paris)"/>
</node>
- <node id="260078622" lat="48.8508926" lon="2.3454617">
+ <node id="260078622" lat="48.8510699" lon="2.3442070">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Cluny - La Sorbonne"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S108H"/>
<tag k="ref:FR:RATP" v="54244"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1103432"/>
<tag k="wikipedia" v="fr:Cluny - La Sorbonne (métro de Paris)"/>
</node>
- <node id="260079008" lat="48.8521934" lon="2.3394287">
+ <node id="260079008" lat="48.8522428" lon="2.3393369">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Odéon"/>
<tag k="name:ru" v="Одеон"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S382B"/>
<tag k="ref:FR:RATP" v="1770"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511318"/>
<tag k="wikipedia" v="fr:Odéon (métro de Paris)"/>
</node>
- <node id="260079322" lat="48.8529427" lon="2.3357457">
+ <node id="260079322" lat="48.8528994" lon="2.3349474">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Mabillon"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S311Z"/>
<tag k="ref:FR:RATP" v="1812"/>
+ <tag k="ref:FR:STIF" v="21973"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q974510"/>
<tag k="wikipedia" v="fr:Mabillon (métro de Paris)"/>
</node>
- <node id="260231828" lat="48.8363894" lon="2.2784000">
+ <node id="260231828" lat="48.8363968" lon="2.2783790">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Balard"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S034G"/>
<tag k="ref:FR:RATP" v="1997;1609"/>
+ <tag k="ref:FR:STIF" v="22186"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q804647"/>
<tag k="wikipedia" v="fr:Balard (métro de Paris)"/>
</node>
- <node id="260231831" lat="48.8387450" lon="2.2821427">
+ <node id="260231831" lat="48.8387364" lon="2.2821481">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Lourmel"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S292M"/>
<tag k="ref:FR:RATP" v="1808;1610"/>
+ <tag k="ref:FR:STIF" v="22187"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1651903"/>
<tag k="wikipedia" v="fr:Lourmel (métro de Paris)"/>
</node>
<node id="260231832" lat="48.8410837" lon="2.2879218">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Boucicaut"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S049Y"/>
<tag k="ref:FR:RATP" v="2017;1611"/>
+ <tag k="ref:FR:STIF" v="22188"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q894984"/>
<tag k="wikipedia" v="fr:Boucicaut (métro de Paris)"/>
</node>
- <node id="260231833" lat="48.8426906" lon="2.2917758">
+ <node id="260231833" lat="48.8426775" lon="2.2917792">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Félix Faure"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S163X"/>
<tag k="ref:FR:RATP" v="1612;1925"/>
+ <tag k="ref:FR:STIF" v="22189"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1479476"/>
<tag k="wikipedia" v="fr:Félix Faure (métro de Paris)"/>
</node>
- <node id="260762378" lat="48.8389924" lon="2.3896778">
+ <node id="260762378" lat="48.8390472" lon="2.3896692">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Dugommier"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S125P"/>
<tag k="ref:FR:RATP" v="1906"/>
+ <tag k="ref:FR:STIF" v="22182"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q602615"/>
<tag k="wikipedia" v="fr:Dugommier (métro de Paris)"/>
</node>
- <node id="260762379" lat="48.8395253" lon="2.3958919">
+ <node id="260762379" lat="48.8395675" lon="2.3959529">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Daumesnil (Félix Eboué)"/>
<tag k="name" v="Daumesnil"/>
<tag k="name:ru" v="Домениль"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S122L"/>
<tag k="ref:FR:RATP" v="1901"/>
+ <tag k="ref:FR:STIF" v="22181"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1172977"/>
<tag k="wikipedia" v="fr:Daumesnil (métro de Paris)"/>
</node>
- <node id="260762540" lat="48.8401299" lon="2.3796438">
+ <node id="260762540" lat="48.8401549" lon="2.3799474">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bercy"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S040X"/>
<tag k="ref:FR:RATP" v="2005"/>
+ <tag k="ref:FR:STIF" v="22178"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q818853"/>
<tag k="wikipedia" v="fr:Bercy (métro de Paris)"/>
</node>
- <node id="260763474" lat="48.8410654" lon="2.3249923">
+ <node id="260763474" lat="48.8411108" lon="2.3250319">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Edgar Quinet"/>
+ <tag k="network" v="Métro de Paris"/>
+ <tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S142F"/>
<tag k="ref:FR:RATP" v="1910"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1284106"/>
<tag k="wikipedia" v="fr:Edgar Quinet (métro de Paris)"/>
</node>
- <node id="260764273" lat="48.8429457" lon="2.3126019">
+ <node id="260764273" lat="48.8429211" lon="2.3126058">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pasteur"/>
<tag k="name:ru" v="Пастер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S406L"/>
<tag k="ref:FR:RATP" v="1602;1781"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1578103"/>
<tag k="wikipedia" v="fr:Pasteur (métro de Paris)"/>
</node>
<node id="260765385" lat="48.8716770" lon="2.2935098">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Kléber"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S271K"/>
<tag k="ref:FR:RATP" v="1867"/>
+ <tag k="ref:FR:STIF" v="22170"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q254308"/>
<tag k="wikipedia" v="fr:Kléber (métro de Paris)"/>
</node>
- <node id="260765387" lat="48.8669099" lon="2.2902715">
+ <node id="260765387" lat="48.8670167" lon="2.2900826">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Boissière"/>
<tag k="name:ru" v="Буасьер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S044N"/>
<tag k="ref:FR:RATP" v="2012"/>
+ <tag k="ref:FR:STIF" v="22180"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q891105"/>
<tag k="wikipedia" v="fr:Boissière (métro de Paris)"/>
</node>
- <node id="260765389" lat="48.8630266" lon="2.2870524">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Trocadéro"/>
- <tag k="name:ru" v="Трокадеро"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1639"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Trocadéro (métro de Paris)"/>
- </node>
- <node id="260765390" lat="48.8573825" lon="2.2859234">
+ <node id="260765390" lat="48.8575009" lon="2.2857780">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Passy"/>
<tag k="name:ru" v="Пасси"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S405F"/>
<tag k="ref:FR:RATP" v="1780"/>
+ <tag k="ref:FR:STIF" v="22165"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1576609"/>
<tag k="wikipedia" v="fr:Passy (métro de Paris)"/>
</node>
<node id="260767422" lat="48.8646725" lon="2.2937783">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Iéna"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S241C"/>
<tag k="ref:FR:RATP" v="1858"/>
+ <tag k="ref:FR:STIF" v="21927"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1237945"/>
<tag k="wikipedia" v="fr:Iéna (métro de Paris)"/>
</node>
<node id="260767423" lat="48.8640063" lon="2.2780859">
@@ -1542,10 +1639,12 @@
<tag k="alt_name" v="Rue de la Pompe (Avenue Georges Mandel)"/>
<tag k="name" v="Rue de la Pompe"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S421Y"/>
<tag k="ref:FR:RATP" v="1672"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q771548"/>
<tag k="wikipedia" v="fr:Rue de la Pompe (métro de Paris)"/>
</node>
<node id="260767424" lat="48.8580816" lon="2.2741958">
@@ -1553,304 +1652,340 @@
<tag k="name" v="La Muette"/>
<tag k="name:ru" v="Ля-Мюэт"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S340K"/>
<tag k="ref:FR:RATP" v="1876"/>
+ <tag k="ref:FR:STIF" v="21929"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q168170"/>
<tag k="wikipedia" v="fr:La Muette (métro de Paris)"/>
</node>
<node id="260767425" lat="48.8555764" lon="2.2702166">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ranelagh"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S482P"/>
<tag k="ref:FR:RATP" v="1659"/>
+ <tag k="ref:FR:STIF" v="21915"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969938"/>
<tag k="wikipedia" v="fr:Ranelagh (métro de Paris)"/>
</node>
<node id="260767426" lat="48.8525598" lon="2.2681802">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Jasmin"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S252P"/>
<tag k="ref:FR:RATP" v="1860"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1683797"/>
<tag k="wikipedia" v="fr:Jasmin (métro de Paris)"/>
</node>
- <node id="260767427" lat="48.8480038" lon="2.2641872">
+ <node id="260767427" lat="48.8479434" lon="2.2641344">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Michel-Ange - Auteuil"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S329Y"/>
<tag k="ref:FR:RATP" v="1836"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q995228"/>
<tag k="wikipedia" v="fr:Michel-Ange - Auteuil (métro de Paris)"/>
</node>
- <node id="260767428" lat="48.8452505" lon="2.2618802">
+ <node id="260767428" lat="48.8452434" lon="2.2618950">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Michel-Ange - Molitor"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S330Z"/>
<tag k="ref:FR:RATP" v="1837"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1228836"/>
<tag k="wikipedia" v="fr:Michel-Ange - Molitor (métro de Paris)"/>
</node>
<node id="260767429" lat="48.8430044" lon="2.2600472">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Exelmans"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S149C"/>
<tag k="ref:FR:RATP" v="1916"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q970844"/>
<tag k="wikipedia" v="fr:Exelmans (métro de Paris)"/>
</node>
<node id="260767430" lat="48.8377707" lon="2.2565741">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Saint-Cloud"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S445Z"/>
<tag k="ref:FR:RATP" v="1729"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1451224"/>
<tag k="wikipedia" v="fr:Porte de Saint-Cloud (métro de Paris)"/>
</node>
<node id="260769132" lat="48.8649686" lon="2.3006256">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Alma-Marceau"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S004C"/>
<tag k="ref:FR:RATP" v="1980"/>
+ <tag k="ref:FR:STIF" v="21935"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1768692"/>
<tag k="wikipedia" v="fr:Alma - Marceau (métro de Paris)"/>
</node>
<node id="260769651" lat="48.8723362" lon="2.3100827">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Philippe du Roule"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S524T"/>
<tag k="ref:FR:RATP" v="1696"/>
+ <tag k="ref:FR:STIF" v="21912"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:/Saint-Philippe du Roule (métro de Paris)"/>
+ <tag k="wikidata" v="Q1784247"/>
+ <tag k="wikipedia" v="fr:Saint-Philippe du Roule (métro de Paris)"/>
</node>
- <node id="260769652" lat="48.8736768" lon="2.3145456">
+ <node id="260769652" lat="48.8736855" lon="2.3144680">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Miromesnil"/>
<tag k="name:fr" v="Miromesnil"/>
<tag k="name:ru" v="Миромениль"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108P013N;75108P014P"/>
<tag k="ref:FR:RATP" v="1747"/>
+ <tag k="ref:FR:STIF" v="21924"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1578045"/>
<tag k="wikipedia" v="fr:Miromesnil (métro de Paris)"/>
</node>
- <node id="261162833" lat="48.8514587" lon="2.3267159">
+ <node id="261162833" lat="48.8513780" lon="2.3269335">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Sèvres-Babylone"/>
<tag k="name:fr" v="Sèvres Babylone"/>
<tag k="name:ru" v="Севр — Бабилон"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S532H"/>
<tag k="ref:FR:RATP" v="1632"/>
+ <tag k="ref:FR:STIF" v="21980"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1578089"/>
<tag k="wikipedia" v="fr:Sèvres - Babylone (métro de Paris)"/>
</node>
- <node id="261611873" lat="48.8939640" lon="2.3144204">
- <tag k="SNCF:hackess:completeness" v="2"/>
+ <node id="261611873" lat="48.8939258" lon="2.3143389">
<tag k="STIF:zone" v="1"/>
+ <tag k="construction" v="yes"/>
+ <tag k="fixme" v="En construction : mappée par Ratzilla - station de métro à reconstruire suite à la fin des travaux du M14"/>
<tag k="name" v="Porte de Clichy"/>
- <tag k="note" v="mappée par Ratzillas à saisir !"/>
<tag k="operator" v="Metro-RER"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref" v="C;13"/>
+ <tag k="ref:FR:FANTOIR" v="75117S434F"/>
<tag k="ref:FR:RATP" v="1725;5581"/>
+ <tag k="ref:FR:STIF" v="41009"/>
+ <tag k="ref:FR:uic8" v="87111278"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro;rer"/>
- <tag k="uic_ref" v="87111278"/>
+ <tag k="uic_ref" v="8711127"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969959"/>
<tag k="wikipedia" v="fr:Porte de Clichy (métro de Paris)"/>
</node>
- <node id="261611884" lat="48.8905170" lon="2.3201235">
+ <node id="261611884" lat="48.8905558" lon="2.3202055">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Brochant"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S054T"/>
<tag k="ref:FR:RATP" v="1931"/>
+ <tag k="ref:FR:STIF" v="22231"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q923435"/>
<tag k="wikipedia" v="fr:Brochant (métro de Paris)"/>
</node>
- <node id="261612240" lat="48.8874127" lon="2.3256961">
+ <node id="261612240" lat="48.8871728" lon="2.3257792">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="La Fourche"/>
<tag k="name:fr" v="La Fourche"/>
<tag k="name:ru" v="Ля-Фурш"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1872"/>
+ <tag k="ref:FR:STIF" v="22227"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q780625"/>
<tag k="wikipedia" v="fr:La Fourche (métro de Paris)"/>
</node>
- <node id="261665825" lat="48.8470802" lon="2.3076354">
+ <node id="261665825" lat="48.8470114" lon="2.3074897">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ségur"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S530W"/>
<tag k="ref:FR:RATP" v="1631"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511392"/>
<tag k="wikipedia" v="fr:Ségur (métro de Paris)"/>
</node>
- <node id="261666122" lat="48.8470463" lon="2.2953101">
+ <node id="261666122" lat="48.8470132" lon="2.2953191">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Avenue Émile Zola"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S145C"/>
<tag k="ref:FR:RATP" v="1994"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q790593"/>
<tag k="wikipedia" v="fr:Avenue Émile Zola (métro de Paris)"/>
</node>
<node id="263497271" lat="48.8606970" lon="2.3210551">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Assemblée Nationale"/>
- <tag k="name:de" v="Nationalversammlung"/>
- <tag k="name:en" v="National Assembly"/>
- <tag k="name:es" v="Asamblea Nacional"/>
- <tag k="name:it" v="Assemblea Nazionale"/>
- <tag k="name:pt" v="Assembleia Nacional"/>
- <tag k="name:ro" v="Adunarea Națională"/>
- <tag k="name:ru" v="Ассамбле-Насьональ"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S077N"/>
<tag k="ref:FR:RATP" v="1989"/>
+ <tag k="ref:FR:STIF" v="22060"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q740744"/>
<tag k="wikipedia" v="fr:Assemblée nationale (métro de Paris)"/>
</node>
- <node id="263497272" lat="48.8586775" lon="2.3231168">
+ <node id="263497272" lat="48.8586528" lon="2.3230256">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Solférino"/>
<tag k="name:ru" v="Сольферино"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S535L"/>
<tag k="ref:FR:RATP" v="1622"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1368640"/>
<tag k="wikipedia" v="fr:Solférino (métro de Paris)"/>
</node>
- <node id="263499468" lat="48.8481026" lon="2.3277965">
+ <node id="263499468" lat="48.8481093" lon="2.3278803">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Rennes"/>
<tag k="name:ru" v="Рен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S490U"/>
<tag k="ref:FR:RATP" v="1661"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969677"/>
<tag k="wikipedia" v="fr:Rennes (métro de Paris)"/>
</node>
- <node id="263499471" lat="48.8452766" lon="2.3286613">
+ <node id="263499471" lat="48.8452749" lon="2.3286803">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Notre-Dame des Champs"/>
<tag k="name:ru" v="Нотр-Дам-де-Шан"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S364G"/>
<tag k="ref:FR:RATP" v="1768"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1970325"/>
<tag k="wikipedia" v="fr:Notre-Dame-des-Champs (métro de Paris)"/>
</node>
- <node id="263917856" lat="48.8656361" lon="2.3227452">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Concorde"/>
- <tag k="name:de" v="Eintracht"/>
- <tag k="name:es" v="Concordia"/>
- <tag k="name:it" v="Concorde"/>
- <tag k="name:pt" v="Concórdia"/>
- <tag k="name:ru" v="Конкорд"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1885"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Concorde (métro de Paris)"/>
- </node>
- <node id="264117312" lat="48.8700644" lon="2.3251637">
+ <node id="264117312" lat="48.8694436" lon="2.3251705">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Madeleine"/>
<tag k="name:ru" v="Мадлен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S312N;75108S312M"/>
<tag k="ref:FR:RATP" v="1813"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q1417199"/>
<tag k="wikipedia" v="fr:Madeleine (métro de Paris)"/>
</node>
- <node id="264469160" lat="48.8446967" lon="2.2937668">
+ <node id="264469160" lat="48.8446757" lon="2.2938486">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Commerce"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S098B"/>
<tag k="ref:FR:RATP" v="1705;1973"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q608305"/>
<tag k="wikipedia" v="fr:Commerce (métro de Paris)"/>
</node>
- <node id="264469541" lat="48.8546428" lon="2.3061015">
+ <node id="264469541" lat="48.8546647" lon="2.3060728">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="École Militaire"/>
<tag k="name:fr" v="École Militaire"/>
<tag k="name:ru" v="Эколь Милитер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S141H"/>
<tag k="ref:FR:RATP" v="1909;1007"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q273476"/>
<tag k="wikipedia" v="fr:École Militaire (métro de Paris)"/>
</node>
- <node id="264473011" lat="48.8575837" lon="2.3102891">
+ <node id="264473011" lat="48.8575602" lon="2.3103234">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="La Tour Maubourg"/>
<tag k="name:ru" v="Лятур-Мобур"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S285P"/>
<tag k="ref:FR:RATP" v="1008;54166"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1514082"/>
<tag k="wikipedia" v="fr:La Tour-Maubourg (métro de Paris)"/>
</node>
- <node id="264473695" lat="48.8611770" lon="2.3148333">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Invalides"/>
- <tag k="name:ru" v="Энвалид"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1857"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Invalides (métro de Paris)"/>
- </node>
<node id="264476971" lat="48.8633194" lon="2.3666124">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Filles du Calvaire"/>
<tag k="name:ru" v="Фий-дю-Кальвер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S164L"/>
<tag k="ref:FR:RATP" v="1919"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1414178"/>
<tag k="wikipedia" v="fr:Filles du Calvaire (métro de Paris)"/>
</node>
<node id="264479724" lat="48.8610965" lon="2.3672267">
@@ -1859,116 +1994,138 @@
<tag k="name:ru" v="Сен-Себастьен — Фруассар"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S527F"/>
<tag k="ref:FR:RATP" v="1699"/>
+ <tag k="ref:FR:STIF" v="22201"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q550042"/>
<tag k="wikipedia" v="fr:Saint-Sébastien - Froissart (métro de Paris)"/>
</node>
- <node id="264479775" lat="48.8575371" lon="2.3679970">
+ <node id="264479775" lat="48.8574497" lon="2.3681089">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Chemin Vert"/>
<tag k="name:ru" v="Шемен-Вер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S093J"/>
<tag k="ref:FR:RATP" v="1958"/>
<tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Chemin Vert (métro de Paris)"/>
- </node>
- <node id="264480619" lat="48.8531361" lon="2.3686313">
- <tag k="name" v="Bastille"/>
- <tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
+ <tag k="toilets:wheelchair" v="no"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Bastille (métro de Paris)"/>
+ <tag k="wikidata" v="Q524191"/>
+ <tag k="wikipedia" v="fr:Chemin Vert (métro de Paris)"/>
</node>
- <node id="264480784" lat="48.8511945" lon="2.3759944">
+ <node id="264480784" lat="48.8512945" lon="2.3760274">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ledru-Rollin"/>
<tag k="name:ru" v="Ледрю-Роллен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S287R"/>
<tag k="ref:FR:RATP" v="1798"/>
+ <tag k="ref:FR:STIF" v="22203"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q680787"/>
<tag k="wikipedia" v="fr:Ledru-Rollin (métro de Paris)"/>
</node>
- <node id="264481019" lat="48.8500259" lon="2.3842705">
+ <node id="264481019" lat="48.8501609" lon="2.3842222">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Faidherbe — Chaligny"/>
<tag k="name:ru" v="Федерб — Шалиньи"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S161H"/>
<tag k="ref:FR:RATP" v="1917"/>
+ <tag k="ref:FR:STIF" v="22204"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q337855"/>
<tag k="wikipedia" v="fr:Faidherbe - Chaligny (métro de Paris)"/>
</node>
- <node id="264481854" lat="48.8444003" lon="2.3899525">
+ <node id="264481854" lat="48.8443040" lon="2.3901962">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Montgallet"/>
<tag k="name:ru" v="Монгале"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S336U"/>
<tag k="ref:FR:RATP" v="1750"/>
+ <tag k="ref:FR:STIF" v="22205"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q999159"/>
<tag k="wikipedia" v="fr:Montgallet (métro de Paris)"/>
</node>
- <node id="264482226" lat="48.8371074" lon="2.4024837">
+ <node id="264482226" lat="48.8370694" lon="2.4024586">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Michel Bizot"/>
<tag k="name:ru" v="Мишель Бизо"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S331N"/>
<tag k="ref:FR:RATP" v="1835"/>
+ <tag k="ref:FR:STIF" v="22206"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q616619"/>
<tag k="wikipedia" v="fr:Michel Bizot (métro de Paris)"/>
</node>
- <node id="264482296" lat="48.8266498" lon="2.4057278">
+ <node id="264482296" lat="48.8264064" lon="2.4062010">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Liberté"/>
<tag k="name:ru" v="Либерте"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1803"/>
+ <tag k="ref:FR:STIF" v="22209"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1725892"/>
<tag k="wikipedia" v="fr:Liberté (métro de Paris)"/>
</node>
- <node id="264482297" lat="48.8354584" lon="2.4063451">
+ <node id="264482297" lat="48.8352765" lon="2.4061775">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte Dorée"/>
+ <tag k="name:fr" v="Porte Dorée"/>
<tag k="name:ru" v="Порт-Доре"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S437D"/>
<tag k="ref:FR:RATP" v="1715"/>
+ <tag k="ref:FR:STIF" v="22207"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q946441"/>
<tag k="wikipedia" v="fr:Porte Dorée (métro de Paris)"/>
</node>
- <node id="264490283" lat="48.8450642" lon="2.4010776">
+ <node id="264490283" lat="48.8450751" lon="2.4010800">
<tag k="STIF:zone" v="1"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1978"/>
<tag k="name" v="Picpus"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S413C"/>
<tag k="ref:FR:RATP" v="1785"/>
+ <tag k="ref:FR:STIF" v="22167"/>
+ <tag k="ref:mhs" v="PA00086581"/>
+ <tag k="source" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q589686"/>
<tag k="wikipedia" v="fr:Picpus (métro de Paris)"/>
</node>
- <node id="264491191" lat="48.8334413" lon="2.3860715">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Cour Saint-Émilion"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="50055"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Cour Saint-Émilion (métro de Paris)"/>
- </node>
- <node id="264491193" lat="48.8269104" lon="2.3661972">
+ <node id="264491193" lat="48.8270333" lon="2.3664158">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Olympiades"/>
<tag k="public_transport" v="stop_position"/>
@@ -1978,48 +2135,65 @@
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1673779"/>
<tag k="wikipedia" v="fr:Olympiades (métro de Paris)"/>
</node>
- <node id="264491320" lat="48.8322556" lon="2.3989811">
+ <node id="264491320" lat="48.8322315" lon="2.3990408">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Charenton"/>
<tag k="name:ru" v="Порт-де-Шарантон"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S432Y"/>
<tag k="ref:FR:RATP" v="1723"/>
+ <tag k="ref:FR:STIF" v="22208"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1666283"/>
<tag k="wikipedia" v="fr:Porte de Charenton (métro de Paris)"/>
</node>
- <node id="264494507" lat="48.8656737" lon="2.3344599">
+ <node id="264494507" lat="48.8657589" lon="2.3344261">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pyramides"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S452R"/>
<tag k="ref:FR:RATP" v="1738;50047"/>
+ <tag k="ref:FR:STIF" v="22375"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1501462"/>
<tag k="wikipedia" v="fr:Pyramides (métro de Paris)"/>
</node>
- <node id="264495077" lat="48.8763705" lon="2.3326310">
+ <node id="264495077" lat="48.8763251" lon="2.3326415">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Trinité d'Estienne d'Orves"/>
<tag k="name:ru" v="Трините — д’Эстьен д’Орв"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S565D"/>
<tag k="ref:FR:RATP" v="1638;3108"/>
+ <tag k="ref:FR:STIF" v="22046"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1316395"/>
<tag k="wikipedia" v="fr:Trinité - d'Estienne d'Orves (métro de Paris)"/>
</node>
- <node id="264495078" lat="48.8760654" lon="2.3385532">
+ <node id="264495078" lat="48.8759935" lon="2.3385437">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Notre-Dame de Lorette"/>
<tag k="name:ru" v="Нотр-Дам-де-Лорет"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S365L"/>
<tag k="ref:FR:RATP" v="1767;3109"/>
+ <tag k="ref:FR:STIF" v="22050"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q575604"/>
<tag k="wikipedia" v="fr:Notre-Dame-de-Lorette (métro de Paris)"/>
</node>
<node id="264495553" lat="48.8557241" lon="2.3256659">
@@ -2027,57 +2201,75 @@
<tag k="name" v="Rue du Bac"/>
<tag k="name:ru" v="Рю-дю-Бак"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S031N"/>
<tag k="ref:FR:RATP" v="1674"/>
+ <tag k="ref:FR:STIF" v="22043"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q954566"/>
<tag k="wikipedia" v="fr:Rue du Bac (métro de Paris)"/>
</node>
- <node id="264504832" lat="48.8784508" lon="2.3374732">
+ <node id="264504832" lat="48.8784469" lon="2.3374580">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Georges"/>
<tag k="name:ru" v="Сен-Жорж"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S514Y"/>
<tag k="ref:FR:RATP" v="3110;1686"/>
+ <tag k="ref:FR:STIF" v="22044"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1937499"/>
<tag k="wikipedia" v="fr:Saint-Georges (métro de Paris)"/>
</node>
- <node id="264505115" lat="48.8844760" lon="2.3384377">
+ <node id="264505115" lat="48.8845677" lon="2.3379294">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Abbesses"/>
<tag k="name:ru" v="Аббес"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S001F"/>
<tag k="ref:FR:RATP" v="1975"/>
+ <tag k="ref:FR:STIF" v="22059"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q306256"/>
<tag k="wikipedia" v="fr:Abbesses (métro de Paris)"/>
</node>
- <node id="264505153" lat="48.8898183" lon="2.3386296">
+ <node id="264505153" lat="48.8897543" lon="2.3388254">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Lamarck - Caulaincourt"/>
<tag k="name:ru" v="Ламарк — Коленкур"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S282L"/>
<tag k="ref:FR:RATP" v="1879"/>
+ <tag k="ref:FR:STIF" v="22055"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q980380"/>
<tag k="wikipedia" v="fr:Lamarck - Caulaincourt (métro de Paris)"/>
</node>
- <node id="264505450" lat="48.8925606" lon="2.3447103">
+ <node id="264505450" lat="48.8924628" lon="2.3446394">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Jules Joffrin"/>
<tag k="name:ru" v="Жюль Жоффрен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S257J"/>
<tag k="ref:FR:RATP" v="1865"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q617430"/>
<tag k="wikipedia" v="fr:Jules Joffrin (métro de Paris)"/>
</node>
- <node id="264505930" lat="48.8977084" lon="2.3592969">
+ <node id="264505930" lat="48.8977035" lon="2.3594563">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de la Chapelle"/>
<tag k="railway" v="station"/>
@@ -2085,75 +2277,78 @@
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q382659"/>
<tag k="wikipedia" v="fr:Porte de la Chapelle (métro de Paris)"/>
</node>
- <node id="264505993" lat="48.8938084" lon="2.3477393">
+ <node id="264505993" lat="48.8938481" lon="2.3478412">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Simplon"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S534K"/>
<tag k="ref:FR:RATP" v="1621"/>
+ <tag k="ref:FR:STIF" v="22133"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q163879"/>
<tag k="wikipedia" v="fr:Simplon (métro de Paris)"/>
</node>
- <node id="264507100" lat="48.8873363" lon="2.3497063">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Château Rouge"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1960"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Château Rouge (métro de Paris)"/>
- </node>
- <node id="264508125" lat="48.8795699" lon="2.3571457">
+ <node id="264508125" lat="48.8795066" lon="2.3572848">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Gare du Nord (métro)"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S186M"/>
<tag k="ref:FR:RATP" v="1842"/>
<tag k="short_name" v="Gare du Nord"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1494174"/>
<tag k="wikipedia" v="fr:Gare du Nord (métro de Paris)"/>
</node>
<node id="264508548" lat="48.8762027" lon="2.3579127">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Gare de l'Est (Verdun)"/>
+ <tag k="bus" v="yes"/>
<tag k="name" v="Gare de l'Est"/>
<tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
+ <tag k="public_transport" v="platform"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S184K"/>
<tag k="ref:FR:RATP" v="1841"/>
+ <tag k="ref:FR:STIF" v="41010"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1494172"/>
<tag k="wikipedia" v="fr:Gare de l'Est (métro de Paris)"/>
</node>
- <node id="264509793" lat="48.8638557" lon="2.3487062">
+ <node id="264509793" lat="48.8640323" lon="2.3498703">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Étienne Marcel"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S146H"/>
<tag k="ref:FR:RATP" v="1914"/>
+ <tag k="ref:FR:STIF" v="22147"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q289916"/>
<tag k="wikipedia" v="fr:Étienne Marcel (métro de Paris)"/>
</node>
- <node id="264512252" lat="48.8723246" lon="2.3558539">
+ <node id="264512252" lat="48.8728919" lon="2.3563063">
<tag k="STIF:zone" v="1"/>
<tag k="heritage" v="3"/>
<tag k="heritage:operator" v="mhs"/>
@@ -2162,24 +2357,32 @@
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S086D"/>
<tag k="ref:FR:RATP" v="1961"/>
+ <tag k="ref:FR:STIF" v="22153"/>
<tag k="ref:mhs" v="PA00086508"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1090753"/>
<tag k="wikipedia" v="fr:Château d'Eau (métro de Paris)"/>
</node>
- <node id="264513655" lat="48.8625595" lon="2.3456850">
+ <node id="264513655" lat="48.8625356" lon="2.3457954">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Les Halles"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S222R"/>
<tag k="ref:FR:RATP" v="1801"/>
+ <tag k="ref:FR:STIF" v="22146"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1576810"/>
<tag k="wikipedia" v="fr:Les Halles (métro de Paris)"/>
</node>
<node id="264514896" lat="48.8552968" lon="2.3475476">
@@ -2189,198 +2392,250 @@
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75104S095P"/>
<tag k="ref:FR:RATP" v="1969"/>
+ <tag k="ref:FR:STIF" v="22150"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1094294"/>
<tag k="wikipedia" v="fr:Cité (métro de Paris)"/>
</node>
- <node id="264515098" lat="48.8533267" lon="2.3434941">
+ <node id="264515098" lat="48.8533014" lon="2.3435309">
<tag k="STIF:zone" v="1"/>
+ <tag k="heritage" v="3"/>
+ <tag k="heritage:operator" v="mhs"/>
+ <tag k="mhs:inscription_date" v="1978"/>
<tag k="name" v="Saint-Michel"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S522D"/>
<tag k="ref:FR:RATP" v="1694"/>
+ <tag k="ref:FR:STIF" v="412816"/>
+ <tag k="ref:mhs" v="PA00088479"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="source:heritage" v="data.gouv.fr:Ministère de la Culture - 08/2011"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1598555"/>
<tag k="wikipedia" v="fr:Saint-Michel (métro de Paris)"/>
</node>
- <node id="264519782" lat="48.8536413" lon="2.3333301">
+ <node id="264519782" lat="48.8536380" lon="2.3344604">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Germain-des-Prés"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S516X"/>
<tag k="ref:FR:RATP" v="1687"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q781873"/>
<tag k="wikipedia" v="fr:Saint-Germain-des-Prés (métro de Paris)"/>
</node>
- <node id="264520061" lat="48.8470860" lon="2.3270843">
+ <node id="264520061" lat="48.8471196" lon="2.3270286">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Placide"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S525G"/>
<tag k="ref:FR:RATP" v="1697"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q763411"/>
<tag k="wikipedia" v="fr:Saint-Placide (métro de Paris)"/>
</node>
- <node id="264526095" lat="48.8422001" lon="2.3289987">
+ <node id="264526095" lat="48.8422164" lon="2.3290114">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Vavin"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S585X"/>
<tag k="ref:FR:RATP" v="1646"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q954301"/>
<tag k="wikipedia" v="fr:Vavin (métro de Paris)"/>
</node>
- <node id="264534423" lat="48.8466102" lon="2.2859257">
+ <node id="264534423" lat="48.8465262" lon="2.2858801">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Charles Michels"/>
+ <tag k="network" v="RATP"/>
+ <tag k="old_name" v="Beaugrenelle"/>
+ <tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S084L"/>
<tag k="ref:FR:RATP" v="1952"/>
+ <tag k="ref:FR:STIF" v="21986"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="start_date" v="1913-07-13"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q632881"/>
<tag k="wikipedia" v="fr:Charles Michels (métro de Paris)"/>
</node>
- <node id="264534424" lat="48.8461892" lon="2.2789975">
+ <node id="264534424" lat="48.8461584" lon="2.2783035">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Javel - André Citroën"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S253V"/>
<tag k="ref:FR:RATP" v="1862"/>
+ <tag k="ref:FR:STIF" v="21972"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="start_date" v="1913-09-30"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511378"/>
<tag k="wikipedia" v="fr:Javel - André Citroën (métro de Paris)"/>
</node>
- <node id="264534683" lat="48.8473202" lon="2.2686743">
+ <node id="264534683" lat="48.8473406" lon="2.2686929">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Église d'Auteuil"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S143W"/>
<tag k="ref:FR:RATP" v="1911"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q274534"/>
<tag k="wikipedia" v="fr:Église d'Auteuil (métro de Paris)"/>
</node>
- <node id="264535735" lat="48.8477655" lon="2.2583922">
+ <node id="264535735" lat="48.8479478" lon="2.2586493">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte d'Auteuil"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S428F"/>
<tag k="ref:FR:RATP" v="1717"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1578078"/>
<tag k="wikipedia" v="fr:Porte d'Auteuil (métro de Paris)"/>
</node>
- <node id="264537727" lat="48.8452670" lon="2.2672606">
+ <node id="264537727" lat="48.8454140" lon="2.2671720">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Chardon Lagache"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S082E"/>
<tag k="ref:FR:RATP" v="1950"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q927829"/>
<tag k="wikipedia" v="fr:Chardon-Lagache (métro de Paris)"/>
</node>
<node id="264538576" lat="48.8468038" lon="2.2717155">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Mirabeau"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S332B"/>
<tag k="ref:FR:RATP" v="1746"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q517739"/>
<tag k="wikipedia" v="fr:Mirabeau (métro de Paris)"/>
</node>
- <node id="264591604" lat="48.8700162" lon="2.3710617">
+ <node id="264591604" lat="48.8699553" lon="2.3710845">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Goncourt (Hôpital Saint-Louis)"/>
<tag k="name" v="Goncourt"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S195V"/>
<tag k="ref:FR:RATP" v="1849"/>
+ <tag k="ref:FR:STIF" v="21996"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1536969"/>
<tag k="wikipedia" v="fr:Goncourt (métro de Paris)"/>
</node>
- <node id="264592424" lat="48.8612740" lon="2.3535761">
+ <node id="264592424" lat="48.8617782" lon="2.3538089">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Rambuteau"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75103S481N;75104S481J"/>
<tag k="ref:FR:RATP" v="1745"/>
+ <tag k="ref:FR:STIF" v="21992"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q646376"/>
<tag k="wikipedia" v="fr:Rambuteau (métro de Paris)"/>
</node>
- <node id="264690368" lat="48.8771276" lon="2.4066804">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Porte des Lilas"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1736"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- </node>
- <node id="264690370" lat="48.8754657" lon="2.3990396">
+ <node id="264690370" lat="48.8755038" lon="2.3990509">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Télégraphe"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S561D"/>
<tag k="ref:FR:RATP" v="55329"/>
+ <tag k="ref:FR:STIF" v="21993"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1263417"/>
<tag k="wikipedia" v="fr:Télégraphe (métro de Paris)"/>
</node>
- <node id="264690372" lat="48.8738469" lon="2.3852526">
+ <node id="264690372" lat="48.8738565" lon="2.3852638">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pyrénées"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S453L"/>
<tag k="ref:FR:RATP" v="55330"/>
+ <tag k="ref:FR:STIF" v="21991"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969303"/>
<tag k="wikipedia" v="fr:Pyrénées (métro de Paris)"/>
</node>
- <node id="264692522" lat="48.8750969" lon="2.3893345">
+ <node id="264692522" lat="48.8750834" lon="2.3893555">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Jourdain"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S256X"/>
<tag k="ref:FR:RATP" v="1864"/>
+ <tag k="ref:FR:STIF" v="21995"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1517347"/>
<tag k="wikipedia" v="fr:Jourdain (métro de Paris)"/>
</node>
- <node id="264704365" lat="48.8385876" lon="2.3222085">
+ <node id="264704365" lat="48.8386332" lon="2.3224866">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Gaîté"/>
<tag k="name:ru" v="Гаите"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S181Y"/>
<tag k="ref:FR:RATP" v="1927"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q377782"/>
<tag k="wikipedia" v="fr:Gaîté (métro de Paris)"/>
</node>
<node id="264712432" lat="48.8317799" lon="2.3140252">
@@ -2388,21 +2643,26 @@
<tag k="name" v="Plaisance"/>
<tag k="name:ru" v="Плезанс"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S419G"/>
<tag k="ref:FR:RATP" v="1705"/>
+ <tag k="ref:FR:STIF" v="22223"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1344485"/>
<tag k="wikipedia" v="fr:Plaisance (métro de Paris)"/>
</node>
<node id="264712433" lat="48.8339551" lon="2.3180764">
<tag k="STIF:zone" v="1"/>
- <tag k="name" v="Pernéty"/>
+ <tag k="name" v="Pernety"/>
<tag k="name:ru" v="Пернети"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S411Y"/>
<tag k="ref:FR:RATP" v="1783"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1684455"/>
<tag k="wikipedia" v="fr:Pernety (métro de Paris)"/>
</node>
<node id="264717964" lat="48.8225032" lon="2.2984833">
@@ -2413,59 +2673,78 @@
<tag k="ref:FR:RATP" v="22442"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1886721"/>
<tag k="wikipedia" v="fr:Malakoff - Plateau de Vanves (métro de Paris)"/>
</node>
- <node id="264769296" lat="48.8566177" lon="2.3705298">
+ <node id="264769296" lat="48.8566333" lon="2.3704333">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bréguet-Sabin"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S053R"/>
<tag k="ref:FR:RATP" v="1933"/>
+ <tag k="ref:FR:STIF" v="22008"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q777553"/>
<tag k="wikipedia" v="fr:Bréguet - Sabin (métro de Paris)"/>
</node>
- <node id="264769297" lat="48.8602039" lon="2.3721323">
+ <node id="264769297" lat="48.8602134" lon="2.3720741">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Richard Lenoir"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S487M"/>
<tag k="ref:FR:RATP" v="1664"/>
+ <tag k="ref:FR:STIF" v="22002"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1789070"/>
<tag k="wikipedia" v="fr:Richard-Lenoir (métro de Paris)"/>
</node>
- <node id="264772256" lat="48.8850187" lon="2.3795672">
+ <node id="264772256" lat="48.8851633" lon="2.3794612">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Laumière"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S286J"/>
<tag k="ref:FR:RATP" v="1882"/>
+ <tag k="ref:FR:STIF" v="22012"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1572249"/>
<tag k="wikipedia" v="fr:Laumière (métro de Paris)"/>
</node>
- <node id="264772371" lat="48.8869632" lon="2.3867135">
+ <node id="264772371" lat="48.8870606" lon="2.3866783">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ourcq"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S385S"/>
<tag k="ref:FR:RATP" v="1773"/>
+ <tag k="ref:FR:STIF" v="22005"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1495676"/>
<tag k="wikipedia" v="fr:Ourcq (métro de Paris)"/>
</node>
- <node id="264772861" lat="48.8885434" lon="2.3927045">
+ <node id="264772861" lat="48.8886492" lon="2.3926738">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Pantin"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S444F"/>
<tag k="ref:FR:RATP" v="1728"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q1785048"/>
<tag k="wikipedia" v="fr:Porte de Pantin (métro de Paris)"/>
</node>
- <node id="264772862" lat="48.8911980" lon="2.4025577">
+ <node id="264772862" lat="48.8912800" lon="2.4025383">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Hoche"/>
<tag k="railway" v="station"/>
@@ -2474,86 +2753,100 @@
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="264775552" lat="48.8814188" lon="2.3654808">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Louis Blanc"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1806"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Louis Blanc (métro de Paris)"/>
- </node>
- <node id="264775805" lat="48.8772835" lon="2.3492720">
+ <node id="264775805" lat="48.8772374" lon="2.3493387">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Poissonnière"/>
<tag k="operator" v="RATP"/>
+ <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S420W"/>
<tag k="ref:FR:RATP" v="1706"/>
<tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q764106"/>
<tag k="wikipedia" v="fr:Poissonnière (métro de Paris)"/>
</node>
- <node id="264776028" lat="48.8885069" lon="2.3740693">
+ <node id="264776028" lat="48.8884812" lon="2.3742226">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Riquet"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S489E"/>
<tag k="ref:FR:RATP" v="1666"/>
+ <tag k="ref:FR:STIF" v="22371"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1772478"/>
<tag k="wikipedia" v="fr:Riquet (métro de Paris)"/>
</node>
- <node id="264776029" lat="48.8908770" lon="2.3772148">
+ <node id="264776029" lat="48.8908513" lon="2.3773681">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Crimée"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S107P"/>
<tag k="ref:FR:RATP" v="1894"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q746288"/>
<tag k="wikipedia" v="fr:Crimée (métro de Paris)"/>
</node>
- <node id="264776910" lat="48.8947998" lon="2.3823744">
+ <node id="264776910" lat="48.8947282" lon="2.3823046">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Corentin Cariou"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S101H"/>
<tag k="ref:FR:RATP" v="1888"/>
+ <tag k="ref:FR:STIF" v="22389"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q120303"/>
<tag k="wikipedia" v="fr:Corentin Cariou (métro de Paris)"/>
</node>
- <node id="264778142" lat="48.8974296" lon="2.3854377">
+ <node id="264778142" lat="48.8974039" lon="2.3855910">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de la Villette"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S449L"/>
<tag k="ref:FR:RATP" v="1735"/>
+ <tag k="ref:FR:STIF" v="22374"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q571446"/>
<tag k="wikipedia" v="fr:Porte de la Villette (métro de Paris)"/>
</node>
- <node id="264780946" lat="48.8749537" lon="2.3402103">
+ <node id="264780946" lat="48.8749280" lon="2.3403640">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Le Peletier"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S288C"/>
<tag k="ref:FR:RATP" v="1795"/>
+ <tag k="ref:FR:STIF" v="22382"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1784008"/>
<tag k="wikipedia" v="fr:Le Peletier (métro de Paris)"/>
</node>
- <node id="264780947" lat="48.8759682" lon="2.3441565">
+ <node id="264780947" lat="48.8759424" lon="2.3443098">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Cadet"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S071S"/>
<tag k="ref:FR:RATP" v="1939"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1025135"/>
<tag k="wikipedia" v="fr:Cadet (métro de Paris)"/>
</node>
- <node id="264784170" lat="48.8585901" lon="2.3424101">
+ <node id="264784170" lat="48.8585528" lon="2.3422603">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pont Neuf"/>
<tag k="name:en" v="Pont Neuf"/>
@@ -2562,93 +2855,120 @@
<tag k="name:ru" v="Новый мост"/>
<tag k="name:zh" v="新桥"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S426M"/>
<tag k="ref:FR:RATP" v="1712"/>
+ <tag k="ref:FR:STIF" v="22379"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1458421"/>
<tag k="wikipedia" v="fr:Pont Neuf (métro de Paris)"/>
</node>
- <node id="264785951" lat="48.8512630" lon="2.3622044">
+ <node id="264785951" lat="48.8513954" lon="2.3618174">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Sully - Morland"/>
<tag k="name:ru" v="Сюлли — Морлан"/>
<tag k="old_name" v="Pont Sully"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75104S539X"/>
<tag k="ref:FR:RATP" v="1630"/>
+ <tag k="ref:FR:STIF" v="22369"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q257465"/>
<tag k="wikipedia" v="fr:Sully - Morland (métro de Paris)"/>
</node>
- <node id="264785952" lat="48.8535245" lon="2.3570872">
+ <node id="264785952" lat="48.8537872" lon="2.3565905">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Pont Marie (Cité des Arts)"/>
<tag k="name" v="Pont Marie"/>
<tag k="name:ru" v="Пон-Мари"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75104S425Y"/>
<tag k="ref:FR:RATP" v="1711"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q282600"/>
<tag k="wikipedia" v="fr:Pont Marie (métro de Paris)"/>
</node>
- <node id="264786014" lat="48.8429311" lon="2.3521239">
+ <node id="264786014" lat="48.8429053" lon="2.3522772">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Place Monge (Jardin des Plantes)"/>
<tag k="name" v="Place Monge"/>
<tag k="name:ru" v="Пляс-Монж"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S335E"/>
<tag k="ref:FR:RATP" v="1788"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q177476"/>
<tag k="wikipedia" v="fr:Place Monge (métro de Paris)"/>
</node>
- <node id="264789025" lat="48.8406731" lon="2.3517801">
+ <node id="264789025" lat="48.8406473" lon="2.3519334">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Censier - Daubenton"/>
<tag k="name:ru" v="Сансье — Добантон"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S076Y"/>
<tag k="ref:FR:RATP" v="1944"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q938430"/>
<tag k="wikipedia" v="fr:Censier - Daubenton (métro de Paris)"/>
</node>
- <node id="264790337" lat="48.8356703" lon="2.3525980">
+ <node id="264790337" lat="48.8356445" lon="2.3527513">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Les Gobelins"/>
<tag k="name:ru" v="Гобелен"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S856L;75113S194S"/>
<tag k="ref:FR:RATP" v="1800"/>
+ <tag k="ref:FR:STIF" v="22383"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1783617"/>
<tag k="wikipedia" v="fr:Les Gobelins (métro de Paris)"/>
</node>
- <node id="264794353" lat="48.8799166" lon="2.3990372">
+ <node id="264794353" lat="48.8799345" lon="2.3990632">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Pré Saint-Gervais"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S451N"/>
<tag k="ref:FR:RATP" v="1737"/>
+ <tag k="ref:FR:STIF" v="24684"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q751245"/>
<tag k="wikipedia" v="fr:Pré Saint-Gervais (métro de Paris)"/>
</node>
- <node id="264794354" lat="48.8819551" lon="2.3933641">
+ <node id="264794354" lat="48.8819444" lon="2.3933608">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Danube"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S121E"/>
<tag k="ref:FR:RATP" v="1900"/>
+ <tag k="ref:FR:STIF" v="24687"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1165108"/>
<tag k="wikipedia" v="fr:Danube (métro de Paris)"/>
</node>
- <node id="264795933" lat="48.8798096" lon="2.4170873">
+ <node id="264795933" lat="48.8797602" lon="2.4164717">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Mairie des Lilas"/>
<tag k="public_transport" v="stop_position"/>
@@ -2657,6 +2977,7 @@
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q683544"/>
<tag k="wikipedia" v="fr:Mairie des Lilas (métro de Paris)"/>
</node>
<node id="264796181" lat="48.8715218" lon="2.4043104">
@@ -2664,11 +2985,15 @@
<tag k="name" v="Saint-Fargeau"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S512A"/>
<tag k="ref:FR:RATP" v="1684"/>
+ <tag k="ref:FR:STIF" v="21946"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1576198"/>
<tag k="wikipedia" v="fr:Saint-Fargeau (métro de Paris)"/>
</node>
<node id="264796182" lat="48.8680997" lon="2.4013152">
@@ -2676,213 +3001,202 @@
<tag k="name" v="Pelleport"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S408M"/>
<tag k="ref:FR:RATP" v="1782"/>
+ <tag k="ref:FR:STIF" v="21948"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1576190"/>
<tag k="wikipedia" v="fr:Pelleport (métro de Paris)"/>
</node>
- <node id="265055434" lat="48.8382823" lon="2.3608293">
+ <node id="265055434" lat="48.8382761" lon="2.3608491">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Marcel"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S519V"/>
<tag k="ref:FR:RATP" v="1691"/>
+ <tag k="ref:FR:STIF" v="22000"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q587093"/>
<tag k="wikipedia" v="fr:Saint-Marcel (métro de Paris)"/>
</node>
- <node id="265055750" lat="48.8356584" lon="2.3588519">
+ <node id="265055750" lat="48.8356545" lon="2.3589273">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Campo-Formio"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S073K"/>
<tag k="ref:FR:RATP" v="1941"/>
+ <tag k="ref:FR:STIF" v="22009"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q683208"/>
<tag k="wikipedia" v="fr:Campo-Formio (métro de Paris)"/>
</node>
- <node id="265060052" lat="48.8927063" lon="2.3274728">
+ <node id="265060052" lat="48.8927063" lon="2.3273950">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Guy Môquet"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S197U"/>
<tag k="ref:FR:RATP" v="1851"/>
+ <tag k="ref:FR:STIF" v="22228"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
+ <tag k="toilets:wheelchair" v="no"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q738879"/>
<tag k="wikipedia" v="fr:Guy Môquet (métro de Paris)"/>
</node>
<node id="265060832" lat="48.8973715" lon="2.3289008">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Saint-Ouen"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S446U;75118S446P"/>
<tag k="ref:FR:RATP" v="1730"/>
+ <tag k="ref:FR:STIF" v="22220"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q181669"/>
<tag k="wikipedia" v="fr:Porte de Saint-Ouen (métro de Paris)"/>
</node>
<node id="267619085" lat="48.8565598" lon="2.2751570">
- <tag k="SNCF:hackess:completeness" v="4"/>
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Boulainvilliers"/>
<tag k="note" v="compléter les équipements de quais"/>
- <tag k="operator" v="RER"/>
+ <tag k="operator" v="SNCF"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="5586"/>
+ <tag k="ref:FR:uic8" v="87543181"/>
+ <tag k="ref:structurae" v="20027725"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87543181"/>
+ <tag k="uic_ref" v="8754318"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2422009"/>
<tag k="wikipedia" v="fr:Gare de Boulainvilliers"/>
</node>
- <node id="268467197" lat="48.8261434" lon="2.3573719">
+ <node id="268467197" lat="48.8260904" lon="2.3573505">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Tolbiac"/>
<tag k="name:ru" v="Толбиак"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S564U"/>
<tag k="ref:FR:RATP" v="1636"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1576648"/>
<tag k="wikipedia" v="fr:Tolbiac (métro de Paris)"/>
</node>
- <node id="268467526" lat="48.8225268" lon="2.3585049">
+ <node id="268467526" lat="48.8224745" lon="2.3585040">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Maison Blanche"/>
<tag k="name:ru" v="Мезон-Бланш"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S318B"/>
<tag k="ref:FR:RATP" v="1820"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1576642"/>
<tag k="wikipedia" v="fr:Maison Blanche (métro de Paris)"/>
</node>
- <node id="268467559" lat="48.8191302" lon="2.3595477">
+ <node id="268467559" lat="48.8190866" lon="2.3595330">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte d'Italie"/>
<tag k="name:ru" v="Порт-д’Итали"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S438G"/>
<tag k="ref:FR:RATP" v="1718"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1783630"/>
<tag k="wikipedia" v="fr:Porte d'Italie (métro de Paris)"/>
</node>
- <node id="270191328" lat="48.8626123" lon="2.3009444">
- <tag k="SNCF:hackess:completeness" v="5"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Pont de l'Alma"/>
- <tag k="official_name" v="PONT DE L ALMA"/>
- <tag k="opening_hours" v="Mo-Su 00:00-00:40,05:00-24:00"/>
- <tag k="operator" v="SNCF"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER C"/>
- <tag k="ref:FR:RATP" v="5601"/>
- <tag k="ref:SNCF" v="RER"/>
- <tag k="ref:SNCF:RER" v="C"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="8739304"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare du Pont de l'Alma"/>
- </node>
- <node id="270191809" lat="48.8533983" lon="2.3454864">
- <tag k="SNCF:hackess:completeness" v="5"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Saint-Michel Notre-Dame"/>
- <tag k="official_name" v="ST MICHEL NOTRE DAME"/>
- <tag k="operator" v="SNCF, RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER B, C"/>
- <tag k="ref:FR:RATP" v="5604"/>
- <tag k="ref:SNCF" v="RER"/>
- <tag k="ref:SNCF:RER" v="C"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87547315;87785436"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare Saint-Michel - Notre-Dame"/>
- </node>
- <node id="282635141" lat="48.8677590" lon="2.3139517">
+ <node id="282635141" lat="48.8678013" lon="2.3138853">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Champs-Élysées - Clemenceau"/>
<tag k="name:ru" v="Шанз-Элизе — Клемансо"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S080K"/>
<tag k="ref:FR:RATP" v="1949"/>
+ <tag k="ref:FR:STIF" v="22090"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1061527"/>
<tag k="wikipedia" v="fr:Champs-Élysées - Clemenceau (métro de Paris)"/>
</node>
- <node id="295442702" lat="48.8983316" lon="2.2485284">
- <tag k="STIF:zone" v="3"/>
- <tag k="name" v="Courbevoie"/>
- <tag k="official_name" v="COURBEVOIE"/>
- <tag k="operator" v="SNCF"/>
- <tag k="railway" v="station"/>
- <tag k="source" v="survey"/>
- <tag k="uic_ref" v="8738220"/>
- <tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Halte_de_Courbevoie-Sport"/>
- </node>
- <node id="300876896" lat="48.8150770" lon="2.4217740">
+ <node id="300876896" lat="48.8150196" lon="2.4217316">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="École Vétérinaire de Maisons-Alfort"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="23674"/>
+ <tag k="ref:FR:STIF" v="22214"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
+ <tag k="toilets:wheelchair" v="no"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q273645"/>
<tag k="wikipedia" v="fr:École vétérinaire de Maisons-Alfort (métro de Paris)"/>
</node>
- <node id="300877457" lat="48.8214689" lon="2.4136458">
+ <node id="300877457" lat="48.8215612" lon="2.4137829">
<tag k="STIF:zone" v="1"/>
- <tag k="name" v="Charenton - Écoles"/>
+ <tag k="name" v="Charenton-Écoles"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1951"/>
+ <tag k="ref:FR:STIF" v="22210"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1063134"/>
<tag k="wikipedia" v="fr:Charenton - Écoles (métro de Paris)"/>
</node>
- <node id="323860043" lat="48.8386893" lon="2.3190528"/>
- <node id="323860046" lat="48.8387732" lon="2.3191521"/>
- <node id="323860047" lat="48.8396658" lon="2.3173840"/>
- <node id="324352448" lat="48.8514874" lon="2.3311850">
+ <node id="324352448" lat="48.8511006" lon="2.3307247">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Saint-Sulpice"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S528K"/>
<tag k="ref:FR:RATP" v="1698"/>
+ <tag k="ref:FR:STIF" v="22139"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1783894"/>
<tag k="wikipedia" v="fr:Saint-Sulpice (métro de Paris)"/>
</node>
- <node id="324363999" lat="48.8439859" lon="2.3243283">
- <tag k="name" v="Montparnasse-Bienvenüe"/>
- <tag k="name:ru" v="Монпарнас — Бьенвеню"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="0408"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Montparnasse - Bienvenüe (métro de Paris)"/>
- </node>
- <node id="326309672" lat="48.8789208" lon="2.3623079">
+ <node id="326309672" lat="48.8788951" lon="2.3624612">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Château Landon"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S087E"/>
<tag k="ref:FR:RATP" v="1963"/>
+ <tag k="ref:FR:STIF" v="22367"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1090315"/>
<tag k="wikipedia" v="fr:Château-Landon (métro de Paris)"/>
</node>
- <node id="327432580" lat="48.8399322" lon="2.3370615">
+ <node id="327432580" lat="48.8399220" lon="2.3370663">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Port Royal"/>
<tag k="operator" v="RATP"/>
@@ -2892,50 +3206,25 @@
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775862"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2291298"/>
<tag k="wikipedia" v="fr:Gare de Port-Royal"/>
</node>
- <node id="327432589" lat="48.8463800" lon="2.3402926">
+ <node id="327432589" lat="48.8463852" lon="2.3402917">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Luxembourg"/>
<tag k="operator" v="RATP"/>
<tag k="railway" v="station"/>
<tag k="ref" v="RER B"/>
<tag k="ref:FR:RATP" v="1811"/>
+ <tag k="ref:FR:STIF" v="412817"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775861"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1772325"/>
<tag k="wikipedia" v="fr:Gare du Luxembourg"/>
</node>
- <node id="327613695" lat="48.8808851" lon="2.3573548">
- <tag k="STIF:zone" v="1"/>
- <tag k="alt_name" v="Paris Nord RER"/>
- <tag k="layer" v="-2"/>
- <tag k="name" v="Gare du Nord (RER)"/>
- <tag k="official_name" v="PARIS NORD (GARE DU NORD)"/>
- <tag k="operator" v="SNCF"/>
- <tag k="public_transport" v="station"/>
- <tag k="railway" v="station"/>
- <tag k="ref" v="RER B,D"/>
- <tag k="ref:FR:RATP" v="1843"/>
- <tag k="route_ref:FR:RER_D" v="SOVA; FUCA; UOVA; VIPE; LOVA; VUCA; FOVA; LUCA; VOVA; UUCA; SUCA; VOPA; FOPA; LOPA"/>
- <tag k="short_name" v="Gare du Nord"/>
- <tag k="train" v="yes"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="8727103"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare du Nord (métro de Paris)"/>
- </node>
- <node id="329096792" lat="48.8844216" lon="2.3602786">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="La Chapelle"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1868"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:La Chapelle (métro de Paris)"/>
- </node>
- <node id="329974472" lat="48.8800561" lon="2.3581041">
+ <node id="329974472" lat="48.8807811" lon="2.3586992">
<tag k="STIF:zone" v="1"/>
<tag k="layer" v="-3"/>
<tag k="name" v="Magenta"/>
@@ -2946,49 +3235,63 @@
<tag k="ref:FR:RATP" v="51923"/>
<tag k="train" v="yes"/>
<tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8728187"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q608428"/>
<tag k="wikipedia" v="fr:Gare de Magenta"/>
</node>
- <node id="329974475" lat="48.8747218" lon="2.3271274">
+ <node id="329974475" lat="48.8750603" lon="2.3269774">
<tag k="STIF:zone" v="1"/>
- <tag k="layer" v="-3"/>
+ <tag k="level" v="-3"/>
<tag k="name" v="Haussmann - Saint-Lazare"/>
<tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
<tag k="ref" v="RER E"/>
<tag k="ref:FR:RATP" v="51922"/>
<tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8728189"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q800898"/>
<tag k="wikipedia" v="fr:Gare Haussmann - Saint-Lazare"/>
</node>
- <node id="330020300" lat="48.8979510" lon="2.4004903">
+ <node id="330020300" lat="48.8979517" lon="2.4004902">
<tag k="STIF:zone" v="2"/>
+ <tag k="level" v="-1"/>
<tag k="name" v="Pantin"/>
+ <tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
<tag k="ref" v="RER E"/>
<tag k="ref:FR:RATP" v="51924"/>
<tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8711320"/>
<tag k="usage" v="main"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q389716"/>
<tag k="wikipedia" v="fr:Gare de Pantin"/>
</node>
- <node id="330026020" lat="48.8932382" lon="2.4133209">
+ <node id="330026020" lat="48.8932564" lon="2.4133107">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Église de Pantin"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1912"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q274526"/>
<tag k="wikipedia" v="fr:Église de Pantin (métro de Paris)"/>
</node>
- <node id="331514770" lat="48.8795976" lon="2.3270787">
+ <node id="331514770" lat="48.8796037" lon="2.3270241">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Liège"/>
<tag k="name:ru" v="Льеж"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S289M"/>
<tag k="ref:FR:RATP" v="1804"/>
+ <tag k="ref:FR:STIF" v="22225"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1866688"/>
<tag k="wikipedia" v="fr:Liège (métro de Paris)"/>
</node>
<node id="338930214" lat="48.8538982" lon="2.2893959">
@@ -2996,44 +3299,52 @@
<tag k="alt_name" v="Bir-Hakeim (Grenelle)"/>
<tag k="name" v="Bir-Hakeim"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S042R"/>
<tag k="ref:FR:RATP" v="2007"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1783899"/>
<tag k="wikipedia" v="fr:Bir-Hakeim (métro de Paris)"/>
</node>
- <node id="354969611" lat="48.8731477" lon="2.3295277">
+ <node id="354969611" lat="48.8723107" lon="2.3297051">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Auber"/>
<tag k="name:ru" v="Обер"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S015F"/>
<tag k="ref:FR:RATP" v="1990"/>
+ <tag k="ref:FR:STIF" v="412806"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="start_date" v="1971-11-23"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775859"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q800416"/>
<tag k="wikipedia" v="fr:Gare Auber"/>
</node>
- <node id="425042026" lat="48.8772086" lon="2.3233132"/>
- <node id="425042029" lat="48.8780666" lon="2.3253168"/>
<node id="472985883" lat="48.8201086" lon="2.3647992">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Choisy"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S433B"/>
<tag k="ref:FR:RATP" v="1724"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q953454"/>
<tag k="wikipedia" v="fr:Porte de Choisy (métro de Paris)"/>
</node>
<node id="472985884" lat="48.8216697" lon="2.3693224">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte d'Ivry"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S439H"/>
<tag k="ref:FR:RATP" v="1719"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1784015"/>
<tag k="wikipedia" v="fr:Porte d'Ivry (métro de Paris)"/>
</node>
<node id="472985885" lat="48.8159011" lon="2.3773455">
@@ -3041,99 +3352,37 @@
<tag k="name" v="Pierre et Marie Curie"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1786"/>
+ <tag k="ref:FR:STIF" v="22397"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1784003"/>
<tag k="wikipedia" v="fr:Pierre et Marie Curie (métro de Paris)"/>
</node>
- <node id="473070143" lat="48.8491398" lon="2.3218984">
+ <node id="473070143" lat="48.8491427" lon="2.3218878">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Vaneau"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75106S581T;75107S581L"/>
<tag k="ref:FR:RATP" v="1643"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1511414"/>
<tag k="wikipedia" v="fr:Vaneau (métro de Paris)"/>
</node>
- <node id="615107647" lat="48.8853096" lon="2.2980977"/>
- <node id="615107652" lat="48.8853938" lon="2.2978811"/>
- <node id="615107653" lat="48.8854741" lon="2.2978931"/>
- <node id="634996117" lat="48.8756733" lon="2.3273522">
- <tag k="name" v="Saint-Lazare"/>
- <tag k="name:ru" v="Сен-Лазар"/>
- <tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Saint-Lazare (métro de Paris)"/>
- </node>
- <node id="635005158" lat="48.8755148" lon="2.3240401">
- <tag k="name" v="Saint-Lazare"/>
- <tag k="name:ru" v="Сен-Лазар"/>
- <tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Saint-Lazare (métro de Paris)"/>
- </node>
- <node id="765950957" lat="48.8403227" lon="2.3190798">
- <tag k="name" v="Gare Montparnasse 1 - Francilien"/>
- <tag k="operator" v="SNCF"/>
- <tag k="railway" v="station"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare de Paris-Montparnasse"/>
- </node>
- <node id="779156469" lat="48.8405197" lon="2.3667583"/>
- <node id="779156515" lat="48.8403924" lon="2.3664130"/>
- <node id="779156519" lat="48.8405147" lon="2.3667149"/>
- <node id="779156562" lat="48.8404299" lon="2.3662491"/>
- <node id="779156602" lat="48.8410291" lon="2.3658344"/>
- <node id="779156604" lat="48.8405284" lon="2.3667510"/>
- <node id="779156616" lat="48.8407537" lon="2.3673305"/>
- <node id="779156648" lat="48.8404667" lon="2.3663431"/>
- <node id="779156651" lat="48.8405111" lon="2.3667182"/>
- <node id="779156695" lat="48.8408186" lon="2.3659048"/>
- <node id="779156699" lat="48.8407642" lon="2.3673568"/>
- <node id="779156732" lat="48.8408536" lon="2.3659919"/>
- <node id="779156747" lat="48.8407450" lon="2.3673378"/>
- <node id="795810507" lat="48.8623245" lon="2.3145806"/>
- <node id="795810575" lat="48.8621923" lon="2.3145237"/>
- <node id="795810607" lat="48.8621783" lon="2.3145424"/>
- <node id="795810799" lat="48.8624244" lon="2.3145928"/>
- <node id="795810850" lat="48.8623245" lon="2.3145722"/>
- <node id="795810897" lat="48.8622217" lon="2.3142745"/>
- <node id="795810911" lat="48.8622125" lon="2.3145248"/>
- <node id="795811028" lat="48.8621756" lon="2.3145638"/>
- <node id="795811074" lat="48.8621756" lon="2.3145522"/>
- <node id="795811176" lat="48.8624929" lon="2.3146015"/>
- <node id="795811479" lat="48.8624249" lon="2.3145865"/>
- <node id="795811681" lat="48.8625077" lon="2.3143016"/>
- <node id="795811817" lat="48.8621840" lon="2.3145321"/>
- <node id="795811920" lat="48.8624965" lon="2.3145284"/>
- <node id="818880250" lat="48.8774575" lon="2.3259018"/>
- <node id="818880257" lat="48.8772330" lon="2.3233700"/>
- <node id="818880268" lat="48.8767222" lon="2.3236028"/>
- <node id="818880298" lat="48.8771987" lon="2.3232934"/>
- <node id="818880308" lat="48.8769537" lon="2.3234385"/>
- <node id="818880324" lat="48.8765964" lon="2.3266731"/>
- <node id="818880344" lat="48.8779650" lon="2.3254739"/>
- <node id="818880356" lat="48.8768237" lon="2.3235285"/>
- <node id="818880389" lat="48.8770257" lon="2.3233932"/>
- <node id="818880404" lat="48.8762615" lon="2.3239937"/>
- <node id="818880428" lat="48.8774754" lon="2.3259483"/>
- <node id="818880433" lat="48.8770978" lon="2.3233492"/>
- <node id="818880440" lat="48.8768872" lon="2.3234833"/>
- <node id="818880454" lat="48.8766848" lon="2.3266769"/>
- <node id="838533003" lat="48.8780508" lon="2.2982339">
+ <node id="838533003" lat="48.8782743" lon="2.2990808">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Ternes"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S563K"/>
<tag k="ref:FR:RATP" v="1635"/>
+ <tag k="ref:FR:STIF" v="22108"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q635744"/>
<tag k="wikipedia" v="fr:Ternes (métro de Paris)"/>
</node>
<node id="942695829" lat="48.8385604" lon="2.3159707">
@@ -3142,33 +3391,17 @@
<tag k="railway" v="station"/>
<tag k="source" v="SNCF - 06/2013"/>
<tag k="uic_ref" v="8739110"/>
+ <tag k="wikidata" v="Q631114"/>
<tag k="wikipedia" v="fr:Gare de Paris-Montparnasse"/>
</node>
- <node id="942985787" lat="48.8708019" lon="2.2756227"/>
- <node id="942985873" lat="48.8708655" lon="2.2754301"/>
- <node id="942985924" lat="48.8707993" lon="2.2756299"/>
- <node id="942986057" lat="48.8709933" lon="2.2755261"/>
- <node id="942986149" lat="48.8708631" lon="2.2754373"/>
- <node id="942986165" lat="48.8709274" lon="2.2757259"/>
- <node id="946214809" lat="48.8645323" lon="2.2719726"/>
- <node id="948473350" lat="48.8644103" lon="2.2720202"/>
- <node id="948473999" lat="48.8643842" lon="2.2720211"/>
- <node id="948474847" lat="48.8643874" lon="2.2722493"/>
- <node id="948475446" lat="48.8644097" lon="2.2719765"/>
- <node id="959800991" lat="48.8709594" lon="2.2756290">
- <tag k="addr:housenumber" v="85"/>
- <tag k="addr:street" v="Avenue Foch"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- </node>
- <node id="959835124" lat="48.8708941" lon="2.2757010">
- <tag k="addr:housenumber" v="91"/>
- <tag k="addr:street" v="Boulevard Flandrin"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <node id="1092891411" lat="48.8194685" lon="2.2582071">
+ <tag k="name" v="Issy"/>
+ <tag k="public_transport" v="stop_position"/>
+ <tag k="railway" v="station"/>
+ <tag k="type:RATP" v="rer"/>
</node>
- <node id="980292663" lat="48.8855009" lon="2.2979432"/>
- <node id="980378668" lat="48.8853364" lon="2.2981477"/>
- <node id="1191666961" lat="48.8625067" lon="2.3143225"/>
- <node id="1308998006" lat="48.8435226" lon="2.3744523">
+ <node id="1308998006" lat="48.8435283" lon="2.3743132">
+ <tag k="level" v="-3"/>
<tag k="name" v="Gare de Lyon RER D"/>
<tag k="official_name" v="PARIS GARE DE LYON"/>
<tag k="operator" v="SNCF"/>
@@ -3179,15 +3412,17 @@
<tag k="uic_ref" v="8768603"/>
<tag k="wheelchair" v="no"/>
</node>
- <node id="1309031698" lat="48.8437844" lon="2.3740909">
+ <node id="1309031698" lat="48.8438540" lon="2.3740962">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Gare de Lyon RER A"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1840;20952"/>
+ <tag k="short_name" v="Gare de Lyon RER"/>
<tag k="start_date" v="1977-12-09"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775858"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q747541"/>
<tag k="wikipedia" v="fr:Paris-Gare de Lyon#RER"/>
</node>
<node id="1333685615" lat="48.8153713" lon="2.3408362">
@@ -3198,28 +3433,10 @@
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775865"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3096532"/>
<tag k="wikipedia" v="fr:Gare de Gentilly"/>
</node>
- <node id="1367616107" lat="48.8199570" lon="2.2592890"/>
- <node id="1367616112" lat="48.8199900" lon="2.2592530"/>
- <node id="1367616113" lat="48.8199940" lon="2.2592610"/>
- <node id="1367616120" lat="48.8200240" lon="2.2590590"/>
- <node id="1367616135" lat="48.8200480" lon="2.2591120"/>
- <node id="1439673303" lat="48.8199426" lon="2.2591509"/>
- <node id="1480535477" lat="48.8837741" lon="2.3495359">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Barbès - Rochechouart"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1999"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Barbès - Rochechouart (métro de Paris)"/>
- </node>
- <node id="1481147746" lat="48.8915918" lon="2.3496700">
+ <node id="1481147746" lat="48.8914837" lon="2.3497296">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Marcadet - Poissonniers"/>
<tag k="operator" v="RATP"/>
@@ -3230,231 +3447,191 @@
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1892927"/>
<tag k="wikipedia" v="fr:Marcadet - Poissonniers (métro de Paris)"/>
</node>
- <node id="1489806669" lat="48.8663302" lon="2.3215942">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Concorde"/>
- <tag k="name:de" v="Eintracht"/>
- <tag k="name:es" v="Concordia"/>
- <tag k="name:it" v="Concorde"/>
- <tag k="name:pt" v="Concórdia"/>
- <tag k="name:ru" v="Конкорд"/>
- <tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1885"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Concorde (métro de Paris)"/>
- </node>
- <node id="1489806675" lat="48.8603937" lon="2.3146892">
- <tag k="name" v="Invalides"/>
- <tag k="name:ru" v="Энвалид"/>
- <tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Invalides (métro de Paris)"/>
- </node>
- <node id="1507214977" lat="48.8846938" lon="2.3426620">
- <tag k="STIF:zone" v="1"/>
- <tag k="alt_name" v="Funiculaire Gare basse"/>
- <tag k="name" v="Funiculaire Montmartre - Station Inférieure"/>
- <tag k="operator" v="RATP"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="2021"/>
- <tag k="source" v="Bing"/>
- <tag k="wheelchair" v="yes"/>
- </node>
- <node id="1507214979" lat="48.8856604" lon="2.3425489">
- <tag k="STIF:zone" v="1"/>
- <tag k="alt_name" v="Funiculaire Gare haute"/>
- <tag k="name" v="Funiculaire Montmartre - Station Supérieure"/>
- <tag k="operator" v="RATP"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="2022"/>
- <tag k="source" v="Bing"/>
- <tag k="wheelchair" v="yes"/>
- </node>
- <node id="1515654999" lat="48.8764332" lon="2.3253672">
- <tag k="amenity" v="clock"/>
- <tag k="display" v="analog"/>
- <tag k="support" v="wall_mounted"/>
- </node>
- <node id="1584432760" lat="48.8537409" lon="2.3693210">
- <tag k="name" v="Bastille"/>
- <tag k="name:ru" v="Бастий"/>
- <tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Bastille (métro de Paris)"/>
- </node>
- <node id="1651603489" lat="48.8406273" lon="2.3670350"/>
- <node id="1651603490" lat="48.8406449" lon="2.3670804"/>
- <node id="1651603491" lat="48.8407208" lon="2.3672756"/>
- <node id="1656938775" lat="48.8433230" lon="2.3737596">
- <tag k="name" v="Gare de Lyon (métro 14)"/>
- <tag k="public_transport" v="stop_position"/>
+ <node id="1489807506" lat="48.8741654" lon="2.2950686">
+ <tag k="name" v="Charles de Gaulle — Étoile (RER)"/>
<tag k="railway" v="station"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare de Lyon (métro de Paris)"/>
</node>
<node id="1659843199" lat="48.8456163" lon="2.3095848">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Sèvres-Lecourbe"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75115S533Z"/>
<tag k="ref:FR:RATP" v="1633"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969443"/>
<tag k="wikipedia" v="fr:Sèvres - Lecourbe (métro de Paris)"/>
</node>
- <node id="1684041707" lat="48.8762670" lon="2.3240376"/>
- <node id="1731763792" lat="48.8740658" lon="2.2951493">
+ <node id="1731763792" lat="48.8741854" lon="2.2950708">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Charles de Gaulle — Étoile (RER)"/>
<tag k="name:ru" v="Шарль де Голль — Этуаль"/>
<tag k="note" v="Limited to RER"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1954"/>
+ <tag k="ref:FR:STIF" v="412807"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="start_date" v="1970-01-19"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775800"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q800624"/>
<tag k="wikipedia" v="fr:Gare Charles-de-Gaulle - Étoile"/>
</node>
- <node id="1731763794" lat="48.8484292" lon="2.3953699">
+ <node id="1731763794" lat="48.8482006" lon="2.3959592">
<tag k="STIF:zone" v="1"/>
<tag k="alt_name" v="Nation"/>
<tag k="name" v="Nation (RER)"/>
<tag k="name:ru" v="Насьон"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1759"/>
+ <tag k="ref:FR:STIF" v="412808"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="start_date" v="1969-12-14"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775810"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q801232"/>
<tag k="wikipedia" v="fr:Gare de Nation"/>
</node>
- <node id="1780486821" lat="48.8975316" lon="2.3446684">
+ <node id="1780486821" lat="48.8973976" lon="2.3448521">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Clignancourt"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S435C"/>
<tag k="ref:FR:RATP" v="1726"/>
+ <tag k="ref:FR:STIF" v="22141"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969480"/>
<tag k="wikipedia" v="fr:Porte de Clignancourt (métro de Paris)"/>
</node>
- <node id="1805529567" lat="48.8419339" lon="2.3211592">
+ <node id="1805529567" lat="48.8421016" lon="2.3210740">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Montparnasse-Bienvenüe"/>
<tag k="name:ru" v="Монпарнас — Бьенвеню"/>
- <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1751"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q764465"/>
<tag k="wikipedia" v="fr:Montparnasse - Bienvenüe (métro de Paris)"/>
</node>
- <node id="1823210835" lat="48.8391417" lon="2.3827712">
+ <node id="1823210835" lat="48.8391964" lon="2.3828490">
+ <tag k="STIF:zone" v="1"/>
<tag k="bench" v="yes"/>
- <tag k="name" v="Paris-Bercy"/>
+ <tag k="name" v="Paris-Bercy - Bourgogne-Pays d'Auvergne"/>
+ <tag k="old_name" v="Paris-Bercy"/>
<tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
+ <tag k="railway:ref" v="PBY"/>
<tag k="ref" v="BERCY"/>
<tag k="shelter" v="yes"/>
<tag k="source" v="SNCF - 06/2013"/>
<tag k="train" v="yes"/>
<tag k="uic_ref" v="8768666"/>
<tag k="wheelchair" v="yes"/>
- <tag k="wikipedia" v="fr:Gare de Paris-Bercy"/>
+ <tag k="wikidata" v="Q261320"/>
+ <tag k="wikipedia" v="fr:Gare de Paris-Bercy-Bourgogne-Pays d'Auvergne"/>
</node>
- <node id="1981222779" lat="48.8787548" lon="2.3223081">
+ <node id="1981222779" lat="48.8787676" lon="2.3222643">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Europe"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S148J"/>
<tag k="ref:FR:RATP" v="1915"/>
+ <tag k="ref:FR:STIF" v="22032"/>
<tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q766618"/>
</node>
- <node id="1997626380" lat="48.8767276" lon="2.4064297">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Porte des Lilas"/>
- <tag k="public_transport" v="stop_position"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1736"/>
- <tag k="station" v="subway"/>
- <tag k="subway" v="yes"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Porte des Lilas (métro de Paris)"/>
- </node>
- <node id="1997722983" lat="48.8795817" lon="2.3886032">
+ <node id="1997722983" lat="48.8794922" lon="2.3885838">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Botzaris"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S048A"/>
<tag k="ref:FR:RATP" v="2016"/>
+ <tag k="ref:FR:STIF" v="24686"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q894930"/>
<tag k="wikipedia" v="fr:Botzaris (métro de Paris)"/>
</node>
<node id="1997722992" lat="48.8825949" lon="2.3703263">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Jaurès"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S254Z;75110S254L"/>
<tag k="ref:FR:RATP" v="1861"/>
+ <tag k="ref:FR:STIF" v="24680"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q568195"/>
<tag k="wikipedia" v="fr:Jaurès (métro de Paris)"/>
</node>
<node id="2023231831" lat="48.8276760" lon="2.3054796">
+ <tag k="STIF:zone" v="1"/>
<tag k="name" v="Porte de Vanves"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75114S447M"/>
<tag k="ref:FR:RATP" v="1731"/>
<tag k="source" v="RATP - 07/2012"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1547535"/>
</node>
<node id="2066461402" lat="48.8767737" lon="2.3935636">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Place des Fêtes"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75119S417B"/>
<tag k="ref:FR:RATP" v="1792"/>
+ <tag k="ref:FR:STIF" v="21951"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1789135"/>
<tag k="wikipedia" v="fr:Place des Fêtes (métro de Paris)"/>
</node>
- <node id="2066488458" lat="48.8792625" lon="2.3035538">
+ <node id="2066488458" lat="48.8793962" lon="2.3043746">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Courcelles"/>
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S104L"/>
<tag k="ref:FR:RATP" v="1892"/>
+ <tag k="ref:FR:STIF" v="22121"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q646583"/>
<tag k="wikipedia" v="fr:Courcelles (métro de Paris)"/>
</node>
- <node id="2188235051" lat="48.8183938" lon="2.3193550">
+ <node id="2188235051" lat="48.8182340" lon="2.3195203">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Mairie de Montrouge"/>
<tag k="operator" v="RATP"/>
@@ -3465,23 +3642,25 @@
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2270685"/>
</node>
- <node id="2268021731" lat="48.8404356" lon="2.3665242"/>
<node id="2355666875" lat="48.8535755" lon="2.2795901">
- <tag k="SNCF:hackess:completeness" v="4"/>
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Avenue du Président Kennedy"/>
+ <tag k="official_name" v="Avenue du Président Kennedy - Maison de Radio-France"/>
<tag k="old_name" v="Kennedy Radio-France"/>
- <tag k="operator" v="RER"/>
+ <tag k="operator" v="SNCF"/>
<tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="5587"/>
+ <tag k="ref:FR:uic8" v="87543207"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87543207"/>
+ <tag k="uic_ref" v="8754320"/>
+ <tag k="wikidata" v="Q2416280"/>
<tag k="wikipedia" v="fr:Gare de l'avenue du Président Kennedy"/>
</node>
- <node id="2367372622" lat="48.8296241" lon="2.2634899">
- <tag k="SNCF:hackess:completeness" v="5"/>
+ <node id="2367372622" lat="48.8296688" lon="2.2633246">
<tag k="STIF:zone" v="2"/>
<tag k="name" v="Issy - Val-de-Seine"/>
<tag k="official_name" v="ISSY VAL DE SEINE"/>
@@ -3489,50 +3668,45 @@
<tag k="railway" v="station"/>
<tag k="ref" v="RER C"/>
<tag k="ref:FR:RATP" v="5597"/>
+ <tag k="ref:FR:uic8" v="87393306"/>
<tag k="ref:SNCF" v="RER"/>
<tag k="ref:SNCF:RER" v="C"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87393306"/>
+ <tag k="uic_ref" v="8739330"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q3065321"/>
<tag k="wikipedia" v="fr:Gare d'Issy - Val de Seine"/>
</node>
- <node id="2378562392" lat="48.8405191" lon="2.3667264"/>
- <node id="2378562393" lat="48.8405955" lon="2.3669533"/>
- <node id="2378562394" lat="48.8406763" lon="2.3671612"/>
+ <node id="2367860483" lat="48.8194452" lon="2.2582225">
+ <tag k="name" v="Issy"/>
+ <tag k="public_transport" v="stop_position"/>
+ <tag k="railway" v="station"/>
+ <tag k="type:RATP" v="rer"/>
+ </node>
<node id="2379542204" lat="48.8605833" lon="2.3261037">
- <tag k="SNCF:hackess:completeness" v="5"/>
<tag k="STIF:zone" v="1"/>
+ <tag k="addr:city" v="Paris"/>
+ <tag k="addr:housenumber" v="62"/>
+ <tag k="addr:postcode" v="75343"/>
+ <tag k="addr:street" v="Rue de Lille"/>
<tag k="name" v="Musée d'Orsay"/>
<tag k="official_name" v="MUSEE D ORSAY"/>
- <tag k="operator" v="RER"/>
+ <tag k="operator" v="SNCF"/>
<tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
<tag k="ref" v="RER C"/>
<tag k="ref:FR:RATP" v="5603"/>
+ <tag k="ref:FR:uic8" v="87547307"/>
<tag k="ref:SNCF" v="RER"/>
<tag k="ref:SNCF:RER" v="C"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87547307"/>
+ <tag k="uic_ref" v="8754730"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q15260427"/>
<tag k="wikipedia" v="fr:Gare du Musée d'Orsay"/>
</node>
- <node id="2388239606" lat="48.8414079" lon="2.3668154"/>
- <node id="2389587125" lat="48.8709768" lon="2.2755794">
- <tag k="entrance" v="yes"/>
- <tag k="level" v="0"/>
- <tag k="source" v="survey 2013"/>
- <tag k="wheelchair" v="yes"/>
- </node>
- <node id="2389587126" lat="48.8709649" lon="2.2756135">
- <tag k="entrance" v="main"/>
- <tag k="level" v="0"/>
- <tag k="source" v="survey 2013"/>
- <tag k="wheelchair" v="yes"/>
- </node>
<node id="2489972624" lat="48.8465081" lon="2.2771499">
- <tag k="SNCF:hackess:completeness" v="5"/>
<tag k="STIF:zone" v="1"/>
- <tag k="building" v="station"/>
<tag k="name" v="Javel"/>
<tag k="official_name" v="JAVEL"/>
<tag k="operator" v="SNCF"/>
@@ -3540,14 +3714,16 @@
<tag k="railway" v="station"/>
<tag k="ref" v="RER C"/>
<tag k="ref:FR:RATP" v="5599"/>
+ <tag k="ref:FR:uic8" v="87393066"/>
<tag k="ref:SNCF" v="RER"/>
<tag k="ref:SNCF:RER" v="C"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87393066"/>
+ <tag k="uic_ref" v="8739306"/>
<tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q800968"/>
<tag k="wikipedia" v="fr:Gare de Javel"/>
</node>
- <node id="2490099593" lat="48.8956037" lon="2.4251032">
+ <node id="2490099593" lat="48.8954338" lon="2.4251929">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Bobigny-Pantin (Raymond Queneau)"/>
<tag k="network" v="Métro"/>
@@ -3555,11 +3731,13 @@
<tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="2011"/>
+ <tag k="ref:FR:STIF" v="22014"/>
<tag k="source" v="RATP - 07/2012"/>
<tag k="source:position" v="connaissance locale"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q888758"/>
<tag k="wikipedia" v="fr:Bobigny - Pantin - Raymond Queneau (métro de Paris)"/>
</node>
<node id="2493410447" lat="48.8779888" lon="2.2817745">
@@ -3567,49 +3745,38 @@
<tag k="layer" v="-2"/>
<tag k="name" v="Porte Maillot"/>
<tag k="name:ru" v="Порт-Майо"/>
- <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S441V;75117S441N"/>
<tag k="ref:FR:RATP" v="1716"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1344536"/>
<tag k="wikipedia" v="fr:Porte Maillot (métro de Paris)"/>
</node>
- <node id="2506241285" lat="48.8771047" lon="2.3594737">
+ <node id="2506241285" lat="48.8770807" lon="2.3594553">
<tag k="SNCF:stop_name" v="Paris-Est"/>
- <tag k="alt_name" v="Paris-Est"/>
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Paris-Est;Gare de Paris-Est"/>
<tag k="bench" v="yes"/>
<tag k="name" v="Gare de l'Est"/>
<tag k="name:de" v="Paris Ostbahnhof"/>
<tag k="name:ru" v="Восточный вокзал"/>
<tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
<tag k="railway:ref:DBAG" v="XFPO"/>
+ <tag k="ref_name" v="Paris Gare de l'Est"/>
<tag k="shelter" v="yes"/>
+ <tag k="start_date" v="1849-07-05"/>
<tag k="train" v="yes"/>
<tag k="uic_ref" v="8711300"/>
<tag k="website" v="http://www.gares-en-mouvement.com/fr/frpst/accueil/"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q757180"/>
<tag k="wikipedia" v="fr:Gare de Paris-Est"/>
</node>
- <node id="2530484365" lat="48.8645361" lon="2.2722445"/>
- <node id="2530639926" lat="48.8199080" lon="2.2591900"/>
- <node id="2530639945" lat="48.8200760" lon="2.2591710"/>
- <node id="2531888728" lat="48.8644010" lon="2.2722489">
- <tag k="entrance" v="main"/>
- <tag k="wheelchair" v="yes"/>
- </node>
- <node id="2582044619" lat="48.8582563" lon="2.3901666">
- <tag k="STIF:zone" v="1"/>
- <tag k="name" v="Philippe Auguste"/>
- <tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1784"/>
- <tag k="station" v="subway"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Philippe Auguste (métro de Paris)"/>
- </node>
<node id="2656855599" lat="48.8205877" lon="2.3390071">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="Cité Universitaire"/>
@@ -3620,45 +3787,55 @@
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775864"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2145141"/>
<tag k="wikipedia" v="fr:Gare de Cité universitaire"/>
</node>
- <node id="3090733718" lat="48.8801700" lon="2.3548655">
+ <node id="3090733718" lat="48.8805100" lon="2.3547609">
<tag k="SNCF:stop_name" v="Paris-Nord"/>
+ <tag k="STIF:zone" v="1"/>
<tag k="name" v="Gare du Nord"/>
+ <tag k="name:de" v="Paris Nordbahnhof"/>
<tag k="name:ru" v="Северный вокзал"/>
<tag k="operator" v="SNCF"/>
<tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
+ <tag k="railway:ref:DB" v="XFPN"/>
<tag k="train" v="yes"/>
<tag k="uic_ref" v="8727100"/>
<tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q745942"/>
<tag k="wikipedia" v="fr:Gare de Paris-Nord"/>
</node>
- <node id="3146958065" lat="48.8882249" lon="2.2495172">
+ <node id="3146958064" lat="48.8335481" lon="2.3859541">
<tag k="STIF:zone" v="1"/>
- <tag k="layer" v="3"/>
- <tag k="name" v="Esplanade de La Défense"/>
+ <tag k="name" v="Cour Saint-Émilion"/>
+ <tag k="public_transport" v="stop_position"/>
<tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1913"/>
+ <tag k="ref:FR:FANTOIR" v="75112S105T"/>
+ <tag k="ref:FR:RATP" v="50055"/>
+ <tag k="ref:FR:STIF" v="21956"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:Esplanade de La Défense (métro de Paris)"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1137613"/>
+ <tag k="wikipedia" v="fr:Cour Saint-Émilion (métro de Paris)"/>
</node>
- <node id="3148750837" lat="48.8849431" lon="2.2599157">
+ <node id="3148750837" lat="48.8849981" lon="2.2596399">
<tag k="STIF:zone" v="1"/>
- <tag k="amenity" v="bench"/>
- <tag k="backrest" v="yes"/>
<tag k="layer" v="-2"/>
- <tag k="material" v="wood"/>
<tag k="name" v="Pont de Neuilly"/>
<tag k="operator" v="RATP"/>
- <tag k="public_transport" v="stop_position"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1709"/>
<tag k="source" v="survey"/>
<tag k="station" v="subway"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1344555"/>
<tag k="wikipedia" v="fr:Pont de Neuilly (métro de Paris)"/>
</node>
<node id="3190883103" lat="48.8621487" lon="2.3467922">
@@ -3667,153 +3844,234 @@
<tag k="official_name" v="CHATELET LES HALLES"/>
<tag k="railway" v="station"/>
<tag k="ref:FR:RATP" v="1967"/>
+ <tag k="ref:FR:STIF" v="412815"/>
<tag k="route_ref:FR:RER_D" v="SOVA; FUCA; UOVA; VIPE; LOVA; VUCA; FOVA; LUCA; VOVA; MIPE; UUCA; SUCA; VOPA; MOPA; MIPA; FOPA; LOPA"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="start_date" v="1977-12-09"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="rer"/>
<tag k="uic_ref" v="8775860"/>
<tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q800627"/>
<tag k="wikipedia" v="fr:Gare de Châtelet - Les Halles"/>
</node>
<node id="3197007911" lat="48.8676132" lon="2.3637961">
<tag k="STIF:zone" v="1"/>
<tag k="name" v="République"/>
+ <tag k="name:de" v="Republik"/>
<tag k="name:fr" v="République"/>
<tag k="name:ru" v="Репюблик"/>
<tag k="network" v="RATP"/>
<tag k="operator" v="RATP"/>
<tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75111S485K"/>
<tag k="ref:FR:RATP" v="1679"/>
+ <tag k="ref:FR:STIF" v="21903"/>
+ <tag k="source" v="STIF - 12/2016"/>
<tag k="subway" v="yes"/>
<tag k="type:RATP" v="metro"/>
</node>
- <node id="3253932048" lat="48.8764513" lon="2.3238326"/>
- <node id="3253938484" lat="48.8765945" lon="2.3266576"/>
- <node id="3253938511" lat="48.8768085" lon="2.3265528"/>
- <node id="3271066266" lat="48.8762707" lon="2.3240671"/>
<node id="3325110405" lat="48.8297207" lon="2.3770491">
+ <tag k="STIF:zone" v="1"/>
<tag k="name" v="Bibliothèque François Mitterrand"/>
<tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75113S611V"/>
+ <tag k="ref:FR:RATP" v="51020"/>
+ <tag k="ref:FR:STIF" v="21955"/>
+ <tag k="source" v="RATP - 07/2012"/>
+ <tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8732832"/>
+ <tag k="wikidata" v="Q2856214"/>
<tag k="wikipedia" v="fr:Gare de la Bibliothèque François Mitterrand"/>
</node>
- <way id="29402542">
- <nd ref="323860043"/>
- <nd ref="323860046"/>
- <nd ref="323860047"/>
- <nd ref="191754163"/>
- <nd ref="323860043"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Gare Montparnasse 2 Pasteur"/>
- <tag k="railway" v="station"/>
- <tag k="wikipedia" v="fr:Gare de Paris-Montparnasse"/>
- </way>
- <way id="48432724">
- <nd ref="980378668"/>
- <nd ref="615107647"/>
- <nd ref="27415772"/>
- <nd ref="615107652"/>
- <nd ref="615107653"/>
- <nd ref="980292663"/>
- <nd ref="980378668"/>
- <tag k="SNCF:hackess:completeness" v="1"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="building" v="yes"/>
- <tag k="name" v="Pereire - Levallois"/>
+ <node id="3414141478" lat="48.8567083" lon="2.2897559">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Champ de Mars - Tour Eiffel"/>
+ <tag k="official_name" v="CHAMP DE MARS"/>
<tag k="operator" v="SNCF"/>
<tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="5642"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="ref" v="RER C"/>
+ <tag k="ref:FR:RATP" v="5600"/>
+ <tag k="ref:SNCF" v="RER"/>
+ <tag k="ref:SNCF:RER" v="C"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87381012"/>
+ <tag k="uic_ref" v="8739305"/>
<tag k="wheelchair" v="limited"/>
- <tag k="wikipedia" v="fr:Gare de Pereire - Levallois"/>
- </way>
- <way id="62380200">
- <nd ref="779156602"/>
- <nd ref="779156732"/>
- <nd ref="779156695"/>
- <nd ref="779156562"/>
- <nd ref="779156648"/>
- <nd ref="779156515"/>
- <nd ref="2268021731"/>
- <nd ref="779156651"/>
- <nd ref="779156519"/>
- <nd ref="2378562392"/>
- <nd ref="779156604"/>
- <nd ref="779156469"/>
- <nd ref="2378562393"/>
- <nd ref="1651603489"/>
- <nd ref="1651603490"/>
- <nd ref="2378562394"/>
- <nd ref="1651603491"/>
- <nd ref="779156747"/>
- <nd ref="779156616"/>
- <nd ref="779156699"/>
- <nd ref="2388239606"/>
- <nd ref="779156602"/>
- <tag k="SNCF:stop_name" v="Paris-Austerlitz"/>
- <tag k="building" v="station"/>
- <tag k="layer" v="1"/>
- <tag k="name" v="Gare d'Austerlitz"/>
- <tag k="name:de" v="Austerlitzer Bahnhof"/>
- <tag k="name:ru" v="Вокзал Аустерлиц"/>
+ <tag k="wikidata" v="Q800620"/>
+ <tag k="wikipedia" v="fr:Gare du Champ de Mars - Tour Eiffel"/>
+ </node>
+ <node id="3414141480" lat="48.8625032" lon="2.2999987">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Pont de l'Alma"/>
+ <tag k="official_name" v="PONT DE L ALMA"/>
+ <tag k="opening_hours" v="Mo-Su 00:00-00:40,05:00-24:00"/>
<tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="uic_ref" v="8754700"/>
+ <tag k="ref" v="RER C"/>
+ <tag k="ref:FR:RATP" v="5601"/>
+ <tag k="ref:SNCF" v="RER"/>
+ <tag k="ref:SNCF:RER" v="C"/>
+ <tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8739304"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1858826"/>
+ <tag k="wikipedia" v="fr:Gare du Pont de l'Alma"/>
+ </node>
+ <node id="3417692493" lat="48.8828803" lon="2.3442565">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Anvers"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S009P"/>
+ <tag k="ref:FR:RATP" v="1984"/>
+ <tag k="ref:FR:STIF" v="22123"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q612971"/>
+ <tag k="wikipedia" v="fr:Anvers (métro de Paris)"/>
+ </node>
+ <node id="3417692497" lat="48.8846923" lon="2.3426644">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Funiculaire Gare basse"/>
+ <tag k="name" v="Funiculaire Montmartre - Station Inférieure"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="2021"/>
+ <tag k="source" v="Bing"/>
+ <tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="3417692499" lat="48.8856581" lon="2.3425549">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Funiculaire Gare haute"/>
+ <tag k="name" v="Funiculaire Montmartre - Station Supérieure"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="2022"/>
+ <tag k="source" v="Bing"/>
<tag k="wheelchair" v="yes"/>
+ </node>
+ <node id="3417692501" lat="48.8844068" lon="2.3603057">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="La Chapelle"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S081Y"/>
+ <tag k="ref:FR:RATP" v="1868"/>
+ <tag k="ref:FR:STIF" v="22119"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1577103"/>
+ <tag k="wikipedia" v="fr:La Chapelle (métro de Paris)"/>
+ </node>
+ <node id="3419908160" lat="48.8415957" lon="2.3659926">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Austerlitz"/>
+ <tag k="name" v="Paris Austerlitz"/>
+ <tag k="name:de" v="Austerlitzer Bahnhof"/>
+ <tag k="name:ru" v="Гар д'Остерлиц"/>
+ <tag k="official_name" v="PARIS AUSTERLITZ RER C"/>
+ <tag k="old_name" v="Gare d'Orléans"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="railway:ref" v="PAZ"/>
+ <tag k="railway:ref:DB" v="XFPA"/>
+ <tag k="ref" v="RER C"/>
+ <tag k="ref:FR:uic8" v="87547026;87547000"/>
+ <tag k="ref:SNCF" v="RER"/>
+ <tag k="ref:SNCF:RER" v="C"/>
+ <tag k="uic_ref" v="8754702;87547000"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q734017"/>
<tag k="wikipedia" v="fr:Gare de Paris-Austerlitz"/>
- </way>
- <way id="64959896">
- <nd ref="795811479"/>
- <nd ref="795810799"/>
- <nd ref="795811176"/>
- <nd ref="795811920"/>
- <nd ref="1191666961"/>
- <nd ref="795811681"/>
- <nd ref="795810897"/>
- <nd ref="795810911"/>
- <nd ref="795810575"/>
- <nd ref="795811817"/>
- <nd ref="795810607"/>
- <nd ref="795811074"/>
- <nd ref="795811028"/>
- <nd ref="795810507"/>
- <nd ref="795810850"/>
- <nd ref="795811479"/>
- <tag k="layer" v="-1"/>
- <tag k="name" v="Gare des Invalides"/>
+ </node>
+ <node id="3419908164" lat="48.8464943" lon="2.3658953">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Quai de la Rapée"/>
<tag k="railway" v="station"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="wikipedia" v="fr:Gare des Invalides"/>
- </way>
- <way id="67825345">
- <nd ref="818880298"/>
- <nd ref="425042026"/>
- <nd ref="818880257"/>
- <nd ref="425042029"/>
- <nd ref="818880344"/>
- <nd ref="818880428"/>
- <nd ref="818880250"/>
- <nd ref="3253938511"/>
- <nd ref="818880454"/>
- <nd ref="818880324"/>
- <nd ref="3253938484"/>
- <nd ref="1515654999"/>
- <nd ref="3271066266"/>
- <nd ref="1684041707"/>
- <nd ref="818880404"/>
- <nd ref="3253932048"/>
- <nd ref="818880268"/>
- <nd ref="818880356"/>
- <nd ref="818880440"/>
- <nd ref="818880308"/>
- <nd ref="818880389"/>
- <nd ref="818880433"/>
- <nd ref="818880298"/>
- <tag k="building" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75112S472S"/>
+ <tag k="ref:FR:RATP" v="1743"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1969501"/>
+ <tag k="wikipedia" v="fr:Quai de la Rapée (métro de Paris)"/>
+ </node>
+ <node id="3430515272" lat="48.8677211" lon="2.3455641">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Sentier"/>
+ <tag k="name:ru" v="Сантье"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102S531X"/>
+ <tag k="ref:FR:RATP" v="1702"/>
+ <tag k="ref:FR:STIF" v="22029"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q1783889"/>
+ <tag k="wikipedia" v="fr:Sentier (métro de Paris)"/>
+ </node>
+ <node id="3491814694" lat="48.8199381" lon="2.2593442">
+ <tag k="STIF:zone" v="2"/>
+ <tag k="name" v="Issy"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="uic_ref" v="8739307"/>
+ <tag k="wikidata" v="Q3095806"/>
+ <tag k="wikipedia" v="fr:Gare d'Issy"/>
+ </node>
+ <node id="3493828493" lat="48.8705615" lon="2.2752552">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Avenue Foch"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="uic_ref" v="8738103"/>
+ <tag k="wikidata" v="Q800418"/>
+ <tag k="wikipedia" v="fr:Gare de l'avenue Foch"/>
+ </node>
+ <node id="3493828593" lat="48.8645533" lon="2.2721528">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Avenue Henri Martin"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="uic_ref" v="8738104"/>
+ <tag k="wikidata" v="Q2266818"/>
+ <tag k="wikipedia" v="fr:Gare de l'avenue Henri Martin"/>
+ </node>
+ <node id="3493828793" lat="48.8423727" lon="2.3656105">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Gare d'Austerlitz"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="5605;1838;226221"/>
+ <tag k="ref:FR:STIF" v="41333"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro;rer"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1494179"/>
+ <tag k="wikipedia" v="fr:Gare d'Austerlitz (métro de Paris)"/>
+ </node>
+ <node id="3493829093" lat="48.8853581" lon="2.2979465">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Péreire Levallois"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:STIF" v="22021"/>
+ <tag k="ref:FR:uic8" v="87381012"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="train" v="yes"/>
+ <tag k="uic_ref" v="8738101"/>
+ <tag k="wikidata" v="Q1961971"/>
+ <tag k="wikipedia" v="fr:Gare de Pereire - Levallois"/>
+ </node>
+ <node id="3533789791" lat="48.8765300" lon="2.3252374">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="level" v="1"/>
<tag k="name" v="Gare Saint-Lazare"/>
<tag k="name:be" v="Вакзал Сен-Лазар"/>
<tag k="name:es" v="Estación de Paris Saint-Lazare"/>
@@ -3827,139 +4085,469 @@
<tag k="name:zh" v="巴黎圣拉扎尔车站"/>
<tag k="old_name" v="Gare de l'Ouest"/>
<tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
<tag k="railway" v="station"/>
- <tag k="uic_ref" v="87384008"/>
- <tag k="wall" v="no"/>
- <tag k="website" v="http://www.gares-en-mouvement.com/fr/frpsl/accueil/"/>
- <tag k="wheelchair" v="yes"/>
+ <tag k="railway:ref" v="PSL"/>
+ <tag k="railway:ref:DB" v="XFPSL"/>
+ <tag k="ref:FR:STIF" v="22218"/>
+ <tag k="ref:FR:uic8" v="87384008"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="uic_ref" v="8738400"/>
+ <tag k="website" v="http://www.gares-sncf.com/fr/gare/frpsl/paris-saint-lazare"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q747506"/>
<tag k="wikipedia" v="fr:Gare de Paris-Saint-Lazare"/>
- </way>
- <way id="80895107">
- <nd ref="942986165"/>
- <nd ref="959800991"/>
- <nd ref="2389587126"/>
- <nd ref="2389587125"/>
- <nd ref="942986057"/>
- <nd ref="942985873"/>
- <nd ref="942986149"/>
- <nd ref="942985787"/>
- <nd ref="942985924"/>
- <nd ref="959835124"/>
- <nd ref="942986165"/>
- <tag k="SNCF:hackess:completeness" v="4"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="building" v="station"/>
- <tag k="level" v="0"/>
- <tag k="name" v="Avenue Foch"/>
- <tag k="operator" v="RER"/>
- <tag k="public_transport" v="stop_position"/>
+ </node>
+ <node id="3542631493" lat="48.8756570" lon="2.3253611">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="bus" v="yes"/>
+ <tag k="name" v="Saint-Lazare"/>
+ <tag k="name:ru" v="Сен-Лазар"/>
<tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="5584"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
- <tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87543207"/>
- <tag k="wikipedia" v="fr:Gare de l'avenue Foch"/>
- </way>
- <way id="245952208">
- <nd ref="948475446"/>
- <nd ref="946214809"/>
- <nd ref="2530484365"/>
- <nd ref="2531888728"/>
- <nd ref="948474847"/>
- <nd ref="948473999"/>
- <nd ref="948473350"/>
- <nd ref="948475446"/>
- <tag k="SNCF:hackess:completeness" v="4"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="building" v="station"/>
- <tag k="name" v="Avenue Henri-Martin"/>
- <tag k="note" v="détailler les 2 quais et leurs équipements"/>
- <tag k="operator" v="RER"/>
- <tag k="public_transport" v="stop_position"/>
+ <tag k="ref:FR:FANTOIR" v="75108S188C"/>
+ <tag k="ref:FR:RATP" v="1689"/>
+ <tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1519529"/>
+ <tag k="wikipedia" v="fr:Saint-Lazare (métro de Paris)"/>
+ </node>
+ <node id="3572156993" lat="48.8534806" lon="2.3454363">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Saint-Michel Notre-Dame"/>
+ <tag k="official_name" v="ST MICHEL NOTRE DAME"/>
+ <tag k="operator" v="SNCF;RATP"/>
<tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="5585"/>
+ <tag k="ref" v="RER B, C"/>
+ <tag k="ref:FR:RATP" v="5604"/>
+ <tag k="ref:FR:uic8" v="87547315;87785436"/>
+ <tag k="ref:SNCF" v="RER"/>
+ <tag k="ref:SNCF:RER" v="C"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87381046"/>
- <tag k="wikipedia" v="fr:Gare de l'avenue Henri Martin"/>
- </way>
- <way id="245964359">
- <nd ref="1367616135"/>
- <nd ref="1367616120"/>
- <nd ref="1439673303"/>
- <nd ref="2530639926"/>
- <nd ref="1367616107"/>
- <nd ref="1367616112"/>
- <nd ref="1367616113"/>
- <nd ref="2530639945"/>
- <nd ref="1367616135"/>
- <tag k="SNCF:hackess:completeness" v="5"/>
- <tag k="STIF:zone" v="2"/>
- <tag k="building" v="station"/>
- <tag k="name" v="Issy"/>
- <tag k="official_name" v="ISSY"/>
+ <tag k="uic_ref" v="8754731;8778543"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q801394"/>
+ <tag k="wikipedia" v="fr:Gare Saint-Michel - Notre-Dame"/>
+ </node>
+ <node id="3574677130" lat="48.8393018" lon="2.2706619">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="layer" v="-1"/>
+ <tag k="level" v="0"/>
+ <tag k="name" v="Pont du Garigliano - Hôpital européen Georges-Pompidou"/>
+ <tag k="official_name" v="PONT DU GARIGLIANO - HÔPITAL EUROPEEN GEORGES POMPIDOU"/>
+ <tag k="old_name" v="Pont du Garigliano;Boulevard Victor"/>
+ <tag k="old_name:1889-~1900" v="Javel"/>
+ <tag k="old_name:2006-12-15-~2010" v="Boulevard Victor - Pont du Garigliano"/>
+ <tag k="old_name:~1900-2006-12-15" v="Boulevard Victor"/>
+ <tag k="old_name:~2010-2012" v="Pont du Garigliano"/>
+ <tag k="opening_hours" v="Mo-Su 00:00-00:30,04:00-24:00"/>
<tag k="operator" v="SNCF"/>
<tag k="railway" v="station"/>
<tag k="ref" v="RER C"/>
- <tag k="ref:FR:RATP" v="5596"/>
+ <tag k="ref:FR:RATP" v="5598"/>
<tag k="ref:SNCF" v="RER"/>
<tag k="ref:SNCF:RER" v="C"/>
- <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2011"/>
<tag k="type:RATP" v="rer"/>
- <tag k="uic_ref" v="87393074"/>
+ <tag k="uic_ref" v="8739332"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q2200121"/>
+ <tag k="wikipedia" v="fr:Gare du Pont du Garigliano"/>
+ </node>
+ <node id="3580789992" lat="48.8780667" lon="2.2846161">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Neuilly - Porte Maillot"/>
+ <tag k="note:fr" v="RER C"/>
+ <tag k="pictogram" v="yes"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="5643"/>
+ <tag k="ref:FR:uic8" v="87381020"/>
+ <tag k="signage" v="good"/>
+ <tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8738102"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q384902"/>
+ <tag k="wikipedia" v="fr:Gare de Neuilly - Porte Maillot"/>
+ </node>
+ <node id="3703620036" lat="48.8699556" lon="2.2860385">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Victor Hugo"/>
+ <tag k="name:ru" v="Виктор Гюго"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S588E"/>
+ <tag k="ref:FR:RATP" v="1648"/>
+ <tag k="ref:FR:STIF" v="22109"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="start_date" v="1931"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
<tag k="wheelchair" v="no"/>
- <tag k="wikipedia" v="fr:Gare d'Issy"/>
- </way>
+ <tag k="wikidata" v="Q1459231"/>
+ <tag k="wikipedia" v="fr:Victor Hugo (métro de Paris)"/>
+ </node>
+ <node id="3763562357" lat="48.8662052" lon="2.3223767">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Concorde"/>
+ <tag k="name:de" v="Eintracht"/>
+ <tag k="name:es" v="Concordia"/>
+ <tag k="name:it" v="Concorde"/>
+ <tag k="name:ko" v="콩코르드 광장"/>
+ <tag k="name:pt" v="Concórdia"/>
+ <tag k="name:ro" v="strada frumoasa"/>
+ <tag k="name:ru" v="Конкорд"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="public_transport" v="station"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75108S099F;75101S099G"/>
+ <tag k="ref:FR:RATP" v="1885"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q970075"/>
+ <tag k="wikipedia" v="fr:Concorde (métro de Paris)"/>
+ </node>
+ <node id="3884781096" lat="48.8964348" lon="2.3740920">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Rosa Parks"/>
+ <tag k="opening_date" v="2015-12-13"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:uic8" v="87654798"/>
+ <tag k="uic_ref" v="8765479"/>
+ <tag k="website" v="http://garerosaparks.fr/"/>
+ <tag k="wikidata" v="Q3095535"/>
+ <tag k="wikipedia" v="fr:Gare Rosa Parks"/>
+ </node>
+ <node id="3931967758" lat="48.8608923" lon="2.3144984">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Invalides"/>
+ <tag k="name:ru" v="Энвалид"/>
+ <tag k="public_transport" v="station"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75107S242T"/>
+ <tag k="ref:FR:RATP" v="1857"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1528456"/>
+ <tag k="wikipedia" v="fr:Invalides (métro de Paris)"/>
+ </node>
+ <node id="4058743747" lat="48.8648767" lon="2.3984496">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Gambetta"/>
+ <tag k="name:ru" v="Гамбетта"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75120S183T"/>
+ <tag k="ref:FR:RATP" v="1929"/>
+ <tag k="ref:FR:STIF" v="21950"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q946826"/>
+ <tag k="wikipedia" v="fr:Gambetta (métro de Paris)"/>
+ </node>
+ <node id="4058783101" lat="48.8630487" lon="2.2871436">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Trocadéro"/>
+ <tag k="name:ru" v="Трокадеро"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75116S566F"/>
+ <tag k="ref:FR:RATP" v="1639"/>
+ <tag k="ref:FR:STIF" v="21917"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1272925"/>
+ <tag k="wikipedia" v="fr:Trocadéro (métro de Paris)"/>
+ </node>
+ <node id="4067925155" lat="48.8822775" lon="2.3381228">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Pigalle"/>
+ <tag k="name:ru" v="Пигаль"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S415R"/>
+ <tag k="ref:FR:RATP" v="1787"/>
+ <tag k="ref:FR:STIF" v="22114"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q338898"/>
+ <tag k="wikipedia" v="fr:Pigalle (métro de Paris)"/>
+ </node>
+ <node id="4075421186" lat="48.8872884" lon="2.3495532">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Château Rouge"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75118S088A"/>
+ <tag k="ref:FR:RATP" v="1960"/>
+ <tag k="ref:FR:STIF" v="22152"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q957172"/>
+ <tag k="wikipedia" v="fr:Château Rouge (métro de Paris)"/>
+ </node>
+ <node id="4083286998" lat="48.8459854" lon="2.3548215">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Jussieu"/>
+ <tag k="name:fr" v="Jussieu"/>
+ <tag k="name:ru" v="Жюссьё"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75105S258W"/>
+ <tag k="ref:FR:RATP" v="1866"/>
+ <tag k="ref:FR:STIF" v="22386"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1463644"/>
+ <tag k="wikipedia" v="fr:Jussieu (métro de Paris)"/>
+ </node>
+ <node id="4317589118" lat="48.8749283" lon="2.2958259">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Charles de Gaulle — Étoile"/>
+ <tag k="name:ru" v="Шарль де Голль — Этуаль"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75117S147U;75108S147H"/>
+ <tag k="ref:FR:RATP" v="1953"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q800624"/>
+ <tag k="wikipedia" v="fr:Charles de Gaulle - Étoile (métro de Paris)"/>
+ </node>
+ <node id="4723898055" lat="48.8982683" lon="2.2483242">
+ <tag k="STIF:zone" v="3"/>
+ <tag k="name" v="Courbevoie"/>
+ <tag k="official_name" v="COURBEVOIE"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="railway" v="station"/>
+ <tag k="source" v="survey"/>
+ <tag k="uic_ref" v="8738220"/>
+ <tag k="wheelchair" v="limited"/>
+ <tag k="wikidata" v="Q3126234"/>
+ <tag k="wikipedia" v="fr:Halte de Courbevoie-Sport"/>
+ </node>
+ <node id="5139949022" lat="48.8882577" lon="2.2494882">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="layer" v="-2"/>
+ <tag k="name" v="Esplanade de La Défense"/>
+ <tag k="public_transport" v="station"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="1913"/>
+ <tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q1368326"/>
+ <tag k="wikipedia" v="fr:Esplanade de la Défense (métro de Paris)"/>
+ </node>
+ <node id="5155172764" lat="48.8624906" lon="2.3360431">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Palais Royal - Musée du Louvre"/>
+ <tag k="name:ru" v="Пале-Руаяль — Мюзе-дю-Лувр"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75101S399H"/>
+ <tag k="ref:FR:RATP" v="1774"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1467113"/>
+ <tag k="wikipedia" v="fr:Palais Royal - Musée du Louvre (métro de Paris)"/>
+ </node>
+ <node id="5226630378" lat="48.8439336" lon="2.3241027">
+ <tag k="name" v="Montparnasse-Bienvenüe"/>
+ <tag k="name:ru" v="Монпарнас — Бьенвеню"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="0408"/>
+ <tag k="ref:FR:STIF" v="41203"/>
+ <tag k="source" v="STIF - 12/2016"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q764465"/>
+ <tag k="wikipedia" v="fr:Montparnasse - Bienvenüe (métro de Paris)"/>
+ </node>
+ <node id="5226630382" lat="48.8529870" lon="2.3688579">
+ <tag k="name" v="Bastille"/>
+ <tag k="railway" v="station"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q508256"/>
+ <tag k="wikipedia" v="fr:Bastille (métro de Paris)"/>
+ </node>
+ <node id="5226630385" lat="48.8575899" lon="2.3515852">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Hôtel de Ville"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75104S225F"/>
+ <tag k="ref:FR:RATP" v="1855"/>
+ <tag k="source" v="cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2010"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q968939"/>
+ <tag k="wikipedia" v="fr:Hôtel de Ville (métro de Paris)"/>
+ </node>
+ <node id="5226630386" lat="48.8693002" lon="2.3542855">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Strasbourg - Saint-Denis"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="public_transport" v="stop_position"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75102S537D"/>
+ <tag k="ref:FR:RATP" v="1628"/>
+ <tag k="station" v="subway"/>
+ <tag k="subway" v="yes"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1403165"/>
+ <tag k="wikipedia" v="fr:Strasbourg - Saint-Denis (métro de Paris)"/>
+ </node>
+ <node id="5226708287" lat="48.8837510" lon="2.3496609">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Barbès - Rochechouart"/>
+ <tag k="operator" v="RATP"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75109S035C"/>
+ <tag k="ref:FR:RATP" v="1999"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q807893"/>
+ <tag k="wikipedia" v="fr:Barbès - Rochechouart (métro de Paris)"/>
+ </node>
+ <node id="5226708288" lat="48.8769658" lon="2.4064184">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Porte des Lilas"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="1736"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wikidata" v="Q606164"/>
+ <tag k="wikipedia" v="fr:Porte des Lilas (métro de Paris)"/>
+ </node>
+ <node id="5228032207" lat="48.8818022" lon="2.3663689">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Louis Blanc"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:FANTOIR" v="75110S290A"/>
+ <tag k="ref:FR:RATP" v="1806"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q1537255"/>
+ <tag k="wikipedia" v="fr:Louis Blanc (métro de Paris)"/>
+ </node>
+ <node id="5228032208" lat="48.8300059" lon="2.3768474">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Bibliothèque François Mitterrand"/>
+ <tag k="railway" v="station"/>
+ <tag k="station" v="subway"/>
+ <tag k="wikidata" v="Q2856214"/>
+ <tag k="wikipedia" v="fr:Gare de la Bibliothèque François Mitterrand"/>
+ </node>
+ <node id="5228032209" lat="48.8451709" lon="2.3725553">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="name" v="Gare de Lyon"/>
+ <tag k="railway" v="station"/>
+ <tag k="ref:FR:RATP" v="1839"/>
+ <tag k="station" v="subway"/>
+ <tag k="type:RATP" v="metro"/>
+ <tag k="wheelchair" v="no"/>
+ <tag k="wikidata" v="Q614049"/>
+ <tag k="wikipedia" v="fr:Gare de Lyon (métro de Paris)"/>
+ </node>
+ <node id="5230752679" lat="48.8813990" lon="2.3574380">
+ <tag k="STIF:zone" v="1"/>
+ <tag k="alt_name" v="Paris Nord RER"/>
+ <tag k="layer" v="-2"/>
+ <tag k="name" v="Gare du Nord (RER)"/>
+ <tag k="official_name" v="PARIS NORD (GARE DU NORD)"/>
+ <tag k="operator" v="SNCF"/>
+ <tag k="public_transport" v="station"/>
+ <tag k="railway" v="station"/>
+ <tag k="railway:traffic_mode" v="passenger"/>
+ <tag k="ref" v="RER B,D"/>
+ <tag k="ref:FR:RATP" v="1843"/>
+ <tag k="ref:FR:uic8" v="87271031"/>
+ <tag k="short_name" v="Gare du Nord"/>
+ <tag k="train" v="yes"/>
+ <tag k="type:RATP" v="rer"/>
+ <tag k="uic_ref" v="8727103"/>
+ <tag k="wheelchair" v="yes"/>
+ <tag k="wikidata" v="Q745942"/>
+ <tag k="wikipedia" v="fr:Gare de Paris-Nord"/>
+ </node>
<relation id="1266299">
- <member type="node" ref="983537977" role=""/>
- <member type="node" ref="983538057" role=""/>
- <member type="node" ref="983538039" role=""/>
- <member type="way" ref="84669089" role=""/>
- <member type="node" ref="983538018" role=""/>
- <member type="way" ref="84669081" role=""/>
- <member type="node" ref="983538066" role=""/>
- <member type="node" ref="983537932" role=""/>
- <member type="node" ref="983537922" role=""/>
- <member type="way" ref="84669083" role=""/>
- <member type="way" ref="84669094" role=""/>
- <member type="way" ref="84669060" role=""/>
- <member type="way" ref="84669085" role=""/>
- <member type="node" ref="983538065" role=""/>
- <member type="node" ref="983537951" role=""/>
- <member type="way" ref="84669096" role=""/>
- <member type="way" ref="84669079" role=""/>
- <member type="node" ref="983538015" role=""/>
- <member type="node" ref="983538050" role=""/>
- <member type="way" ref="84669068" role=""/>
- <member type="way" ref="84669067" role=""/>
- <member type="node" ref="983538033" role=""/>
- <member type="node" ref="983538061" role=""/>
- <member type="way" ref="84669078" role=""/>
- <member type="way" ref="84669072" role=""/>
- <member type="node" ref="983538031" role=""/>
- <member type="node" ref="983537939" role=""/>
- <member type="way" ref="84669074" role=""/>
- <member type="node" ref="983537945" role=""/>
- <member type="node" ref="983537949" role=""/>
- <member type="way" ref="84669058" role=""/>
- <member type="way" ref="84669098" role=""/>
- <member type="way" ref="84669062" role=""/>
- <member type="node" ref="983537974" role=""/>
- <member type="node" ref="983538037" role=""/>
- <member type="way" ref="84669097" role=""/>
- <member type="node" ref="983538002" role=""/>
- <member type="node" ref="983537947" role=""/>
- <member type="way" ref="84669092" role=""/>
<member type="node" ref="983537981" role=""/>
<member type="node" ref="983537971" role=""/>
- <member type="way" ref="84669064" role=""/>
- <member type="way" ref="241582303" role=""/>
<member type="node" ref="983538008" role=""/>
+ <member type="way" ref="403645153" role=""/>
<member type="way" ref="84669087" role=""/>
<member type="node" ref="983538029" role=""/>
<member type="node" ref="983538053" role=""/>
<member type="way" ref="84669071" role=""/>
<member type="way" ref="84669055" role=""/>
<member type="node" ref="243510334" role=""/>
+ <member type="way" ref="403547974" role=""/>
+ <member type="way" ref="403547951" role=""/>
+ <member type="node" ref="983537928" role=""/>
+ <member type="way" ref="403547978" role=""/>
+ <member type="way" ref="403547968" role=""/>
+ <member type="way" ref="403547971" role=""/>
+ <member type="way" ref="403547937" role=""/>
+ <member type="way" ref="403547938" role=""/>
+ <member type="way" ref="403547947" role=""/>
+ <member type="way" ref="403547944" role="platform"/>
+ <member type="way" ref="403547942" role=""/>
+ <member type="way" ref="403548243" role=""/>
+ <member type="way" ref="403547954" role=""/>
+ <member type="way" ref="403547940" role=""/>
+ <member type="way" ref="403547939" role=""/>
+ <member type="way" ref="403547957" role=""/>
+ <member type="way" ref="403547965" role=""/>
+ <member type="way" ref="403547962" role=""/>
+ <member type="way" ref="403547958" role=""/>
+ <member type="way" ref="403547948" role=""/>
+ <member type="way" ref="403548244" role=""/>
+ <member type="way" ref="403547945" role="platform"/>
+ <member type="way" ref="403547943" role=""/>
+ <member type="node" ref="4058981493" role=""/>
+ <member type="way" ref="403547964" role=""/>
+ <member type="way" ref="403547953" role=""/>
+ <member type="way" ref="403547941" role=""/>
+ <member type="way" ref="403547952" role=""/>
+ <member type="way" ref="403547963" role=""/>
+ <member type="way" ref="403547970" role=""/>
+ <member type="way" ref="403547960" role=""/>
+ <member type="way" ref="403547949" role=""/>
+ <member type="node" ref="4058981485" role=""/>
+ <member type="way" ref="403547956" role=""/>
+ <member type="way" ref="403547955" role=""/>
+ <member type="way" ref="403547966" role=""/>
+ <member type="way" ref="403547967" role=""/>
+ <member type="way" ref="403547959" role=""/>
+ <member type="way" ref="403547935" role=""/>
+ <member type="way" ref="403547975" role=""/>
+ <member type="way" ref="403547969" role=""/>
+ <member type="way" ref="403547976" role=""/>
+ <member type="way" ref="403547936" role=""/>
+ <member type="way" ref="403645154" role=""/>
+ <member type="way" ref="97335897" role=""/>
+ <member type="node" ref="1127251894" role=""/>
+ <member type="node" ref="983538035" role=""/>
+ <member type="node" ref="983537986" role=""/>
+ <member type="way" ref="403552374" role=""/>
+ <member type="way" ref="403552373" role=""/>
<tag k="name" v="Bourse"/>
<tag k="public_transport" v="stop_area"/>
<tag k="railway" v="station"/>
@@ -3967,28 +4555,42 @@
<tag k="station" v="underground"/>
<tag k="type" v="public_transport"/>
</relation>
- <relation id="4206259">
- <member type="relation" ref="4211717" role="level_-3"/>
- <member type="relation" ref="4206258" role="level_-2"/>
- <member type="relation" ref="4206257" role="level_-1"/>
- <member type="relation" ref="4206256" role="level_0"/>
- <member type="way" ref="313420213" role="outer"/>
- <tag k="STIF:zone" v="1"/>
- <tag k="architect" v="Hector Guimard"/>
- <tag k="building" v="yes"/>
- <tag k="heritage" v="3"/>
- <tag k="heritage:operator" v="mhs"/>
- <tag k="name" v="République"/>
- <tag k="name:fr" v="République"/>
- <tag k="name:ru" v="Репюблик"/>
+ <relation id="6050377">
+ <member type="node" ref="264505450" role=""/>
+ <member type="way" ref="403643161" role="platform"/>
+ <member type="way" ref="403643164" role=""/>
+ <member type="way" ref="403643163" role="platform"/>
+ <member type="way" ref="403643159" role=""/>
+ <member type="way" ref="403643153" role=""/>
+ <member type="way" ref="403643185" role=""/>
+ <member type="way" ref="403643169" role=""/>
+ <member type="way" ref="403643151" role=""/>
+ <member type="way" ref="403643172" role=""/>
+ <member type="way" ref="403643168" role=""/>
+ <member type="way" ref="403643170" role=""/>
+ <member type="way" ref="403643140" role=""/>
+ <member type="way" ref="354119187" role=""/>
+ <member type="way" ref="403643179" role=""/>
+ <member type="way" ref="403643145" role=""/>
+ <member type="way" ref="403643149" role=""/>
+ <member type="way" ref="403643173" role=""/>
+ <member type="way" ref="403643147" role=""/>
+ <member type="way" ref="403643171" role=""/>
+ <member type="way" ref="403643175" role=""/>
+ <member type="way" ref="403643174" role=""/>
+ <member type="way" ref="403643183" role=""/>
+ <member type="way" ref="403643138" role=""/>
+ <member type="way" ref="403643156" role=""/>
+ <member type="way" ref="403643144" role=""/>
+ <member type="way" ref="403643154" role=""/>
+ <member type="way" ref="403643142" role=""/>
+ <member type="way" ref="403643167" role=""/>
+ <member type="node" ref="3598985986" role=""/>
+ <tag k="name" v="Jules Joffrin"/>
+ <tag k="public_transport" v="stop_area"/>
<tag k="railway" v="station"/>
- <tag k="ref:FR:RATP" v="1679"/>
- <tag k="ref:mhs" v="PA00086550"/>
- <tag k="start_date" v="1904"/>
- <tag k="station" v="subway"/>
- <tag k="type" v="building"/>
- <tag k="type:RATP" v="metro"/>
- <tag k="wikipedia" v="fr:République (métro de Paris)"/>
+ <tag k="station" v="underground"/>
+ <tag k="type" v="public_transport"/>
</relation>
</osm>